@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

:root {
    --red: #DD071E;
    --deep-red: #d90d28;
    --green: #085A53;
    --green-dark: #085A53;
    --green-deep: #05463f;
    --mint: #84f3df;
    --aqua: #ffffff;
    --aqua-2: #cdf6f2;
    --teal-line: #6ec9c1;
    --ink: #085A53;
    --muted: #608b87;
    --white: #ffffff;
    --shadow: 0 28px 70px rgba(5, 74, 68, .16);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --container: 1140px;
    --container-wide: 1220px;
}
.steps-dots{
    display: none;
}

html,
body,
body *,
body *::before,
body *::after,
button,
input,
select,
textarea,
option {
    font-family: "Montserrat";
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 98px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--aqua);
    color: var(--ink);
    font-family: "Montserrat";
   
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--red);
    color: var(--white);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--green);
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container,
.container-wide {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(calc(100% - 40px), var(--container-wide));
}

.section {
    position: relative;
    padding: 110px 0;
}

.eyebrow {
   display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 0.72rem !important;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #085A53;
}

.eyebrow.light {
    color: rgba(255,255,255,.75);
}

.eyebrow.red {
    color: var(--red);
}

.section-title {
    margin: 0;
    font-size: clamp(1.6125rem, 3.45vw, 3.675rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.045em;
    color: var(--ink);
}

.section-title.red,
.red {
    color: var(--red);
}

.section-title.light {
    color: var(--white);
}

.section-title.light span {
    color: var(--mint);
}

.section-intro {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 6px;
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.button-primary {
    background: var(--green);
}

.button-red {
    background: var(--red);
}

.button.centered {
    margin: 34px auto 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 0;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 52, 69, .82);
    box-shadow: 0 10px 35px rgba(4, 24, 36, .16);
    backdrop-filter: blur(16px);
}

.header-shell {
    position: relative;
    display: grid;
    grid-template-columns: 210px 1fr 220px;
    align-items: center;
    min-height: 94px;
    padding-inline: 38px;
    background: linear-gradient(90deg, rgba(123, 175, 224, .72), rgba(30, 70, 129, .38));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
    display: block;
    color: var(--white);
}

.brand img {
    width: 205px;
    height: auto;
    filter: brightness(0) invert(1);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 4vw, 62px);
    font-family: "Montserrat";
}

.primary-nav a {
    font-family: "Montserrat";
    position: relative;
    color: rgba(255,255,255,.92);
    font-size: .82rem;
    font-weight: 400;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    min-width: 0;
}

.header-search input {
    width: 100%;
    height: 42px;
    padding: 0 44px 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--white);
    font-size: .75rem;
}

.header-search input::placeholder {
    color: rgba(255,255,255,.7);
}

.header-search button {
    position: absolute;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    background: #172c41;
    color: var(--white);
    overflow: hidden;
}

.hero-video,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(180deg, rgba(7, 24, 46, .28), rgba(7, 25, 34, .14) 35%, rgba(3, 22, 23, .8)),
        linear-gradient(90deg, rgba(5, 23, 36, .35), transparent 48%, rgba(0,0,0,.22));
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100svh;
}

.hero-copy {
    position: absolute;
    right: 1.5%;
    bottom: 25%;
    width: min(630px, 52vw);
    text-align: right;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.25rem, 4.5vw, 5.025rem);
    line-height: .93;
    font-weight: 200;
    letter-spacing: -.05em;
}

.hero-copy h1 strong {
    font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin: 22px 0 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero-facts {
    position: absolute;
    bottom: 20%;
    left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: clamp(.85rem, 1.45vw, 1.4rem);
    font-weight: 300;
    text-transform: uppercase;
}

.hero-facts i {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.7);
}

.hero-track {
    position: absolute;
    right: 0;
    bottom: 6%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.25);
}

.hero-track-item {
    position: relative;
    min-height: 62px;
    padding: 16px 16px 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.35);
    font-size: clamp(.75rem, 1.35vw, 1.1rem);
    font-weight: 300;
    text-align: center;
    transition: color .3s ease;
}

.hero-track-item::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--mint);
    transform: scaleX(0);
    transition: transform .35s ease;
}

.hero-track-item.is-active {
    color: rgba(255,255,255,.9);
}

.hero-track-item.is-active::before {
    transform: scaleX(1);
}

/* About */
.wave-bg::after,
/*.discovery-section::before,*/
.purpose-section::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    /*width:100%;*/
    height:40%;
    background: url("https://maroon-squirrel-164752.hostingersite.com/assets/images/red-wave-divider.png") center bottom / 100% 100% no-repeat;
    pointer-events: none;
}

.about-section {
    min-height: 760px;
    background: var(--aqua);
    overflow: hidden;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .9fr .42fr;
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
}

.about-copy p:not(.eyebrow) {
    max-width: 510px;
    margin: 28px 0;
    color: #6f918d;
    font-size: 1rem;
    text-align: justify;
}

.about-copy h3 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(0.8625rem, 1.5vw, 1.2375rem);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: .015em;
}

.about-visual {
    margin: 0;
}

.about-visual img {
    width: 100%;
    aspect-ratio: .86;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-stats {
    display: grid;
    gap: 38px;
}

.about-stats article {
    text-align: center;
}

.about-stats strong,
.about-stats small {
    display: block;
}

.about-stats strong {
    color: var(--red);
    font-size: 1.55rem;
    font-weight: 300;
}

.about-stats small {
        font-size: 1.0rem;
    white-space: nowrap;
    color: #085A53 !important;
}

.line-icon {
    position: relative;
    display: block;
    width: 72px;
    height: 58px;
    margin: 0 auto 10px;
    color: var(--red);
}

.skyline-icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    background:
        linear-gradient(90deg, transparent 0 8%, currentColor 8% 10%, transparent 10% 24%, currentColor 24% 26%, transparent 26% 41%, currentColor 41% 43%, transparent 43% 59%, currentColor 59% 61%, transparent 61% 78%, currentColor 78% 80%, transparent 80%);
    opacity: .9;
}

.skyline-icon::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: currentColor;
}

.number-icon {
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 200;
}

.homes-icon::before,
.homes-icon::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 30px;
    height: 25px;
    border: 1px solid currentColor;
    border-top: 0;
}

.homes-icon::before {
    left: 7px;
    transform: skewY(-18deg);
}

.homes-icon::after {
    right: 7px;
    transform: skewY(18deg);
}

/* Discovery */
.discovery-section {
    background: var(--aqua);
    overflow: hidden;
}

.discovery-section::before {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
    opacity: .7;
}

.journey-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.journey-scroller {
    overflow: hidden;
}

.journey-rail {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px 2px 18px;
    scroll-snap-type: x mandatory;
}

.journey-rail::-webkit-scrollbar {
    display: none;
}

.journey-card {
    flex: 0 0 245px;
    min-height: 250px;
    padding: 35px 28px 25px;
    border: 1px solid rgba(11, 103, 95, .55);
    border-radius: 17px;
    background: rgba(255,255,255,.08);
    scroll-snap-align: start;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.journey-card:hover,
.journey-card:focus,
.journey-card.is-active {
    transform: translateY(-7px);
    background: var(--green);
    color: var(--white);
    box-shadow: 0 20px 45px rgba(7, 78, 72, .17);
    outline: none;
}

.journey-card h3 {
    margin: 0;
    font-size: 0.795rem;
    line-height: 1.35;
    font-weight: 600;
}

.journey-card h3 em {
    color: var(--red);
    font-style: normal;
}

.journey-card:hover h3 em,
.journey-card:focus h3 em,
.journey-card.is-active h3 em {
    color: var(--mint);
}

.journey-card p {
    min-height: 72px;
    margin: 24px 0 18px;
    color: #74918f;
    font-size: .72rem;
}

.journey-card:hover p,
.journey-card:focus p,
.journey-card.is-active p {
    color: rgba(255,255,255,.72);
}

.journey-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(11, 103, 95, .35);
    color: var(--red);
    font-size: .83rem;
}

.journey-card:hover a,
.journey-card:focus a,
.journey-card.is-active a {
    border-color: rgba(255,255,255,.22);
    color: var(--mint);
}

.cities-block {
    position: relative;
    z-index: 1;
    margin-top: 130px;
}

.city-layout {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 45px;
    margin-top: 28px;
}

.city-tabs {
    display: grid;
    gap: 20px;
}

.city-tab {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    font-weight:600;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.0rem;
    text-align: left;
    transition: color .25s ease, transform .25s ease;
}

.city-tab span {
    font-size: .75rem;
}

.city-tab:hover,
.city-tab.is-active {
    color: var(--red);
    transform: translateX(7px);
}

.city-stage {
    position: relative;
    width: min(100%, 920px);
}

.city-stage > img {
    width: 100%;
    aspect-ratio: 1.82;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: opacity .25s ease, transform .45s ease;
}

.city-stage.is-changing > img {
    opacity: .25;
    transform: scale(.985);
}

.city-info {
    position: absolute;
    right: -14%;
    bottom: 11%;
    width: min(340px, 42%);
    padding: 38px 38px 28px;
    border-radius: 24px;
    background: linear-gradient(115deg, rgba(255,255,255,.95), rgba(223,251,248,.82));
    box-shadow: 0 22px 55px rgba(13, 84, 79, .18);
    backdrop-filter: blur(18px);
}

.city-info > span {
    font-size: 1.1rem;
    font-weight: 700;
}

.city-info h3 {
    margin: 0;
    color: var(--red);
    font-size: 1.0125rem;
}

.city-info p {
    margin: 6px 0 25px;
    color: #77918f;
    font-size: .78rem;
}

.city-info a {
    color: var(--red);
    font-size: .92rem;
}

.city-info a span {
    margin-left: 14px;
    font-size: 1.1rem;
}

/* Portfolio */
.portfolio-section {
    background: var(--aqua);
    padding-top: 130px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: .92fr 1.35fr;
    gap: 70px;
    align-items: center;
}

.project-feature {
    position: relative;
    min-height: 640px;
}

.project-feature > img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: opacity .3s ease, transform .5s ease;
}

.project-feature.is-changing > img {
    opacity: .45;
    transform: scale(.985);
}

.project-feature-card {
    position: absolute;
    right: 8%;
    bottom: 32px;
    left: 8%;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(115deg, rgba(42, 28, 25, .85), rgba(114, 93, 85, .72));
    color: var(--white);
    backdrop-filter: blur(12px);
}

.project-feature-card h3 {
    margin: 0;
    font-size: 0.9rem;
}

.project-feature-card h3 small {
    font-weight: 300;
    opacity: .72;
}

.project-feature-card > p:nth-of-type(1) {
    margin: 4px 0 15px;
    font-size: .72rem;
    opacity: .7;
}

.project-feature-card > p:nth-of-type(2) {
    margin: 0 0 22px;
    font-size: .78rem;
    line-height: 1.5;
    opacity: .82;
}

.project-feature-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.project-feature-card > div > span {
    min-width: 150px;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--green);
    text-align: center;
}

.project-feature-card a {
    font-size: .85rem;
}

.project-feature-card a b {
    color: var(--red);
    margin-left: 8px;
}

.portfolio-content > p:not(.eyebrow) {
    max-width: 660px;
    margin: 18px 0 32px;
    color: var(--muted);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 42px;
    margin-bottom: 54px;
}

.filter-pills button {
    min-width: 92px;
    padding: 4px 16px;
    border: 1px solid rgba(11, 103, 95, .65);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: .72rem;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.filter-pills button:hover,
.filter-pills button.is-active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.project-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 245px;
    gap: 28px;
    max-width: calc(100vw - 55vw);
    overflow-x: auto;
    padding: 4px 4px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.project-thumbs::-webkit-scrollbar {
    display: none;
}

.project-thumb {
    position: relative;
    height: 230px;
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #bee4e1;
    scroll-snap-align: start;
    transition: transform .3s ease, box-shadow .3s ease;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .3s ease;
}

.project-thumb span {
    position: absolute;
    right: 15px;
    bottom: 12px;
    left: 15px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(3, 39, 36, .72);
    color: var(--white);
    font-size: .72rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.project-thumb:hover,
.project-thumb.is-active {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(5, 74, 68, .2);
}

.project-thumb:hover img,
.project-thumb.is-active img {
    transform: scale(1.05);
}

.project-thumb:hover span,
.project-thumb.is-active span {
    opacity: 1;
    transform: translateY(0);
}

.carousel-progress {
    width: 78%;
    height: 1px;
    margin-top: 50px;
    background: rgba(11, 103, 95, .35);
}

.carousel-progress span {
    display: block;
    width: 20%;
    height: 1px;
    background: var(--red);
    transition: transform .35s ease;
    transform-origin: left;
}

/* Comparison */
.compare-section {
    background: var(--aqua);
    overflow: hidden;
}

.skyline {
    position: absolute;
    right: 0;
    top: 130px;
    left: 0;
    height: 350px;
    background: url("../images/Compare Projects.svg") center bottom / cover no-repeat;
    pointer-events: none;
}

.table-shell {
    position: relative;
    z-index: 2;
    margin-top: 110px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(255,255,255,.58), rgba(200, 242, 239, .48));
    box-shadow: 0 24px 70px rgba(8, 94, 87, .15);
    backdrop-filter: blur(20px);
}

.table-scroll {
    overflow-x: auto;
}

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

th,
td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(11, 103, 95, .12);
    text-align: left;
    font-size: .75rem;
    white-space: nowrap;
}

th {
    color: var(--red);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
}

tbody tr:last-child td {
    border-bottom: 0;
}

.status-pill {
    display: inline-flex;
    justify-content: center;
    min-width: 78px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--white);
    color: #b98a18;
    font-size: .72rem;
}

.status-pill.new {
    color: var(--green);
}

.table-button {
    display: inline-flex;
    justify-content: center;
    min-width: 96px;
    font-weight:500;
    padding: 6px 13px;
    border: 1px solid var(--red);
    border-radius: 999px;
    color: var(--ink);
    font-size: .82rem;
    transition: background .25s ease, color .25s ease;
}

.table-button:hover {
    background: var(--red);
    color: var(--white);
}

/* Purpose */
.purpose-section {
    position: relative;
    padding: 95px 0 0;
    background: var(--white);
    overflow: hidden;
}

.purpose-section::before {
    top: 0;
    bottom: auto;
    height: 230px;
    opacity: .4;
    transform: rotate(180deg);
}

.purpose-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.purpose-visual {
    position: relative;
}

.purpose-visual > img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 24px;
}

.trust-card {
    position: absolute;
    right: -18%;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 340px;
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(120deg, rgba(255,255,255,.98), rgba(217, 247, 244, .92));
    box-shadow: 0 22px 55px rgba(6, 82, 76, .16);
}

.trust-card strong {
    color: var(--red);
    font-size: 2.65rem;
    font-weight: 300;
}

.trust-card span {
    font-size: 1.2rem;
    line-height: 1.3;
}

.purpose-copy p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 22px;
    color: #525f5d;
    font-size: 1.05rem;
}

/* Why */
.why-section {
    margin-top: 70px;
    padding: 70px 0 0;
    background: var(--green);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
    border: 1px solid rgba(132,243,223,.35);
    border-radius: 26px 26px 0 0;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(132,243,223,.07), rgba(255,255,255,.08));
    box-shadow: 0 -10px 35px rgba(0,0,0,.08);
}

.why-grid article {
    min-height: 175px;
    padding: 28px 30px;
    border-right: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
}

.why-grid article:nth-child(3n) {
    border-right: 0;
}

.why-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.why-grid article > span {
    color: var(--mint);
    font-size: 1rem;
    font-weight: 300;
}

.why-grid h3 {
    margin: 4px 0 10px;
    color: var(--mint);
    font-size: 0.9375rem;
    font-weight: 400;
}

.why-grid p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .91rem;
}

/* Buyer Journey */
.buyer-journey-section {
    background: var(--aqua);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    max-width: 980px;
    margin: 38px auto 0;
}

