:root {
    --navy-950: #030b19;
    --navy-900: #07152d;
    --navy-850: #0a1b37;
    --navy-800: #102344;
    --navy-700: #19345f;

    --gold-600: #a88025;
    --gold-500: #c6a044;
    --gold-400: #d9b95f;
    --gold-300: #ead58f;

    --white: #ffffff;
    --off-white: #f5f5f2;
    --surface: #fafaf8;

    --text-dark: #0b1830;
    --text-body: #4f5969;
    --text-muted: #7d8796;
    --border-light: #e1e3e7;
    --border-dark: rgba(255, 255, 255, 0.12);

    --shadow-soft: 0 20px 50px rgba(3, 11, 25, 0.12);
    --shadow-deep: 0 35px 80px rgba(0, 0, 0, 0.35);

    --font-title: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;

    --container: 1180px;
    --header-height: 84px;

    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-height: 100vh;
    background: var(--navy-950);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.background-circle-one {
    width: 650px;
    height: 650px;
    top: -270px;
    right: -170px;
    border: 1px solid rgba(217, 185, 95, 0.14);
}

.background-circle-two {
    width: 520px;
    height: 520px;
    bottom: 5%;
    left: -280px;
    border: 1px solid rgba(217, 185, 95, 0.08);
}

.background-line {
    position: absolute;
    width: 1px;
    height: 50vh;
    top: 0;
    left: 11%;
    background: linear-gradient(
        to bottom,
        rgba(217, 185, 95, 0.22),
        transparent
    );
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(3, 11, 25, 0.9);
    border-color: var(--border-dark);
    backdrop-filter: blur(18px);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--gold-400);
}

.brand-subtitle {
    margin-top: 7px;
    color: #91a0b8;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.32em;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-navigation a {
    position: relative;
    color: #bcc4d1;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.desktop-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold-400);
    transition: width 0.25s ease;
}

.desktop-navigation a:hover {
    color: var(--white);
}

.desktop-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.crm-access {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid rgba(217, 185, 95, 0.38);
    border-radius: 999px;
    color: var(--gold-300);
    font-size: 0.74rem;
    font-weight: 600;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.crm-access svg {
    width: 14px;
    height: 14px;
}

.crm-access:hover {
    background: rgba(217, 185, 95, 0.1);
    border-color: var(--gold-400);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.mobile-menu-button svg {
    width: 20px;
    height: 20px;
}

.mobile-navigation {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    padding: 24px 20px 32px;
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(3, 11, 25, 0.98);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(20px);
}

.mobile-navigation.open {
    display: flex;
}

.mobile-navigation a {
    padding: 14px 10px;
    color: #d0d6df;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

/* HERO */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-height) + 90px) 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 77% 38%,
            rgba(29, 66, 117, 0.35),
            transparent 32%
        ),
        linear-gradient(
            140deg,
            var(--navy-950) 0%,
            var(--navy-900) 60%,
            #0b1f3f 100%
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent, black, transparent);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 78px;
    align-items: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gold-300);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-400);
}

.section-eyebrow.dark {
    color: var(--gold-600);
}

.hero-title {
    max-width: 770px;
    font-family: var(--font-title);
    font-size: clamp(3.4rem, 6vw, 5.9rem);
    font-weight: 600;
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.hero-title span {
    display: block;
    color: var(--gold-400);
}

.hero-description {
    max-width: 670px;
    margin-top: 30px;
    color: #aeb8c8;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: var(--radius-small);
    font-size: 0.79rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.button svg {
    width: 17px;
    height: 17px;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: linear-gradient(
        135deg,
        var(--gold-600),
        var(--gold-400)
    );
    color: var(--navy-950);
    box-shadow: 0 16px 35px rgba(198, 160, 68, 0.2);
}

.button-gold:hover {
    box-shadow: 0 20px 45px rgba(198, 160, 68, 0.3);
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
    border-color: rgba(217, 185, 95, 0.55);
    background: rgba(217, 185, 95, 0.07);
}

.hero-trust {
    margin-top: 42px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8e9bb0;
    font-size: 0.7rem;
}

.trust-item svg {
    width: 15px;
    height: 15px;
    color: var(--gold-400);
}

.hero-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    min-height: 540px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(217, 185, 95, 0.24);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(12px);
}

.visual-frame::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    top: -120px;
    right: -100px;
    border-radius: 50%;
    background: rgba(217, 185, 95, 0.13);
    filter: blur(15px);
}

.visual-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    color: #8c99ad;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.live-indicator > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 5px rgba(217, 185, 95, 0.1);
}

.visual-main {
    position: relative;
    margin-top: 82px;
}

