/* =========================================================
   ARPIVA TECHNOLOGIES
   FINANCE INDUSTRY PAGE
   Premium Enterprise Design
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.arpiva-finance-page {
    --finance-navy: #06183f;
    --finance-navy-dark: #03122f;
    --finance-blue: #0b63ce;
    --finance-blue-light: #2d8cff;
    --finance-orange: #ff9f1c;
    --finance-orange-light: #ffb84d;

    --finance-text: #12213f;
    --finance-muted: #64748b;
    --finance-light: #f5f8fc;
    --finance-border: #e5ebf4;

    --finance-white: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.arpiva-finance-page .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
   finance-hero.png = BACKGROUND ONLY
========================================================= */

.finance-hero {
    position: relative;

    min-height: 560px;
    height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: var(--finance-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 16, 46, .98) 0%,
            rgba(4, 22, 55, .94) 35%,
            rgba(5, 28, 67, .72) 62%,
            rgba(5, 28, 67, .32) 100%
        ),
        url("../images/finance-hero.png");

    background-position:
        center,
        center center;

    background-size:
        cover,
        cover;

    background-repeat:
        no-repeat,
        no-repeat;
}


/* subtle background movement */

.finance-hero {
    animation: financeHeroBackground 18s ease-in-out infinite alternate;
}

@keyframes financeHeroBackground {

    from {
        background-position:
            center,
            center center;
    }

    to {
        background-position:
            center,
            52% center;
    }

}


/* =========================================================
   HERO OVERLAY / GLOWS
========================================================= */

.finance-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(45,140,255,.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 20% 85%,
            rgba(255,159,28,.07),
            transparent 28%
        );
}


.finance-hero-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .18;

    pointer-events: none;

    z-index: 1;
}

.finance-glow-one {
    background: #0b63ce;

    right: 8%;
    top: 18%;

    animation:
        financeGlowMove 8s ease-in-out infinite alternate;
}

.finance-glow-two {
    background: #ff9f1c;

    left: 4%;
    bottom: 4%;

    opacity: .08;

    animation:
        financeGlowMove 10s ease-in-out infinite alternate-reverse;
}


@keyframes financeGlowMove {

    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(25px,-18px,0);
    }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.finance-hero .container {
    position: relative;

    z-index: 5;
}


.finance-hero-content {
    max-width: 680px;
    padding-top: 10px;
}


.finance-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 999px;

    background:
        rgba(255,255,255,.06);

    color: #d7e6ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.finance-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--finance-orange);

    box-shadow:
        0 0 0 5px rgba(255,159,28,.12),
        0 0 15px rgba(255,159,28,.45);
}


.finance-kicker {
    display: block;

    margin-top: 25px;

    margin-bottom: 12px;

    color: var(--finance-orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.finance-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 4.2vw, 64px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}


.finance-hero h1 span {
    display: block;

    margin-top: 8px;

    color: #70b1ff;
}


.finance-hero-content > p {
    max-width: 620px;

    margin: 18px 0 0;

    color: #c8d7ed;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.finance-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 22px;
}


.finance-primary-button,
.finance-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.finance-primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff9f1c,
            #ff7d00
        );

    box-shadow:
        0 14px 30px rgba(255,125,0,.22);
}


.finance-primary-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,125,0,.32);
}


.finance-secondary-button {
    color: #ffffff;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(12px);
}


.finance-secondary-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color:
        rgba(255,255,255,.4);

    background:
        rgba(255,255,255,.12);
}


.finance-primary-button span,
.finance-secondary-button span {
    font-size: 18px;

    transition:
        transform .3s ease;
}


.finance-primary-button:hover span,
.finance-secondary-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.finance-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 15px;
}


.finance-hero-trust span {
    position: relative;

    padding-left: 16px;

    color: #9eb5d7;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .4px;
}


.finance-hero-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--finance-orange);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.finance-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 24px;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.45);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.finance-scroll-indicator i {
    display: block;

    width: 1px;
    height: 28px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.5),
            transparent
        );

    animation:
        financeScroll 1.8s ease-in-out infinite;
}


