/* =========================================================
   WIREVESTED - HOMEPAGE
   assets/css/index.css
========================================================= */


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font, "Figtree", sans-serif);
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition:
        background-color .3s ease,
        color .3s ease;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    width: 100%;
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font, "Geist", sans-serif);
    line-height: 1.05;
}

.container {
    width: min(100% - 48px, 1320px);
    margin-inline: auto;
}


/* =========================================================
   LIGHT THEME
========================================================= */

:root,
html[data-theme="light"] {

    --primary: #2563EB;
    --primary-hover: #1D4ED8;

    --page-bg: #FFFFFF;
    --surface: #FFFFFF;
    --surface-soft: #F5F7FB;
    --surface-blue: #EFF6FF;

    --text: #111827;
    --text-soft: #667085;
    --text-faint: #98A2B3;

    --border: #E4E7EC;
    --border-strong: #D0D5DD;

    /*
       The hero/nav are intentionally deeper than the
       standard primary blue. This gives the page the
       institutional/banking appearance from the reference.
    */

    --hero-bg: #0A2558;
    --hero-bg-2: #0D306C;

    --hero-text: #FFFFFF;
    --hero-muted: rgba(255,255,255,.72);

    --accent: #BFD2FF;
    --accent-bright: #DCE7FF;

    --footer-bg: #071A3C;

    --shadow-sm:
        0 6px 25px rgba(16,24,40,.06);

    --shadow-md:
        0 20px 60px rgba(16,24,40,.12);
}


/* =========================================================
   DARK THEME
========================================================= */

html[data-theme="dark"] {

    --page-bg: #080C14;

    --surface: #0D131F;
    --surface-soft: #111927;
    --surface-blue: #0D1B35;

    --text: #F8FAFC;
    --text-soft: #98A2B3;
    --text-faint: #667085;

    --border: #1D2939;
    --border-strong: #344054;

    --hero-bg: #061631;
    --hero-bg-2: #09204A;

    --hero-text: #FFFFFF;
    --hero-muted: rgba(255,255,255,.68);

    --accent: #8EB1FF;
    --accent-bright: #BFD2FF;

    --footer-bg: #030A16;

    --shadow-sm:
        0 6px 25px rgba(0,0,0,.20);

    --shadow-md:
        0 20px 60px rgba(0,0,0,.35);
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
    min-height: 46px;
    display: flex;
    align-items: center;
    background: var(--accent-bright);
    color: #102A5E;
    position: relative;
    z-index: 70;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.announcement-icon {
    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 96px;
    display: flex;
    align-items: center;

    background: var(--hero-bg);

    border-bottom: 1px solid rgba(255,255,255,.09);

    position: relative;
    z-index: 60;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand img {
    max-width: 165px;
    max-height: 48px;
    object-fit: contain;
}

.brand-mark {
    width: 40px;
    height: 40px;

    border-radius: 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--accent-bright);
    color: var(--hero-bg);

    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;

    transform: rotate(-4deg);
}

.brand-name {
    color: #FFFFFF;
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.6px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.4vw, 40px);

    margin-left: auto;
    margin-right: auto;
}

.desktop-nav a {
    position: relative;

    color: rgba(255,255,255,.82);

    font-size: 15px;
    font-weight: 600;

    padding: 12px 0;

    transition:
        color .2s ease,
        opacity .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #FFFFFF;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: var(--accent-bright);

    transition: width .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.login-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 8px;
}

.theme-toggle {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #FFFFFF;

    transition:
        background .2s ease,
        transform .2s ease;
}

.theme-toggle:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
}

.open-account-btn {
    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    background: var(--accent-bright);
    color: #102A5E;

    font-weight: 600;
    white-space: nowrap;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.open-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    background: #FFFFFF;
}

.open-account-btn i,
.primary-btn i,
.dark-btn i,
.light-btn i {
    transition: transform .2s ease;
}

.open-account-btn:hover i,
.primary-btn:hover i,
.dark-btn:hover i,
.light-btn:hover i {
    transform: translateX(4px);
}

.mobile-menu-button {
    width: 44px;
    height: 44px;

    display: none;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
    color: #FFFFFF;

    font-size: 19px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 142px);

    position: relative;

    background:
        linear-gradient(
            110deg,
            var(--hero-bg) 0%,
            var(--hero-bg) 55%,
            var(--hero-bg-2) 100%
        );

    color: var(--hero-text);

    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .42;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 145px 145px;
}