.visual-label {
    color: var(--gold-300);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.visual-number {
    margin-top: 8px;
    font-family: var(--font-title);
    color: var(--white);
    font-size: 7.5rem;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.visual-description {
    max-width: 300px;
    margin-top: 18px;
    color: #9eaabc;
    font-size: 0.78rem;
    line-height: 1.8;
}

.visual-grid {
    position: relative;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-data {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-data:first-child {
    padding-left: 0;
}

.visual-data:last-child {
    border-right: none;
}

.visual-data small {
    color: #748198;
    font-size: 0.58rem;
    text-transform: uppercase;
}

.visual-data strong {
    color: #dbe0e8;
    font-size: 0.72rem;
    font-weight: 500;
}

.visual-chart {
    position: absolute;
    right: 32px;
    bottom: 36px;
    width: 140px;
    height: 90px;
    display: flex;
    align-items: end;
    gap: 7px;
    opacity: 0.65;
}

.visual-chart::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.visual-chart span {
    position: relative;
    flex: 1;
    min-height: 8px;
    background: linear-gradient(
        to top,
        var(--gold-600),
        var(--gold-300)
    );
    border-radius: 3px 3px 0 0;
}

.floating-card {
    position: absolute;
    padding: 14px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(217, 185, 95, 0.2);
    border-radius: 12px;
    background: rgba(8, 24, 50, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.floating-card svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card small {
    color: #748198;
    font-size: 0.56rem;
    text-transform: uppercase;
}

.floating-card strong {
    color: #e5e9ef;
    font-size: 0.66rem;
    font-weight: 500;
}

.floating-card-one {
    top: 22%;
    left: -58px;
}

.floating-card-two {
    right: -42px;
    bottom: 18%;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%);
    color: #6f7c91;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 15px;
    height: 15px;
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

/* STATEMENT */

.statement-section {
    padding: 55px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: var(--navy-900);
}

.statement-text {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    color: #d9dfe8;
}

.statement-text span {
    color: var(--gold-400);
}

/* GENERAL SECTIONS */

.content-section {
    padding: 120px 0;
    background: var(--navy-950);
}

.light-section {
    background: var(--off-white);
    color: var(--text-dark);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 110px;
    align-items: start;
}

.section-heading h2,
.centered-heading h2,
.process-heading h2,
.investor-content h2,
.contact-heading h2 {
    font-family: var(--font-title);
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.section-text {
    padding-top: 34px;
}

.section-text > p {
    margin-bottom: 25px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.9;
}

.highlight-quote {
    margin-top: 42px;
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 22px;
}

.highlight-quote > span {
    background: var(--gold-500);
}

.highlight-quote p {
    font-family: var(--font-title);
    color: var(--text-dark);
    font-size: 1.6rem;
    line-height: 1.35;
}

.centered-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.centered-heading .section-eyebrow {
    justify-content: center;
}

.centered-heading p {
    max-width: 640px;
    margin: 24px auto 0;
    color: #919daf;
    font-size: 0.92rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 395px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-medium);
    background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.016)
    );
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(217, 185, 95, 0.08);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 185, 95, 0.35);
    background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.075),
        rgba(255, 255, 255, 0.025)
    );
}

.service-card:hover::after {
    transform: scale(1.35);
}

.service-number {
    color: #58677e;
    font-size: 0.63rem;
    letter-spacing: 0.14em;
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 185, 95, 0.2);
    border-radius: 50%;
    color: var(--gold-400);
    background: rgba(217, 185, 95, 0.06);
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    margin-top: 28px;
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 600;
}

.service-card p {
    margin-top: 15px;
    color: #8995a8;
    font-size: 0.83rem;
    line-height: 1.8;
}

.service-link {
    margin-top: auto;
    padding-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-300);
    font-size: 0.69rem;
    font-weight: 600;
}

.service-link svg {
    width: 14px;
    height: 14px;
}

/* PROCESS */

.process-section {
    background: var(--surface);
    color: var(--text-dark);
}

.process-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.process-list {
    border-top: 1px solid var(--border-light);
}

.process-item {
    min-height: 150px;
    display: grid;
    grid-template-columns: 90px 1fr 45px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.process-item:hover {
    padding-left: 16px;
    background: rgba(198, 160, 68, 0.045);
}

.process-index {
    color: var(--gold-600);
    font-family: var(--font-title);
    font-size: 1.5rem;
}

.process-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.process-content h3 {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 600;
}

.process-content p {
    color: var(--text-body);
    font-size: 0.83rem;
    line-height: 1.8;
}

.process-item > svg {
    width: 22px;
    height: 22px;
    color: var(--gold-600);
}

/* INVESTOR */

.investor-section {
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(32, 71, 124, 0.4),
            transparent 33%
        ),
        var(--navy-900);
}

.investor-container {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 100px;
    align-items: center;
}

.investor-content > p {
    max-width: 640px;
    margin: 25px 0 30px;
    color: #a8b3c4;
    font-size: 0.94rem;
    line-height: 1.85;
}

.investor-benefits {
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.investor-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c3cad5;
    font-size: 0.78rem;
}

.investor-benefits svg {
    width: 17px;
    height: 17px;
    padding: 3px;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--gold-400);
}

.investor-card {
    position: relative;
    min-height: 410px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(217, 185, 95, 0.28);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(217, 185, 95, 0.12),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-deep);
}

