:root {
    --ink: #09131f;
    --navy: #0b1f35;
    --blue: #123f66;
    --teal: #0f766e;
    --gold: #d8a31a;
    --gold-soft: #f6e7b9;
    --paper: #f7f9fb;
    --white: #ffffff;
    --muted: #607086;
    --line: #d9e1ea;
    --shadow: 0 18px 55px rgba(9, 19, 31, 0.12);
    --font-body: "Instrument Sans", Arial, sans-serif;
    --font-display: "Plus Jakarta Sans", "Instrument Sans", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(18, 63, 102, 0.035) 1px, transparent 1px) 0 0/44px 44px,
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 1000;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(9, 19, 31, 0.14);
}

.topbar {
    background: #07111d;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar i {
    color: var(--gold);
}

.topbar__social {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 13px;
}

.nav-shell {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(217, 225, 234, 0.8);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand img {
    width: 68px;
    height: 56px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-parent {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #243243;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--blue);
    background: #edf4f8;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    background: var(--gold);
}

.nav-dropdown-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    color: #243243;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-item--has-children.is-open .nav-dropdown-toggle,
.nav-item--has-children:hover .nav-dropdown-toggle,
.nav-item--has-children:focus-within .nav-dropdown-toggle {
    color: var(--blue);
    background: #edf4f8;
}

.nav-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-item--has-children.is-open .nav-dropdown-toggle i,
.nav-item--has-children:hover .nav-dropdown-toggle i,
.nav-item--has-children:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 240px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(217, 225, 234, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(9, 19, 31, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown.is-open,
.nav-item--has-children:hover .nav-dropdown,
.nav-item--has-children:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #243243;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.is-active {
    color: var(--blue);
    background: #edf4f8;
    padding: 10px 20px;
}

.nav-dropdown__link.is-active::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: var(--gold);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta,
.btn-primary {
    color: #09131f;
    background: linear-gradient(135deg, #f4cf62, #d8a31a);
    box-shadow: 0 12px 26px rgba(216, 163, 26, 0.24);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-light {
    color: var(--blue);
    background: var(--white);
    border-color: var(--line);
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
}

.section {
    position: relative;
    padding: 88px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-dark {
    color: var(--white);
    background: radial-gradient(circle at 75% 20%, rgba(216, 163, 26, 0.16), transparent 28%), linear-gradient(135deg, #07111d 0%, #0b1f35 54%, #123f66 100%);
}

.section-soft {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head.center .eyebrow {
    justify-content: center;
}

.section-head h1,
.section-head h2 {
    margin: 10px 0 12px;
    line-height: 1.12;
}

h1,
.h1 {
    font-size: 58px;
    letter-spacing: -0.04em;
    font-weight: 800;
}

h2,
.h2 {
    font-size: 40px;
    letter-spacing: -0.035em;
    font-weight: 800;
}

h3 {
    font-size: 22px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h1,
h2,
h3,
.brand strong,
.nav-link,
.nav-dropdown__link,
.nav-dropdown-toggle,
.nav-cta,
.btn,
.eyebrow,
.faq-question {
    font-family: var(--font-display);
}

p {
    margin: 0;
    color: inherit;
}

.muted {
    color: var(--muted);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.76);
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: 152px 0 62px;
    color: var(--white);
    background: linear-gradient(90deg, rgba(7, 17, 29, 0.94), rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.42)), url("../img/3857 (1).jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero::after,
.page-hero::after,
.service-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.78));
    pointer-events: none;
}

.hero::before,
.page-hero::before,
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(216, 163, 26, 0.12) 0 1px, transparent 1px 18px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 78%);
    pointer-events: none;
}

.hero > .container,
.page-hero > .container,
.service-hero > .container {
    position: relative;
    z-index: 2;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(500px, 0.86fr);
    gap: 42px;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    margin: 12px 0 18px;
    line-height: 1.04;
}

.hero__copy {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.hero__actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 680px;
    margin-top: 34px;
}

.metric {
    min-height: 102px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.metric strong {
    display: block;
    font-size: 30px;
    color: var(--gold-soft);
    line-height: 1.1;
}

.metric span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.hero-proof-list li {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(244, 207, 98, 0.34);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(7, 17, 29, 0.28);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 800;
}

.hero-proof-list i {
    color: var(--gold-soft);
}

.hero-lead-card {
    display: grid;
    gap: 16px;
    align-self: stretch;
    align-content: center;
}

.hero-lead-card .contact-card {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.hero-lead-card__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-lead-card__trust span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-lead-card__trust i {
    color: var(--gold-soft);
}

.finance-panel {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.58);
    overflow: hidden;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.panel-head strong {
    color: var(--navy);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #e7f8f2;
    color: #0b7b53;
    font-size: 12px;
    font-weight: 800;
}

.market-visual {
    padding: 18px;
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: end;
    gap: 10px;
    height: 190px;
    padding: 18px;
    background: linear-gradient(#eef4f7 1px, transparent 1px) 0 0/100% 38px, #fbfdff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.chart-bars span {
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #17a38b, #123f66);
    min-height: 32px;
}

.ticker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.ticker div {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7f9fb;
}

.ticker small {
    display: block;
    color: var(--muted);
}

.ticker strong {
    color: var(--navy);
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: end;
    padding: 152px 0 70px;
    color: var(--white);
    background: linear-gradient(90deg, rgba(7, 17, 29, 0.9), rgba(11, 31, 53, 0.72)), var(--hero-image) center/cover no-repeat;
    overflow: hidden;
}

.service-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: end;
    padding: 158px 0 76px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 17, 29, 0.94), rgba(11, 31, 53, 0.78), rgba(15, 118, 110, 0.34)),
        var(--hero-image) center/cover no-repeat;
    overflow: hidden;
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: end;
}

.service-hero h1 {
    max-width: 850px;
    margin: 10px 0 14px;
    line-height: 1.05;
}

.service-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.service-hero__panel {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-hero__panel span {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--ink);
    background: var(--gold);
    font-size: 28px;
    margin-bottom: 18px;
}

.service-hero__panel strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}

.service-hero__panel p {
    font-size: 15px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    color: var(--gold-soft);
    font-weight: 800;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 22px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Ensure grid-4 children (cards) stretch to equal heights */
.grid-4 > .card {
    height: 100%;
}

.card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(9, 19, 31, 0.06);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--blue));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card:hover::before {
    opacity: 1;
}

.feature-card {
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--blue);
    background: linear-gradient(135deg, #fff8df, #e7f8f2);
    border: 1px solid #f1deb1;
    font-size: 22px;
}

.feature-card h3 {
    margin: 18px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Make feature cards use column flex so content can be vertically aligned */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Push the description to the bottom so all card descriptions align */
.feature-card p {
    margin-top: auto;
}

.service-card {
    overflow: hidden;
    display: block;
    color: inherit;
}

.service-card__image {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    font-size: 22px;
}

.service-card__body {
    padding: 22px;
}

.service-card__body h3 {
    margin: 0 0 8px;
}

.premium-service-card .service-card__body {
    min-height: 226px;
    display: grid;
    align-content: start;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--teal);
    font-weight: 900;
    font-size: 14px;
}

.service-link-card {
    display: block;
    color: inherit;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    gap: 44px;
    align-items: center;
}

.media-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow);
    background: var(--paper);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.floating-proof {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.floating-proof div {
    padding: 13px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 225, 234, 0.9);
}

.floating-proof strong {
    display: block;
    color: var(--blue);
}

.list-check {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.list-check li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.list-check i {
    color: var(--teal);
    margin-top: 5px;
}

.quote-block {
    padding: 28px;
    border-radius: 8px;
    border-left: 5px solid var(--gold);
    background: #fff8df;
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
}

.advisory-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 18px;
    border-radius: 8px;
    color: #4e3a00;
    background: #fff8df;
    border: 1px solid #ecdba8;
}

.advisory-note i {
    color: var(--gold);
    margin-top: 5px;
}

.visual-ledger {
    padding: 18px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 251, 0.95)),
        linear-gradient(90deg, rgba(18, 63, 102, 0.06) 1px, transparent 1px) 0 0/28px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.ledger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.ledger-row:last-child {
    border-bottom: 0;
}

