/* =========================================================
   LAMiC FINTECH & CONSULTING PAGE
========================================================= */


/* =========================================================
   FINTECH HERO
========================================================= */

.fintech-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #0d1f38 0%,
            #132e4f 55%,
            #0a6b4a 100%
        );

    color: #ffffff;
}


.fintech-hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    right: -180px;

    top: -160px;

}


.fintech-hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.06);

    right: 80px;

    bottom: -250px;

}


.fintech-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(0,166,81,.18),
            transparent 35%
        );

    pointer-events: none;
}


.fintech-hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 70px;

    padding-top: 80px;

    padding-bottom: 80px;
}


.fintech-hero-content {

    max-width: 720px;
}


.fintech-breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    font-size: 14px;

    color: rgba(255,255,255,.7);
}


.fintech-breadcrumb a {

    color: #ffffff;

    text-decoration: none;

    transition: .3s ease;
}


.fintech-breadcrumb a:hover {

    color: #00a651;
}


.fintech-breadcrumb i {

    font-size: 10px;

}


.fintech-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #65d49a;

    margin-bottom: 18px;
}


.fintech-hero-label::before {

    content: "";

    width: 35px;

    height: 2px;

    background: #65d49a;
}


.fintech-hero h1 {

    font-size: clamp(44px, 5vw, 72px);

    line-height: 1.04;

    letter-spacing: -2px;

    margin: 0 0 25px;

    font-weight: 700;
}


.fintech-hero h1 strong {

    display: block;

    color: #65d49a;

    font-weight: 700;
}


.fintech-hero p {

    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,.82);

    margin-bottom: 35px;
}


.fintech-hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.fintech-hero-buttons .btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 25px;
}


.btn-outline-light {

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.35);

    background: transparent;

    text-decoration: none;

    border-radius: 4px;

    transition: .3s ease;
}


.btn-outline-light:hover {

    background: #ffffff;

    color: #132e4f;
}


/* =========================================================
   HERO DASHBOARD
========================================================= */

.fintech-hero-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.fintech-dashboard {

    width: min(430px, 100%);

    min-height: 330px;

    padding: 25px;

    border-radius: 16px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.16);

    backdrop-filter: blur(15px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.28);

    transform: rotate(-3deg);

    position: relative;

    z-index: 2;
}


.dashboard-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.12);

    color: #ffffff;
}


.dashboard-header span {

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1px;
}


.dashboard-header i {

    color: rgba(255,255,255,.6);
}


.dashboard-title {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-top: 25px;
}


.dashboard-title span {

    font-size: 13px;

    color: rgba(255,255,255,.6);
}


.dashboard-title strong {

    font-size: 24px;

    color: #ffffff;
}


.dashboard-chart {

    position: relative;

    height: 125px;

    margin-top: 25px;

    overflow: hidden;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.chart-line {

    position: absolute;

    width: 110%;

    height: 100%;

    left: -5%;

    top: 0;

    border-bottom: 3px solid #65d49a;

    clip-path: polygon(
        0 80%,
        18% 65%,
        35% 72%,
        52% 38%,
        67% 52%,
        82% 20%,
        100% 5%,
        100% 100%,
        0 100%
    );
}


.chart-point {

    position: absolute;

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow: 0 0 0 4px rgba(101,212,154,.25);
}


.point-one {

    left: 18%;

    top: 64%;
}


.point-two {

    left: 35%;

    top: 71%;
}


.point-three {

    left: 52%;

    top: 37%;
}


.point-four {

    left: 67%;

    top: 51%;
}


.point-five {

    right: 0;

    top: 5%;
}


.dashboard-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 20px;
}


.dashboard-stats div {

    padding: 14px;

    background: rgba(255,255,255,.06);

    border-radius: 8px;
}


.dashboard-stats span {

    display: block;

    font-size: 11px;

    color: rgba(255,255,255,.55);

    margin-bottom: 5px;
}


.dashboard-stats strong {

    color: #ffffff;

    font-size: 15px;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.fintech-floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 10px;

    background: #ffffff;

    color: #132e4f;

    box-shadow: 0 20px 50px rgba(0,0,0,.25);

    z-index: 4;
}


.fintech-floating-card i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #e9f8f0;

    color: #00a651;
}


.fintech-floating-card strong {

    display: block;

    font-size: 13px;
}


.fintech-floating-card span {

    display: block;

    font-size: 11px;

    color: #777;

    margin-top: 3px;
}


.fintech-card-one {

    left: 0;

    bottom: 45px;
}


.fintech-card-two {

    right: -10px;

    top: 45px;
}


/* =========================================================
   INTRO
========================================================= */