.investor-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -180px;
    right: -150px;
    border: 1px solid rgba(217, 185, 95, 0.2);
    border-radius: 50%;
}

.investor-card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8693a8;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
}

.investor-card-header svg {
    width: 22px;
    color: var(--gold-400);
}

.investor-card-content {
    position: relative;
    margin-top: 78px;
}

.investor-card-label {
    color: var(--gold-300);
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.investor-card h3 {
    max-width: 360px;
    margin-top: 13px;
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.05;
}

.investor-card-lines {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.investor-card-lines span {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.investor-card-lines span:nth-child(1) {
    width: 100%;
}

.investor-card-lines span:nth-child(2) {
    width: 76%;
}

.investor-card-lines span:nth-child(3) {
    width: 48%;
}

.investor-card-footer {
    margin-top: 30px;
    display: flex;
    gap: 28px;
    color: #748198;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* CONTACT */

.contact-section {
    padding: 120px 0;
    background: var(--off-white);
    color: var(--text-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.contact-heading p {
    margin-top: 25px;
    max-width: 520px;
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.8;
}

.contact-options {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
}

.contact-option {
    min-height: 108px;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.contact-option:hover {
    padding-inline: 15px;
    background: rgba(198, 160, 68, 0.05);
}

.contact-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 128, 37, 0.25);
    border-radius: 50%;
    color: var(--gold-600);
}

.contact-icon svg {
    width: 19px;
    height: 19px;
}

.contact-option > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.contact-option small {
    color: var(--text-muted);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-option strong {
    margin-top: 4px;
    color: var(--text-dark);
    font-size: 0.84rem;
    font-weight: 600;
}

.contact-option > svg {
    width: 18px;
    height: 18px;
    color: var(--gold-600);
}

/* FOOTER */

.site-footer {
    padding: 70px 0 25px;
    background: var(--navy-950);
}

.footer-main {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 55px;
}

.footer-brand {
    align-items: flex-start;
}

.footer-description {
    max-width: 390px;
    color: #7f8ba0;
    font-size: 0.78rem;
    line-height: 1.8;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 25px;
}

.footer-navigation a {
    color: #9ea8b8;
    font-size: 0.72rem;
    transition: color 0.25s ease;
}

.footer-navigation a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--border-dark);
    color: #626e82;
    font-size: 0.61rem;
}

.footer-bottom p:last-child {
    max-width: 500px;
    text-align: right;
}

/* FLOATING BUTTONS */

.floating-whatsapp,
.back-to-top {
    position: fixed;
    right: 22px;
    width: 48px;
    height: 48px;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp {
    bottom: 22px;
    color: var(--navy-950);
    background: var(--gold-400);
}

.floating-whatsapp svg {
    width: 21px;
    height: 21px;
}

.back-to-top {
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    color: var(--white);
    background: var(--navy-800);
    border: 1px solid var(--border-dark);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .hero-container {
        gap: 40px;
    }

    .floating-card-one {
        left: -20px;
    }

    .floating-card-two {
        right: -15px;
    }

    .two-column-layout,
    .investor-container,
    .contact-container {
        gap: 65px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 65px);
    }

    .hero-container,
    .two-column-layout,
    .investor-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 600px);
        margin: 20px auto 0;
    }

    .visual-frame {
        min-height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

    .two-column-layout {
        gap: 25px;
    }

    .section-text {
        padding-top: 0;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .investor-container {
        gap: 60px;
    }

    .investor-card {
        width: min(100%, 600px);
        margin: auto;
    }

    .contact-container {
        gap: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-description {
        order: 3;
    }
}

@media (max-width: 650px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-name {
        font-size: 1.55rem;
    }

    .brand-subtitle {
        font-size: 0.45rem;
    }

    .crm-access {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 85px;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 4.3rem);
    }

    .hero-description {
        font-size: 0.91rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }

    .visual-frame {
        min-height: 440px;
        padding: 22px;
    }

    .visual-number {
        font-size: 6rem;
    }

    .visual-main {
        margin-top: 65px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .visual-data {
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .visual-data:last-child {
        border-bottom: none;
    }

    .visual-chart {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .content-section,
    .investor-section,
    .contact-section {
        padding: 85px 0;
    }

    .statement-section {
        padding: 42px 0;
    }

    .section-heading h2,
    .centered-heading h2,
    .process-heading h2,
    .investor-content h2,
    .contact-heading h2 {
        font-size: 2.8rem;
    }

    .centered-heading {
        margin-bottom: 42px;
    }

    .service-card {
        padding: 26px;
    }

    .process-item {
        min-height: 175px;
        grid-template-columns: 50px 1fr;
        gap: 15px;
        padding: 22px 0;
    }

    .process-item > svg {
        display: none;
    }

    .investor-benefits {
        grid-template-columns: 1fr;
    }

    .investor-card {
        min-height: 370px;
    }

    .investor-card h3 {
        font-size: 2.1rem;
    }

    .contact-option {
        grid-template-columns: 45px 1fr 18px;
        gap: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-description {
        order: initial;
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    .floating-whatsapp,
    .back-to-top {
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}