/* rounded blocks similar to reference background */

.hero::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    left: -100px;
    top: 100px;

    opacity: .28;

    background-image:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.055) 0,
            rgba(255,255,255,.055) 65%,
            transparent 66%
        );

    background-size: 145px 145px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -100px;
    bottom: -180px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    pointer-events: none;
}

.hero-grid {
    min-height: 650px;

    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(360px, .95fr)
        minmax(280px, .88fr);

    align-items: center;

    gap: clamp(35px, 4vw, 70px);

    padding-top: 76px;
    padding-bottom: 54px;
}


/* =========================================================
   HERO LEFT
========================================================= */

.hero-content {
    position: relative;
    z-index: 4;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: var(--accent-bright);

    font-size: 14px;
    font-weight: 700;
}

.eyebrow i {
    font-size: 13px;
}

.hero h1 {
    max-width: 590px;

    font-size: clamp(54px, 5.2vw, 84px);
    font-weight: 600;

    letter-spacing: -4px;

    line-height: .99;
}

.hero h1 span {
    display: block;
}

.hero-description {
    max-width: 500px;

    margin-top: 28px;

    color: var(--hero-muted);

    font-size: 17px;
    line-height: 1.75;
}

.hero-buttons {
    margin-top: 34px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.primary-btn {
    min-height: 56px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border-radius: 999px;

    background: var(--accent-bright);
    color: #102A5E;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    box-shadow: 0 16px 35px rgba(0,0,0,.16);
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #FFFFFF;

    font-size: 15px;
    font-weight: 600;
}

.text-btn i {
    font-size: 13px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    align-self: stretch;

    position: relative;
}

.hero-arch {
    width: min(100%, 410px);
    height: 590px;

    margin-top: auto;

    position: relative;

    overflow: hidden;

    border-radius: 220px 220px 18px 18px;

    background: rgba(255,255,255,.08);

    box-shadow:
        0 40px 80px rgba(0,0,0,.20);
}

.hero-arch::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,16,41,.18),
            transparent 42%
        );

    pointer-events: none;
}

.hero-arch img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    align-self: center;
}

.hero-stat {
    padding: 30px 0;

    border-bottom: 1px solid rgba(255,255,255,.16);
}

.hero-stat:first-child {
    padding-top: 0;
}

.hero-stat.last {
    border-bottom: 0;
}

.hero-stat strong {
    display: block;

    margin-bottom: 13px;

    color: var(--accent-bright);

    font-family: var(--heading-font);
    font-size: clamp(46px, 4vw, 68px);
    font-weight: 700;

    line-height: 1;
    letter-spacing: -3px;
}

.hero-stat p {
    max-width: 340px;

    color: rgba(255,255,255,.78);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    position: relative;
    z-index: 4;

    min-height: 90px;

    border-top: 1px solid rgba(255,255,255,.10);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: var(--accent-bright);
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-size: 14px;
}

.hero-trust div span {
    color: var(--hero-muted);
    font-size: 13px;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
    font-weight: 600;
}

.scroll-circle {
    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
}