.fintech-intro {

    background: #ffffff;
}


.fintech-intro .section-heading {

    max-width: 800px;

    margin: 0 auto 60px;
}


.fintech-intro .section-heading p {

    max-width: 720px;

    margin: 20px auto 0;

    line-height: 1.8;
}


.fintech-intro-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.fintech-intro-card {

    padding: 35px;

    border: 1px solid #e7ebef;

    background: #ffffff;

    border-radius: 8px;

    transition: .35s ease;
}


.fintech-intro-card:hover {

    transform: translateY(-8px);

    border-color: #00a651;

    box-shadow:
        0 20px 50px rgba(15,40,65,.09);
}


.fintech-intro-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eaf8f1;

    color: #00a651;

    font-size: 25px;

    margin-bottom: 25px;
}


.fintech-intro-card h3 {

    font-size: 21px;

    margin-bottom: 12px;
}


.fintech-intro-card p {

    color: #667085;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   SERVICES
========================================================= */

.fintech-services {

    background: #f6f8fa;
}


.fintech-services .section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}


.fintech-services .section-heading > p {

    max-width: 470px;

    line-height: 1.7;

    color: #667085;

    margin: 0;
}


.fintech-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.fintech-service-card {

    position: relative;

    background: #ffffff;

    border: 1px solid #e4e9ee;

    padding: 35px;

    border-radius: 8px;

    min-height: 330px;

    overflow: hidden;

    transition: .35s ease;
}


.fintech-service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(15,40,65,.10);

    border-color: rgba(0,166,81,.35);
}


.service-number {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 55px;

    line-height: 1;

    font-weight: 800;

    color: #f0f3f5;
}


.service-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #18325b;

    color: #ffffff;

    font-size: 23px;

    margin-bottom: 25px;

    position: relative;

    z-index: 1;
}


.fintech-service-card h3 {

    position: relative;

    z-index: 1;

    font-size: 20px;

    margin-bottom: 14px;
}


.fintech-service-card p {

    color: #667085;

    line-height: 1.7;

    margin-bottom: 25px;
}


.fintech-service-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #18325b;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}


.fintech-service-card a:hover {

    color: #00a651;

    gap: 12px;
}


/* =========================================================
   DIGITAL TRANSFORMATION
========================================================= */

.digital-transformation {

    background:
        linear-gradient(
            110deg,
            #eef7f2 0%,
            #ffffff 60%
        );
}


.digital-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}


.digital-content {

    max-width: 650px;
}


.digital-content h2 {

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 15px 0 20px;

    color: #18325b;
}


.digital-content > p {

    color: #667085;

    line-height: 1.8;

    margin-bottom: 30px;
}


.digital-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

    margin-bottom: 35px;
}


.digital-points div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #344054;

    font-size: 14px;

    font-weight: 600;
}


.digital-points i {

    color: #00a651;
}


/* =========================================================
   DIGITAL NETWORK VISUAL
========================================================= */

.digital-visual {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 450px;
}


.digital-network {

    position: relative;

    width: 390px;

    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,166,81,.08),
            rgba(24,50,91,.02) 60%,
            transparent 70%
        );
}


.digital-network::before {

    content: "";

    position: absolute;

    inset: 45px;

    border: 1px dashed rgba(0,166,81,.25);

    border-radius: 50%;
}


.digital-network::after {

    content: "";

    position: absolute;

    inset: 100px;

    border: 1px solid rgba(24,50,91,.10);

    border-radius: 50%;
}


.network-node {

    position: absolute;

    z-index: 3;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #18325b;

    box-shadow:
        0 15px 35px rgba(24,50,91,.12);

    font-size: 21px;
}


.node-center {

    width: 105px;

    height: 105px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    flex-direction: column;

    gap: 4px;

    color: #00a651;

    border: 5px solid #eaf8f1;
}


.node-center span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #18325b;
}


.node-one {

    top: 5px;

    left: 50%;

    transform: translateX(-50%);
}


.node-two {

    right: 0;

    top: 50%;

    transform: translateY(-50%);
}


.node-three {

    bottom: 5px;

    left: 50%;

    transform: translateX(-50%);
}


.node-four {

    left: 0;

    top: 50%;

    transform: translateY(-50%);
}


.network-line {

    position: absolute;

    height: 1px;

    background: rgba(0,166,81,.25);

    transform-origin: left center;

    z-index: 1;
}


.line-one {

    width: 150px;

    top: 105px;

    left: 165px;

    transform: rotate(-90deg);
}


.line-two {

    width: 150px;

    top: 195px;

    left: 195px;

    transform: rotate(0deg);
}


.line-three {

    width: 150px;

    top: 285px;

    left: 165px;

    transform: rotate(90deg);
}