.ledger-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ledger-row i {
    color: var(--teal);
}

.ledger-row strong {
    min-width: 42px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    background: var(--gold-soft);
}

.ledger-head {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 8px;
    border-bottom: 0;
    margin-bottom: 8px;
}

.ledger-head strong {
    color: var(--ink);
    background: var(--gold);
}

.process-lane {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    min-height: 220px;
    padding: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--blue));
    font-weight: 900;
    margin-bottom: 20px;
}

.process-step p {
    color: var(--navy);
    font-weight: 700;
}

.service-contact-card {
    display: grid;
    gap: 14px;
    align-content: start;
}

.service-switcher {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-switcher a {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.service-switcher a:hover,
.service-switcher a.is-current {
    color: var(--white);
    background: rgba(216, 163, 26, 0.22);
    border-color: rgba(216, 163, 26, 0.55);
}

.service-switcher i {
    color: var(--gold-soft);
    font-size: 20px;
}

.team-profile {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.profile-card {
    position: sticky;
    top: 132px;
    overflow: hidden;
}

.profile-card img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: var(--paper);
}

.profile-card__body {
    padding: 22px;
}

.profile-card h2 {
    margin: 0 0 4px;
    font-size: 26px;
}

.profile-card p {
    color: var(--muted);
}

.content-panel {
    padding: 30px;
}

.content-panel + .content-panel {
    margin-top: 18px;
}

.content-panel h2,
.content-panel h3 {
    margin: 0 0 12px;
}

.content-panel p + p {
    margin-top: 16px;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
}

.timeline-item span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e7f8f2;
    color: var(--teal);
    font-weight: 900;
}

.partner-logo {
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-height: 58px;
    object-fit: contain;
}

.resource-card {
    padding: 26px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-card {
    padding: 30px;
}

.lead-form {
    --field-height: 58px;
    --field-gap: 18px;
    --field-radius: 10px;
    --field-border: #cfdbea;
    --field-focus: #0f766e;
    color: var(--ink);
    overflow: hidden;
}

.lead-form__head {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(207, 219, 234, 0.7);
}

.lead-form__head h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
}

.lead-form__head p {
    color: var(--muted);
    max-width: 58ch;
    font-size: 16px;
    line-height: 1.65;
}

.lead-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form--hero {
    padding: 32px;
    border-color: rgba(244, 207, 98, 0.55);
    background:
        radial-gradient(circle at 92% 4%, rgba(244, 207, 98, 0.25), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 251, 0.97));
}