.step-card {
    min-height: 170px;
    padding: 30px 22px;
    border: 1px solid rgba(11, 103, 95, .7);
    border-radius: 18px;
    background: transparent;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.step-card:hover,
.step-card.is-active {
    transform: translateY(-5px);
    background: var(--green);
    color: var(--white);
}

.step-card strong {
    color: var(--red);
    font-size: 2rem;
}

.step-card:hover strong,
.step-card.is-active strong {
    color: var(--mint);
}

.step-card p {
    margin: 16px 0 0;
    font-size: .93rem;
}

/* Testimonials */
.testimonials-section {
    padding-top: 90px;
    background: var(--aqua);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 90px;
    margin-top: 80px;
}

.testimonial-card {
    position: relative;
    padding: 0 0 0 45px;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 35px;
    left: 0;
    width: 3px;
    background: linear-gradient(var(--red), var(--mint));
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-person img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: #c8d7d5;
}

.testimonial-person h3 {
    margin: 0;
    color: var(--red);
    font-size: 0.75rem;
}

.testimonial-person p {
    margin: 2px 0 0;
    color: var(--muted);
}

.testimonial-card blockquote {
    margin: 28px 0 14px;
    color: #6e8582;
    font-size: .95rem;
}

.stars {
    color: #ffd218;
    font-size: 1.25rem;
    letter-spacing: .18em;
}

/* Contact */
.contact-section {
    position: relative;
    padding: 110px 0 0;
    background: linear-gradient(var(--aqua) 0 28%, var(--green) 28% 100%);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    padding: 54px 72px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background: linear-gradient(120deg, rgba(7, 75, 69, .95), rgba(13, 115, 105, .75));
    color: var(--white);
    box-shadow: 0 -24px 60px rgba(3, 52, 48, .18);
    backdrop-filter: blur(18px);
}

.contact-copy > p {
    margin: 0 0 30px;
    font-size: 1.75rem;
    font-weight: 300;
}

.contact-copy h2 {
    margin: 0;
    color: var(--mint);
    font-size: clamp(1.65rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 300;
    letter-spacing: -.04em;
}

.contact-copy > span {
    display: block;
    max-width: 560px;
    margin: 15px 0 22px;
    color: rgba(255,255,255,.8);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--green-deep);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lead-form {
    display: grid;
    gap: 12px;
}

.lead-form h3 {
    width: max-content;
    margin: 0 0 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-size: .7125rem;
    font-weight: 400;
    text-transform: uppercase;
}

.lead-form input,
.lead-form select {
    width: 100%;
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: rgba(52, 184, 171, .62);
    color: var(--white);
    font-size: .82rem;
}

.lead-form select option {
    color: var(--green-deep);
}

.lead-form input::placeholder {
    color: rgba(255,255,255,.62);
}

.lead-form input:focus,
.lead-form select:focus {
    box-shadow: 0 0 0 3px rgba(132,243,223,.28);
}

.lead-form button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: .83rem;
    font-weight: 800;
    text-transform: uppercase;
}

.form-message {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .78rem;
}

.form-message.success {
    background: rgba(132,243,223,.16);
    color: var(--mint);
}

.form-message.error {
    background: rgba(239,18,48,.16);
    color: #ffd8de;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* Footer */
.site-footer {
    padding: 60px 0 24px;
    background: var(--green);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr .9fr 1.1fr;
    gap: 65px;
}

.footer-brand img {
    width: 270px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-top: 4px;
    color: var(--mint);
    font-size: .63rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-grid h3 {
    margin: 0 0 10px;
    font-size: 0.75rem;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid p,
.footer-grid p a {
    display: block;
    margin: 0 0 9px;
    color: rgba(255,255,255,.83);
    font-size: .88rem;
}

.follow-title {
    margin-top: 22px !important;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: grid !important;
    place-items: center;
    width: 31px;
    height: 31px;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--white);
    color: var(--green) !important;
    font-size: .72rem !important;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.55);
    font-size: .7rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1180px) {
    .header-shell {
        grid-template-columns: 180px 1fr 190px;
        padding-inline: 24px;
    }

    .brand img {
        width: 176px;
    }

    .primary-nav {
        gap: 28px;
    }

    .hero-copy {
        width: 60vw;
    }

    .about-grid {
        grid-template-columns: 1.1fr .85fr;
    }

    .about-stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
    }

    .city-info {
        right: -3%;
    }

    .portfolio-grid {
        gap: 42px;
    }

    .project-thumbs {
        max-width: 48vw;
    }
}

@media (max-width: 980px) {
    .section {
        padding: 84px 0;
    }

    .site-header {
        padding: 0;
    }

    .header-shell {
        grid-template-columns: 1fr auto;
        min-height: 76px;
        padding-inline: 20px;
    }

    .brand img {
        width: 185px;
    }

    .nav-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

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

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

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

    .primary-nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        width: min(360px, 88vw);
        padding: 38px 30px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
        background: rgba(4, 68, 62, .98);
        box-shadow: -20px 0 45px rgba(0,0,0,.24);
        transform: translateX(105%);
        transition: transform .3s ease;
    }

    .nav-open .primary-nav {
        transform: translateX(0);
    }

    .primary-nav a {
        font-size: 1rem;
    }

    .header-search {
        position: fixed;
        right: 20px;
        bottom: 22px;
        z-index: 2;
        width: min(320px, calc(88vw - 40px));
        transform: translateX(120vw);
        transition: transform .3s ease .05s;
    }

    .nav-open .header-search {
        transform: translateX(0);
    }

    .hero-copy {
        right: 0;
        bottom: 28%;
        width: 74vw;
    }

    .hero-facts {
        bottom: 18%;
    }

    .hero-track {
        overflow-x: auto;
        grid-template-columns: repeat(4, minmax(190px, 1fr));
        scrollbar-width: none;
    }

    .about-grid,
    .portfolio-grid,
    .purpose-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 55px;
    }

    .about-visual {
        max-width: 650px;
        margin-inline: auto;
    }

    .journey-layout {
        grid-template-columns: 1fr;
    }

    .journey-heading br {
        display: none;
    }

    .city-layout {
        grid-template-columns: 1fr;
    }

    .city-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .city-stage {
        width: 92%;
    }

    .city-info {
        right: -8%;
        width: 45%;
    }

    .portfolio-grid {
        gap: 68px;
    }

    .project-feature {
        max-width: 660px;
        margin-inline: auto;
    }

    .project-thumbs {
        max-width: none;
        grid-auto-columns: 230px;
    }

    .purpose-grid {
        gap: 90px;
    }

    .purpose-visual {
        max-width: 720px;
    }

    .trust-card {
        right: 3%;
    }

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

    .why-grid article:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,.25);
    }

    .why-grid article:nth-child(2n) {
        border-right: 0;
    }

    .why-grid article:nth-last-child(-n + 3) {
        border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .why-grid article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .steps-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-panel {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .container,
    .container-wide {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 8.25vw, 2.7rem);
    }

    .hero {
        min-height: 860px;
    }

    .hero-inner {
        min-height: 860px;
    }

    .hero-copy {
        right: 0;
        bottom: 33%;
        width: 100%;
        text-align: left;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 11.25vw, 3.75rem);
    }

    .hero-copy > p:not(.eyebrow) {
        margin-left: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-facts {
        bottom: 22%;
        gap: 8px 11px;
        font-size: .72rem;
    }

    .hero-facts i {
        height: 18px;
    }

    .hero-track {
        bottom: 3%;
    }

    .hero-track-item {
        min-height: 56px;
        padding-top: 13px;
        font-size: .75rem;
    }

    .about-copy p:not(.eyebrow) {
        text-align: left;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .journey-layout {
        gap: 36px;
    }

    .journey-card {
        flex-basis: 80vw;
    }

    .cities-block {
        margin-top: 90px;
    }

    .city-tabs {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .city-tab {
        flex: 0 0 auto;
        min-width: 105px;
    }

    .city-stage {
        width: 100%;
        padding-bottom: 195px;
    }

    .city-stage > img {
        aspect-ratio: 1.35;
        border-radius: 20px;
    }

    .city-info {
        right: 12px;
        bottom: 0;
        left: 12px;
        width: auto;
        padding: 24px;
    }

    .project-feature,
    .project-feature > img {
        min-height: 520px;
        height: 520px;
    }

    .project-feature-card {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 22px;
    }

    .project-feature-card > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-feature-card > div > span {
        min-width: 130px;
    }

    .filter-pills {
        gap: 12px;
    }

    .project-thumbs {
        grid-auto-columns: 74vw;
    }

    .carousel-progress {
        width: 100%;
    }

    .table-shell {
        margin-top: 70px;
        padding: 12px;
        border-radius: 18px;
    }

    .purpose-grid {
        gap: 80px;
    }

    .purpose-visual > img {
        aspect-ratio: 1.1;
    }

    .trust-card {
        right: 10px;
        bottom: -48px;
        min-width: 0;
        left: 10px;
    }

    .why-section {
        padding-top: 64px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        border-radius: 18px 18px 0 0;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .steps-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step-card {
        min-height: 120px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 54px;
        margin-top: 55px;
    }

    .testimonial-card {
        padding-left: 28px;
    }

    .contact-section {
        padding-top: 74px;
        background: linear-gradient(var(--aqua) 0 12%, var(--green) 12% 100%);
    }

    .contact-panel {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .contact-copy > p {
        font-size: 1.25rem;
    }

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

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 470px) {
    .brand img {
        width: 160px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        max-width: 330px;
    }

    .about-section {
        min-height: 0;
    }

    .project-feature-card h3 small {
        display: block;
        margin-top: 4px;
    }

    .trust-card {
        gap: 12px;
        padding: 18px;
    }

    .trust-card strong {
        font-size: 2rem;
    }

    .trust-card span {
        font-size: .92rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-video {
        display: none;
    }

    .hero {
        background: url("../images/hero-poster.webp") center / cover no-repeat;
    }
}

/* =========================================================
   FIGMA REFERENCE MATCH — FINAL OVERRIDES
   These rules align the desktop layout with the supplied
   Mahidhara homepage frames while preserving responsiveness.
   ========================================================= */

:root {
    --aqua: #ffffff;
    --green: #085A53;
    --green-dark: #085A53;
    --ink: #085A53;
    --red: #DD071E;
    --container: 1280px;
    --container-wide: 1220px;
}
body {
    font-weight: 300;
}

/* Header: left links, centered logo, right links and search */
.site-header {
    top: 0;
    padding-top: 0;
    background: transparent;
}

.site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.header-shell {
    position: relative;
    display: block;
    min-height: 94px;
    padding: 0;
    background: linear-gradient(90deg, rgba(139, 190, 231, .68), rgba(42, 78, 136, .45));
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(31, 64, 105, .05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.site-header.is-scrolled .header-shell {
    background: linear-gradient(90deg, rgba(49, 103, 144, .90), rgba(20, 67, 105, .84));
    box-shadow: 0 12px 34px rgba(4, 31, 51, .18);
}

.brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 205px;
    transform: translate(-50%, -50%);
}

.brand img {
    width: 100%;
}

.primary-nav {
    position: absolute;
    inset: 0;
    display: block;
}

.nav-cluster {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 66px;
    height: 94px;
}

.nav-left {
    left: 64px;
}

.nav-right {
    right: 323px;
    gap: 62px;
}

.primary-nav a {
    font-size: .76rem;
    font-weight: 400;
}

.header-search {
    position: absolute;
    top: 50%;
    right: 66px;
    z-index: 3;
    width: 194px;
    transform: translateY(-50%);
}

.header-search input {
    height: 34px;
    padding: 0 42px 0 17px;
    font-size: .67rem;
}

.header-search button {
    right: 5px;
    width: 30px;
    height: 30px;
}

.header-search button span,
.header-search button span::after {
    position: absolute;
    display: block;
    content: "";
}

.header-search button span {
    top: 8px;
    left: 8px;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
}

.header-search button span::after {
    right: -5px;
    bottom: -4px;
    width: 6px;
    height: 2px;
    border-radius: 99px;
    background: rgba(255,255,255,.7);
    transform: rotate(45deg);
}

/* Hero */
.hero,
.hero-inner {
    min-height: max(744px, 100svh);
}

.hero-copy {
    right: 0;
    bottom: 27.5%;
    width: min(560px, 46vw);
}

.hero-copy h1 {
    font-size: clamp(2.55rem, 3.8625vw, 3.75rem);
    line-height: .94;
    letter-spacing: -.055em;
}

.hero-actions {
    margin-top: 28px;
    gap: 18px;
}

.hero-actions .button {
    min-height: 37px;
    padding: 9px 16px;
    border-radius: 5px;
    font-size: .72rem;
}

.hero-facts {
    bottom: 19.8%;
    gap: 13px;
    font-size: clamp(.86rem, 1.45vw, 1.18rem);
}

.hero-facts i {
    height: 25px;
}

.hero-track {
    right: 5.2%;
    bottom: 4.5%;
    left: 5.2%;
}

.hero-track-item {
    min-height: 50px;
    padding: 12px 10px 0;
    font-size: clamp(.74rem, 1.22vw, 1.02rem);
}

/* About frame */
.about-section {
    min-height: 760px;
    padding: 160px 0 112px;
}

.about-grid {
    grid-template-columns: 1.3fr .9fr .42fr;
    gap: 76px;
}

.about-copy .section-title {
    font-size: clamp(1.6125rem, 2.2875vw, 1.5rem);
    line-height: 1.18;
    letter-spacing: -.035em;
}

.about-copy p:not(.eyebrow) {
    max-width: 500px;
    margin: 31px 0 27px;
    font-size: .91rem;
    line-height: 1.55;
}

.about-copy h3 {
    font-size: 0.96rem;
    line-height: 1.45;
}

.about-copy h3 strong {
    font-weight: 400;
}

.about-visual img {
    aspect-ratio: .86;
    border-radius: 25px;
}

.about-stats {
    align-self: stretch;
    align-content: center;
    gap: 48px;
}

.about-stats strong {
    display: none;
}

.about-stats small {
    font-size: .82rem;
    white-space: nowrap;
}

.line-icon {
    width: 72px;
    height: 52px;
    margin-bottom: 8px;
}

/*.wave-bg::after {*/
/*    height: 220px;*/
/*}*/

/* Journey and cities */
.discovery-section {
    padding-top: 96px;
    padding-bottom: 118px;
}

/*.discovery-section::before {*/
/*    height: 170px;*/
/*    opacity: .6;*/
/*}*/

.journey-layout {
    grid-template-columns: 282px minmax(0, 1fr);
    gap: 60px;
}

.journey-heading .eyebrow {
    margin-bottom: 16px;
    font-size: .3975rem;
}

.journey-heading .section-title {
    font-size: clamp(2.025rem, 3.3375vw, 2.175rem);
    line-height: 1.17;
    font-weight:500;
}

.journey-scroller {
    margin-top: 3px;
}

.journey-rail {
    gap: 25px;
    padding-bottom: 12px;
    padding-top:10px;
}

.journey-card {
    flex: 0 0 203px;
    min-height: 180px;
    padding: 30px 15px 19px;
    border-radius: 14px;
}

.journey-card:hover,
.journey-card:focus,
.journey-card.is-active {
    transform: translateY(-2px);
}

.journey-card h3 {
    font-size: .6975rem;
    line-height: 1.2;
}

.journey-card p {
    min-height: 54px;
    margin: 18px 0 10px;
    font-size: .88rem;
    line-height: 1.35;
}

.journey-card a {
    padding-top: 10px;
    font-size: .71rem;
}

.cities-block {
    margin-top: 151px;
}

.cities-title .eyebrow {
    margin-bottom: 13px;
    font-size: .3975rem;
}

.cities-title .section-title {
    font-size: clamp(2.0625rem, 3.15vw, 2.5875rem);
    font-weight:500;
}

.city-layout {
    grid-template-columns: 92px 1fr;
    gap: 36px;
    margin-top: 24px;
}

.city-tabs {
    gap: 24px;
}

.city-tab {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    font-size: .99rem !important;
}

.city-tab span {
    font-size: .64rem;
}

.city-stage {
    width: min(130%, 970px);
}

.city-stage > img {
    aspect-ratio: 2.18;
    border-radius: 22px;
}

.city-info {
    right: -28%;
    bottom: 17%;
    width: 280px;
    padding: 29px 30px 25px;
    border-radius: 22px;
}

.city-info > span {
    font-size: .82rem;
}

.city-info h3 {
    font-size: 0.795rem;
}

.city-info p {
    margin: 2px 0 24px;
    font-size: .65rem;
    line-height: 1.35;
}

.city-info a {
    font-size: .98rem;
}

/* Featured projects */
.portfolio-section {
    padding: 60px 0 88px;
}

.portfolio-grid {
    grid-template-columns: 462px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.project-feature,
.project-feature > img {
    min-height: 635px;
    height: 635px;
}

.project-feature-card {
    right: 7%;
    bottom: 34px;
    left: 7%;
    padding: 27px 24px;
}

.project-feature-card h3 {
    font-size: 0.75rem;
}

.project-feature-card > p:nth-of-type(1),
.project-feature-card > p:nth-of-type(2) {
    font-size: .86rem;
}

.portfolio-content {
    padding-top: 10px;
}

.portfolio-content .eyebrow {
    display: none;
}

.portfolio-content .section-title {
    font-size: clamp(1.8rem, 2.625vw, 2.4rem);
    line-height: 1.15;
    font-weight:500;
}

.portfolio-content > p:not(.eyebrow) {
    margin: 17px 0 28px;
    font-size: .91rem;
}

.filter-pills {
    gap: 17px 44px;
    margin-bottom: 86px;
}

.filter-pills button {
        min-width: 96px;
    padding: 7px 12px;
    font-size: .82rem;
}

.project-thumbs {
    grid-auto-columns: 270px;
    gap: 36px;
    max-width: calc(100vw - 690px);
}

.project-thumb {
    height: 226px;
    border-radius: 23px;
}

.carousel-progress {
    width: 72%;
    margin-top: 82px;
}

.project-thumb[hidden] {
    display: none;
}

/* Comparison table */
/*.compare-section {*/
/*    padding: 76px 0 56px;*/
/*}*/

.compare-section .eyebrow {
    margin-bottom: 14px;
    font-size: .54rem;
}

.compare-section .section-title {
    font-size: clamp(1.725rem, 2.5875vw, 2.4rem);
}

.compare-section .section-intro {
    margin-top: 7px;
    font-size: .91rem;
}

.skyline {
    top: 197px;
    height: 67%;
    background-size: cover;
}

.table-shell {
    margin-top: 100px;
    padding: 26px 25px;
    border-radius: 29px;
}

th,
td {
    padding: 14px 12px;
    font-size: .86rem;
}

th {
    font-size:   1rem;
}

/* Purpose + why */
.purpose-section {
    padding-top: 83px;
}

.purpose-grid {
    grid-template-columns: 428px 1fr;
    gap: 94px;
}

.purpose-visual > img {
    aspect-ratio: 1.5;
    border-radius: 19px;
}

.trust-card {
    right: -16%;
    bottom: -50px;
    min-width: 290px;
    padding: 20px 20px;
    border-radius: 21px;
}

.trust-card strong {
    font-size: 2.55rem;
}

.trust-card span {
    font-size: 1.13rem;
}

.purpose-copy .eyebrow {
    margin-bottom: 9px;
    font-size: .7rem;
}

.purpose-copy .section-title {
    font-size: clamp(1.6875rem, 2.4375vw, 2.25rem);
}

.purpose-copy p:not(.eyebrow) {
    margin-top: 13px;
    font-size: .91rem;
    line-height: 1.45;
}

.why-section {
    margin-top: 53px;
    padding-top: 38px;
}

.why-section .section-title {
    font-size: clamp(1.65rem, 2.475vw, 2.25rem);
    line-height: 1.45;
}

.why-grid {
    margin-top: 18px;
    border-radius: 24px 24px 0 0;
}

.why-grid article {
    min-height: 148px;
    padding: 23px 30px;
}

.why-grid article > span {
    font-size: 1.15rem;
}

.why-grid h3 {
    font-size: 0.78rem;
}

.why-grid p {
    font-size: .71rem;
    line-height: 1.35;
}

/* Buyer journey */
.buyer-journey-section {
    padding: 36px 0 66px;
}

.buyer-journey-section .eyebrow {
    margin-bottom: 9px;
    font-size: .5rem;
}

.buyer-journey-section .section-title {
    font-size: clamp(1.7625rem, 2.7vw, 2.4375rem);
}

.steps-row {
    gap: 28px;
    max-width: 950px;
    margin-top: 27px;
}

.step-card {
    min-height: 160px;
    padding: 40px 14px;
    border-radius: 15px;
}

.step-card strong {
    font-size: 1.75rem;
}

.step-card p {
    margin-top: 13px;
    font-size: .81rem;
}

.buyer-journey-section .button.centered {
    min-width: 290px;
    min-height: 29px;
    margin-top: 31px;
    padding: 6px 18px;
    font-size: .72rem;
}

/* Testimonials */
.testimonials-section {
    padding: 36px 0 80px;
}

.testimonials-section .eyebrow {
    margin-bottom: 8px;
    font-size: .5rem;
}

.testimonials-section .section-title {
    font-size: clamp(1.9125rem, 3vw, 2.775rem);
}

.testimonials-grid {
    gap: 68px 100px;
    margin-top: 84px;
}

.testimonial-card {
    padding-left: 50px;
}

.testimonial-person img {
    width: 53px;
    height: 53px;
    filter: grayscale(1);
}

.testimonial-person h3 {
    font-size: .6225rem;
}

.testimonial-person p,
.testimonial-card blockquote {
    font-size: .92rem;
}

.testimonial-card blockquote {
    margin-top: 24px;
    line-height: 1.45;
}

.stars {
    font-size: 1.1rem;
}

/* Contact and footer */
.contact-section {
    padding-top: 66px;
    background: linear-gradient(var(--aqua) 0 21%, var(--green) 21% 100%);
}

.contact-panel {
    grid-template-columns: 1.05fr .95fr;
    gap: 85px;
    padding: 51px 100px;
    border-radius: 24px;
}

.contact-copy > p {
    font-size: 1.72rem;
}

.contact-copy h2 {
    font-size: clamp(1.875rem, 2.7375vw, 2.625rem);
}

.contact-copy > span {
    margin: 13px 0 57px;
    font-size: .82rem;
}

.whatsapp-button,
.lead-form input,
.lead-form select,
.lead-form button {
    height: 27px;
    min-height: 43px;
    font-size: .9rem;
}

.lead-form {
    gap: 12px;
}

.lead-form h3 {
    font-size: .585rem;
}

.site-footer {
    padding-top: 48px;
}

.footer-grid {
    gap: 58px;
}

.footer-brand img {
    width: 245px;
}

 /*Desktop frame adjustments */
/*@media (min-width: 1181px) {*/
/*    .about-grid,*/
/*    .portfolio-grid,*/
/*    .purpose-grid {*/
/*        width: 80% !important;*/
/*    }*/
/*}*/

@media (max-width: 1180px) {
    .nav-left {
        left: 34px;
        gap: 38px;
    }

    .nav-right {
        right: 258px;
        gap: 35px;
    }

    .header-search {
        right: 30px;
        width: 180px;
    }

    .brand {
        width: 185px;
    }

    .city-info {
        right: -18%;
    }

    .portfolio-grid {
        grid-template-columns: 420px minmax(0, 1fr);
        gap: 55px;
    }
}

@media (max-width: 980px) {
    .header-shell {
        min-height: 76px;
        padding: 0 18px;
    }

    .brand {
        position: static;
        display: block;
        width: 185px;
        transform: none;
    }

    .nav-toggle {
        position: absolute;
        top: 16px;
        right: 14px;
        z-index: 10;
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 8;
        display: flex;
        width: min(360px, 88vw);
        padding: 35px 28px 120px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        background: rgba(4, 68, 62, .98);
        box-shadow: -20px 0 45px rgba(0,0,0,.24);
        transform: translateX(105%);
        transition: transform .3s ease;
    }

    .nav-open .primary-nav {
        transform: translateX(0);
    }

    .nav-cluster {
        position: static;
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .nav-right {
        margin-top: 22px;
    }

    .primary-nav a {
        font-size: 1rem;
    }

    .header-search {
        position: fixed;
        top: auto;
        right: 20px;
        bottom: 22px;
        z-index: 12;
        width: min(320px, calc(88vw - 40px));
        transform: translateX(120vw);
        transition: transform .3s ease .05s;
    }

    .nav-open .header-search {
        transform: translateX(0);
    }

    .hero-copy {
        right: 0;
        width: 70vw;
    }

    .about-grid,
    .portfolio-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-layout {
        grid-template-columns: 1fr;
    }

    .journey-card {
        flex-basis: 210px;
        min-height: 195px;
    }

    .city-layout {
        grid-template-columns: 1fr;
    }

    .city-stage {
        width: 90%;
    }

    .city-info {
        right: -8%;
    }

    .project-feature {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .project-thumbs {
        max-width: 100%;
    }

    .purpose-grid {
        gap: 80px;
    }
}

@media (max-width: 720px) {
    .hero,
    .hero-inner {
        min-height: 820px;
    }

    .hero-copy {
        bottom: 54%;
        width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.525rem);
    }

    .hero-track {
        right: 0;
        left: 0;
    }

    .about-section {
        padding-top: 105px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .journey-card {
        flex-basis: 78vw;
        min-height: 190px;
    }

    .city-stage {
        width: 100%;
    }

    .city-info {
        right: 12px;
    }

    .project-feature,
    .project-feature > img {
        min-height: 510px;
        height: 510px;
    }

    .project-thumbs {
        grid-auto-columns: 75vw;
    }

    .contact-panel {
        padding: 34px 22px;
    }

    .whatsapp-button,
    .lead-form input,
    .lead-form select,
    .lead-form button {
        height: 25px;
    min-height: 41px;
    font-size: .89rem;
    }
}

/* =========================================================
   HERO CENTERED MODEL
   Matches the second supplied reference image.
   ========================================================= */

.hero-shade {
    background:
        linear-gradient(
            180deg,
            rgba(5, 20, 29, .12) 0%,
            rgba(5, 24, 29, .08) 45%,
            rgba(3, 28, 27, .42) 100%
        ),
        linear-gradient(
            90deg,
            rgba(4, 24, 30, .12) 0%,
            transparent 48%,
            rgba(4, 21, 27, .10) 100%
        );
}

.hero-copy {
    top: 54%;
    right: auto;
    bottom: auto;
    left: 40%;
    width: min(860px, calc(100% - 40px));
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 4.575vw, 4.7625rem);
    line-height: .91;
    font-weight: 200;
    letter-spacing: -.06em;
    text-align: center;
    text-wrap: balance;
}

.hero-copy h1 strong {
    font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 20px auto 0;
    text-align: center;
}

.hero-actions {
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.hero-actions .button {
    min-height: 39px;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: .76rem;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .hero-copy {
        top: 46%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: min(820px, calc(100% - 36px));
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .hero-copy h1 {
        font-size: clamp(2.775rem, 6vw, 4.125rem);
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .hero-copy {
        top: 43%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: calc(100% - 28px);
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .hero-copy h1 {
        font-size: clamp(2.325rem, 8.25vw, 3.525rem);
        line-height: .92;
        letter-spacing: -.055em;
    }

    .hero-copy > p:not(.eyebrow) {
        margin-inline: auto;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }

    .hero-actions .button {
        min-height: 38px;
        padding: 10px 14px;
        font-size: .68rem;
    }
}

@media (max-width: 560px) {
    .hero-copy {
        top: 42%;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .hero-actions {
        align-items: center;
        flex-direction: column;
    }

    .hero-actions .button {
        width: min(100%, 290px);
    }
}

@media (max-width: 380px) {
    .hero-copy h1 {
        font-size: 1.9125rem;
    }

    .hero-actions .button {
        font-size: .64rem;
    }
}

/* =========================================================
   FINAL ABOUT + CITY SECTION FIX
   Keep this block at the end of the stylesheet.
   ========================================================= */

/* ABOUT SECTION */
.about-section {
    min-height: 0;
    padding: 104px 0 108px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 370px) minmax(150px, .46fr);
    align-items: center;
    gap: 62px;
    padding-bottom:9%;
}

.about-copy {
    align-self: center;
    min-width: 0;
}

.about-copy .section-title {
    font-size: clamp(2.1rem, 3vw, 2.25rem);
    line-height: 1.14;
    letter-spacing: -.04em;
    font-weight: 500;
}

.about-copy p:not(.eyebrow) {
    max-width: 500px;
    margin: 28px 0 26px;
    font-size: .91rem;
    line-height: 1.55;
    text-align: justify;
}

.about-copy h3 {
    max-width: 510px;
    font-size: 0.915rem;
    line-height: 1.45;
}

.about-visual {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
}

.about-visual img {
    display: block;
    width: 100%;
    height: 425px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-stats {
    align-self: center;
    display: grid;
    gap: 50px;
}

.about-stats article {
    min-width: 145px;
    text-align: center;
}

.about-stats small {
    font-size: 1rem;
    white-space: nowrap;
}

/*.wave-bg::after {*/
/*    height: 165px;*/
/*}*/

/* CITIES SECTION */
.cities-block {
    margin-top: 125px;
}

.cities-title {
    margin-bottom: 24px;
}

.cities-title .section-title {
    font-size: clamp(2.1rem, 3.1125vw, 2.6625rem);
    line-height: 1.08;
}

.city-layout {
    display: grid;
    grid-template-columns: 96px minmax(0, 760px);
    align-items: center;
    gap: 150px;
    margin-top: 0;
}

.city-tabs {
    display: grid;
    gap: 24px;
}

.city-stage {
    position: relative;
    width: 106%;
    max-width: 870px;
}

.city-stage > img {
    display: block;
    width: 100%;
    height: 430px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.city-info {
    right: -26%;
    bottom: 16%;
    width: 290px;
    padding: 30px 30px 26px;
    border-radius: 22px;
}

.city-info > span {
    font-size: .82rem;
}

.city-info h3 {
    font-size: 0.81rem;
}

.city-info p {
    margin: 3px 0 24px;
    font-size: 1rem;
    line-height: 1.4;
}

.city-info a {
    font-size: .88rem;
}

@media (max-width: 1180px) {
    .about-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 350px) minmax(135px, .42fr);
        gap: 38px;
    }

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

    .about-visual img {
        height: 410px;
    }

    .city-layout {
        grid-template-columns: 90px minmax(0, 720px);
        gap: 30px;
    }

    .city-stage {
        max-width: 720px;
    }

    .city-stage > img {
        height: 310px;
    }

    .city-info {
        right: -21%;
        width: 270px;
    }
}

@media (max-width: 980px) {
    .about-section {
        padding: 88px 0 92px;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
        gap: 46px;
    }

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

    .about-visual img {
        height: 415px;
    }

    .about-stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 8px;
    }

    .about-stats article {
        min-width: 0;
    }

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

    .city-tabs {
        display: flex;
        gap: 28px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .city-tabs::-webkit-scrollbar {
        display: none;
    }

    .city-stage {
        width: calc(100% - 50px);
        max-width: none;
    }

    .city-stage > img {
        height: 350px;
    }

    .city-info {
        right: -50px;
        bottom: 14%;
        width: 285px;
    }
}

@media (max-width: 720px) {
    .about-section {
        padding: 72px 0 78px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-copy p:not(.eyebrow) {
        text-align: left;
    }

    .about-visual {
        width: min(100%, 390px);
        max-width: none;
    }

    .about-visual img {
        height: 430px;
        border-radius: 24px;
    }

    .about-stats {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cities-block {
        margin-top: 90px;
    }

    .cities-title {
        margin: 22px;
    }

    .city-stage {
        width: 100%;
        padding-bottom: 0;
    }

    .city-stage > img {
        height: 245px;
        border-radius: 20px;
    }

    .city-info {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: calc(100% - 24px);
        margin: -48px auto 0;
        padding: 24px;
    }
}

@media (max-width: 470px) {
    .about-visual img {
        height: 390px;
    }

    .city-stage > img {
        height: 220px;
    }

    .city-info {
        width: calc(100% - 18px);
        margin-top: -38px;
    }
}

/* =========================================================
   FINAL PURPOSE + WHY SECTION MATCH
   Matches the supplied first reference image.
   Keep this block at the END of the stylesheet.
   ========================================================= */

.purpose-section,
.why-section {
    scroll-margin-top: 94px;
}

/* ---------- PURPOSE SECTION ---------- */
.purpose-section {
    position: relative;
    z-index: 2;
    padding: 82px 0 0;
    background: var(--white);
    overflow: visible;
}

.purpose-section::before {
    top: 0;
    bottom: auto;
    height: 230px;
    opacity: .42;
    transform: rotate(180deg);
}

.purpose-section .purpose-grid {
    width: min(calc(100% - 40px), 970px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 428px minmax(0, 1fr);
    align-items: center;
    gap: 92px;
}

.purpose-visual {
    position: relative;
    z-index: 2;
    width: 100%;
}

.purpose-visual > img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 19px;
}

.trust-card {
   position: absolute;
    right: -68px;
    bottom: -105px;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 17px;

    width: 290px;
    min-width: 0;
    min-height: 126px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 22px;

    /* Actual transparent glass background */
    background: rgba(255, 255, 255, 0.18);

    -webkit-backdrop-filter: blur(20px) saturate(170%);
    backdrop-filter: blur(20px) saturate(170%);

    box-shadow:
        0 20px 46px rgba(6, 82, 76, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(255, 255, 255, 0.12)
}

.trust-card strong {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.045em;
}

.trust-card span {
    color: var(--ink);
    font-size: 1.13rem;
    font-weight: 300;
    line-height: 1.34;
}

.purpose-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    min-width: 0;
}

.purpose-copy .eyebrow {
    margin: 0 0 8px;
    padding-bottom: 3px;
    color: var(--red);
    font-size: .5rem !important;
    font-weight: 500;
}

.purpose-copy .section-title {
max-width: 680px;
    margin: 0;
    font-size: clamp(1.7625rem, 2.1vw, 2.25rem);
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -.045em;
}

.purpose-copy p:not(.eyebrow) {
    max-width: 480px;
    margin: 12px 0 0;
    color: #4f5f5d;
    font-size: .9rem;
    line-height: 1.48;
}

/* ---------- WHY SECTION ---------- */
.why-section {
    position: relative;
    z-index: 1;
    min-height: 438px;
    margin-top: 40px;
    padding: 38px 0 0;
    background: var(--green);
    color: var(--white);
    overflow: visible;
}

.why-section > .container {
    width: min(calc(100% - 40px), 970px);
    margin-inline: auto;
}

.why-section .section-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.6875rem, 2.5125vw, 2.25rem);
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: -.04em;
}

.why-section .section-title span {
    color: var(--mint);
}

.why-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 18px 0 -27px;
    border: 1px solid rgba(132, 243, 223, .34);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(132, 243, 223, .07),
            rgba(255, 255, 255, .075)
        );
    box-shadow:
        0 18px 38px rgba(1, 49, 45, .12),
        inset 0 0 34px rgba(255, 255, 255, .025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.why-grid article {
    min-width: 0;
    min-height: 148px;
    padding: 23px 30px;
    border-right: 1px solid rgba(255, 255, 255, .27);
    border-bottom: 1px solid rgba(255, 255, 255, .27);
}

.why-grid article:nth-child(3n) {
    border-right: 0;
}

.why-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.why-grid article > span {
    display: block;
    color: rgba(132, 243, 223, .72);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1;
}

.why-grid h3 {
    margin: 5px 0 12px;
    color: var(--mint);
    font-size: 0.7875rem;
    font-weight: 400;
    line-height: 1.22;
}

.why-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .71rem;
    font-weight: 300;
    line-height: 1.38;
}

.buyer-journey-section {
    padding-top: 82px;
}

/* ---------- MEDIUM DESKTOP ---------- */
@media (max-width: 1180px) {
    .purpose-section .purpose-grid {
        grid-template-columns: 400px minmax(0, 1fr);
        gap: 72px;
    }

    .purpose-visual > img {
        height: 228px;
    }

    .trust-card {
        right: -48px;
        width: 275px;
    }
}

/* ---------- TABLET ---------- */
@media (max-width: 980px) {
    .purpose-section {
        padding-top: 76px;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 36px), 760px);
        grid-template-columns: 1fr;
        gap: 78px;
    }

    .purpose-visual {
        width: min(100%, 620px);
    }

    .purpose-visual > img {
        height: 340px;
    }

    .trust-card {
        right: 22px;
        bottom: -50px;
    }

    .purpose-copy {
        max-width: 650px;
    }

    .why-section {
        margin-top: 52px;
        padding-top: 46px;
    }

    .why-section > .container {
        width: min(calc(100% - 36px), 760px);
    }

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

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-last-child(-n + 3) {
        border-right: 1px solid rgba(255, 255, 255, .27);
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:nth-child(2n) {
        border-right: 0;
    }

    .why-grid article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 720px) {
    .purpose-section {
        padding: 66px 0 0;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 28px), 560px);
        gap: 74px;
    }

    .purpose-visual {
        width: 100%;
    }

    .purpose-visual > img {
        height: 100% !important;
        border-radius: 18px;
    }

    .trust-card {
        right: 12px;
        bottom: -48px;
        left: 12px;
        width: auto;
        min-height: 108px;
        padding: 18px 20px;
    }

    .trust-card strong {
        font-size: 2.25rem;
    }

    .trust-card span {
        font-size: .98rem;
    }

    .purpose-copy .section-title {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
    }

    .purpose-copy p:not(.eyebrow) {
        font-size: .87rem;
    }

    .why-section {
        min-height: 0;
        margin-top: 48px;
        padding: 44px 0 0;
    }

    .why-section > .container {
        width: min(calc(100% - 28px), 560px);
    }

    .why-section .section-title {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1.28;
    }

    .why-grid {
        grid-template-columns: 1fr;
        margin-bottom: -24px;
        border-radius: 18px;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        min-height: 130px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .buyer-journey-section {
        padding-top: 70px;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 470px) {
    .purpose-visual > img {
        height: 255px;
    }

    .trust-card {
        gap: 12px;
        padding: 16px;
    }

    .trust-card strong {
        font-size: 2rem;
    }

    .trust-card span {
        font-size: .9rem;
    }

    .why-grid article {
        padding: 22px 24px;
    }
}

/* =========================================================
   FINAL GLASSMORPHISM HEADER
   Normal state + compact sticky state.
   Keep this block at the END of the stylesheet.
   ========================================================= */

:root {
   --header-normal-height: 122px;
    --header-sticky-height: 110px;
    --header-max-width: 1264px;
}

/* Header wrapper */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5000;
    width: 100%;
    /*padding: 0 16px;*/
    background: transparent;
    box-shadow: none;
    transform: translateZ(0);
    transition:
        top .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

/* Normal glass state */
.site-header .header-shell {
    position: relative;
    width: min(100%, var(--header-max-width));
    min-height: var(--header-normal-height);
    margin-inline: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(
            110deg,
            rgba(123, 175, 224, .46),
            rgba(44, 91, 146, .33)
        );
    box-shadow:
        0 18px 48px rgba(8, 43, 77, .14),
        inset 0 1px 0 rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    overflow: visible;
    transition:
        width .3s ease,
        min-height .3s ease,
        border-radius .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        backdrop-filter .3s ease;
}

/* Sticky glass state */
.site-header.is-scrolled {
    /*top: 10px;*/
    /*padding-inline: 18px;*/
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
    width: min(100%, 95%);
    min-height: var(--header-sticky-height);
    border: 1px solid rgba(255, 255, 255, .22);
    /*border-radius: 18px;*/
    background:
        linear-gradient(
            115deg,
            rgba(8, 90, 83, .78),
            rgba(25, 76, 109, .72)
        );
    box-shadow:
        0 18px 48px rgba(2, 42, 52, .24),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

/* Brand */
.site-header .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 205px;
    transform: translate(-50%, -50%);
    transition: width .3s ease;
}

.site-header .brand img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand {
    width: 180px;
}

/* Desktop navigation */
.site-header .primary-nav {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    pointer-events: none;
}

.site-header .nav-cluster {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 37px;
    height: var(--header-normal-height);
    transition: height .3s ease, gap .3s ease;
    pointer-events: auto;
}

.site-header .nav-left {
    left: 64px;
}

.site-header .nav-right {
    right: 280px;
}

.site-header.is-scrolled .nav-cluster {
    height: var(--header-sticky-height);
    gap: 30px;
}

.site-header .primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: rgba(255, 255, 255, .92);
    font-size: .96rem;
    font-weight: 400;
    white-space: nowrap;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .14);
    transition: color .25s ease, opacity .25s ease;
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a:focus-visible {
    color: #ffffff;
}

.site-header .primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .92);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.site-header .primary-nav a:hover::after,
.site-header .primary-nav a:focus-visible::after,
.site-header .primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Search */
.site-header .header-search {
    position: absolute;
    top: 50%;
    right: 66px;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 194px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        right .3s ease,
        width .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.site-header.is-scrolled .header-search {
    right: 50px;
    width: 185px;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .055);
}

.site-header .header-search input {
    width: 100%;
    height: 34px;
    padding: 0 42px 0 17px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: .67rem;
}

.site-header .header-search input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.site-header .header-search button {
    position: absolute;
    right: 5px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
}

/* Prevent content jump because header stays fixed */
.hero,
main > :first-child {
    scroll-margin-top: calc(var(--header-normal-height) + 20px);
}

/* Medium desktop */
@media (max-width: 1180px) {
    .site-header .nav-left {
        left: 34px;
    }

    .site-header .nav-right {
        right: 260px;
    }

    .site-header .nav-cluster {
        gap: 38px;
    }

    .site-header.is-scrolled .nav-cluster {
        gap: 32px;
    }

    .site-header .header-search {
        right: 30px;
        width: 180px;
    }

    .site-header.is-scrolled .header-search {
        right: 28px;
        width: 170px;
    }

    .site-header .brand {
        width: 185px;
    }

    .site-header.is-scrolled .brand {
        width: 170px;
    }
}

/* Mobile and tablet */
@media (max-width: 980px) {
    .site-header {
        padding-inline: 10px;
    }

    .site-header.is-scrolled {
        top: 8px;
        padding-inline: 10px;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        width: 100%;
        min-height: 76px;
        padding: 0 18px;
        border-radius: 0 0 16px 16px;
    }

    .site-header.is-scrolled .header-shell {
        border-radius: 16px;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        position: static;
        display: block;
        width: 176px;
        transform: none;
    }

    .site-header .nav-toggle {
        position: absolute;
        top: 16px;
        right: 14px;
        z-index: 20;
        display: block;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, .06);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .site-header .nav-toggle span {
        display: block;
        height: 2px;
        margin: 5px 0;
        background: #ffffff;
        transition: transform .25s ease, opacity .25s ease;
    }

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

    .nav-open .site-header .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

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

    .site-header .primary-nav {
        position: fixed;
        top: 88px;
        right: 10px;
        bottom: 10px;
        left: auto;
        z-index: 15;
        display: flex;
        width: min(360px, calc(100vw - 20px));
        padding: 32px 28px 120px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 18px;
        background:
            linear-gradient(
                145deg,
                rgba(8, 90, 83, .88),
                rgba(25, 76, 109, .82)
            );
        box-shadow: -18px 18px 48px rgba(0, 0, 0, .26);
        backdrop-filter: blur(22px) saturate(150%);
        -webkit-backdrop-filter: blur(22px) saturate(150%);
        transform: translateX(calc(100% + 24px));
        transition: transform .3s ease;
        pointer-events: auto;
    }

    .nav-open .site-header .primary-nav {
        transform: translateX(0);
    }

    .site-header .nav-cluster,
    .site-header.is-scrolled .nav-cluster {
        position: static;
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .site-header .nav-right {
        margin-top: 20px;
    }

    .site-header .primary-nav a {
        width: 100%;
        min-height: 38px;
        font-size: 1rem;
    }

    .site-header .header-search,
    .site-header.is-scrolled .header-search {
        position: fixed;
        top: auto;
        right: 30px;
        bottom: 30px;
        z-index: 18;
        width: min(300px, calc(100vw - 60px));
        transform: translateX(calc(100vw + 40px));
        transition: transform .3s ease .05s;
    }

    .nav-open .site-header .header-search {
        transform: translateX(0);
    }
}

@media (max-width: 560px) {
    .site-header .brand,
    .site-header.is-scrolled .brand {
        width: 158px;
    }

    .site-header .primary-nav {
        top: 86px;
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header *,
    .site-header *::before,
    .site-header *::after {
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   FINAL PURPOSE + WHY LAYOUT
   Matches the supplied FIRST reference image.
   Keep this block at the very end of the stylesheet.
   ========================================================= */

/* Remove the aqua strip between the white and green areas. */
.purpose-section {
    position: relative;
    z-index: 2;
    padding: 82px 0 40px;
    background: var(--white);
    overflow: visible;
}

.purpose-section::before {
    top: 0;
    bottom: auto;
    height: 230px;
    opacity: .42;
    transform: rotate(180deg);
}

/*
   The reference uses roughly 70% of the viewport on wide screens.
   This prevents the section from becoming too narrow on large monitors.
*/
.purpose-section .purpose-grid {
    width: min(70vw, 1220px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 428px minmax(0, 1fr);
    align-items: center;
    gap: 92px;
}

.purpose-visual {
    position: relative;
    z-index: 2;
    width: 100%;
}

.purpose-visual > img {
    display: block;
    width: 100%;
    height: 238px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 19px;
}

.trust-card {
    position: absolute;
    right: -68px;
    bottom: -74px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 17px;
    width: 290px;
    min-width: 0;
    min-height: 126px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px;
    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, .98),
            rgba(217, 247, 244, .92)
        );
    box-shadow: 0 20px 46px rgba(6, 82, 76, .15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.trust-card strong {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.045em;
}

.trust-card span {
    color: var(--ink);
    font-size: 1.13rem;
    font-weight: 300;
    line-height: 1.34;
}

.purpose-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    min-width: 0;
}

.purpose-copy .eyebrow {
    margin: 0 0 8px;
    padding-bottom: 3px;
    color: var(--red);
    font-size: .7rem !important;
    font-weight: 500;
}

.purpose-copy .section-title {
    max-width: 680px;
    margin: 0;
    font-size: clamp(1.7625rem, 1.95vw, 2.25rem);
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -.045em;
}

.purpose-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 12px 0 0;
    color: #4f5f5d;
    font-size: .9rem;
    line-height: 1.48;
}

/* WHY SECTION */
.why-section {
    position: relative;
    z-index: 1;
    min-height: 438px;
    margin-top: 0;
    padding: 38px 0 0;
    background: var(--green);
    color: var(--white);
    overflow: visible;
}

.why-section > .container {
    width: min(70vw, 1220px);
    margin-inline: auto;
}

.why-section .section-title {
    max-width: 680px;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.6875rem, 2.5125vw, 2.25rem);
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: -.04em;
}

.why-section .section-title span {
    color: var(--mint);
}

.why-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 18px 0 -27px;
    border: 1px solid rgba(132, 243, 223, .34);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(132, 243, 223, .07),
            rgba(255, 255, 255, .075)
        );
    box-shadow:
        0 18px 38px rgba(1, 49, 45, .12),
        inset 0 0 34px rgba(255, 255, 255, .025);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.why-grid article {
    min-width: 0;
    min-height: 148px;
    padding: 23px 30px;
    border-right: 1px solid rgba(255, 255, 255, .27);
    border-bottom: 1px solid rgba(255, 255, 255, .27);
}

.why-grid article:nth-child(3n) {
    border-right: 0;
}

.why-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.why-grid article > span {
    display: block;
    color: rgba(132, 243, 223, .72);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1;
}

.why-grid h3 {
    margin: 5px 0 12px;
    color: var(--mint);
    font-size: 0.8625rem;
    font-weight: 400;
    line-height: 1.22;
}

.why-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    font-weight: 300;
    line-height: 1.42;
}

.buyer-journey-section {
    padding-top: 82px;
}

/* Standard desktop and smaller laptops */
@media (max-width: 1180px) {
    .purpose-section .purpose-grid,
    .why-section > .container {
        width: min(calc(100% - 40px), 970px);
    }

    .purpose-section .purpose-grid {
        grid-template-columns: 400px minmax(0, 1fr);
        gap: 72px;
    }

    .purpose-visual > img {
        height: 228px;
    }

    .trust-card {
        right: -48px;
        width: 275px;
    }
}

/* Tablet */
@media (max-width: 980px) {
    .purpose-section {
        padding: 76px 0 38px;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 36px), 760px);
        grid-template-columns: 1fr;
        gap: 78px;
    }

    .purpose-visual {
        width: min(100%, 620px);
    }

    .purpose-visual > img {
        height: 340px;
    }

    .trust-card {
        right: 22px;
        bottom: -50px;
    }

    .purpose-copy {
        max-width: 650px;
    }

    .why-section {
        margin-top: 0;
        padding-top: 46px;
    }

    .why-section > .container {
        width: min(calc(100% - 36px), 760px);
    }

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

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-last-child(-n + 3) {
        border-right: 1px solid rgba(255, 255, 255, .27);
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:nth-child(2n) {
        border-right: 0;
    }

    .why-grid article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .purpose-section {
        padding: 66px 0 34px;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 28px), 560px);
        gap: 74px;
    }

    .purpose-visual {
        width: 100%;
    }

    .purpose-visual > img {
        height: 300px;
        border-radius: 18px;
    }

    .trust-card {
        right: 12px;
        bottom: -48px;
        left: 12px;
        width: auto;
        min-height: 108px;
        padding: 18px 20px;
    }

    .trust-card strong {
        font-size: 2.25rem;
    }

    .trust-card span {
        font-size: .98rem;
    }

    .purpose-copy .section-title {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
    }

    .purpose-copy p:not(.eyebrow) {
        font-size: .87rem;
    }

    .why-section {
        min-height: 0;
        margin-top: 0;
        padding: 44px 0 0;
    }

    .why-section > .container {
        width: min(calc(100% - 28px), 560px);
    }

    .why-section .section-title {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1.28;
    }

    .why-grid {
        grid-template-columns: 1fr;
        margin-bottom: -24px;
        border-radius: 18px;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        min-height: 130px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .buyer-journey-section {
        padding-top: 70px;
    }
}

@media (max-width: 470px) {
    .purpose-visual > img {
        height: 255px;
    }

    .trust-card {
        gap: 12px;
        padding: 16px;
    }

    .trust-card strong {
        font-size: 2rem;
    }

    .trust-card span {
        font-size: .9rem;
    }

    .why-grid article {
        padding: 22px 24px;
    }
}

/* =========================================================
   FINAL WHY SECTION — SECOND REFERENCE MATCH
   Keep this block at the absolute end of the stylesheet.
   ========================================================= */

/*
   Desktop target:
   - narrower centred content
   - 3 × 2 glass grid
   - grid overlaps the aqua section below
   - heading and grid spacing match the reference
*/
@media (min-width: 981px) {
    .purpose-section {
        padding-bottom: 40px;
    }

    .why-section {
        position: relative;
        z-index: 1;
        height: 436px;
        min-height: 486px;
        margin-top: 0;
        padding: 38px 0 0;
        background: var(--green);
        color: var(--white);
        overflow: visible;
    }

    .why-section > .container {
        width: min(calc(100% - 40px), 970px);
        margin-inline: auto;
    }

    .why-section .section-title {
        max-width: 620px;
        margin: 0;
        color: var(--white);
        font-size: clamp(2.25rem, 3.3vw, 3rem);
        font-weight: 300;
        line-height: 1.38;
        letter-spacing: -.04em;
    }

    .why-section .section-title span {
        color: #ffffff;
    }

    .why-grid {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin: 18px 0 0;
        border: 1px solid rgba(132, 243, 223, .34);
        border-radius: 24px;
        overflow: hidden;
        background:
            linear-gradient(
                120deg,
                rgba(132, 243, 223, .07),
                rgba(255, 255, 255, .075)
            );
        box-shadow:
            0 18px 38px rgba(1, 49, 45, .12),
            inset 0 0 34px rgba(255, 255, 255, .025);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .why-grid article {
        min-width: 0;
        min-height: 148px;
        padding: 23px 30px;
        border-right: 1px solid rgba(255, 255, 255, .27);
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:nth-child(3n) {
        border-right: 0;
    }

    .why-grid article:nth-last-child(-n + 3) {
        border-bottom: 0;
    }

    .why-grid article > span {
        display: block;
        color: rgba(132, 243, 223, .72);
        font-size: 1.08rem;
        font-weight: 300;
        line-height: 1;
    }

    .why-grid h3 {
        margin: 5px 0 12px;
        color: var(--mint);
        font-size: 1.15rem;
        font-weight: 400;
        line-height: 1.22;
    }

    .why-grid p {
        margin: 0;
        color: rgba(255, 255, 255, .8);
        font-size: .82rem;
        font-weight: 300;
        line-height: 1.42;
    }

    /*
       The fixed desktop height ends the green background before the
       glass grid finishes, creating the same overlap seen in the reference.
    */
    .buyer-journey-section {
        position: relative;
        z-index: 0;
        padding-top: 82px;
        background: var(--aqua);
    }
}

/* Tablet */
@media (min-width: 721px) and (max-width: 980px) {
    .why-section {
        height: auto;
        min-height: 0;
        margin-top: 0;
        padding: 46px 0 0;
        overflow: visible;
    }

    .why-section > .container {
        width: min(calc(100% - 36px), 760px);
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: -24px;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-last-child(-n + 3) {
        border-right: 1px solid rgba(255, 255, 255, .27);
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:nth-child(2n) {
        border-right: 0;
    }

    .why-grid article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .why-section {
        height: auto;
        min-height: 0;
        margin-top: 0;
        padding: 44px 0 0;
        overflow: visible;
    }

    .why-section > .container {
        width: min(calc(100% - 28px), 560px);
    }

    .why-section .section-title {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1.28;
    }

    .why-grid {
        grid-template-columns: 1fr;
        margin-bottom: -24px;
        border-radius: 18px;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        min-height: 130px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .27);
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .buyer-journey-section {
        padding-top: 70px;
    }
}

/* =========================================================
   FINAL RESPONSIVE FORCE OVERRIDES
   Existing desktop CSS above remains unchanged.
   Add this block only at the very END of style.css.
   ========================================================= */

/* ---------- SHARED SAFETY BELOW DESKTOP ---------- */
@media screen and (max-width: 1279px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .container {
        width: min(calc(100% - 40px), 1180px) !important;
        margin-inline: auto !important;
    }

    .container-wide {
        width: min(calc(100% - 40px), 1180px) !important;
        margin-inline: auto !important;
    }

    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
    }

    .journey-rail,
    .project-thumbs,
    .city-tabs,
    .hero-track,
    .table-scroll {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-inline: contain;
    }
}

/* =========================================================
   LAPTOP: 1024px–1279px
   ========================================================= */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .section {
        padding: 88px 26px !important;
    }

    /* Header */
    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        width: min(100%, 1180px) !important;
    }

    .site-header .nav-left {
        left: 28px !important;
        gap: 28px !important;
    }

    .site-header .nav-right {
        right: 238px !important;
        gap: 28px !important;
    }

    .site-header .header-search,
    .site-header.is-scrolled .header-search {
        right: 24px !important;
        width: 176px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        width: 172px !important;
    }

    .site-header .primary-nav a {
        font-size: .76rem !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: max(700px, 100svh) !important;
    }

    .hero-copy {
           left: 36%;
        top: 49% !important;
        width: min(760px, calc(100% - 60px)) !important;
    }

    .hero-copy h1 {
        font-size: clamp(4rem, 7vw, 5.5rem) !important;
    }

    .hero-facts {
        left: 24px !important;
        bottom: 17% !important;
        font-size: .84rem !important;
    }

    .hero-track {
        right: 3% !important;
        left: 3% !important;
    }

    /* About */
    .about-section {
        padding: 90px 0 96px !important;
    }

    .about-grid {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(300px, 340px)
            minmax(125px, .35fr) !important;
        gap: 36px !important;
    }

    .about-visual {
        max-width: 340px !important;
    }

    .about-visual img {
        height: 400px !important;
    }

    .about-stats {
        gap: 32px !important;
    }

    .about-stats small {
        font-size: .82rem !important;
    }

    /* Journey */
    .journey-layout {
        grid-template-columns: 245px minmax(0, 1fr) !important;
        gap: 38px !important;
    }

    .journey-card {
        flex: 0 0 200px !important;
        min-height: 190px !important;
    }

    /* Cities */
    .cities-block {
        margin-top: 105px !important;
    }

    .city-layout {
        grid-template-columns: 100px minmax(0, 1fr) !important;
        gap: 40px !important;
    }

    .city-stage {
        width: 100% !important;
        max-width: 850px !important;
    }

    .city-stage > img {
        height: 380px !important;
    }

    .city-info {
        right: -4% !important;
        width: 278px !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 400px minmax(0, 1fr) !important;
        gap: 48px !important;
    }

    .project-feature,
    .project-feature > img {
        min-height: 560px !important;
        height: 560px !important;
    }

    .project-thumbs {
        max-width: 100% !important;
        grid-auto-columns: 238px !important;
        gap: 22px !important;
    }

    .filter-pills {
        gap: 14px 22px !important;
        margin-bottom: 52px !important;
    }

    /* Purpose / Why */
    .purpose-section .purpose-grid {
        width: min(calc(100% - 40px), 1040px) !important;
        grid-template-columns: 390px minmax(0, 1fr) !important;
        gap: 66px !important;
    }

    .purpose-visual > img {
        height: 225px !important;
    }

    .trust-card {
        right: -38px !important;
        width: 270px !important;
    }

    .why-section > .container {
        width: min(calc(100% - 40px), 1040px) !important;
    }

    /* Contact / Footer */
    .contact-panel {
        gap: 50px !important;
        padding: 44px 56px !important;
    }

    .footer-grid {
        gap: 38px !important;
    }
}

/* =========================================================
   TABLET AND BELOW: ≤1023px
   ========================================================= */
@media screen and (max-width: 1023px) {
    .container,
    .container-wide {
        width: min(calc(100% - 36px), 920px) !important;
    }

    .section {
        padding: 74px 0 !important;
    }

    .section-title {
        font-size: clamp(2.45rem, 6vw, 3.9rem) !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        top: 0 !important;
        padding: 0 10px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        min-height: 76px !important;
        padding: 0 18px !important;
        border-radius: 0 0 14px 14px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        position: absolute !important;
        top: 50% !important;
        left: 18px !important;
        width: 166px !important;
        transform: translateY(-50%) !important;
    }

    .site-header .nav-toggle {
        position: absolute !important;
        top: 50% !important;
        right: 14px !important;
        z-index: 100 !important;
        display: grid !important;
        place-content: center !important;
        width: 44px !important;
        height: 44px !important;
        padding: 9px !important;
        border: 1px solid rgba(255,255,255,.18) !important;
        border-radius: 10px !important;
        background: rgba(255,255,255,.08) !important;
        transform: translateY(-50%) !important;
    }

    .site-header .nav-toggle span {
        display: block !important;
        width: 23px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        border-radius: 999px !important;
        background: #fff !important;
    }

    .nav-open .site-header .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .nav-open .site-header .nav-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .nav-open .site-header .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        position: fixed !important;
        inset: 82px 12px 12px auto !important;
        z-index: 90 !important;
        display: flex !important;
        width: min(360px, calc(100vw - 24px)) !important;
        padding: 30px 26px 120px !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        border: 1px solid rgba(255,255,255,.18) !important;
        border-radius: 16px !important;
        background:
            linear-gradient(
                145deg,
                rgba(8,90,83,.97),
                rgba(20,79,105,.94)
            ) !important;
        box-shadow: -18px 18px 48px rgba(0,0,0,.24) !important;
        backdrop-filter: blur(22px) !important;
        -webkit-backdrop-filter: blur(22px) !important;
        transform: translateX(calc(100% + 30px)) !important;
        transition: transform .3s ease !important;
        pointer-events: auto !important;
    }

    .nav-open .site-header .primary-nav {
        transform: translateX(0) !important;
    }

    .site-header .nav-cluster,
    .site-header.is-scrolled .nav-cluster {
        position: static !important;
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
    }

    .site-header .nav-right {
        margin-top: 4px !important;
    }

    .site-header .primary-nav a {
        width: 100% !important;
        min-height: 48px !important;
        padding: 0 12px !important;
        border-bottom: 1px solid rgba(255,255,255,.12) !important;
        color: #fff !important;
        font-size: .94rem !important;
        text-shadow: none !important;
    }

    .site-header .primary-nav a::after {
        display: none !important;
    }

    .site-header .header-search,
    .site-header.is-scrolled .header-search {
        position: fixed !important;
        top: auto !important;
        right: 30px !important;
        bottom: 30px !important;
        z-index: 95 !important;
        display: flex !important;
        width: min(300px, calc(100vw - 60px)) !important;
        transform: translateX(calc(100vw + 40px)) !important;
        transition: transform .3s ease .04s !important;
    }

    .nav-open .site-header .header-search {
        transform: translateX(0) !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: max(720px, 100svh) !important;
    }

    .hero-copy {
        top: 43% !important;
        right: auto !important;
        bottom: auto !important;
        left: 50% !important;
        width: min(700px, calc(100% - 40px)) !important;
        text-align: center !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-copy h1 {
        font-size: clamp(3.8rem, 9vw, 5.2rem) !important;
    }

    .hero-actions {
        justify-content: center !important;
        gap: 12px !important;
    }

    .hero-facts {
        right: 18px !important;
        bottom: 16% !important;
        left: 18px !important;
        justify-content: center !important;
        font-size: .76rem !important;
    }

    .hero-track {
        right: 16px !important;
        bottom: 3% !important;
        left: 16px !important;
        grid-template-columns: repeat(4, minmax(170px, 1fr)) !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    /* About */
    .about-section {
        padding: 82px 0 88px !important;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 350px) !important;
        gap: 44px !important;
    }

    .about-copy p:not(.eyebrow) {
        text-align: left !important;
    }

    .about-visual {
        width: 100% !important;
        max-width: 350px !important;
    }

    .about-visual img {
        height: 400px !important;
    }

    .about-stats {
        grid-column: 1 / -1 !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        margin-top: 8px !important;
    }

    /* Journey */
    .journey-layout {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .journey-heading br {
        display: none !important;
    }

    .journey-card {
        flex: 0 0 220px !important;
        min-height: 200px !important;
    }

    /* Cities */
    .cities-block {
        margin-top: 96px !important;
    }

    .city-layout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .city-tabs {
        display: flex !important;
        gap: 26px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        scrollbar-width: none !important;
    }

    .city-stage {
        width: calc(100% - 44px) !important;
        max-width: none !important;
    }

    .city-stage > img {
        height: 350px !important;
    }

    .city-info {
        right: -44px !important;
        bottom: 13% !important;
        width: 280px !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .project-feature {
        width: min(100%, 650px) !important;
        margin-inline: auto !important;
    }

    .project-feature,
    .project-feature > img {
        min-height: 550px !important;
        height: 550px !important;
    }

    .project-thumbs {
        max-width: 100% !important;
        grid-auto-columns: 240px !important;
    }

    .filter-pills {
        margin-bottom: 46px !important;
    }

    /* Compare */
    .table-shell {
        margin-top: 68px !important;
        padding: 18px !important;
    }

    table {
        min-width: 940px !important;
    }

    /* Purpose */
    .purpose-section {
        padding: 72px 0 38px !important;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 36px), 760px) !important;
        grid-template-columns: 1fr !important;
        gap: 76px !important;
    }

    .purpose-visual {
        width: min(100%, 620px) !important;
    }

    .purpose-visual > img {
        height: 340px !important;
    }

    .trust-card {
        right: 22px !important;
        bottom: -48px !important;
    }

    /* Why */
    .why-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 46px 0 0 !important;
    }

    .why-section > .container {
        width: min(calc(100% - 36px), 760px) !important;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin-bottom: -24px !important;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-last-child(-n + 3) {
        border-right: 1px solid rgba(255,255,255,.27) !important;
        border-bottom: 1px solid rgba(255,255,255,.27) !important;
    }

    .why-grid article:nth-child(2n) {
        border-right: 0 !important;
    }

    .why-grid article:nth-last-child(-n + 2) {
        border-bottom: 0 !important;
    }

    /* Other sections */
    .steps-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }

    .testimonials-grid {
        gap: 52px 40px !important;
    }

    .contact-panel {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        padding: 42px 46px !important;
    }

    .footer-grid {
        grid-template-columns: 1.15fr 1fr 1fr !important;
        gap: 36px !important;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1 !important;
    }
}

/* =========================================================
   MOBILE: ≤767px
   ========================================================= */
@media screen and (max-width: 767px) {
    .container,
    .container-wide {
        width: calc(100% - 28px) !important;
    }

    .section {
        padding: 64px 0 !important;
    }

    .section-title {
        font-size: clamp(2.25rem, 10vw, 3.35rem) !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        padding-inline: 8px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        min-height: 72px !important;
        padding: 0 16px !important;
        border-radius: 0 0 13px 13px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        left: 16px !important;
        width: 156px !important;
    }

    .site-header .nav-toggle {
        right: 12px !important;
        width: 42px !important;
        height: 42px !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        top: 78px !important;
        right: 8px !important;
        bottom: 8px !important;
        width: min(350px, calc(100vw - 16px)) !important;
        padding: 28px 24px 115px !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: 780px !important;
    }

    .hero-copy {
        top: 41% !important;
        width: calc(100% - 28px) !important;
    }

    .hero-copy h1 {
        font-size: clamp(3.2rem, 11vw, 4.6rem) !important;
    }

    .hero-actions {
        gap: 10px !important;
    }

    .hero-actions .button {
        min-height: 40px !important;
        padding: 10px 14px !important;
        font-size: .66rem !important;
    }

    .hero-facts {
        right: 14px !important;
        bottom: 18% !important;
        left: 14px !important;
        gap: 8px 11px !important;
        font-size: .7rem !important;
    }

    .hero-track {
        right: 0 !important;
        bottom: 3% !important;
        left: 0 !important;
        grid-template-columns: repeat(4, minmax(175px, 1fr)) !important;
        overflow-x: auto !important;
    }

    /* About */
    .about-section {
        padding: 70px 0 76px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 38px !important;
    }

    .about-visual {
        width: min(100%, 420px) !important;
        max-width: none !important;
    }

    .about-visual img {
        height: 450px !important;
    }

    .about-stats {
        grid-column: auto !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }

    .about-stats small {
        font-size: .72rem !important;
        white-space: normal !important;
    }

    /* Journey */
    .journey-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .journey-card {
        flex: 0 0 60vw !important;
        min-height: 196px !important;
    }

    /* Cities */
    .cities-block {
        margin-top: 82px !important;
    }

    .city-stage {
        width: 100% !important;
        max-width: none !important;
        padding-bottom: 0 !important;
    }

    .city-stage > img {
        height: 300px !important;
    }

    .city-info {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: calc(100% - 32px) !important;
        margin: -54px auto 0 !important;
        padding: 24px !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 54px !important;
    }

    .project-feature,
    .project-feature > img {
        min-height: 500px !important;
        height: 500px !important;
    }

    .project-feature-card {
        right: 18px !important;
        bottom: 18px !important;
        left: 18px !important;
        padding: 22px !important;
    }

    .project-thumbs {
        max-width: 100% !important;
        grid-auto-columns: 65vw !important;
    }

    .filter-pills {
        gap: 10px !important;
        margin-bottom: 38px !important;
    }

    /* Purpose */
    .purpose-section .purpose-grid {
        width: calc(100% - 28px) !important;
        grid-template-columns: 1fr !important;
        gap: 72px !important;
    }

    .purpose-visual {
        width: 100% !important;
    }

    .purpose-visual > img {
        height: 310px !important;
    }

    .trust-card {
        right: 16px !important;
        bottom: -46px !important;
        left: auto !important;
        width: 270px !important;
    }

    /* Why */
    .why-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 44px 0 0 !important;
    }

    .why-section > .container {
        width: calc(100% - 28px) !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
        margin-bottom: -24px !important;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.27) !important;
    }

    .why-grid article:last-child {
        border-bottom: 0 !important;
    }

    /* Other sections */
    .steps-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .steps-row .step-card:last-child {
        grid-column: 1 / -1 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        margin-top: 52px !important;
    }

    .contact-section {
        padding-top: 68px !important;
        background: linear-gradient(var(--aqua) 0 10%, var(--green) 10% 100%) !important;
    }

    .contact-panel {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 34px 28px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 34px 24px !important;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: 1 / -1 !important;
    }
}

/* =========================================================
   SMALL MOBILE: ≤575px
   ========================================================= */
@media screen and (max-width: 575px) {
    .container,
    .container-wide {
        width: calc(100% - 24px) !important;
    }

    .section {
        padding: 56px 0 !important;
    }

    .eyebrow {
        margin-bottom: 12px !important;
        font-size: .58rem !important;
    }

    .section-title {
        font-size: clamp(2.05rem, 11vw, 3rem) !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        padding-inline: 6px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        min-height: 68px !important;
        padding: 0 12px !important;
        border-radius: 0 0 12px 12px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        left: 14px !important;
        width: 140px !important;
    }

    .site-header .nav-toggle {
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        top: 74px !important;
        right: 6px !important;
        bottom: 6px !important;
        width: calc(100vw - 12px) !important;
        padding: 26px 20px 110px !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: 740px !important;
    }

    .hero-copy {
        top: 39% !important;
        width: calc(100% - 24px) !important;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 3.95rem) !important;
    }

    .hero-actions {
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .hero-actions .button {
        width: min(100%, 310px) !important;
        min-height: 42px !important;
        margin-inline: auto !important;
    }

    .hero-facts {
        right: 12px !important;
        bottom: 19% !important;
        left: 12px !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px 12px !important;
        font-size: .66rem !important;
        text-align: center !important;
    }

    .hero-facts i {
        display: none !important;
    }

    .hero-track {
        grid-template-columns: repeat(4, minmax(155px, 1fr)) !important;
    }

    /* About */
    .about-section {
        padding: 58px 0 66px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .about-copy p:not(.eyebrow) {
        margin: 22px 0 !important;
        font-size: .88rem !important;
        text-align: left !important;
    }

    .about-visual {
        width: min(100%, 390px) !important;
    }

    .about-visual img {
        height: 400px !important;
        border-radius: 22px !important;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    /* Journey */
    .journey-card {
        flex: 0 0 82vw !important;
        min-height: 190px !important;
        padding: 26px 18px 18px !important;
    }

    .journey-card p {
        min-height: 48px !important;
        font-size: .72rem !important;
    }

    /* Cities */
    .cities-block {
        margin-top: 70px !important;
    }

    .city-tab {
        flex: 0 0 auto !important;
        min-width: 104px !important;
        font-size: .82rem !important;
    }

    .city-stage > img {
        height: 230px !important;
        border-radius: 18px !important;
    }

    .city-info {
        width: calc(100% - 18px) !important;
        margin: -42px auto 0 !important;
        padding: 22px !important;
        border-radius: 18px !important;
    }

    .city-info p {
        font-size: .78rem !important;
    }

    .city-info a {
        font-size: .76rem !important;
    }

    /* Portfolio */
    .portfolio-section {
        padding: 54px 0 58px !important;
    }

    .project-feature,
    .project-feature > img {
        min-height: 450px !important;
        height: 450px !important;
    }

    .project-feature-card {
        right: 14px !important;
        bottom: 14px !important;
        left: 14px !important;
        padding: 20px !important;
    }

    .project-feature-card > div {
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .project-feature-card > div > span {
        width: 100% !important;
        min-width: 0 !important;
    }

    .filter-pills button {
        min-width: 0 !important;
        padding: 7px 12px !important;
        font-size: .68rem !important;
    }

    .project-thumbs {
        grid-auto-columns: 78vw !important;
        gap: 18px !important;
    }

    .project-thumb {
        height: 210px !important;
    }

    .carousel-progress {
        width: 100% !important;
        margin-top: 44px !important;
    }

    /* Comparison */
    .compare-section {
        padding: 54px 0 34px !important;
    }

    .table-shell {
        margin-top: 52px !important;
        padding: 10px !important;
        border-radius: 16px !important;
    }

    table {
        min-width: 900px !important;
    }

    th,
    td {
        padding: 12px 10px !important;
        font-size: .72rem !important;
    }

    th {
        font-size: .68rem !important;
    }

    /* Purpose */
    .purpose-section {
        padding: 54px 0 32px !important;
    }

    .purpose-section .purpose-grid {
        width: calc(100% - 24px) !important;
        gap: 66px !important;
    }

    .purpose-visual > img {
        height: 270px !important;
        border-radius: 17px !important;
    }

    .trust-card {
        right: 10px !important;
        bottom:-50px !important;
        left: 10px !important;
        width: auto !important;
        min-height: 104px !important;
        padding: 16px 18px !important;
    }

    .trust-card strong {
        font-size: 2.1rem !important;
    }

    .trust-card span {
        font-size: .9rem !important;
    }

    /* Why */
    .why-section > .container {
        width: calc(100% - 24px) !important;
    }

    .why-grid {
        border-radius: 17px !important;
    }

    .why-grid article {
        min-height: 124px !important;
        padding: 20px 22px !important;
    }

    /* Other sections */
    .buyer-journey-section {
        padding: 78px 0 54px !important;
    }

    .steps-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }

    .steps-row .step-card:last-child {
        grid-column: auto !important;
    }

    .step-card {
        min-height: 116px !important;
        padding: 24px 20px !important;
    }

    .buyer-journey-section .button.centered {
        width: 100% !important;
        min-width: 0 !important;
    }

    .testimonials-section {
        padding: 54px 0 60px !important;
    }

    .testimonial-card {
        padding-left: 24px !important;
    }

    .contact-section {
        padding-top: 56px !important;
        background: linear-gradient(var(--aqua) 0 8%, var(--green) 8% 100%) !important;
    }

    .contact-panel {
        padding: 28px 18px !important;
        border-radius: 18px !important;
    }

    .contact-copy > p {
        font-size: 1.15rem !important;
    }

    .contact-copy h2 {
        font-size: clamp(2.1rem, 11vw, 3rem) !important;
    }

    .whatsapp-button,
    .lead-form input,
    .lead-form select,
    .lead-form button {
        min-height: 43px !important;
        height: 43px !important;
        font-size: .78rem !important;
    }

    .site-footer {
        padding: 44px 0 22px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto !important;
    }

    .footer-brand img {
        width: 220px !important;
    }
}

/* ---------- VERY SMALL MOBILE ---------- */
@media screen and (max-width: 359px) {
    .container,
    .container-wide {
        width: calc(100% - 18px) !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        width: 124px !important;
    }

    .hero-copy h1 {
        font-size: 2.55rem !important;
    }

    .about-visual img {
        height: 350px !important;
    }

    .city-stage > img {
        height: 205px !important;
    }

    .project-feature,
    .project-feature > img {
        min-height: 420px !important;
        height: 420px !important;
    }

    .purpose-visual > img {
        height: 235px !important;
    }
}

/* ---------- MOBILE LANDSCAPE ---------- */
@media screen and (max-width: 920px) and (orientation: landscape) and (max-height: 520px) {
    .hero,
    .hero-inner {
        min-height: 620px !important;
    }

    .hero-copy {
        top: 42% !important;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 8vw, 4.2rem) !important;
    }

    .hero-facts {
        bottom: 17% !important;
    }

    .hero-track {
        bottom: 1% !important;
    }
}

/* =========================================================
   CSS-ONLY UPDATE: SMOOTH REVEAL + FINAL MOBILE CORRECTIONS
   IMPORTANT:
   - Existing CSS above is unchanged.
   - Keep this block at the absolute end of style.css.
   - No PHP or JavaScript changes are required.
   ========================================================= */

/* ---------------------------------------------------------
   SMOOTH REVEAL ANIMATION
   Works with the existing data-reveal / is-visible classes.
   --------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 34px, 0) scale(.985);
    filter: blur(6px);
    will-change: opacity, transform, filter;
    transition:
        opacity .8s cubic-bezier(.22, 1, .36, 1),
        transform .8s cubic-bezier(.22, 1, .36, 1),
        filter .8s cubic-bezier(.22, 1, .36, 1),
        visibility 0s linear .8s;
}

[data-reveal].is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0s;
}

/* Different reveal directions without changing HTML */
.about-copy[data-reveal],
.journey-heading[data-reveal],
.purpose-copy[data-reveal] {
    transform: translate3d(-34px, 0, 0);
}

.about-copy[data-reveal].is-visible,
.journey-heading[data-reveal].is-visible,
.purpose-copy[data-reveal].is-visible {
    transform: translate3d(0, 0, 0);
}

.about-visual[data-reveal],
.project-feature[data-reveal],
.purpose-visual[data-reveal] {
    transform: translate3d(34px, 0, 0) scale(.985);
}

.about-visual[data-reveal].is-visible,
.project-feature[data-reveal].is-visible,
.purpose-visual[data-reveal].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Section-level stagger timing */
.hero-copy[data-reveal] {
    --reveal-delay: 100ms;
}

.about-copy[data-reveal] {
    --reveal-delay: 40ms;
}

.about-visual[data-reveal] {
    --reveal-delay: 130ms;
}

.about-stats[data-reveal] {
    --reveal-delay: 210ms;
}

.journey-heading[data-reveal] {
    --reveal-delay: 40ms;
}

.journey-scroller[data-reveal] {
    --reveal-delay: 130ms;
}

.cities-block[data-reveal] {
    --reveal-delay: 80ms;
}

.project-feature[data-reveal] {
    --reveal-delay: 40ms;
}

.portfolio-content[data-reveal] {
    --reveal-delay: 130ms;
}

.table-shell[data-reveal] {
    --reveal-delay: 80ms;
}

.purpose-visual[data-reveal] {
    --reveal-delay: 40ms;
}

.purpose-copy[data-reveal] {
    --reveal-delay: 130ms;
}

.why-grid[data-reveal],
.steps-row[data-reveal],
.testimonials-grid[data-reveal],
.contact-panel[data-reveal] {
    --reveal-delay: 80ms;
}

/* Stagger children after their parent becomes visible */
[data-reveal] .journey-card,
[data-reveal] .city-tab,
[data-reveal] .filter-pills button,
[data-reveal] .project-thumb,
[data-reveal] tbody tr,
[data-reveal] .why-grid article,
.why-grid[data-reveal] article,
.steps-row[data-reveal] .step-card,
.testimonials-grid[data-reveal] .testimonial-card,
.about-stats[data-reveal] article {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

[data-reveal].is-visible .journey-card,
[data-reveal].is-visible .city-tab,
[data-reveal].is-visible .filter-pills button,
[data-reveal].is-visible .project-thumb,
[data-reveal].is-visible tbody tr,
[data-reveal].is-visible .why-grid article,
.why-grid[data-reveal].is-visible article,
.steps-row[data-reveal].is-visible .step-card,
.testimonials-grid[data-reveal].is-visible .testimonial-card,
.about-stats[data-reveal].is-visible article {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity .62s cubic-bezier(.22, 1, .36, 1),
        transform .62s cubic-bezier(.22, 1, .36, 1);
}

/* Stagger sequence */
[data-reveal].is-visible > :nth-child(1),
[data-reveal].is-visible .journey-card:nth-child(1),
[data-reveal].is-visible .city-tab:nth-child(1),
[data-reveal].is-visible .filter-pills button:nth-child(1),
[data-reveal].is-visible .project-thumb:nth-child(1),
[data-reveal].is-visible tbody tr:nth-child(1),
.why-grid[data-reveal].is-visible article:nth-child(1),
.steps-row[data-reveal].is-visible .step-card:nth-child(1),
.testimonials-grid[data-reveal].is-visible .testimonial-card:nth-child(1),
.about-stats[data-reveal].is-visible article:nth-child(1) {
    transition-delay: 70ms;
}

[data-reveal].is-visible > :nth-child(2),
[data-reveal].is-visible .journey-card:nth-child(2),
[data-reveal].is-visible .city-tab:nth-child(2),
[data-reveal].is-visible .filter-pills button:nth-child(2),
[data-reveal].is-visible .project-thumb:nth-child(2),
[data-reveal].is-visible tbody tr:nth-child(2),
.why-grid[data-reveal].is-visible article:nth-child(2),
.steps-row[data-reveal].is-visible .step-card:nth-child(2),
.testimonials-grid[data-reveal].is-visible .testimonial-card:nth-child(2),
.about-stats[data-reveal].is-visible article:nth-child(2) {
    transition-delay: 130ms;
}

[data-reveal].is-visible > :nth-child(3),
[data-reveal].is-visible .journey-card:nth-child(3),
[data-reveal].is-visible .city-tab:nth-child(3),
[data-reveal].is-visible .filter-pills button:nth-child(3),
[data-reveal].is-visible .project-thumb:nth-child(3),
[data-reveal].is-visible tbody tr:nth-child(3),
.why-grid[data-reveal].is-visible article:nth-child(3),
.steps-row[data-reveal].is-visible .step-card:nth-child(3),
.testimonials-grid[data-reveal].is-visible .testimonial-card:nth-child(3),
.about-stats[data-reveal].is-visible article:nth-child(3) {
    transition-delay: 190ms;
}

[data-reveal].is-visible > :nth-child(4),
[data-reveal].is-visible .journey-card:nth-child(4),
[data-reveal].is-visible .filter-pills button:nth-child(4),
[data-reveal].is-visible .project-thumb:nth-child(4),
[data-reveal].is-visible tbody tr:nth-child(4),
.why-grid[data-reveal].is-visible article:nth-child(4),
.steps-row[data-reveal].is-visible .step-card:nth-child(4),
.testimonials-grid[data-reveal].is-visible .testimonial-card:nth-child(4) {
    transition-delay: 250ms;
}

[data-reveal].is-visible > :nth-child(5),
[data-reveal].is-visible .journey-card:nth-child(5),
[data-reveal].is-visible .filter-pills button:nth-child(5),
[data-reveal].is-visible .project-thumb:nth-child(5),
[data-reveal].is-visible tbody tr:nth-child(5),
.why-grid[data-reveal].is-visible article:nth-child(5),
.steps-row[data-reveal].is-visible .step-card:nth-child(5) {
    transition-delay: 310ms;
}

[data-reveal].is-visible > :nth-child(6),
[data-reveal].is-visible .filter-pills button:nth-child(6),
[data-reveal].is-visible tbody tr:nth-child(6),
.why-grid[data-reveal].is-visible article:nth-child(6) {
    transition-delay: 370ms;
}

[data-reveal].is-visible .filter-pills button:nth-child(7) {
    transition-delay: 430ms;
}

/* Smooth image interaction */
.about-visual img,
.city-stage > img,
.project-feature > img,
.project-thumb img,
.purpose-visual > img,
.testimonial-person img {
    transition:
        transform .65s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        filter .35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .about-visual:hover img,
    .purpose-visual:hover > img {
        transform: scale(1.018);
    }

    .city-stage:hover > img,
    .project-feature:hover > img {
        transform: scale(1.01);
    }
}


/* =========================================================
   FINAL RESPONSIVE CROSS-CHECK
   Desktop above 1023px is not changed.
   ========================================================= */

/* ---------- TABLET: 768px–1023px ---------- */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 36px), 920px) !important;
        margin-inline: auto !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        top: 0 !important;
        padding: 0 10px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        position: relative !important;
        width: 100% !important;
        min-height: 76px !important;
        padding: 0 18px !important;
        border-radius: 0 0 14px 14px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        position: absolute !important;
        top: 50% !important;
        left: 18px !important;
        width: 166px !important;
        transform: translateY(-50%) !important;
    }

    .site-header .nav-toggle {
        position: absolute !important;
        top: 50% !important;
        right: 14px !important;
        display: grid !important;
        place-content: center !important;
        width: 44px !important;
        height: 44px !important;
        transform: translateY(-50%) !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        top: 82px !important;
        right: 12px !important;
        bottom: 12px !important;
        left: auto !important;
        width: min(360px, calc(100vw - 24px)) !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: max(720px, 100svh) !important;
    }

    .hero-copy {
        top: 43% !important;
        right: auto !important;
        bottom: auto !important;
        left: 50% !important;
        width: min(700px, calc(100% - 40px)) !important;
        text-align: center !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-copy h1 {
        font-size: clamp(3.8rem, 9vw, 5.2rem) !important;
    }

    .hero-facts {
        right: 18px !important;
        bottom: 16% !important;
        left: 18px !important;
        justify-content: center !important;
    }

    .hero-track {
        right: 16px !important;
        left: 16px !important;
        grid-template-columns: repeat(4, minmax(170px, 1fr)) !important;
        overflow-x: auto !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 350px) !important;
        gap: 44px !important;
    }

    .about-visual {
        width: 100% !important;
        max-width: 350px !important;
    }

    .about-visual img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: .86 !important;
        object-fit: cover !important;
    }

    .about-stats {
        grid-column: 1 / -1 !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
    }

    /* Journey and cities */
    .journey-layout {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .journey-card {
        flex: 0 0 220px !important;
        min-height: 200px !important;
    }

    .city-layout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .city-tabs {
        display: flex !important;
        gap: 26px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
    }

    .city-stage {
        width: calc(100% - 44px) !important;
        max-width: none !important;
    }

    .city-stage > img {
        width: 100% !important;
        height: 350px !important;
        object-fit: cover !important;
    }

    .city-info {
        right: -44px !important;
        bottom: 13% !important;
        width: 280px !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .project-feature {
        width: min(100%, 650px) !important;
        margin-inline: auto !important;
    }

    .project-feature,
    .project-feature > img {
        height: 550px !important;
        min-height: 550px !important;
    }

    .project-thumbs {
        max-width: 100% !important;
        grid-auto-columns: 240px !important;
    }

    /* Purpose and Why */
    .purpose-section .purpose-grid {
        width: min(calc(100% - 36px), 760px) !important;
        grid-template-columns: 1fr !important;
        gap: 76px !important;
    }

    .purpose-visual {
        width: min(100%, 620px) !important;
    }

    .purpose-visual > img {
        height: 340px !important;
    }

    .why-section {
        height: auto !important;
        min-height: 0 !important;
    }

    .why-section > .container {
        width: min(calc(100% - 36px), 760px) !important;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .steps-row {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .contact-panel {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1.15fr 1fr 1fr !important;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1 !important;
    }
}


/* ---------- MOBILE: 0px–767px ---------- */
@media screen and (max-width: 767px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .container,
    .container-wide {
        width: calc(100% - 28px) !important;
        margin-inline: auto !important;
    }

    .section {
        padding: 62px 0 !important;
    }

    .section-title {
        font-size: clamp(2.2rem, 10vw, 3.25rem) !important;
        line-height: 1.08 !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        top: 0 !important;
        padding-inline: 8px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        position: relative !important;
        width: 100% !important;
        min-height: 72px !important;
        padding: 0 16px !important;
        border-radius: 0 0 13px 13px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        position: absolute !important;
        top: 50% !important;
        left: 16px !important;
        width: 154px !important;
        transform: translateY(-50%) !important;
    }

    .site-header .nav-toggle {
        position: absolute !important;
        top: 50% !important;
        right: 12px !important;
        display: grid !important;
        place-content: center !important;
        width: 42px !important;
        height: 42px !important;
        transform: translateY(-50%) !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        top: 78px !important;
        right: 8px !important;
        bottom: 8px !important;
        left: auto !important;
        width: min(350px, calc(100vw - 16px)) !important;
        padding: 28px 24px 112px !important;
    }

    .site-header .header-search,
    .site-header.is-scrolled .header-search {
        right: 28px !important;
        bottom: 28px !important;
        width: min(294px, calc(100vw - 56px)) !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: max(740px, 100svh) !important;
    }

    .hero-copy {
        top: 40% !important;
        right: auto !important;
        bottom: auto !important;
        left: 50% !important;
        width: calc(100% - 28px) !important;
        text-align: center !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 12vw, 4.45rem) !important;
        line-height: .92 !important;
    }

    .hero-actions {
        justify-content: center !important;
        gap: 10px !important;
    }

    .hero-facts {
        right: 14px !important;
        bottom: 18% !important;
        left: 14px !important;
        justify-content: center !important;
        gap: 8px 10px !important;
        font-size: .7rem !important;
    }

    .hero-track {
        right: 0 !important;
        bottom: 3% !important;
        left: 0 !important;
        grid-template-columns: repeat(4, minmax(170px, 1fr)) !important;
        overflow-x: auto !important;
    }

    /* About */
    .about-section {
        padding: 68px 0 74px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .about-visual {
        width: min(100%, 420px) !important;
        max-width: none !important;
    }

    .about-visual img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: .86 !important;
        object-fit: cover !important;
    }

    .about-stats {
        grid-column: auto !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .about-stats article {
        min-width: 0 !important;
    }

    .about-stats small {
        white-space: normal !important;
        font-size: .72rem !important;
    }

    /* Journey */
    .journey-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .journey-card {
        flex: 0 0 min(72vw, 260px) !important;
        min-height: 194px !important;
    }

    /* Cities */
    .cities-block {
        margin-top: 78px !important;
    }

    .city-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .city-tabs {
        display: flex !important;
        gap: 22px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
    }

    .city-stage {
        width: 100% !important;
        max-width: none !important;
        padding-bottom: 0 !important;
    }

    .city-stage > img {
        width: 100% !important;
        height: 290px !important;
        object-fit: cover !important;
    }

    .city-info {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: calc(100% - 28px) !important;
        margin: -52px auto 0 !important;
        padding: 24px !important;
    }

    /* Portfolio */
    .portfolio-section {
        padding: 58px 0 62px !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 52px !important;
    }

    .project-feature,
    .project-feature > img {
        width: 100% !important;
        height: 500px !important;
        min-height: 500px !important;
    }

    .project-feature-card {
        right: 18px !important;
        bottom: 18px !important;
        left: 18px !important;
        padding: 22px !important;
    }

    .project-thumbs {
        max-width: 100% !important;
        grid-auto-columns: min(68vw, 280px) !important;
        gap: 20px !important;
    }

    .filter-pills {
        gap: 10px !important;
        margin-bottom: 38px !important;
    }

    /* Comparison */
    .table-shell {
        padding: 12px !important;
        overflow: hidden !important;
    }

    .table-scroll {
        width: 100% !important;
        overflow-x: auto !important;
    }

    table {
        min-width: 900px !important;
    }

    /* Purpose */
    .purpose-section {
        padding: 60px 0 34px !important;
    }

    .purpose-section .purpose-grid {
        width: calc(100% - 28px) !important;
        grid-template-columns: 1fr !important;
        gap: 72px !important;
    }

    .purpose-visual {
        width: 100% !important;
    }

    .purpose-visual > img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .trust-card {
        right: 12px !important;
        bottom: -48px !important;
        left: 12px !important;
        width: auto !important;
        min-width: 0 !important;
    }

    /* Why */
    .why-section {
        height: auto !important;
        min-height: 0 !important;
        padding: 44px 0 0 !important;
    }

    .why-section > .container {
        width: calc(100% - 28px) !important;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
        margin-bottom: -22px !important;
    }

    .why-grid article,
    .why-grid article:nth-child(3n),
    .why-grid article:nth-child(2n),
    .why-grid article:nth-last-child(-n + 3),
    .why-grid article:nth-last-child(-n + 2) {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .27) !important;
    }

    .why-grid article:last-child {
        border-bottom: 0 !important;
    }

    /* Remaining sections */
    .steps-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .steps-row .step-card:last-child {
        grid-column: 1 / -1 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    .contact-panel {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 34px 28px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 34px 24px !important;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: 1 / -1 !important;
    }
}


/* ---------- SMALL MOBILE: 0px–575px ---------- */
@media screen and (max-width: 575px) {
    .container,
    .container-wide {
        width: calc(100% - 24px) !important;
    }

    .section {
        padding: 54px 0 !important;
    }

    .section-title {
        font-size: clamp(2rem, 11vw, 2.95rem) !important;
    }

    /* Header */
    .site-header,
    .site-header.is-scrolled {
        padding-inline: 6px !important;
    }

    .site-header .header-shell,
    .site-header.is-scrolled .header-shell {
        min-height: 68px !important;
        padding: 0 12px !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        left: 14px !important;
        width: 138px !important;
    }

    .site-header .nav-toggle {
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .site-header .primary-nav,
    .site-header.is-scrolled .primary-nav {
        top: 74px !important;
        right: 6px !important;
        bottom: 6px !important;
        width: calc(100vw - 12px) !important;
    }

    /* Hero */
    .hero,
    .hero-inner {
        min-height: max(700px, 100svh) !important;
    }

    .hero-copy {
        top: 38.5% !important;
        width: calc(100% - 24px) !important;
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 14vw, 3.9rem) !important;
    }

    .hero-actions {
        align-items: stretch !important;
        flex-direction: column !important;
        margin-top: 22px !important;
    }

    .hero-actions .button {
        width: min(100%, 310px) !important;
        min-height: 42px !important;
        margin-inline: auto !important;
    }

    .hero-facts {
        right: 12px !important;
        bottom: 19% !important;
        left: 12px !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px 12px !important;
        font-size: .65rem !important;
        text-align: center !important;
    }

    .hero-facts i {
        display: none !important;
    }

    .hero-track {
        grid-template-columns: repeat(4, minmax(150px, 1fr)) !important;
    }

    /* About */
    .about-grid {
        gap: 32px !important;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .about-visual img {
        aspect-ratio: .9 !important;
    }

    /* Journey */
    .journey-card {
        flex: 0 0 min(82vw, 290px) !important;
        padding: 26px 18px 18px !important;
    }

    /* Cities */
    .city-stage > img {
        height: 230px !important;
    }

    .city-info {
        width: calc(100% - 18px) !important;
        margin-top: -42px !important;
        padding: 22px !important;
    }

    /* Portfolio */
    .project-feature,
    .project-feature > img {
        height: 450px !important;
        min-height: 450px !important;
    }

    .project-feature-card {
        right: 14px !important;
        bottom: 14px !important;
        left: 14px !important;
        padding: 20px !important;
    }

    .project-feature-card > div {
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .project-feature-card > div > span {
        width: 100% !important;
        min-width: 0 !important;
    }

    .project-thumbs {
        grid-auto-columns: min(78vw, 280px) !important;
    }

    /* Purpose */
    .purpose-section {
        padding: 54px 0 32px !important;
    }

    .purpose-section .purpose-grid {
        width: calc(100% - 24px) !important;
        gap: 66px !important;
    }

    .purpose-visual > img {
        height: 100% !important;
    }

    .trust-card {
        right: 10px !important;
        left: 10px !important;
        min-height: 104px !important;
        padding: 16px 18px !important;
    }

    /* Why / buyer journey */
    .why-section > .container {
        width: calc(100% - 24px) !important;
    }

    .why-grid article {
        min-height: 124px !important;
        padding: 20px 22px !important;
    }

    .steps-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .steps-row .step-card:last-child {
        grid-column: auto !important;
    }

    .buyer-journey-section .button.centered {
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Contact / Footer */
    .contact-panel {
        padding: 28px 18px !important;
    }

    .lead-form input,
    .lead-form select,
    .lead-form button,
    .whatsapp-button {
        width: 100% !important;
        min-height: 44px !important;
        height: 44px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto !important;
    }
}


/* ---------- VERY SMALL MOBILE: 0px–359px ---------- */
@media screen and (max-width: 359px) {
    .container,
    .container-wide {
        width: calc(100% - 18px) !important;
    }

    .site-header .brand,
    .site-header.is-scrolled .brand {
        width: 124px !important;
    }

    .hero-copy h1 {
        font-size: 2.5rem !important;
    }

    .hero-actions .button {
        font-size: .62rem !important;
    }

    .about-visual img {
        aspect-ratio: .82 !important;
    }

    .city-stage > img {
        height: 205px !important;
    }

    .project-feature,
    .project-feature > img {
        height: 420px !important;
        min-height: 420px !important;
    }

    .purpose-visual > img {
        height: 235px !important;
    }
}


/* ---------- MOBILE LANDSCAPE ---------- */
@media screen and (max-width: 920px) and (orientation: landscape) and (max-height: 520px) {
    .hero,
    .hero-inner {
        min-height: 620px !important;
    }

    .hero-copy {
        top: 42% !important;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 8vw, 4.2rem) !important;
    }

    .hero-facts {
        bottom: 17% !important;
    }

    .hero-track {
        bottom: 1% !important;
    }
}


/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal] *,
    [data-reveal]::before,
    [data-reveal]::after {
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}
/* Cities and Projects dropdown */
.cities-projects-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.cities-projects-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.cities-dropdown-icon {
    width: 10px;
    height: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.cities-projects-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    z-index: 9999;
    width: 230px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    background: rgba(40, 91, 143, 0.96);
    box-shadow: 0 18px 40px rgba(4, 30, 58, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);

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

/* Prevent cursor gap between menu and trigger */
.cities-projects-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    height: 20px;
}

.primary-nav .cities-projects-menu a {
    display: block !important;
    width: 100% !important;
    padding: 11px 13px !important;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background 0.2s ease,
        padding-left 0.2s ease;
}

.primary-nav .cities-projects-menu a::after {
    display: none !important;
}

.primary-nav .cities-projects-menu a:hover,
.primary-nav .cities-projects-menu a:focus-visible {
    padding-left: 18px !important;
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}

.cities-projects-dropdown:hover .cities-projects-menu,
.cities-projects-dropdown:focus-within .cities-projects-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cities-projects-dropdown:hover .cities-dropdown-icon,
.cities-projects-dropdown:focus-within .cities-dropdown-icon {
    transform: rotate(180deg);
}

@media screen and (min-width: 1024px) {
    .site-header,
    .header-shell,
    .primary-nav,
    .nav-cluster {
        overflow: visible !important;
    }
}
/* =========================================================
   WHY CARDS - GLASSMORPHISM HOVER ANIMATION
   Add at the very bottom of typography.css
========================================================= */

/* =========================================================
   WHY GRID - FIXED BORDER GLASS HOVER
   Border structure remains unchanged on hover
========================================================= */

.why-grid {
    position: relative;
    isolation: isolate;

    /* Keep the original outer rounded border */
    overflow: hidden !important;
}

/* Keep every grid cell fixed */
.why-grid article {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;

    /* Do not round individual cards */
    border-radius: 0 !important;

    /* Do not scale or move the entire grid cell */
    transform: none !important;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            rgba(132, 243, 223, 0.025)
        );

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

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease,
        opacity 0.35s ease;
}

/* Glass background layer */
.why-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    border-radius: 0;

    background:
        radial-gradient(
            circle at 25% 10%,
            rgba(192, 255, 244, 0.42),
            transparent 48%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.25),
            rgba(132, 243, 223, 0.1)
        );

    opacity: 0;
    transform: scale(0.92);

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Shine sweep */
.why-grid article::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -70%;
    z-index: 1;

    width: 38%;
    height: 210%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );

    transform: rotate(18deg);
    pointer-events: none;

    transition:
        left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keep text above effects */
.why-grid article > * {
    position: relative;
    z-index: 3;
}

/* Animate content without changing card border */
.why-grid article > span,
.why-grid article h3,
.why-grid article p {
    transform: translate3d(0, 0, 0);

    transition:
        color 0.35s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 0.35s ease;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
    .why-grid article:hover {
        z-index: 2;

        /* Keep original borders */
        border-radius: 0 !important;

        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.15),
                rgba(132, 243, 223, 0.07)
            );

        box-shadow:
            inset 0 0 42px rgba(255, 255, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);

        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
    }

    .why-grid article:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .why-grid article:hover::after {
        left: 135%;
    }

    /* Zoom only the content */
    .why-grid article:hover > span {
        color: #ffffff;

        transform:
            translate3d(4px, -2px, 0)
            scale(1.06);

        transform-origin: left center;

        text-shadow:
            0 0 14px rgba(132, 243, 223, 0.5);
    }

    .why-grid article:hover h3 {
        color: #ffffff;

        transform:
            translate3d(4px, 0, 0)
            scale(1.025);

        transform-origin: left center;
    }

    .why-grid article:hover p {
        color: rgba(255, 255, 255, 0.96);
        transform: translate3d(4px, 2px, 0);
    }

    /* Optional: slightly fade other cards */
    .why-grid:has(article:hover) article:not(:hover) {
        opacity: 0.68;
    }
}

/* Keyboard focus */
.why-grid article:focus-visible {
    outline: none;
    border-radius: 0 !important;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.15),
            rgba(132, 243, 223, 0.07)
        );

    box-shadow:
        inset 0 0 0 2px rgba(132, 243, 223, 0.35),
        inset 0 0 42px rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.why-grid article:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