.line-four {

    width: 150px;

    top: 195px;

    left: 75px;

    transform: rotate(180deg);
}


/* =========================================================
   SECTORS
========================================================= */

.fintech-sectors {

    background: #ffffff;
}


.sectors-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;
}


.sector-card {

    padding: 30px;

    background: #f8fafb;

    border: 1px solid #e8edf1;

    border-radius: 8px;

    transition: .35s ease;
}


.sector-card:hover {

    transform: translateY(-7px);

    background: #ffffff;

    box-shadow:
        0 20px 45px rgba(15,40,65,.08);
}


.sector-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #18325b;

    color: #ffffff;

    border-radius: 8px;

    margin-bottom: 20px;
}


.sector-card h3 {

    font-size: 18px;

    margin-bottom: 12px;
}


.sector-card p {

    font-size: 14px;

    color: #667085;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   APPROACH
========================================================= */

.fintech-approach {

    background: #f6f8fa;
}


.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;
}


.approach-item {

    position: relative;

    padding: 35px 25px;

    background: #ffffff;

    border-radius: 8px;

    border: 1px solid #e6eaee;

    text-align: center;
}


.approach-item > span {

    position: absolute;

    right: 18px;

    top: 15px;

    font-size: 30px;

    font-weight: 800;

    color: #edf0f2;
}


.approach-item i {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    background: #eaf8f1;

    color: #00a651;

    border-radius: 50%;

    font-size: 23px;
}


.approach-item h3 {

    font-size: 20px;

    margin-bottom: 12px;
}


.approach-item p {

    font-size: 14px;

    color: #667085;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.fintech-cta {

    background:
        linear-gradient(
            110deg,
            #18325b,
            #102641
        );

    color: #ffffff;
}


.fintech-cta-inner {

    min-height: 330px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.fintech-cta-inner > div:first-child {

    max-width: 720px;
}


.fintech-cta-inner > div:first-child > span {

    display: block;

    color: #65d49a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.fintech-cta h2 {

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.1;

    margin: 0 0 18px;
}


.fintech-cta p {

    color: rgba(255,255,255,.72);

    line-height: 1.7;

    margin: 0;

    max-width: 650px;
}


.fintech-cta-buttons {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    flex-shrink: 0;
}


.fintech-email-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
}


.fintech-email-link:hover {

    color: #65d49a;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .fintech-hero-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .fintech-hero-content {

        max-width: 800px;

    }


    .fintech-hero-visual {

        max-width: 600px;

        margin: 0 auto;

        width: 100%;

    }


    .fintech-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .sectors-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .approach-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .digital-grid {

        gap: 40px;

    }

}


@media (max-width: 800px) {

    .fintech-hero {

        min-height: auto;

    }


    .fintech-hero-container {

        padding-top: 60px;

        padding-bottom: 60px;

    }


    .fintech-hero h1 {

        font-size: 45px;

        letter-spacing: -1px;

    }


    .fintech-hero p {

        font-size: 16px;

    }


    .fintech-hero-visual {

        min-height: 400px;

    }


    .fintech-services .section-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .digital-grid {

        grid-template-columns: 1fr;

    }


    .digital-content {

        max-width: 100%;

    }


    .digital-visual {

        min-height: 380px;

    }


    .fintech-cta-inner {

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 60px 0;

    }

}


@media (max-width: 600px) {

    .fintech-hero h1 {

        font-size: 38px;

    }


    .fintech-hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .fintech-hero-buttons .btn {

        width: 100%;

    }


    .fintech-hero-visual {

        min-height: 340px;

    }


    .fintech-dashboard {

        width: 92%;

        min-height: 290px;

        padding: 20px;

    }


    .fintech-card-one {

        left: -5px;

        bottom: 10px;

    }


    .fintech-card-two {

        right: -5px;

        top: 10px;

    }


    .fintech-floating-card {

        padding: 10px 12px;

    }


    .fintech-floating-card i {

        width: 32px;

        height: 32px;

        font-size: 13px;

    }


    .fintech-floating-card strong {

        font-size: 11px;

    }


    .fintech-floating-card span {

        font-size: 9px;

    }


    .fintech-intro-grid,

    .fintech-services-grid,

    .sectors-grid,

    .approach-grid {

        grid-template-columns: 1fr;

    }


    .digital-points {

        grid-template-columns: 1fr;

    }


    .digital-network {

        width: 310px;

        height: 310px;

    }


    .node-center {

        width: 85px;

        height: 85px;

    }


    .network-node {

        width: 55px;

        height: 55px;

    }


    .fintech-cta h2 {

        font-size: 34px;

    }

}