@keyframes financeScroll {

    0%,
    100% {
        opacity: .4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(7px);
    }

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.finance-intro,
.finance-solutions,
.finance-intelligence,
.finance-sectors,
.finance-technology {
    padding: 110px 0;
}


.finance-section-heading {
    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


.finance-section-heading.light {
    color: #ffffff;
}


.finance-section-badge {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--finance-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.finance-section-heading.light .finance-section-badge {
    color: var(--finance-orange);
}


.finance-section-heading h2 {
    margin: 0;

    color: var(--finance-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.finance-section-heading.light h2 {
    color: #ffffff;
}


.finance-section-heading h2 span {
    color: var(--finance-blue);
}


.finance-section-heading.light h2 span {
    color: #70b1ff;
}


.finance-section-heading p {
    max-width: 700px;

    margin: 20px auto 0;

    color: var(--finance-muted);

    font-size: 15px;

    line-height: 1.8;
}


.finance-section-heading.light p {
    color: #aebed8;
}


/* =========================================================
   INTRO
========================================================= */

.finance-intro {
    background: #ffffff;
}


.finance-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 75px;

    align-items: center;
}


.finance-intro-content {
    max-width: 570px;
}


.finance-small-label {
    color: var(--finance-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.finance-intro-content h3 {
    margin: 14px 0 18px;

    color: var(--finance-navy);

    font-size: clamp(30px, 3.2vw, 44px);

    line-height: 1.12;

    letter-spacing: -1.4px;
}


.finance-intro-content h3 strong {
    display: block;

    color: var(--finance-blue);
}


.finance-intro-content > p {
    color: var(--finance-muted);

    font-size: 14px;

    line-height: 1.8;
}


.finance-intro-points {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 30px;
}


.finance-intro-points > div {
    padding: 18px;

    border:
        1px solid var(--finance-border);

    border-radius: 13px;

    background: #fbfcfe;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.finance-intro-points > div:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(6,24,63,.08);
}


.finance-intro-points span {
    display: block;

    margin-bottom: 9px;

    color: var(--finance-orange);

    font-size: 10px;

    font-weight: 800;
}


.finance-intro-points strong {
    color: var(--finance-navy);

    font-size: 13px;
}


.finance-intro-points p {
    margin: 7px 0 0;

    color: var(--finance-muted);

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   INTRO ORBIT
========================================================= */

.finance-intro-visual {
    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            #edf5ff 0%,
            #f7faff 48%,
            #ffffff 75%
        );
}


.finance-orbit {
    position: relative;

    width: 390px;
    height: 390px;
}


.finance-orbit-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(11,99,206,.18);

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        financeOrbitSpin 18s linear infinite;
}


.ring-one {
    width: 190px;
    height: 190px;
}


.ring-two {
    width: 280px;
    height: 280px;

    border-color:
        rgba(255,159,28,.18);

    animation-duration: 24s;

    animation-direction: reverse;
}


.ring-three {
    width: 370px;
    height: 370px;

    border-style: dashed;

    opacity: .7;

    animation-duration: 30s;
}


@keyframes financeOrbitSpin {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

}


.finance-orbit-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 135px;
    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0b63ce,
            #06183f
        );

    box-shadow:
        0 20px 55px rgba(11,99,206,.3);
}


.finance-orbit-core span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #91c2ff;
}


.finance-orbit-core strong {
    margin-top: 5px;

    font-size: 21px;

    letter-spacing: .5px;
}


.finance-orbit-core small {
    margin-top: 4px;

    font-size: 6px;

    letter-spacing: 1px;

    color: #a7c0e3;
}


.finance-orbit-node {
    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 53px;
    height: 53px;

    border-radius: 50%;

    color: var(--finance-navy);

    background: #ffffff;

    border:
        1px solid #dbe8f8;

    box-shadow:
        0 12px 30px rgba(6,24,63,.1);

    font-size: 8px;

    font-weight: 800;
}


.node-one {
    top: 48px;
    left: 42px;
}

.node-two {
    top: 40px;
    right: 30px;
}

.node-three {
    right: 13px;
    bottom: 58px;
}

.node-four {
    left: 28px;
    bottom: 40px;
}


/* =========================================================
   CHALLENGES
========================================================= */

.finance-challenges {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 55%,
            #082454
        );
}


.finance-challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.finance-challenge-card {
    position: relative;

    min-height: 315px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter: blur(12px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}


.finance-challenge-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(45,140,255,.4);

    background:
        rgba(255,255,255,.07);
}


.finance-card-number {
    color: rgba(255,255,255,.25);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.finance-card-icon {
    margin-top: 35px;

    color: var(--finance-orange);

    font-size: 28px;
}


.finance-challenge-card h3 {
    margin: 25px 0 12px;

    color: #ffffff;

    font-size: 20px;
}


.finance-challenge-card p {
    margin: 0;

    color: #9eb2d0;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.finance-solutions {
    background: #f7f9fc;
}


.finance-solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.finance-solution-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    border:
        1px solid var(--finance-border);

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.finance-solution-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(11,99,206,.2);

    box-shadow:
        0 20px 50px rgba(6,24,63,.09);
}


.finance-solution-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.finance-solution-top span {
    color: #a6b6cd;

    font-size: 9px;

    font-weight: 800;
}


.finance-solution-top i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: var(--finance-blue);

    background: #edf5ff;

    font-style: normal;

    font-size: 17px;
}