/* Mobile tap */
@media (max-width: 767px) {
    .why-grid article {
        transform: none !important;
        border-radius: 0 !important;
    }

    .why-grid article:active {
        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.16),
                rgba(132, 243, 223, 0.08)
            );

        box-shadow:
            inset 0 0 35px rgba(255, 255, 255, 0.08);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .why-grid article,
    .why-grid article::before,
    .why-grid article::after,
    .why-grid article > span,
    .why-grid article h3,
    .why-grid article p {
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   FINAL FOOTER LAYOUT + HOVER EFFECTS
   Added at the end so it overrides older footer rules.
========================================================= */

.site-footer {
    position: relative;
    padding: 58px 0 24px !important;
    background: #085A53 !important;
    color: #ffffff !important;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    width: 620px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(132, 243, 223, 0.10) 0%,
        rgba(132, 243, 223, 0.03) 45%,
        transparent 72%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
    width: min(1220px, calc(100% - 40px)) !important;
    margin-inline: auto !important;
}

.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns:
        minmax(270px, 1.55fr)
        minmax(170px, 0.9fr)
        minmax(170px, 0.9fr)
        minmax(230px, 1.1fr) !important;
    align-items: start !important;
    gap: 64px !important;
}

/* Footer logo must not inherit fixed header logo positioning */
.site-footer .brand-footer {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: inline-block !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    transform-origin: left center;
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.38s ease;
}