.lead-form--hero::before {
    opacity: 1;
}

.lead-form--hero .form-grid {
    grid-template-areas:
        "name phone"
        "email interest"
        "investment message"
        "submit submit";
    gap: 16px 18px;
}

.lead-form--hero .form-field textarea {
    min-height: 118px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--field-gap);
}

.form-field {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.lead-form--hero .form-field--name {
    grid-area: name;
}

.lead-form--hero .form-field--phone {
    grid-area: phone;
}

.lead-form--hero .form-field--email {
    grid-area: email;
}

.lead-form--hero .form-field--interest {
    grid-area: interest;
}

.lead-form--hero .form-field--investment-mode {
    grid-area: investment;
}

.lead-form--hero .form-field--message {
    grid-area: message;
}

.lead-form--hero .form-field--submit {
    grid-area: submit;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    font-size: 13px;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--field-border);
    border-radius: var(--field-radius);
    padding: 0 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(9, 19, 31, 0.045);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
    height: var(--field-height);
}

.form-field select {
    appearance: none;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--navy) 50%),
        linear-gradient(135deg, var(--navy) 50%, transparent 50%);
    background-position:
        calc(100% - 23px) calc(50% + 2px),
        calc(100% - 16px) calc(50% + 2px);
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.form-field textarea {
    min-height: 132px;
    padding-top: 15px;
    padding-bottom: 15px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #738196;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--field-focus);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12), 0 14px 30px rgba(9, 19, 31, 0.07);
}