.finance-solution-card h3 {
    margin: 29px 0 13px;

    color: var(--finance-navy);

    font-size: 19px;

    line-height: 1.3;
}


.finance-solution-card p {
    margin: 0;

    color: var(--finance-muted);

    font-size: 12px;

    line-height: 1.75;
}


.finance-solution-card a {
    position: absolute;

    left: 28px;
    bottom: 25px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--finance-blue);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .3px;
}


.finance-solution-card a span {
    font-size: 15px;

    transition:
        transform .25s ease;
}


.finance-solution-card:hover a span {
    transform: translateX(4px);
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.finance-ecosystem {
    padding: 120px 0;

    background: #ffffff;
}


.finance-ecosystem-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}


.finance-ecosystem-content h2 {
    margin: 15px 0 20px;

    color: var(--finance-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.finance-ecosystem-content h2 span {
    display: block;

    color: var(--finance-blue);
}


.finance-ecosystem-content > p {
    color: var(--finance-muted);

    font-size: 14px;

    line-height: 1.8;
}


.finance-ecosystem-list {
    margin-top: 27px;
}


.finance-ecosystem-list div {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px 0;

    border-bottom:
        1px solid #edf1f6;

    color: var(--finance-navy);

    font-size: 12px;

    font-weight: 600;
}


.finance-ecosystem-list span {
    color: var(--finance-orange);

    font-size: 9px;

    font-weight: 800;
}


/* ecosystem visual */

.finance-ecosystem-visual {
    position: relative;

    width: 510px;
    height: 510px;

    max-width: 100%;

    margin: auto;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #eef6ff 0%,
            #f7faff 43%,
            #ffffff 72%
        );
}


.finance-ecosystem-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0b63ce,
            #06183f
        );

    box-shadow:
        0 22px 55px rgba(11,99,206,.27);
}


.finance-ecosystem-core {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.finance-ecosystem-core strong {
    margin-top: 5px;

    font-size: 21px;

    letter-spacing: 1px;
}


.finance-connection {
    position: absolute;

    width: 74px;
    height: 74px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid #d9e8f8;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(6,24,63,.08);

    color: var(--finance-blue);

    font-size: 9px;

    font-weight: 800;
}


.finance-connection::after {
    content: "";

    position: absolute;

    width: 145px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(11,99,206,.25),
            transparent
        );

    z-index: -1;
}


.connection-one {
    top: 48px;
    left: 80px;
}

.connection-two {
    top: 65px;
    right: 50px;
}

.connection-three {
    right: 22px;
    bottom: 105px;
}

.connection-four {
    bottom: 40px;
    left: 205px;
}

.connection-five {
    left: 25px;
    bottom: 105px;
}


.connection-one::after {
    transform: rotate(28deg);
}

.connection-two::after {
    transform: rotate(-30deg);
}

.connection-three::after {
    transform: rotate(-150deg);
}

.connection-four::after {
    transform: rotate(180deg);
}

.connection-five::after {
    transform: rotate(145deg);
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.finance-intelligence {
    background:
        #f5f8fc;
}


.finance-intelligence-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap: 70px;

    align-items: center;
}


.finance-intelligence-content h2 {
    margin: 15px 0 18px;

    color: var(--finance-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.finance-intelligence-content h2 span {
    display: block;

    color: var(--finance-blue);
}


.finance-intelligence-content > p {
    color: var(--finance-muted);

    font-size: 14px;

    line-height: 1.8;
}


.finance-intelligence-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 27px;
}


.finance-intelligence-points div {
    padding: 16px;

    border:
        1px solid var(--finance-border);

    border-radius: 12px;

    background: #ffffff;
}


.finance-intelligence-points strong {
    display: block;

    color: var(--finance-navy);

    font-size: 12px;
}


.finance-intelligence-points span {
    display: block;

    margin-top: 6px;

    color: var(--finance-muted);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   DASHBOARD
========================================================= */

.finance-dashboard {
    position: relative;

    padding: 24px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #06183f,
            #071f4c
        );

    box-shadow:
        0 25px 70px rgba(6,24,63,.2);

    overflow: hidden;
}


.finance-dashboard::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -80px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(11,99,206,.22);

    filter: blur(60px);
}