.site-footer .brand-footer img {
    display: block !important;
    width: 245px !important;
    max-width: 100% !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    transition:
        filter 0.38s ease,
        opacity 0.38s ease;
}

.site-footer .footer-brand-block {
    min-width: 0;
}

.site-footer .footer-brand-block > p {
    max-width: 315px;
    margin: 14px 0 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer .footer-grid > div:not(.footer-brand-block) {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0;
}

.site-footer .footer-grid h3 {
    position: relative;
    margin: 0 0 13px !important;
    padding-bottom: 5px;
    color: #ffffff !important;
    font-size: 12.75px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.site-footer .footer-grid h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: rgba(132, 243, 223, 0.75);
    transform-origin: left;
    transition:
        width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease;
}

/* Normal footer links */
.site-footer .footer-grid > div:not(.footer-brand-block) > a,
.site-footer .footer-grid p a {
    position: relative;
    display: block !important;
    width: fit-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.84) !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transform: translate3d(0, 0, 0);
    transition:
        color 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 0.3s ease;
}

.site-footer .footer-grid > div:not(.footer-brand-block) > a {
    margin: 0 0 10px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.site-footer .footer-grid p {
    margin: 0 0 13px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.58 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.site-footer .footer-grid p a {
    margin: 0 0 7px !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

/* Animated underline */
.site-footer .footer-grid > div:not(.footer-brand-block) > a::after,
.site-footer .footer-grid p a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    background: #84f3df;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer .follow-title {
    margin-top: 14px !important;
}

.site-footer .socials {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.site-footer .socials a {
    position: relative;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 31px !important;
    width: 31px !important;
    height: 31px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    overflow: hidden;
    background: #ffffff !important;
    color: #085A53 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.38s ease !important;
}

.site-footer .socials a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /*background: linear-gradient(*/
    /*    135deg,*/
    /*    rgba(255, 255, 255, 0.9),*/
    /*    rgba(132, 243, 223, 0.9)*/
    /*);*/
    opacity: 0;
    transform: scale(0.55);
    transition:
        opacity 0.3s ease,
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer .socials a::after {
    display: none !important;
}

.site-footer .socials a > * {
    position: relative;
    z-index: 1;
}

.site-footer .footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-top: 42px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    text-align: left !important;
}

.site-footer .footer-bottom p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.60) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
}