.form-field--submit {
    margin-top: 2px;
}

.form-field--submit .btn {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
    border-radius: 10px;
}

.cta-band {
    padding: 38px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, #0b1f35, #123f66);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    margin: 0 0 8px;
}

.footer {
    color: rgba(255, 255, 255, 0.78);
    background: #07111d;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
    gap: 34px;
    padding: 62px 0;
}

.footer h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 18px;
}

.footer__brand img {
    width: 110px;
    height: auto;
    margin-bottom: 14px;
    background: var(--white);
    border-radius: 8px;
    padding: 6px;
}

.footer-list,
.contact-list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer a:hover {
    color: var(--gold-soft);
}

.contact-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--gold);
    margin-top: 5px;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-row a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.footer__bottom-inner div {
    display: flex;
    gap: 18px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    display: none;
    place-items: center;
    color: var(--ink);
    background: var(--gold);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.back-to-top.is-visible {
    display: grid;
}

.projects-hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: 152px 0 74px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 18%, rgba(244, 207, 98, 0.22), transparent 26%),
        radial-gradient(circle at 16% 24%, rgba(15, 118, 110, 0.26), transparent 30%),
        linear-gradient(120deg, rgba(7, 17, 29, 0.97), rgba(11, 31, 53, 0.88), rgba(18, 63, 102, 0.72)),
        url("../img/pexels-6949525.jpg") center/cover no-repeat;
    overflow: hidden;
}

.projects-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(244, 207, 98, 0.14) 0 1px, transparent 1px 22px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 88%);
    pointer-events: none;
}

.projects-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.82));
    pointer-events: none;
}

.projects-hero > .container {
    position: relative;
    z-index: 2;
}

.projects-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 40px;
    align-items: center;
}

.projects-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 0.98;
}

.projects-hero__copy {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.projects-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 34px;
}

.projects-hero__metric {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.projects-hero__metric strong {
    display: block;
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.05;
}

.projects-hero__metric span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.project-stage {
    position: relative;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        linear-gradient(140deg, rgba(7, 17, 29, 0.82), rgba(13, 26, 45, 0.88));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.project-stage__halo {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -90px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 207, 98, 0.36), transparent 70%);
    pointer-events: none;
}

.project-stage__header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.project-stage__header span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-stage__header strong {
    font-size: 16px;
    font-weight: 800;
}

.project-stage__logos {
    position: relative;
    display: grid;
    gap: 16px;
}

.project-stage__logo-card {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-stage__logo-card--wide {
    grid-template-columns: 118px 1fr;
}

.project-stage__logo-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.project-stage__logo-card--wide img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 10px;
    background: rgba(0, 0, 0, 0.24);
}

.project-stage__logo-card strong {
    display: block;
    font-size: 22px;
    line-height: 1.05;
}

.project-stage__logo-card small {
    color: rgba(255, 255, 255, 0.68);
}

.project-stage__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.project-stage__stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-stage__stats strong {
    display: block;
    color: var(--gold-soft);
    font-size: 17px;
}

.project-stage__stats span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.project-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 340px;
    gap: 28px;
    padding: 30px;
    border-radius: 28px;
    overflow: hidden;
}

.project-showcase + .project-showcase {
    margin-top: 28px;
}