/* =========================================================
   SHARED SECTION TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-flex;

    margin-bottom: 22px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-label.light {
    color: var(--accent-bright);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr .7fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 60px;
}

.section-heading h2,
.about-content h2,
.cards-content h2,
.business-header h2,
.investment-content h2,
.cta-box h2 {
    font-size: clamp(42px, 5vw, 70px);

    letter-spacing: -3px;
    font-weight: 600;
}

.section-heading h2 {
    max-width: 760px;
}

.section-heading > p {
    max-width: 480px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 125px 0;

    background: var(--page-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-card {
    min-height: 430px;

    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right: 1px solid var(--border);

    position: relative;

    background: var(--surface);

    transition:
        background .25s ease,
        transform .25s ease;
}

.service-card:last-child {
    border-right: 0;
}

.service-card:hover {
    background: var(--surface-soft);
}

.service-card.featured {
    background: var(--primary);
    color: #FFFFFF;
}

.service-card.featured:hover {
    background: var(--primary-hover);
}

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--surface-blue);
    color: var(--primary);

    font-size: 20px;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,.13);
    color: #FFFFFF;
}

.service-number {
    display: block;

    margin-bottom: 18px;

    color: var(--text-faint);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.service-card.featured .service-number {
    color: rgba(255,255,255,.65);
}

.service-card h3 {
    margin-bottom: 18px;

    font-size: 29px;
    letter-spacing: -1px;
}

.service-card p {
    max-width: 340px;

    margin-bottom: 28px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.75;
}

.service-card.featured p {
    color: rgba(255,255,255,.75);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

.service-card.featured a {
    color: #FFFFFF;
}

.service-card a i {
    font-size: 12px;
    transition: transform .2s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 130px 0;

    background: var(--surface-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .88fr;

    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}

.about-visual {
    min-height: 670px;

    position: relative;
}

.about-image {
    width: calc(100% - 65px);
    height: 650px;

    overflow: hidden;

    border-radius: 220px 220px 16px 16px;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-floating-card {
    width: 245px;
    min-height: 200px;

    position: absolute;

    right: 0;
    bottom: 40px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--primary);
    color: #FFFFFF;

    border-radius: 8px;

    box-shadow: var(--shadow-md);
}

.about-floating-card span {
    color: rgba(255,255,255,.72);

    font-size: 13px;
    font-weight: 600;
}

.about-floating-card strong {
    font-family: var(--heading-font);

    font-size: 29px;
    line-height: 1.05;

    letter-spacing: -1px;
}

.about-content h2 {
    max-width: 650px;
}

.about-lead {
    max-width: 600px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.8;
}

.about-points {
    margin-top: 42px;

    display: flex;
    flex-direction: column;
}

.about-point {
    display: grid;
    grid-template-columns: 44px 1fr;

    gap: 18px;

    padding: 24px 0;

    border-top: 1px solid var(--border);
}

.about-point:last-child {
    border-bottom: 1px solid var(--border);
}

.about-point > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--surface-blue);
    color: var(--primary);

    font-size: 12px;
}

.about-point strong {
    display: block;

    margin-bottom: 7px;

    font-family: var(--heading-font);
    font-size: 18px;
}

.about-point p {
    max-width: 500px;

    color: var(--text-soft);

    font-size: 14px;
}

.dark-btn {
    min-height: 56px;

    margin-top: 35px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border-radius: 999px;

    background: var(--text);
    color: var(--page-bg);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.dark-btn:hover {
    transform: translateY(-2px);
    opacity: .88;
}


/* =========================================================
   CARD SECTION
========================================================= */

.cards-section {
    padding: 130px 0;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #071B43 0%,
            #0A2B67 58%,
            #1248A6 100%
        );

    color: #FFFFFF;
}

.cards-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -180px;
    top: -200px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.cards-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.cards-content h2 {
    max-width: 650px;
}

.cards-content > p {
    max-width: 560px;

    margin-top: 26px;

    color: rgba(255,255,255,.70);

    font-size: 17px;
    line-height: 1.8;
}

.card-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.card-benefits div {
    min-height: 48px;

    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;

    background: rgba(255,255,255,.06);

    font-size: 13px;
}

.card-benefits i {
    color: var(--accent-bright);
}

.light-btn {
    min-height: 56px;

    margin-top: 38px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border-radius: 999px;

    background: #FFFFFF;
    color: #102A5E;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.light-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.18);
}


/* =========================================================
   CARD VISUAL
========================================================= */

.card-showcase {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.bank-card {
    width: min(100%, 510px);
    aspect-ratio: 1.58 / 1;

    position: relative;
    z-index: 4;

    padding: 35px;

    border-radius: 26px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #153E91 52%,
            #081C44
        );

    box-shadow:
        0 50px 100px rgba(0,0,0,.35);

    transform: rotate(-5deg);
}

.bank-card::before {
    content: "";

    width: 300px;
    height: 300px;

    position: absolute;
    right: -90px;
    top: -120px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
}

.bank-card::after {
    content: "";

    width: 220px;
    height: 220px;

    position: absolute;
    right: -50px;
    top: -80px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.bank-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}

.card-logo {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #FFFFFF;
    color: #1749A6;

    font-family: var(--heading-font);
    font-size: 23px;
    font-weight: 800;
}