/* Desktop hover and keyboard focus */
@media (hover: hover) and (pointer: fine) {
    .site-footer .brand-footer:hover {
        transform: translateY(-3px) scale(1.025) !important;
        filter: drop-shadow(0 10px 18px rgba(132, 243, 223, 0.18));
    }

    .site-footer .brand-footer:hover img {
        opacity: 1;
        filter:
            brightness(0)
            invert(1)
            drop-shadow(0 0 9px rgba(132, 243, 223, 0.22)) !important;
    }

    .site-footer .footer-brand-block:hover > p {
        color: rgba(255, 255, 255, 0.94) !important;
        transform: translateY(-1px);
    }

    .site-footer .footer-grid > div:not(.footer-brand-block):hover h3::after {
        width: 46px;
        background: #84f3df;
    }

    .site-footer .footer-grid > div:not(.footer-brand-block) > a:hover,
    .site-footer .footer-grid p a:hover {
        color: #ffffff !important;
        transform: translate3d(6px, 0, 0);
        text-shadow: 0 0 14px rgba(132, 243, 223, 0.25);
    }

    .site-footer .footer-grid > div:not(.footer-brand-block) > a:hover::after,
    .site-footer .footer-grid p a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .site-footer .socials a:hover {
        border-color: rgba(132, 243, 223, 0.8) !important;
        background: #84f3df !important;
        color: #05463f !important;
        transform: translateY(-5px) scale(1.10) rotate(3deg) !important;
        box-shadow:
            0 10px 22px rgba(1, 40, 37, 0.22),
            0 0 18px rgba(132, 243, 223, 0.25) !important;
    }

    .site-footer .socials a:hover::before {
        opacity: 1;
        transform: scale(1);
    }
}