.project-showcase--vr {
    background:
        radial-gradient(circle at 92% 12%, rgba(244, 207, 98, 0.2), transparent 24%),
        linear-gradient(160deg, #07111d 0%, #0d2038 52%, #122d4a 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-showcase--band {
    background:
        radial-gradient(circle at 82% 16%, rgba(15, 118, 110, 0.16), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.project-showcase--vr .muted {
    color: rgba(255, 255, 255, 0.76);
}

.project-showcase__main,
.project-sidebar {
    position: relative;
    z-index: 1;
}

.project-showcase__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.project-brand {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.project-brand__media {
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-brand__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
}

.project-brand__icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    color: #fff8df;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #0b1f35, #123f66, #0f766e);
    box-shadow: 0 20px 44px rgba(18, 63, 102, 0.24);
    font-size: 34px;
}

.project-showcase h2 {
    margin: 10px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.02;
}

.project-showcase p {
    max-width: 780px;
}

.project-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--ink);
    background: linear-gradient(135deg, #f4cf62, #d8a31a);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-chip--light {
    color: var(--blue);
    background: rgba(18, 63, 102, 0.08);
}

.project-badge {
    min-width: 250px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.project-badge--soft {
    background: var(--white);
    border-color: rgba(18, 63, 102, 0.08);
    box-shadow: 0 18px 42px rgba(9, 19, 31, 0.08);
}

.project-badge span,
.project-badge small {
    display: block;
}

.project-badge span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.74;
}

.project-badge strong {
    display: block;
    margin: 8px 0 6px;
    font-size: 22px;
    line-height: 1.15;
}

.project-badge small {
    color: inherit;
    opacity: 0.78;
}

.project-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.project-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-showcase--band .project-stat,
.project-showcase--band .project-sidebar__card,
.project-showcase--band .project-feature {
    background: rgba(255, 255, 255, 0.88);
}

.project-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.05;
    color: var(--gold-soft);
}

.project-showcase--band .project-stat strong {
    color: var(--blue);
}

.project-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.project-showcase--band .project-stat span {
    color: var(--muted);
}

.project-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-content-block {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-showcase--band .project-content-block {
    background: rgba(18, 63, 102, 0.04);
    border-color: rgba(18, 63, 102, 0.08);
}

.project-bullet-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.project-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.project-bullet-list i {
    color: var(--gold);
    margin-top: 5px;
}

.project-bullet-list--compact {
    gap: 10px;
}

.project-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.project-platforms span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 700;
}

.project-platforms--soft span {
    color: var(--blue);
    background: rgba(18, 63, 102, 0.08);
    border-color: rgba(18, 63, 102, 0.08);
}

.project-sidebar {
    display: grid;
    gap: 16px;
    align-content: start;
}

.project-sidebar__card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.project-links a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.project-showcase--band .project-links a {
    background: rgba(18, 63, 102, 0.06);
    border-color: rgba(18, 63, 102, 0.08);
}

.project-links a:hover {
    transform: translateY(-2px);
    background: rgba(216, 163, 26, 0.14);
}

.project-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.project-feature {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(18, 63, 102, 0.08);
    box-shadow: 0 12px 26px rgba(9, 19, 31, 0.05);
    font-weight: 700;
}

.project-feature i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--gold);
    background: #fff8df;
    flex: 0 0 auto;
}

.project-spotlight {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 12%, rgba(244, 207, 98, 0.34), transparent 28%),
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.12), transparent 20%),
        linear-gradient(180deg, #07111d 0%, #0d2038 58%, #123f66 100%);
    overflow: hidden;
}

.project-spotlight::before,
.project-spotlight::after {
    content: "";
    position: absolute;
    top: -24px;
    width: 44%;
    height: 180px;
    background: linear-gradient(180deg, rgba(244, 207, 98, 0.24), transparent);
    filter: blur(1px);
    opacity: 0.8;
}

.project-spotlight::before {
    left: -10px;
    transform: rotate(18deg);
}

.project-spotlight::after {
    right: -10px;
    transform: rotate(-18deg);
}

.project-spotlight__label {
    position: relative;
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--ink);
    background: linear-gradient(135deg, #f4cf62, #d8a31a);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-spotlight strong {
    position: relative;
    display: block;
    margin: 20px 0 10px;
    font-size: 44px;
    line-height: 0.98;
}

.project-spotlight p {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
}

.project-spotlight__chips {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.project-spotlight__chips span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.project-quote {
    margin: 16px 0 0;
    padding: 16px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 248, 223, 0.94);
    color: var(--navy);
    font-weight: 700;
}