.finance-dashboard-header {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}


.finance-dashboard-header span {
    display: block;

    color: #7794bc;

    font-size: 7px;

    letter-spacing: 1.7px;
}


.finance-dashboard-header strong {
    display: block;

    margin-top: 6px;

    color: #ffffff;

    font-size: 17px;
}


.finance-dashboard-header b {
    padding: 5px 8px;

    border-radius: 6px;

    color: #8ff0b2;

    background: rgba(64,214,126,.1);

    font-size: 7px;

    letter-spacing: 1px;
}


.finance-dashboard-kpis {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 20px;
}


.finance-dashboard-kpis > div {
    padding: 13px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 10px;

    background:
        rgba(255,255,255,.04);
}


.finance-dashboard-kpis small {
    display: block;

    color: #6e8ab3;

    font-size: 6px;

    letter-spacing: 1px;
}


.finance-dashboard-kpis strong {
    display: block;

    margin-top: 6px;

    color: #ffffff;

    font-size: 17px;
}


.finance-dashboard-kpis .positive {
    display: block;

    margin-top: 4px;

    color: #70dc9a;

    font-size: 7px;
}


.finance-chart {
    position: relative;

    height: 225px;

    margin-top: 20px;

    padding: 20px 15px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);

    overflow: hidden;
}


.finance-chart-label {
    position: relative;

    z-index: 3;

    color: #6f89b1;

    font-size: 7px;

    letter-spacing: 1.5px;
}


.finance-bars {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    height: 160px;

    display: flex;

    align-items: flex-end;

    gap: 8px;
}


.finance-bars span {
    flex: 1;

    border-radius:
        4px 4px 0 0;

    background:
        linear-gradient(
            to top,
            #0b63ce,
            #55a9ff
        );

    transform-origin: bottom;

    animation:
        financeBars 1.3s ease both;
}


.finance-bars span:nth-child(2) {
    animation-delay: .08s;
}

.finance-bars span:nth-child(3) {
    animation-delay: .16s;
}

.finance-bars span:nth-child(4) {
    animation-delay: .24s;
}

.finance-bars span:nth-child(5) {
    animation-delay: .32s;
}

.finance-bars span:nth-child(6) {
    animation-delay: .40s;
}

.finance-bars span:nth-child(7) {
    animation-delay: .48s;
}

.finance-bars span:nth-child(8) {
    animation-delay: .56s;
}

.finance-bars span:nth-child(9) {
    animation-delay: .64s;
}

.finance-bars span:nth-child(10) {
    animation-delay: .72s;
}

.finance-bars span:nth-child(11) {
    animation-delay: .80s;
}

.finance-bars span:nth-child(12) {
    animation-delay: .88s;
}


@keyframes financeBars {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }

}


.finance-chart-line {
    position: absolute;

    left: 25px;
    right: 25px;

    bottom: 88px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--finance-orange),
            transparent
        );

    opacity: .8;

    transform:
        rotate(-7deg);

    filter:
        drop-shadow(
            0 0 5px rgba(255,159,28,.6)
        );
}


.finance-dashboard-footer {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    color: #637fa9;

    font-size: 7px;

    letter-spacing: 1px;
}


.finance-dashboard-footer span:nth-child(2) {
    color: #63df91;

    font-size: 8px;
}


/* =========================================================
   AUTOMATION
========================================================= */

.finance-automation {
    padding: 120px 0;

    background: #ffffff;
}


.finance-automation-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .9fr);

    gap: 80px;

    align-items: center;
}


.finance-image-frame {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 25px 65px rgba(6,24,63,.13);
}


.finance-image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border:
        1px solid rgba(11,99,206,.12);

    border-radius: inherit;
}