.site-footer .brand-footer:focus-visible,
.site-footer .footer-grid a:focus-visible {
    outline: 2px solid #84f3df !important;
    outline-offset: 4px;
}

.site-footer .footer-grid > div:not(.footer-brand-block) > a:focus-visible,
.site-footer .footer-grid p a:focus-visible {
    color: #ffffff !important;
    transform: translate3d(5px, 0, 0);
}

.site-footer .footer-grid > div:not(.footer-brand-block) > a:focus-visible::after,
.site-footer .footer-grid p a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-footer .socials a:focus-visible {
    background: #84f3df !important;
    color: #05463f !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 10px 22px rgba(1, 40, 37, 0.22) !important;
}

/* Laptop */
@media screen and (max-width: 1199px) {
    .site-footer > .container {
        width: min(1000px, calc(100% - 40px)) !important;
    }

    .site-footer .footer-grid {
        grid-template-columns:
            minmax(235px, 1.3fr)
            minmax(150px, 0.85fr)
            minmax(150px, 0.85fr)
            minmax(205px, 1fr) !important;
        gap: 38px !important;
    }

    .site-footer .brand-footer img {
        width: 220px !important;
    }
}

/* Tablet */
@media screen and (max-width: 991px) {
    .site-footer {
        padding: 52px 0 24px !important;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr !important;
        gap: 42px 30px !important;
    }

    .site-footer .footer-grid > div:last-child {
        /*grid-column: 1 / -1 !important;*/
        display: grid !important;
        /*grid-template-columns: repeat(3, minmax(0, 1fr)) !important;*/
        column-gap: 32px !important;
        align-items: start !important;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .site-footer {
        padding: 46px 0 22px !important;
    }

    .site-footer > .container {
        width: calc(100% - 28px) !important;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 38px 24px !important;
    }

    .site-footer .footer-brand-block {
        grid-column: 1 / -1 !important;
    }

    .site-footer .footer-grid > div:last-child {
        grid-column: 1 / -1 !important;
        display: flex !important;
    }

    .site-footer .brand-footer img {
        width: 215px !important;
    }

    .site-footer .footer-brand-block > p {
        max-width: 360px;
        font-size: 13px !important;
    }

    .site-footer .footer-grid h3 {
        font-size: 16px !important;
    }

    .site-footer .footer-grid > div:not(.footer-brand-block) > a,
    .site-footer .footer-grid p {
        font-size: 14px !important;
    }

    .site-footer .footer-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 34px !important;
    }

    /* Tap feedback without sticky hover */
    .site-footer .footer-grid a:active {
        color: #ffffff !important;
    }

    .site-footer .socials a:active {
        background: #84f3df !important;
        color: #05463f !important;
        transform: scale(0.94) !important;
    }
}