.card-contactless {
    font-size: 21px;

    transform: rotate(90deg);
}

.card-chip {
    margin-top: 52px;

    font-size: 36px;
    color: #DCE7FF;

    position: relative;
    z-index: 2;
}

.card-number {
    margin-top: 30px;

    position: relative;
    z-index: 2;

    font-family: var(--heading-font);
    font-size: clamp(18px, 2vw, 25px);

    letter-spacing: 2px;
}

.bank-card-bottom {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 30px;

    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bank-card-bottom div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bank-card-bottom span {
    color: rgba(255,255,255,.58);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-card-bottom strong {
    font-size: 12px;
    letter-spacing: .8px;
}

.card-orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.orbit-one {
    width: 510px;
    height: 510px;
}

.orbit-two {
    width: 650px;
    height: 650px;
}


/* =========================================================
   BUSINESS
========================================================= */

.business-section {
    padding: 130px 0;

    background: var(--page-bg);
}

.business-header {
    max-width: 850px;

    margin-bottom: 80px;
}

.business-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;

    gap: 100px;

    align-items: start;
}

.business-copy {
    position: sticky;
    top: 40px;
}

.business-copy p {
    max-width: 430px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.8;
}

.business-copy .primary-btn {
    margin-top: 32px;

    background: var(--primary);
    color: #FFFFFF;
}

.business-copy .primary-btn:hover {
    background: var(--primary-hover);
}

.business-features {
    border-top: 1px solid var(--border);
}

.business-features article {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;

    gap: 30px;

    padding: 42px 0;

    border-bottom: 1px solid var(--border);

    align-items: start;
}

.business-features article > span {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.business-features h3 {
    font-size: 25px;
    letter-spacing: -1px;
}

.business-features p {
    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   INVESTMENT / FUTURE
========================================================= */

.investment-section {
    padding: 125px 0;

    background: var(--surface-soft);
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.investment-content > p {
    max-width: 570px;

    margin-top: 27px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.8;
}

.investment-numbers {
    border-top: 1px solid var(--border);
}

.investment-numbers > div {
    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid var(--border);
}

.investment-numbers strong {
    color: var(--primary);

    font-family: var(--heading-font);

    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;

    letter-spacing: -3px;
}

.investment-numbers span {
    color: var(--text-soft);

    font-size: 15px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 100px 0;

    background: var(--page-bg);
}

.cta-box {
    min-height: 440px;

    padding: clamp(45px, 6vw, 80px);

    display: grid;
    grid-template-columns: 1.1fr .65fr;

    align-items: end;

    gap: 80px;

    position: relative;

    overflow: hidden;

    border-radius: 6px;

    background:
        linear-gradient(
            120deg,
            var(--primary),
            #123D96
        );

    color: #FFFFFF;
}

.cta-box::after {
    content: "";

    width: 500px;
    height: 500px;

    position: absolute;

    right: -150px;
    top: -180px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.cta-box h2 {
    max-width: 750px;

    position: relative;
    z-index: 2;
}

.cta-right {
    position: relative;
    z-index: 2;
}

.cta-right p {
    color: rgba(255,255,255,.74);

    font-size: 16px;
    line-height: 1.75;
}

.cta-right .light-btn {
    margin-top: 28px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 90px 0 30px;

    background: var(--footer-bg);
    color: #FFFFFF;
}

.footer-top {
    display: grid;
    grid-template-columns: .85fr 1.4fr;

    gap: 100px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 380px;

    margin-top: 24px;

    color: rgba(255,255,255,.55);

    font-size: 14px;
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h4 {
    margin-bottom: 22px;

    font-size: 14px;
    font-weight: 700;
}

.footer-links a {
    margin-bottom: 12px;

    color: rgba(255,255,255,.56);

    font-size: 13px;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    min-height: 80px;

    border-top: 1px solid rgba(255,255,255,.10);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: rgba(255,255,255,.44);

    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}


/* =========================================================
   LANGUAGE WIDGET
========================================================= */

.language-widget {
    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 100;
}

.language-widget > button {
    min-width: 112px;
    height: 54px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid var(--border);

    background: var(--surface);
    color: var(--text);

    box-shadow: var(--shadow-sm);

    font-weight: 700;
}

.language-widget > button i {
    margin-left: 2px;

    font-size: 10px;

    transition: transform .2s ease;
}

.language-widget.active > button i {
    transform: rotate(180deg);
}

.language-flag {
    font-size: 20px;
}

.language-menu {
    width: 190px;

    position: absolute;

    left: 0;
    bottom: calc(100% + 10px);

    padding: 8px;

    display: none;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: var(--shadow-md);
}

.language-widget.active .language-menu {
    display: block;
}

.language-menu button {
    width: 100%;

    padding: 11px 12px;

    display: flex;
    align-items: center;

    border-radius: 7px;

    background: transparent;
    color: var(--text);

    text-align: left;

    font-size: 13px;
}

.language-menu button:hover {
    background: var(--surface-soft);
}


/* =========================================================
   CHAT BUTTON
========================================================= */

.chat-button {
    min-height: 58px;

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 100;

    padding: 7px 8px 7px 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-radius: 999px;

    background: var(--accent-bright);
    color: #102A5E;

    box-shadow:
        0 15px 45px rgba(0,0,0,.18);

    font-weight: 600;
}

.chat-status {
    width: 11px;
    height: 11px;

    position: absolute;

    left: -2px;
    bottom: 5px;

    border-radius: 50%;

    border: 2px solid #FFFFFF;

    background: #22C55E;
}

.chat-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #102A5E;
    color: #FFFFFF;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 200;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background: var(--hero-bg);

    transform: translateX(100%);

    transition: transform .35s cubic-bezier(.76,0,.24,1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
    color: #FFFFFF;

    font-size: 20px;
}

.mobile-nav {
    margin-top: 60px;

    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);

    color: #FFFFFF;

    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;

    letter-spacing: -1px;
}

.mobile-menu-actions {
    margin-top: auto;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-login {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;

    color: #FFFFFF;

    font-weight: 600;
}


/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1180px) {

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 14px;
    }

    .hero-grid {
        grid-template-columns:
            1fr
            minmax(310px, .8fr)
            .65fr;

        gap: 35px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-arch {
        height: 520px;
    }

    .hero-stat strong {
        font-size: 48px;
    }

    .open-account-btn {
        padding: 0 19px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1020px) {

    .desktop-nav,
    .nav-actions .login-link,
    .nav-actions > .open-account-btn {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .nav-container {
        gap: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;

        padding-top: 75px;
        padding-bottom: 70px;
    }

    .hero-content {
        grid-column: 1;
    }

    .hero-image-wrap {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-stats {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(3, 1fr);

        margin-top: 20px;

        border-top: 1px solid rgba(255,255,255,.13);
    }

    .hero-stat,
    .hero-stat:first-child {
        padding: 30px 25px;

        border-bottom: 0;
        border-right: 1px solid rgba(255,255,255,.13);
    }

    .hero-stat:first-child {
        padding-left: 0;
    }

    .hero-stat:last-child {
        border-right: 0;
    }

    .hero-arch {
        height: 530px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .service-card:last-child {
        border-bottom: 0;
    }

    .about-grid,
    .cards-grid,
    .investment-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-content {
        max-width: 760px;
    }

    .card-showcase {
        min-height: 480px;
    }

    .business-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .business-copy {
        position: static;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 34px, 1320px);
    }

    .announcement {
        min-height: 42px;
    }

    .announcement-inner {
        font-size: 11px;
    }

    .site-header {
        height: 76px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;

        font-size: 19px;
    }

    .brand-name {
        font-size: 18px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;

        padding-top: 58px;
        padding-bottom: 50px;
    }

    .hero-content {
        width: 100%;
    }

    .eyebrow {
        margin-bottom: 20px;

        font-size: 12px;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(47px, 14vw, 67px);

        letter-spacing: -3px;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 15px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .hero-image-wrap {
        width: 100%;

        margin-top: 20px;
    }

    .hero-arch {
        width: min(100%, 390px);
        height: 520px;

        border-radius: 210px 210px 12px 12px;
    }

    .hero-stats {
        width: 100%;

        display: flex;
        flex-direction: column;

        margin-top: 25px;
    }

    .hero-stat,
    .hero-stat:first-child {
        width: 100%;

        padding: 28px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.13);
    }

    .hero-stat.last {
        border-bottom: 0;
    }

    .hero-stat strong {
        font-size: 52px;
    }

    .hero-bottom {
        padding: 25px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }


    /* SECTIONS */

    .services-section,
    .about-section,
    .cards-section,
    .business-section,
    .investment-section {
        padding: 85px 0;
    }

    .cta-section {
        padding: 70px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .section-heading h2,
    .about-content h2,
    .cards-content h2,
    .business-header h2,
    .investment-content h2,
    .cta-box h2 {
        font-size: clamp(39px, 11vw, 54px);

        letter-spacing: -2.4px;
    }

    .section-heading > p,
    .about-lead,
    .cards-content > p,
    .investment-content > p {
        font-size: 15px;
    }


    /* SERVICES */

    .service-card {
        min-height: 370px;

        padding: 30px;
    }


    /* ABOUT */

    .about-visual {
        min-height: auto;

        padding-bottom: 90px;
    }

    .about-image {
        width: 100%;
        height: 510px;

        border-radius: 190px 190px 12px 12px;
    }

    .about-floating-card {
        width: 210px;
        min-height: 170px;

        right: -4px;
        bottom: 0;

        padding: 24px;
    }

    .about-floating-card strong {
        font-size: 25px;
    }


    /* CARDS */

    .cards-grid {
        gap: 50px;
    }

    .card-showcase {
        min-height: 370px;
    }

    .bank-card {
        width: 94%;

        padding: 25px;

        border-radius: 20px;

        transform: rotate(-3deg);
    }

    .card-chip {
        margin-top: 30px;

        font-size: 28px;
    }

    .card-number {
        margin-top: 20px;

        font-size: 16px;
    }

    .bank-card-bottom {
        left: 25px;
        right: 25px;
        bottom: 22px;
    }

    .orbit-one {
        width: 370px;
        height: 370px;
    }

    .orbit-two {
        width: 460px;
        height: 460px;
    }


    /* BUSINESS */

    .business-header {
        margin-bottom: 50px;
    }

    .business-features article {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 32px 0;
    }

    .business-features article p {
        grid-column: 2;
    }


    /* INVESTMENT */

    .investment-numbers > div {
        min-height: 110px;
    }

    .investment-numbers strong {
        font-size: 46px;
    }


    /* CTA */

    .cta-box {
        min-height: 520px;

        padding: 40px 28px;

        grid-template-columns: 1fr;

        gap: 55px;

        align-items: end;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 70px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;
    }

    .footer-bottom {
        padding: 25px 0;

        flex-direction: column;
        align-items: flex-start;
    }


    /* FLOATING */

    .language-widget {
        left: 12px;
        bottom: 12px;
    }

    .language-widget > button {
        min-width: 92px;
        height: 50px;

        padding: 0 12px;
    }

    .chat-button {
        right: 12px;
        bottom: 12px;

        min-height: 52px;

        padding-left: 12px;
    }

    .chat-button > span:nth-child(2) {
        display: none;
    }

    .chat-icon {
        width: 39px;
        height: 39px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(100% - 28px, 1320px);
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-arch {
        height: 450px;
    }

    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .primary-btn {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .bank-card {
        padding: 20px;
    }

    .card-logo {
        width: 36px;
        height: 36px;

        font-size: 19px;
    }

    .card-chip {
        margin-top: 22px;
    }

    .card-number {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .bank-card-bottom {
        left: 20px;
        right: 20px;
        bottom: 17px;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* =========================================================
   GOOGLE TRANSLATE
========================================================= */

#google_translate_element {
    position: fixed !important;
    left: -99999px !important;
    bottom: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}


/* Google top translation banner */

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


/* Prevent Google from pushing website downward */

body {
    top: 0 !important;
}


/* Google tooltip */

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}


/* Google highlighted translated text */

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}


/* Hide Google branding/widget */

.goog-te-gadget {
    height: 0 !important;
    overflow: hidden !important;
}


/* =========================================================
   SCROLL REVEALS
========================================================= */

.reveal-element {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal-element.revealed {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   STICKY HEADER
========================================================= */

.site-header.header-scrolled {
    position: sticky;

    top: 0;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .14);
}


/* =========================================================
   BROKEN IMAGES
========================================================= */

img.image-error {
    visibility: hidden;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal-element {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}