.finance-image-frame img {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.finance-image-frame:hover img {
    transform: scale(1.035);
}


.finance-automation-content h2 {
    margin: 15px 0 18px;

    color: var(--finance-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.finance-automation-content h2 span {
    display: block;

    color: var(--finance-blue);
}


.finance-automation-content > p {
    color: var(--finance-muted);

    font-size: 14px;

    line-height: 1.8;
}


.finance-automation-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 27px;
}


.finance-automation-list div {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px;

    border:
        1px solid var(--finance-border);

    border-radius: 10px;

    background: #fbfcfe;
}


.finance-automation-list span {
    color: var(--finance-orange);

    font-size: 8px;

    font-weight: 800;
}


.finance-automation-list strong {
    color: var(--finance-navy);

    font-size: 10px;
}


/* =========================================================
   SECURITY
========================================================= */

.finance-security {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #f2f7ff,
            #ffffff
        );
}


.finance-security-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}


.finance-security-content h2 {
    margin: 15px 0 18px;

    color: var(--finance-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.finance-security-content h2 span {
    display: block;

    color: var(--finance-blue);
}


.finance-security-content > p {
    color: var(--finance-muted);

    font-size: 14px;

    line-height: 1.8;
}


.finance-security-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 28px;
}


.finance-security-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border:
        1px solid var(--finance-border);

    border-radius: 10px;

    background: #ffffff;
}


.finance-security-points span {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: var(--finance-blue);

    font-size: 10px;
}


.finance-security-points strong {
    color: var(--finance-navy);

    font-size: 10px;
}


/* =========================================================
   SECTORS
========================================================= */

.finance-sectors {
    background: #ffffff;
}