/* Small mobile */
@media screen and (max-width: 479px) {
    .site-footer > .container {
        width: calc(100% - 24px) !important;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .site-footer .footer-brand-block,
    .site-footer .footer-grid > div:last-child {
        grid-column: auto !important;
    }

    .site-footer .brand-footer img {
        width: 205px !important;
    }

    .site-footer .footer-grid h3 {
        margin-bottom: 10px !important;
    }

    .site-footer .footer-grid > div:not(.footer-brand-block) > a {
        margin-bottom: 8px !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .site-footer *,
    .site-footer *::before,
    .site-footer *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .site-footer .brand-footer:hover,
    .site-footer .footer-grid a:hover,
    .site-footer .socials a:hover {
        transform: none !important;
    }
}
.about-stats article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.about-stats .stat-icon {
    width: 100px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.about-stats small {
    font-size: 14px;
    line-height: 1.4;
}

/* =========================================================
   FEATURED PORTFOLIO: PREMIUM SCROLL + ZOOM MOTION
   Added as a final override layer to avoid conflicts with
   the older duplicated portfolio declarations above.
========================================================= */
.portfolio-section[data-portfolio-motion] {
    --portfolio-image-scale: 1;
    --portfolio-image-y: 0px;
    --portfolio-parallax-y: 0px;
    --portfolio-image-opacity: 1;
    --portfolio-image-blur: 0px;
    --portfolio-card-y: 0px;
    --portfolio-card-scale: 1;
    --portfolio-card-opacity: 1;
    --portfolio-content-y: 0px;
    --portfolio-content-opacity: 1;
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.portfolio-section[data-portfolio-motion]::before,
.portfolio-section[data-portfolio-motion]::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.portfolio-section[data-portfolio-motion]::before {
    top: 4%;
    left: -12%;
    width: min(44vw, 680px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(8, 90, 83, 0.085), rgba(8, 90, 83, 0) 68%);
}

.portfolio-section[data-portfolio-motion]::after {
    right: -13%;
    bottom: -5%;
    width: min(38vw, 590px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(221, 7, 30, 0.055), rgba(221, 7, 30, 0) 70%);
}

.portfolio-section[data-portfolio-motion] .project-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(8, 90, 83, 0.08);
    border-radius: 30px;
    background: linear-gradient(145deg, #dfeceb, #f7fbfa);
    box-shadow: 0 34px 80px rgba(5, 74, 68, 0.17);
    transform: translateZ(0);
}

.portfolio-section[data-portfolio-motion] .project-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 29%),
        linear-gradient(180deg, transparent 50%, rgba(2, 28, 27, 0.18));
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.portfolio-section[data-portfolio-motion] .project-feature::after {
    content: "";
    position: absolute;
    top: -25%;
    left: -65%;
    z-index: 4;
    width: 42%;
    height: 155%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    opacity: 0;
    pointer-events: none;
    transform: rotate(15deg) translateX(0);
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-feature::after {
    animation: portfolioSheen 1.35s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes portfolioSheen {
    0% {
        left: -65%;
        opacity: 0;
    }
    18% {
        opacity: 0.55;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}

.portfolio-section[data-portfolio-motion] .project-feature > img {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    box-shadow: none;
    opacity: var(--portfolio-image-opacity);
    filter: blur(var(--portfolio-image-blur)) saturate(0.98) contrast(1.015);
    transform:
        translate3d(
            0,
            calc(var(--portfolio-image-y) + var(--portfolio-parallax-y)),
            0
        )
        scale(var(--portfolio-image-scale))
        scale(var(--portfolio-change-scale, 1));
    transform-origin: 50% 50%;
    will-change: transform, opacity, filter;
    transition:
        opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section[data-portfolio-motion] .project-feature.is-changing > img {
    --portfolio-change-scale: 0.975;
    opacity: 0.28;
    filter: blur(7px) saturate(0.76);
}

.portfolio-section[data-portfolio-motion] .project-feature.is-image-arriving > img {
    animation: portfolioImageArrive 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes portfolioImageArrive {
    0% {
        opacity: 0.2;
        filter: blur(10px) saturate(0.72);
        clip-path: inset(3.5% 3.5% 3.5% 3.5% round 34px);
    }
    100% {
        opacity: var(--portfolio-image-opacity);
        filter: blur(var(--portfolio-image-blur)) saturate(0.98) contrast(1.015);
        clip-path: inset(0 0 0 0 round 30px);
    }
}

.portfolio-section[data-portfolio-motion] .project-feature-card {
    z-index: 5;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(115deg, rgba(38, 28, 27, 0.88), rgba(91, 72, 69, 0.74));
    box-shadow: 0 22px 50px rgba(16, 24, 24, 0.22);
    opacity: var(--portfolio-card-opacity);
    transform:
        translate3d(0, var(--portfolio-card-y), 0)
        scale(var(--portfolio-card-scale));
    transform-origin: 50% 100%;
    will-change: transform, opacity;
    transition:
        transform 0.2s linear,
        opacity 0.2s linear,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.portfolio-section[data-portfolio-motion] .project-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 38%);
    pointer-events: none;
}

.portfolio-section[data-portfolio-motion] .project-feature.is-content-refreshing .project-feature-card > * {
    animation: portfolioCardRefresh 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.portfolio-section[data-portfolio-motion] .project-feature.is-content-refreshing .project-feature-card > *:nth-child(2) {
    animation-delay: 0.045s;
}

.portfolio-section[data-portfolio-motion] .project-feature.is-content-refreshing .project-feature-card > *:nth-child(3) {
    animation-delay: 0.08s;
}

.portfolio-section[data-portfolio-motion] .project-feature.is-content-refreshing .project-feature-card > *:nth-child(4) {
    animation-delay: 0.115s;
}

@keyframes portfolioCardRefresh {
    0% {
        opacity: 0;
        transform: translateY(11px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-section[data-portfolio-motion] .portfolio-content {
    opacity: var(--portfolio-content-opacity);
    transform: translate3d(0, var(--portfolio-content-y), 0);
    will-change: transform, opacity;
}

.portfolio-section[data-portfolio-motion].portfolio-motion-ready .portfolio-content .section-title,
.portfolio-section[data-portfolio-motion].portfolio-motion-ready .portfolio-content > p:not(.eyebrow),
.portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-filter-desktop,
.portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-filter-mobile,
.portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-thumbs,
.portfolio-section[data-portfolio-motion].portfolio-motion-ready .carousel-progress {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .portfolio-content .section-title,
.portfolio-section[data-portfolio-motion].is-portfolio-visible .portfolio-content > p:not(.eyebrow),
.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-filter-desktop,
.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-filter-mobile,
.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-thumbs,
.portfolio-section[data-portfolio-motion].is-portfolio-visible .carousel-progress {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .portfolio-content > p:not(.eyebrow) {
    transition-delay: 0.09s;
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-filter-desktop,
.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-filter-mobile {
    transition-delay: 0.17s;
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .project-thumbs {
    transition-delay: 0.25s;
}

.portfolio-section[data-portfolio-motion].is-portfolio-visible .carousel-progress {
    transition-delay: 0.34s;
}

.portfolio-section[data-portfolio-motion] .project-filter-button {
    position: relative;
    overflow: hidden;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.portfolio-section[data-portfolio-motion] .project-filter-button:hover,
.portfolio-section[data-portfolio-motion] .project-filter-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(8, 90, 83, 0.12);
}

.portfolio-section[data-portfolio-motion] .project-thumb {
    --thumb-lift: 0px;
    transform: translate3d(0, var(--thumb-lift), 0);
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s ease,
        opacity 0.55s ease;
}

.portfolio-section[data-portfolio-motion] .project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-section[data-portfolio-motion] .project-thumb:hover,
.portfolio-section[data-portfolio-motion] .project-thumb:focus-visible,
.portfolio-section[data-portfolio-motion] .project-thumb.is-active {
    --thumb-lift: -7px;
    outline: none;
}

.portfolio-section[data-portfolio-motion] .project-thumb:hover::after,
.portfolio-section[data-portfolio-motion] .project-thumb:focus-visible::after,
.portfolio-section[data-portfolio-motion] .project-thumb.is-active::after {
    opacity: 1;
}

.portfolio-section[data-portfolio-motion] .project-thumb img {
    transform: scale(1.001);
    transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

.portfolio-section[data-portfolio-motion] .project-thumb:hover img,
.portfolio-section[data-portfolio-motion] .project-thumb:focus-visible img,
.portfolio-section[data-portfolio-motion] .project-thumb.is-active img {
    transform: scale(1.075);
    filter: saturate(1.06) contrast(1.03);
}

.portfolio-section[data-portfolio-motion] .project-thumb span {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease;
}

.portfolio-section[data-portfolio-motion] .carousel-progress {
    position: relative;
    overflow: visible;
}

.portfolio-section[data-portfolio-motion] .carousel-progress span {
    position: relative;
    box-shadow: 0 0 14px rgba(221, 7, 30, 0.28);
    transition:
        width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section[data-portfolio-motion] .carousel-progress span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(221, 7, 30, 0.1);
    transform: translateY(-50%);
}

@media (max-width: 1023px) {
    .portfolio-section[data-portfolio-motion] {
        overflow: hidden;
    }

    .portfolio-section[data-portfolio-motion] .project-feature {
        border-radius: 25px;
    }

    .portfolio-section[data-portfolio-motion] .project-feature-card {
        transition:
            transform 0.2s linear,
            opacity 0.2s linear,
            background 0.35s ease;
    }
}

@media (max-width: 720px) {
    .portfolio-section[data-portfolio-motion]::before {
        top: 14%;
        left: -42%;
        width: 105vw;
    }

    .portfolio-section[data-portfolio-motion]::after {
        right: -52%;
        bottom: 3%;
        width: 95vw;
    }

    .portfolio-section[data-portfolio-motion] .project-feature {
        border-radius: 22px;
        box-shadow: 0 24px 52px rgba(5, 74, 68, 0.15);
    }

    .portfolio-section[data-portfolio-motion] .project-feature-card {
        border-radius: 16px;
    }

    .portfolio-section[data-portfolio-motion] .project-thumb:hover,
    .portfolio-section[data-portfolio-motion] .project-thumb:focus-visible,
    .portfolio-section[data-portfolio-motion] .project-thumb.is-active {
        --thumb-lift: -4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-section[data-portfolio-motion],
    .portfolio-section[data-portfolio-motion] .project-feature > img,
    .portfolio-section[data-portfolio-motion] .project-feature-card,
    .portfolio-section[data-portfolio-motion] .portfolio-content,
    .portfolio-section[data-portfolio-motion] .portfolio-content .section-title,
    .portfolio-section[data-portfolio-motion] .portfolio-content > p:not(.eyebrow),
    .portfolio-section[data-portfolio-motion] .project-filter-desktop,
    .portfolio-section[data-portfolio-motion] .project-filter-mobile,
    .portfolio-section[data-portfolio-motion] .project-thumbs,
    .portfolio-section[data-portfolio-motion] .carousel-progress,
    .portfolio-section[data-portfolio-motion] .project-thumb,
    .portfolio-section[data-portfolio-motion] .project-thumb img {
        animation: none !important;
        transition: none !important;
    }

    .portfolio-section[data-portfolio-motion] .project-feature > img,
    .portfolio-section[data-portfolio-motion] .project-feature-card,
    .portfolio-section[data-portfolio-motion] .portfolio-content {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .portfolio-content .section-title,
    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .portfolio-content > p:not(.eyebrow),
    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-filter-desktop,
    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-filter-mobile,
    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .project-thumbs,
    .portfolio-section[data-portfolio-motion].portfolio-motion-ready .carousel-progress {
        opacity: 1 !important;
        transform: none !important;
    }
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    line-height: 1.4;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.footer-credit img {
    display: block;
    width: 42px;
    height: 24px;
    object-fit: contain;
}

.footer-locations {
    margin: 0;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-copyright {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .footer-credit {
        display: inline-flex;
    }

    .footer-credit img {
        width: 38px;
        height: 22px;
    }

    .footer-locations {
        white-space: normal;
    }
}
/* =========================================================
   REUSABLE SECTION TITLE ANIMATION
   Applied to the Mahidhara homepage section headings.
========================================================= */

.dc-animated-title {
    --dc-title-duration: 900ms;
    --dc-title-delay: 0ms;
    --dc-title-distance: 42px;
    --dc-title-gap: 0.16em;

    position: relative;
    display: flex;
    max-width: 100%;
    margin-top: 0;
    overflow: visible;
    gap: var(--dc-title-gap);
}

.dc-title-inline {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
}

.dc-title-stacked {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.dc-title-part {
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    color: inherit;
    font: inherit;
    font-style: normal;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: normal;
    will-change: opacity, transform, filter;
}

.dc-title-part.red {
    color: var(--red);
}

.dc-title-light .dc-title-left {
    color: #ffffff;
}

.dc-title-light .dc-title-right {
    color: #ffffff;
}

.dc-title-light .dc-title-right em {
    color: var(--mint);
    font: inherit;
    font-style: normal;
}

.dc-title-contact .dc-title-part {
    color: inherit;
}

/* Hide only when JavaScript is available. */
.js .dc-animated-title .dc-title-left {
    opacity: 0;
    filter: blur(7px);
    transform:
        translate3d(
            calc(var(--dc-title-distance) * -1),
            14px,
            0
        )
        scale(0.97);
}

.js .dc-animated-title .dc-title-right {
    opacity: 0;
    filter: blur(7px);
    transform:
        translate3d(
            var(--dc-title-distance),
            14px,
            0
        )
        scale(0.97);
}

.js .dc-animated-title.is-title-visible .dc-title-left {
    animation:
        dcTitleRevealLeft
        var(--dc-title-duration)
        cubic-bezier(0.22, 1, 0.36, 1)
        var(--dc-title-delay)
        forwards;
}

.js .dc-animated-title.is-title-visible .dc-title-right {
    animation:
        dcTitleRevealRight
        var(--dc-title-duration)
        cubic-bezier(0.22, 1, 0.36, 1)
        calc(var(--dc-title-delay) + 110ms)
        forwards;
}

@keyframes dcTitleRevealLeft {
    0% {
        opacity: 0;
        filter: blur(7px);
        transform:
            translate3d(
                calc(var(--dc-title-distance) * -1),
                14px,
                0
            )
            scale(0.97);
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes dcTitleRevealRight {
    0% {
        opacity: 0;
        filter: blur(7px);
        transform:
            translate3d(
                var(--dc-title-distance),
                14px,
                0
            )
            scale(0.97);
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 720px) {
    .dc-animated-title {
        --dc-title-distance: 26px;
        --dc-title-duration: 760ms;
    }

    .dc-title-inline {
        gap: 0.12em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dc-animated-title .dc-title-part {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        animation: none !important;
    }
}


/* gohighlevel form css */


.multiselect__select:before 
{
    border-color: #dd0d0d transparent transparent !important;
}
/* =========================================================
   FINAL TABLET PURPOSE SECTION FIX
   Content on the left, image on the right.
   Keep this block at the absolute end of style.css.
   ========================================================= */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .purpose-section {
        padding: 72px 0 58px !important;
    }

    .purpose-section .purpose-grid {
        width: min(calc(100% - 40px), 920px) !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr) !important;
        align-items: center !important;
        gap: clamp(24px, 4vw, 42px) !important;
    }

    /* Content first: left column */
    .purpose-section .purpose-copy {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        text-align: left !important;
    }

    /* Image next to the content: right column */
    .purpose-section .purpose-visual {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .purpose-section .purpose-visual > img {
        width: 100% !important;
        height: clamp(225px, 31vw, 290px) !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 18px !important;
    }

    .purpose-section .purpose-copy .eyebrow {
        margin-bottom: 8px !important;
    }

    .purpose-section .purpose-copy .section-title {
        max-width: 100% !important;
        font-size: clamp(1.7rem, 3.4vw, 2.25rem) !important;
        line-height: 1.12 !important;
    }

    .purpose-section .purpose-copy .section-title br {
        display: none !important;
    }

    .purpose-section .purpose-copy p:not(.eyebrow) {
        max-width: 100% !important;
        margin-top: 14px !important;
        font-size: clamp(.76rem, 1.35vw, .88rem) !important;
        line-height: 1.58 !important;
    }

    .purpose-section .trust-card {
        right: 12px !important;
        bottom: -34px !important;
        left: auto !important;
        width: min(88%, 230px) !important;
        min-width: 0 !important;
        min-height: 82px !important;
        gap: 10px !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
    }

    .purpose-section .trust-card strong {
        font-size: clamp(1.75rem, 3.4vw, 2.15rem) !important;
        white-space: nowrap !important;
    }

    .purpose-section .trust-card span {
        font-size: clamp(.68rem, 1.25vw, .82rem) !important;
        line-height: 1.3 !important;
    }

    .why-section {
        margin-top: 0 !important;
    }
}

/* =========================================================
   FEATURED PROJECT ARROWS + SOFTER JOURNEY CARD SHADOW
   Final override. Keep this block at the absolute end.
========================================================= */

/* Keep the location, project link and arrows aligned inside
   the dark featured-project information panel. */
.portfolio-section .project-feature-card .project-feature-footer {
    display: grid;
    grid-template-columns: minmax(132px, auto) minmax(120px, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.portfolio-section .project-feature-card .project-feature-footer > span {
    min-width: 132px;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--green, #085A53);
    color: #ffffff;
    text-align: center;
}

.portfolio-section .project-feature-card .project-feature-footer > a {
    justify-self: center;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
}

.portfolio-section .project-feature-card .project-feature-footer > a b {
    margin-left: 8px;
    color: var(--red, #DD071E);
}

/* Desktop arrows: same long-line visual as the supplied reference. */
.project-feature-arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-width: 116px;
}

.project-feature-arrows button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: none;
    cursor: pointer;
    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.project-feature-arrows button svg {
    display: block;
    width: 44px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.project-feature-arrows button:hover,
.project-feature-arrows button:focus-visible {
    color: #ffffff;
    outline: none;
}

.project-feature-arrows button[data-project-prev]:hover,
.project-feature-arrows button[data-project-prev]:focus-visible {
    transform: translateX(-4px);
}

.project-feature-arrows button[data-project-next]:hover,
.project-feature-arrows button[data-project-next]:focus-visible {
    transform: translateX(4px);
}

.project-feature-arrows button:disabled,
.project-mobile-nav button:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none !important;
}

/* The desktop arrow group is used above 720px. */
.project-mobile-nav {
    display: none;
}

/* Softer shadow: larger blur, lower opacity, no sharp dark edge. */
#journeyScroller .journey-card.is-active,
#journeyScroller .journey-card.is-active:hover,
#journeyScroller .journey-card.is-active:focus,
#journeyScroller .journey-card.is-active:focus-visible {
    box-shadow:
        0 22px 58px rgba(7, 78, 72, 0.10),
        0 8px 24px rgba(7, 78, 72, 0.055) !important;
}

@media (hover: hover) and (pointer: fine) {
    #journeyScroller .journey-card:not(.is-active):hover {
        box-shadow:
            0 22px 58px rgba(7, 78, 72, 0.10),
            0 8px 24px rgba(7, 78, 72, 0.055) !important;
    }
}

@media (max-width: 920px) {
    .portfolio-section .project-feature-card .project-feature-footer {
        grid-template-columns: minmax(126px, auto) 1fr auto;
        gap: 12px;
    }

    .project-feature-arrows {
        gap: 12px;
        min-width: 100px;
    }

    .project-feature-arrows button {
        width: 42px;
    }

    .project-feature-arrows button svg {
        width: 38px;
    }
}

@media (max-width: 720px) {
    .project-feature-arrows {
        display: none !important;
    }

    .project-mobile-nav {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        width: max-content;
        margin: -34px auto 8px;
        padding: 8px 12px;
        border: 1px solid rgba(8, 90, 83, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 12px 34px rgba(5, 74, 68, 0.10);
        backdrop-filter: blur(16px) saturate(145%);
        -webkit-backdrop-filter: blur(16px) saturate(145%);
    }

    .project-mobile-nav button {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--green, #085A53);
        color: #ffffff;
        font-size: 1.65rem;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
    }

    .project-mobile-count {
        min-width: 58px;
        color: var(--green, #085A53);
        font-size: 0.76rem;
        font-weight: 600;
        text-align: center;
    }

    .portfolio-section .project-feature-card .project-feature-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .portfolio-section .project-feature-card .project-feature-footer > a {
        justify-self: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-feature-arrows button {
        transition: none !important;
    }
}


/* =========================================================
   FEATURED PROJECT ARROWS — RED + RIGHT EDGE ALIGNMENT
   Keep this override at the absolute end of style.css.
========================================================= */
.portfolio-section .project-feature-card .project-feature-footer {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
}

.portfolio-section .project-feature-card .project-feature-footer > a {
    justify-self: start;
    min-width: 0;
    margin: 0;
    white-space: nowrap;
}

.project-feature-arrows {
    justify-self: end;
    margin-left: auto;
    gap: 10px;
    min-width: 94px;
}

.project-feature-arrows button {
    width: 42px;
    min-width: 42px;
    color: var(--red, #DD071E) !important;
}

.project-feature-arrows button svg {
    width: 40px;
    stroke: currentColor;
}

.project-feature-arrows button:hover,
.project-feature-arrows button:focus-visible {
    color: #f11b32 !important;
}

@media (max-width: 920px) and (min-width: 721px) {
    .portfolio-section .project-feature-card .project-feature-footer {
        grid-template-columns: minmax(118px, auto) minmax(0, 1fr) auto;
        column-gap: 9px;
    }

    .project-feature-arrows {
        gap: 6px;
        min-width: 82px;
    }

    .project-feature-arrows button {
        width: 38px;
        min-width: 38px;
    }

    .project-feature-arrows button svg {
        width: 36px;
    }
}

@media (max-width: 720px) {
    .portfolio-section .project-feature-card .project-feature-footer {
        display: flex;
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .portfolio-section .project-feature-card .project-feature-footer > a {
        justify-self: auto;
    }
}

/* =========================================================
   FEATURED PROJECT NAVIGATION — ARROWS AFTER PROGRESS LINE
   The desktop red arrows sit at the far-right end of the
   thumbnail progress line. Keep this at the end of style.css.
========================================================= */

/* The information card now contains only city + project link. */
.portfolio-section .project-feature-card .project-feature-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
}

.portfolio-section .project-feature-card .project-feature-footer > span,
.portfolio-section .project-feature-card .project-feature-footer > a {
    margin: 0 !important;
}

.portfolio-section .project-feature-card .project-feature-footer > a {
    min-width: 0;
    white-space: nowrap;
}

/* Progress line and arrow group share one full-width row. */
.portfolio-section .portfolio-progress-navigation {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 18px;
    margin-top: 82px;
}

.portfolio-section .portfolio-progress-navigation .carousel-progress {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    height: 1px;
    margin: 0 !important;
}

/* Red long-line arrows at the end of the progress line. */
.portfolio-section .portfolio-progress-navigation .project-feature-arrows {
    position: static;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    justify-self: auto;
    gap: 12px;
    width: auto;
    min-width: 112px;
    margin: 0;
    padding: 0;
}

.portfolio-section .portfolio-progress-navigation .project-feature-arrows button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--red, #DD071E) !important;
    box-shadow: none;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.portfolio-section .portfolio-progress-navigation .project-feature-arrows button svg {
    display: block;
    width: 46px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.portfolio-section .portfolio-progress-navigation .project-feature-arrows button:hover,
.portfolio-section .portfolio-progress-navigation .project-feature-arrows button:focus-visible {
    color: #f11b32 !important;
    outline: none;
}

.portfolio-section .portfolio-progress-navigation .project-feature-arrows button[data-project-prev]:hover,
.portfolio-section .portfolio-progress-navigation .project-feature-arrows button[data-project-prev]:focus-visible {
    transform: translateX(-4px);
}

.portfolio-section .portfolio-progress-navigation .project-feature-arrows button[data-project-next]:hover,
.portfolio-section .portfolio-progress-navigation .project-feature-arrows button[data-project-next]:focus-visible {
    transform: translateX(4px);
}

@media (max-width: 920px) and (min-width: 721px) {
    .portfolio-section .portfolio-progress-navigation {
        gap: 12px;
        margin-top: 58px;
    }

    .portfolio-section .portfolio-progress-navigation .project-feature-arrows {
        gap: 6px;
        min-width: 92px;
    }

    .portfolio-section .portfolio-progress-navigation .project-feature-arrows button {
        width: 42px;
        min-width: 42px;
    }

    .portfolio-section .portfolio-progress-navigation .project-feature-arrows button svg {
        width: 39px;
    }
}

@media (max-width: 720px) {
    .portfolio-section .project-feature-card .project-feature-footer {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .portfolio-section .portfolio-progress-navigation {
        display: block;
        margin-top: 44px;
    }

    .portfolio-section .portfolio-progress-navigation .carousel-progress {
        width: 100% !important;
    }

    /* Mobile continues to use the compact counter navigation. */
    .portfolio-section .portfolio-progress-navigation .project-feature-arrows {
        display: none !important;
    }
}

/* =========================================================
   FINAL UNIFIED HEADING SIZE — 35PX
   Keeps all primary page headings consistent on every device.
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-copy h1,
.about-copy .section-title,
.journey-heading .section-title,
.cities-title .section-title,
.portfolio-content .section-title,
.compare-section .section-title,
.purpose-copy .section-title,
.why-section .section-title,
.buyer-journey-section .section-title,
.testimonials-section .section-title,
.contact-copy h2 {
    font-size: 35px !important;
}