.project-summary-card {
    min-height: 100%;
}

@media (max-width: 1100px) {
    .topbar__inner span {
        display: none;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 118px;
        display: none;
        gap: 6px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: grid;
    }

    .nav-item,
    .nav-parent {
        display: grid;
    }

    .nav-parent {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 8px;
        align-items: center;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    .nav-dropdown-toggle {
        width: 42px;
        height: 42px;
        justify-self: end;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        display: none;
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: #f7f9fb;
        backdrop-filter: none;
    }

    .nav-dropdown.is-open {
        display: grid;
    }

    .nav-item--has-children:hover .nav-dropdown,
    .nav-item--has-children:focus-within .nav-dropdown {
        display: grid;
    }

    .nav-cta {
        display: none;
    }

    .hero__grid,
    .split,
    .contact-layout,
    .service-hero__grid,
    .projects-hero__grid,
    .project-showcase {
        grid-template-columns: 1fr;
    }

    .finance-panel,
    .hero-lead-card {
        max-width: 620px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-lane,
    .service-switcher {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-showcase__top,
    .project-brand {
        grid-template-columns: 1fr;
        display: grid;
    }

    .project-badge {
        min-width: 0;
    }

    .project-stat-grid,
    .project-feature-grid,
    .project-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .topbar {
        display: none;
    }

    .nav {
        min-height: 72px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 56px;
        height: 48px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        display: none;
    }

    .nav-menu {
        top: 82px;
        left: 12px;
        right: 12px;
    }

    .nav-dropdown__link {
        min-height: 40px;
    }

    h1,
    .h1 {
        font-size: 38px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 42px;
    }

    .projects-hero {
        min-height: auto;
        padding: 118px 0 46px;
    }

    .hero__copy {
        font-size: 16px;
    }

    .metric-strip,
    .hero-lead-card__trust,
    .grid-2,
    .grid-3,
    .grid-4,
    .ticker,
    .floating-proof,
    .form-grid,
    .team-profile,
    .projects-hero__metrics,
    .project-stage__stats,
    .project-stat-grid,
    .project-feature-grid,
    .project-content-grid {
        grid-template-columns: 1fr;
    }

    .lead-form--hero {
        padding: 22px;
    }

    .lead-form--hero .form-grid {
        grid-template-areas:
            "name"
            "phone"
            "email"
            "interest"
            "investment"
            "message"
            "submit";
    }

    .lead-form__head {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .lead-form__head h2 {
        font-size: 28px;
    }

    .form-field--submit .btn {
        min-height: 56px;
        font-size: 16px;
    }

    .project-stage,
    .project-showcase {
        padding: 22px;
        border-radius: 24px;
    }

    .project-stage__logo-card,
    .project-stage__logo-card--wide,
    .project-brand {
        grid-template-columns: 1fr;
    }

    .project-stage__logo-card img,
    .project-brand__media {
        max-width: 132px;
    }

    .project-showcase__top {
        display: grid;
    }

    .project-showcase h2 {
        font-size: 32px;
    }

    .project-spotlight strong {
        font-size: 36px;
    }

    .page-hero {
        min-height: 340px;
        padding: 122px 0 46px;
    }

    .service-hero {
        min-height: auto;
        padding: 124px 0 52px;
    }

    .service-hero p {
        font-size: 16px;
    }

    .section {
        padding: 58px 0;
    }

    .section-sm {
        padding: 44px 0;
    }

    .media-frame,
    .media-frame img {
        min-height: 310px;
    }

    .profile-card {
        position: static;
    }

    .cta-band {
        padding: 24px;
        display: grid;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        padding: 44px 0;
    }

    .footer__bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 16px 0;
    }

    .process-lane,
    .service-switcher {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    h1,
    .h1 {
        font-size: 32px;
    }

    h2,
    .h2 {
        font-size: 26px;
    }

    .btn {
        width: 100%;
    }

    .hero__actions,
    .action-row {
        display: grid;
    }

    .project-links a {
        width: 100%;
    }
}