.finance-sector-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.finance-sector-card {
    position: relative;

    min-height: 220px;

    padding: 27px;

    border:
        1px solid var(--finance-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.finance-sector-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(11,99,206,.22);

    box-shadow:
        0 18px 45px rgba(6,24,63,.08);
}


.finance-sector-card > span {
    color: var(--finance-orange);

    font-size: 9px;

    font-weight: 800;
}


.finance-sector-card h3 {
    margin: 28px 0 12px;

    color: var(--finance-navy);

    font-size: 18px;

    line-height: 1.35;
}


.finance-sector-card p {
    margin: 0;

    color: var(--finance-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.finance-why {
    padding: 115px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 60%,
            #08275b
        );
}


.finance-why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


.finance-why-card {
    min-height: 210px;

    padding: 25px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background:
        rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.finance-why-card:hover {
    transform: translateY(-7px);

    background:
        rgba(255,255,255,.075);

    border-color:
        rgba(45,140,255,.35);
}


.finance-why-card > span {
    color: var(--finance-orange);

    font-size: 9px;

    font-weight: 800;
}


.finance-why-card h3 {
    margin: 24px 0 10px;

    color: #ffffff;

    font-size: 18px;
}


.finance-why-card p {
    margin: 0;

    color: #9db1d0;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.finance-technology {
    background: #f7f9fc;
}


.finance-tech-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.finance-tech-group {
    padding: 27px;

    border:
        1px solid var(--finance-border);

    border-radius: 16px;

    background: #ffffff;
}


.finance-tech-group > span {
    display: block;

    margin-bottom: 18px;

    color: var(--finance-orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.finance-tech-group > div {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.finance-tech-group b {
    padding: 8px 11px;

    border:
        1px solid #e3ebf6;

    border-radius: 8px;

    color: #38506f;

    background: #f8fbff;

    font-size: 9px;

    font-weight: 600;
}


/* =========================================================
   FINAL CTA
========================================================= */

.finance-final-cta {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}


.finance-final-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(11,99,206,.22),
            transparent 65%
        );

    pointer-events: none;
}


.finance-final-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;
}


.finance-final-content h2 {
    margin: 15px 0 18px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.finance-final-content h2 span {
    display: block;

    color: #70b1ff;
}


.finance-final-content > p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #a9bddb;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.finance-reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1);
}


.finance-reveal.finance-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* staggered cards */

.finance-challenge-grid
.finance-reveal:nth-child(2),
.finance-solutions-grid
.finance-reveal:nth-child(2),
.finance-sector-grid
.finance-reveal:nth-child(2),
.finance-why-grid
.finance-reveal:nth-child(2),
.finance-tech-grid
.finance-reveal:nth-child(2) {
    transition-delay: .08s;
}


.finance-challenge-grid
.finance-reveal:nth-child(3),
.finance-solutions-grid
.finance-reveal:nth-child(3),
.finance-sector-grid
.finance-reveal:nth-child(3),
.finance-why-grid
.finance-reveal:nth-child(3),
.finance-tech-grid
.finance-reveal:nth-child(3) {
    transition-delay: .16s;
}


.finance-challenge-grid
.finance-reveal:nth-child(4),
.finance-solutions-grid
.finance-reveal:nth-child(4),
.finance-sector-grid
.finance-reveal:nth-child(4),
.finance-why-grid
.finance-reveal:nth-child(4),
.finance-tech-grid
.finance-reveal:nth-child(4) {
    transition-delay: .24s;
}


.finance-challenge-grid
.finance-reveal:nth-child(5),
.finance-solutions-grid
.finance-reveal:nth-child(5),
.finance-sector-grid
.finance-reveal:nth-child(5),
.finance-why-grid
.finance-reveal:nth-child(5),
.finance-tech-grid
.finance-reveal:nth-child(5) {
    transition-delay: .32s;
}


.finance-challenge-grid
.finance-reveal:nth-child(6),
.finance-solutions-grid
.finance-reveal:nth-child(6),
.finance-sector-grid
.finance-reveal:nth-child(6),
.finance-why-grid
.finance-reveal:nth-child(6),
.finance-tech-grid
.finance-reveal:nth-child(6) {
    transition-delay: .40s;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .finance-hero {
        min-height: 650px;
    }

    .finance-challenge-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .finance-solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .finance-sector-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .finance-why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .finance-intro-grid,
    .finance-ecosystem-grid,
    .finance-intelligence-grid,
    .finance-automation-grid,
    .finance-security-grid {
        gap: 50px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-finance-page .container {
        width: min(92%, 600px);
    }


    .finance-hero {

        min-height: 700px;

        align-items: flex-start;

        padding:
            95px 0 65px;

        background-position:
            center,
            63% center;
    }


    .finance-hero h1 {

        font-size: 45px;

        line-height: 1;

        letter-spacing: -2px;
    }


    .finance-hero-content > p {

        font-size: 13px;

        line-height: 1.65;
    }


    .finance-hero-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .finance-primary-button,
    .finance-secondary-button {

        width: 100%;
    }


    .finance-hero-trust {

        gap: 12px;

    }


    .finance-scroll-indicator {

        display: none;
    }


    .finance-intro,
    .finance-solutions,
    .finance-intelligence,
    .finance-sectors,
    .finance-technology,
    .finance-automation,
    .finance-security,
    .finance-ecosystem,
    .finance-why {

        padding:
            80px 0;
    }


    .finance-section-heading {

        margin-bottom: 45px;
    }


    .finance-section-heading h2 {

        font-size: 34px;

        letter-spacing: -1px;
    }


    .finance-intro-grid,
    .finance-ecosystem-grid,
    .finance-intelligence-grid,
    .finance-automation-grid,
    .finance-security-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .finance-intro-visual {

        min-height: 390px;
    }


    .finance-orbit {

        transform:
            scale(.78);
    }


    .finance-intro-points {

        grid-template-columns: 1fr;
    }


    .finance-challenge-grid,
    .finance-solutions-grid,
    .finance-sector-grid,
    .finance-why-grid {

        grid-template-columns: 1fr;
    }


    .finance-challenge-card {

        min-height: 260px;
    }


    .finance-intelligence-points,
    .finance-automation-list,
    .finance-security-points {

        grid-template-columns: 1fr;
    }


    .finance-dashboard {

        padding: 16px;
    }


    .finance-dashboard-kpis {

        gap: 6px;
    }


    .finance-dashboard-kpis > div {

        padding: 9px;
    }


    .finance-dashboard-kpis strong {

        font-size: 13px;
    }


    .finance-chart {

        height: 190px;
    }


    .finance-ecosystem-visual {

        width: 390px;

        height: 390px;
    }


    .finance-connection {

        width: 60px;

        height: 60px;
    }


    .finance-ecosystem-core {

        width: 120px;

        height: 120px;
    }


    .finance-tech-grid {

        grid-template-columns: 1fr;
    }


    .finance-final-cta {

        padding:
            90px 0;
    }


    .finance-final-content h2 {

        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .finance-hero,
    .finance-glow-one,
    .finance-glow-two,
    .finance-orbit-ring,
    .finance-scroll-indicator i,
    .finance-bars span {

        animation: none !important;
    }


    .finance-reveal {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .finance-solution-card,
    .finance-sector-card,
    .finance-why-card,
    .finance-challenge-card {

        transition: none !important;
    }

}