@font-face {
    font-family: "Thmanyah";
    src: url("../fonts/main-font.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --fin-bg: #f6f7f9;
    --fin-bg-2: #eef1f6;
    --fin-surface: #ffffff;
    --fin-ink: #051a3a;
    --fin-navy: #031738;
    --fin-navy-2: #0a2a63;
    --fin-muted: #5b6b85;
    --fin-line: #e3e7ef;
    --fin-gold: #DDA239;
    --fin-gold-2: #c08a1e;
    --fin-white: #ffffff;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-pill: 999px;
    --sh-sm: 0 1px 2px rgba(3, 23, 56, .05), 0 8px 24px rgba(3, 23, 56, .06);
    --sh-md: 0 2px 5px rgba(3, 23, 56, .06), 0 22px 48px rgba(3, 23, 56, .10);
    --fin-font: "Thmanyah", "Lexend", "Cairo", ui-sans-serif, system-ui, sans-serif;
}

body {
    font-family: var(--fin-font);
    color: var(--fin-ink);
    background: var(--fin-bg);
    font-size: 16px;
    line-height: 1.8;
}

.fin-home {
    background: var(--fin-bg);
}

.fin-home *,
.fin-home *::before,
.fin-home *::after {
    box-sizing: border-box;
}

.fin-home p {
    color: var(--fin-muted);
}

.fin-home h1,
.fin-home h2,
.fin-home h3,
.fin-home h4,
.fin-home h5,
.fin-home h6 {
    color: var(--fin-navy);
}

.fin-home :is(p, h1, h2, h3, h4, h5, h6, a) {
    text-wrap: pretty;
}

.fin-home a {
    text-decoration: none;
}

::selection {
    background: rgba(221, 162, 57, .3);
    color: var(--fin-navy);
}

/* ================================ Buttons ================================ */
.btn.style1 {
    background-color: var(--fin-navy) !important;
    border: 1px solid var(--fin-navy) !important;
    color: #fff !important;
    border-radius: var(--r-pill);
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--sh-sm);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn.style1:hover {
    background-color: var(--fin-navy-2) !important;
    border-color: var(--fin-navy-2) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.btn.style1.gold {
    background-color: var(--fin-gold) !important;
    border-color: var(--fin-ink) !important;
    color: var(--fin-ink) !important;
}

.btn.style1.gold:hover {
    background-color: var(--fin-gold-2) !important;
    border-color: var(--fin-ink) !important;
    color: var(--fin-ink) !important;
}

.btn.style1::after,
.btn.style1::before {
    display: none;
}

.fin-link-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--fin-navy);
    border-bottom: 2px solid var(--fin-gold);
    padding-bottom: 6px;
    transition: color .2s ease, border-color .2s ease;
}

.fin-link-more:hover {
    color: var(--fin-gold-2);
    border-color: var(--fin-gold-2);
}

.fin-link-more i {
    font-size: 17px;
    transition: transform .2s ease;
}

.fin-link-more:hover i {
    transform: translateX(-4px);
}

/* ================================ Kicker ================================= */
.fin-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--fin-gold-2);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.fin-kicker .fin-idx {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border: 1.5px solid var(--fin-line);
    border-radius: var(--r-sm);
    color: var(--fin-gold-2);
    font-size: 12.5px;
    letter-spacing: 0;
}

.fin-kicker::after {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--fin-gold);
}

.fin-kicker.plain::after {
    display: none;
}

.fin-kicker.plain .fin-idx {
    border: 0;
    padding: 0;
    min-width: 0;
}

.fin-kicker.sm {
    font-size: 12.5px;
    margin-bottom: 12px;
}

.fin-kicker.light {
    color: var(--fin-gold);
}

.fin-kicker.light .fin-idx {
    border-color: rgba(255, 255, 255, .35);
    color: var(--fin-gold);
}

.fin-kicker.light::after {
    background: var(--fin-gold);
}

/* ============================ Headings / sections ========================= */
.fin-heading {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.32;
    color: var(--fin-navy);
    margin: 0 0 16px;
    text-wrap: balance;
}

.fin-lead {
    font-size: 17.5px;
    line-height: 1.95;
    color: var(--fin-muted);
    margin: 0;
}

.fin-sec {
    padding: clamp(72px, 9vw, 110px) 0;
    position: relative;
}

.fin-sec-paper {
    background: var(--fin-bg-2);
}

.fin-sec-head {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.fin-sec-head h2 {
    margin-bottom: 0;
}

.fin-sec-head--c {
    text-align: center;
}

.fin-sec-head--c .fin-kicker {
    justify-content: center;
}

.fin-sec-head--c .fin-heading {
    margin-inline: auto;
}

.fin-sec-head--c p {
    margin-inline: auto;
}

/* ================================ Header ================================ */
.header-wrap.style1.fin-header {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(3, 23, 56, .08);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}

.header-wrap.style1.fin-header::after {
    display: none;
}

.fin-header.sticky {
    top: 0 !important;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(3, 23, 56, .06);
    border-bottom: 1px solid rgba(3, 23, 56, .08);
}

.fin-header .header-bottom {
    padding: 0 !important;
}

.fin-hdr-nav {
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 0;
    gap: 24px;
}

.fin-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.fin-header .navbar-brand img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.fin-header .navbar-collapse {
    flex-grow: 1;
    flex-basis: auto;
}

.fin-header .navbar-collapse .navbar-nav {
    flex-direction: row;
}

.fin-header .navbar-nav {
    margin: 0;
    align-items: center;
    gap: 2px;
}

.fin-header .navbar-nav .nav-item {
    margin: 0 3px;
}

.fin-header .navbar-nav .nav-link {
    position: relative;
    color: var(--fin-ink);
    font-weight: 600;
    font-size: 14.5px;
    padding: 8px 13px !important;
    transition: color .2s ease;
}

.fin-header .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    inset-inline-start: 13px;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--fin-gold);
    border-radius: 2px;
    transition: width .25s ease;
}

.fin-header .navbar-nav .nav-link:hover,
.fin-header .navbar-nav .nav-link.active {
    color: var(--fin-navy) !important;
    font-weight: 700;
}

.fin-header .navbar-nav .nav-link:hover::after,
.fin-header .navbar-nav .nav-link.active::after {
    width: calc(100% - 26px);
}

.fin-header .other-options {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-inline-start: auto;
}

.fin-header .other-options::before {
    display: none;
}

.fin-header .option-item {
    margin: 0;
}

/* ── Header CTA button ── */
.fin-header .other-options .btn.fin-hdr-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--fin-navy) !important;
    border: 1.5px solid var(--fin-gold) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: .01em !important;
    padding: 9px 20px !important;
    border-radius: 999px !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    box-shadow: 0 0 0 0 rgba(212,175,55,0);
    transition: color .28s, background .28s, box-shadow .28s, transform .22s !important;
}

/* gold fill layer — slides in on hover */
.fin-header .other-options .btn.fin-hdr-cta::after {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eac35f 0%, #d4af37 50%, #bf8d16 100%);
    opacity: 0;
    transition: opacity .28s ease;
    z-index: 1;
}

.fin-header .other-options .btn.fin-hdr-cta::before {
    display: none;
}

.fin-header .other-options .btn.fin-hdr-cta i,
.fin-header .other-options .btn.fin-hdr-cta span {
    position: relative;
    z-index: 2;
    transition: color .28s;
}

.fin-header .other-options .btn.fin-hdr-cta i {
    font-size: 16px !important;
    color: var(--fin-gold);
    transition: color .28s, transform .28s;
}

.fin-header .other-options .btn.fin-hdr-cta:hover,
.fin-header .other-options .btn.fin-hdr-cta:focus {
    color: var(--fin-navy) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(212,175,55,.4) !important;
    border-color: var(--fin-gold) !important;
    background: var(--fin-navy) !important;
}

.fin-header .other-options .btn.fin-hdr-cta:hover::after,
.fin-header .other-options .btn.fin-hdr-cta:focus::after {
    opacity: 1;
}

.fin-header .other-options .btn.fin-hdr-cta:hover i,
.fin-header .other-options .btn.fin-hdr-cta:focus i {
    color: var(--fin-navy) !important;
    transform: rotate(-10deg) scale(1.15);
}

.fin-header .other-options .btn.fin-hdr-cta:hover span,
.fin-header .other-options .btn.fin-hdr-cta:focus span {
    color: var(--fin-navy) !important;
}

/* ring pulse — subtle attention animation */
@keyframes fin-cta-ring {
    0%   { box-shadow: 0 0 0 0 rgba(212,175,55,.55); }
    70%  { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.fin-header .other-options .btn.fin-hdr-cta {
    animation: fin-cta-ring 2.8s ease-out infinite;
}
.fin-header .other-options .btn.fin-hdr-cta:hover {
    animation: none !important;
}

.fin-header .main-menu-wrap .other-options .btn.fin-hdr-cta {
    justify-content: center;
    animation: none;
}

.fin-header .main-menu-wrap .fin-hdr-social { justify-content: center; }
.fin-hdr-social {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fin-hdr-social .fin-hdr-social-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(3, 23, 56, .05);
    border: 1px solid rgba(3, 23, 56, .08);
    color: var(--fin-navy);
    font-size: 16px;
    text-decoration: none !important;
    transition: background .2s, color .2s, transform .2s, border-color .2s, box-shadow .2s;
}
.fin-hdr-social .fin-hdr-social-ic:hover {
    background: var(--fin-gold-2);
    border-color: var(--fin-gold-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(192, 138, 30, .30);
}
.theme-dark .fin-hdr-social .fin-hdr-social-ic {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: #e7ebf1;
}
.theme-dark .fin-hdr-social .fin-hdr-social-ic:hover {
    background: var(--fin-gold-2);
    border-color: var(--fin-gold-2);
    color: #fff;
}

.fin-hdr-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--fin-line);
    border-radius: var(--r-pill);
    padding: 8px 18px 8px 14px;
    background: var(--fin-surface);
    white-space: nowrap;
}

.fin-hdr-phone-ic {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(221, 162, 57, .14);
    color: var(--fin-gold-2);
    font-size: 16px;
}

.fin-hdr-phone-txt {
    line-height: 1.3;
}

.fin-hdr-phone-txt small {
    display: block;
    color: var(--fin-muted);
    font-size: 12px;
}

.fin-hdr-phone-txt a {
    font-weight: 700;
    font-size: 15px;
    color: var(--fin-ink);
}

.fin-hdr-phone-txt a:hover {
    color: var(--fin-gold-2);
}

.fin-header .mobile-bar-wrap {
    top: 0;
    margin-inline-start: auto;
    display: none;
}

.fin-header .mobile-menu a {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--fin-navy);
    color: #fff;
    font-size: 21px;
    transition: background-color .2s ease;
}

.fin-header .mobile-menu a:hover {
    background: var(--fin-gold);
}

.fin-header .menu-close a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: rgba(3, 23, 56, .06);
    color: var(--fin-ink);
    font-size: 20px;
}

.fin-header .menu-close a:hover {
    background: var(--fin-gold);
    color: var(--fin-ink);
}

@media (max-width: 991.98px) {
    .fin-header .main-menu-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(84vw, 400px);
        height: 100dvh;
        background: var(--fin-bg);
        z-index: 1000;
        padding: 88px 26px 48px;
        overflow-y: auto;
        transition: right .3s ease;
        display: block;
    }

    .fin-header .main-menu-wrap.open {
        right: 0;
    }

    .fin-header .main-menu-wrap .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        margin: 0;
    }

    .fin-header .main-menu-wrap .navbar-nav .nav-item {
        margin: 0;
        border-bottom: 1px solid var(--fin-line);
    }

    .fin-header .main-menu-wrap .navbar-nav .nav-link {
        padding: 15px 4px;
        font-size: 16.5px;
        font-weight: 700;
    }

    .fin-header .main-menu-wrap .navbar-nav .nav-link::after {
        display: none;
    }

    .fin-header .main-menu-wrap .other-options {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin: 26px 0 0;
    }

    .fin-header .main-menu-wrap .other-options .btn {
        width: 100%;
        text-align: center;
    }

    .fin-header .mobile-bar-wrap {
        display: flex;
    }
}

@media (min-width: 992px) {
    .fin-header .main-menu-wrap,
    .fin-header .navbar-collapse {
        position: static !important;
        right: auto !important;
        top: auto !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
        background: transparent !important;
        padding: 0 !important;
        z-index: auto !important;
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        opacity: 1;
        visibility: visible;
    }
}

/* ================================ Hero ================================== */
.hero-wrap.style1 {
    padding: clamp(100px, 10vw, 150px) 0 clamp(72px, 8vw, 110px) !important;
    overflow: hidden;
    background: var(--fin-bg);
}

.fin-home .hero-slide-item {
    padding: 0 !important;
}

.fin-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.fin-hero-copy {
    max-width: 620px;
}

.fin-hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--fin-navy);
    margin: 0 0 18px;
}

.fin-hero-title .fin-mark {
    color: var(--fin-gold-2);
}

.fin-hero-lead {
    font-size: 17.5px;
    line-height: 1.95;
    color: var(--fin-muted);
    margin: 0 0 30px;
    max-width: 560px;
}

.fin-hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.fin-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fin-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fin-muted);
}

.fin-trust-item i {
    color: var(--fin-gold-2);
    font-size: 15px;
}

.fin-hero-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    aspect-ratio: 4 / 3.4;
}

.fin-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fin-hero-badge {
    position: absolute;
    top: -26px;
    inset-inline-start: -20px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--fin-gold);
    color: var(--fin-navy);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
    padding: 10px;
    box-shadow: var(--sh-sm);
    z-index: 2;
}

.fin-hero-badge i {
    font-size: 18px;
    display: block;
    margin-bottom: 3px;
}

.fin-hero-chip {
    position: absolute;
    bottom: 26px;
    inset-inline-end: -14px;
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: var(--sh-md);
    z-index: 2;
}

.fin-hero-chip i {
    font-size: 20px;
    color: var(--fin-gold-2);
}

.fin-hero-chip b {
    display: block;
    font-size: 14.5px;
    color: var(--fin-ink);
    line-height: 1.4;
}

.fin-hero-chip small {
    display: block;
    font-size: 12.5px;
    color: var(--fin-muted);
    line-height: 1.4;
}

.fin-home .hero-slider-one .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: var(--fin-surface) !important;
    color: var(--fin-navy) !important;
    border: 1px solid var(--fin-line) !important;
    display: grid;
    place-items: center;
    font-size: 18px !important;
    box-shadow: var(--sh-sm);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.fin-home .hero-slider-one .owl-nav button:hover {
    background: var(--fin-navy) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.fin-home .hero-slider-one .owl-dots {
    margin-top: 26px;
}

.fin-home .hero-slider-one .owl-dot span {
    background: rgba(3, 23, 56, .2);
}

.fin-home .hero-slider-one .owl-dot.active span,
.fin-home .hero-slider-one .owl-dot:hover span {
    background: var(--fin-navy);
}

/* ================================ Stats V3 ============================== */
.fin-stats-v3 {
    background: #fff;
    display: flex;
    align-items: stretch;
    border-top: 3px solid var(--fin-navy);
    border-bottom: 1px solid var(--fin-line);
}

.fin-stats-v3::before {
    display: none;
}

.fin-sv3-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(40px, 5.5vw, 72px) clamp(16px, 3vw, 44px);
    position: relative;
    gap: 0;
}

/* Gold accent bar at bottom of each cell */
.fin-sv3-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 50%;
    translate: -50% 0;
    width: 44px;
    height: 3px;
    background: var(--fin-gold);
    border-radius: 2px 2px 0 0;
    transition: width .3s ease;
}

.fin-sv3-item:hover::after {
    width: 70px;
}

/* Hide icons — numbers speak for themselves */
.fin-sv3-ic {
    display: none;
}

.fin-sv3-item--mid {
    background: none;
}

.fin-sv3-num {
    font-size: clamp(52px, 7.5vw, 96px);
    font-weight: 900;
    color: var(--fin-navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 16px;
}

.fin-sv3-num sup {
    font-size: 38%;
    font-weight: 900;
    color: var(--fin-navy);
    opacity: .45;
    margin-top: 12px;
}

.fin-sv3-item--mid .fin-sv3-num {
    color: var(--fin-navy);
}

.fin-sv3-label {
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    color: var(--fin-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fin-sv3-item--mid .fin-sv3-label {
    color: var(--fin-muted);
}

.fin-sv3-divider {
    width: 1px;
    align-self: stretch;
    background: var(--fin-line);
    flex-shrink: 0;
    margin: 32px 0;
}

/* dark mode */
.theme-dark .fin-stats-v3 {
    background: #0a1732;
    border-top-color: var(--fin-gold);
    border-bottom-color: #1c2c58;
}

.theme-dark .fin-sv3-num {
    color: #fff;
}

.theme-dark .fin-sv3-num sup {
    color: #fff;
}

.theme-dark .fin-sv3-label {
    color: rgba(255, 255, 255, .5);
}

.theme-dark .fin-sv3-divider {
    background: #1c2c58;
}

/* Stats V3 responsive */
@media (max-width: 767.98px) {
    .fin-stats-v3 {
        flex-direction: column;
    }

    .fin-sv3-item {
        width: 100%;
        padding: 36px 20px;
    }

    .fin-sv3-item::after {
        bottom: auto;
        top: 0;
        border-radius: 0 0 2px 2px;
    }

    .fin-sv3-divider {
        width: 60px;
        height: 1px;
        align-self: auto;
        margin: 0 auto;
    }
}

/* ============================== Ticker V3 ================================ */
.tick-v3 {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--fin-line);
    border-bottom: 1px solid var(--fin-line);
    background: var(--fin-surface);
    overflow: hidden;
}

/* Left label badge */
.tick-v3-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--fin-gold);
    color: var(--fin-navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

.tick-v3-label i {
    font-size: 14px;
}

/* Arrow notch on the end side */
.tick-v3-label::after {
    content: "";
    position: absolute;
    inset-inline-end: -12px;
    top: 0;
    height: 100%;
    width: 13px;
    background: var(--fin-gold);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* Scrolling stage */
.tick-v3-stage {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

/* Fade masks on edges */
.tick-v3-stage::before,
.tick-v3-stage::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.tick-v3-stage::before {
    inset-inline-start: 0;
    background: linear-gradient(to var(--fin-end, left), var(--fin-surface), transparent);
}

.tick-v3-stage::after {
    inset-inline-end: 0;
    background: linear-gradient(to var(--fin-start, right), var(--fin-surface), transparent);
}

.tick-v3-track {
    display: flex;
    width: max-content;
    animation: tv3-scroll 32s linear infinite;
}

.tick-v3-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.tick-v3-item {
    display: inline-block;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--fin-ink);
    letter-spacing: .01em;
    transition: color .2s ease;
}

.tick-v3-item:hover {
    color: var(--fin-gold-2);
}

.tick-v3-sep {
    color: var(--fin-gold);
    font-size: 11px;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

@keyframes tv3-scroll {
    to {
        transform: translateX(50%);
    }
}

/* Ticker V3 responsive */
@media (max-width: 575.98px) {
    .tick-v3-label {
        padding: 12px 14px;
        font-size: 11.5px;
    }

    .tick-v3-label::after {
        inset-inline-end: -10px;
        width: 11px;
    }

    .tick-v3-item {
        font-size: 13.5px;
        padding: 12px 12px;
    }
}

/* Dark mode */
.theme-dark .tick-v3 {
    background: #0c1a40;
    border-color: #1c2c58;
}

.theme-dark .tick-v3-stage::before {
    background: linear-gradient(to var(--fin-end, left), #0c1a40, transparent);
}

.theme-dark .tick-v3-stage::after {
    background: linear-gradient(to var(--fin-start, right), #0c1a40, transparent);
}

.theme-dark .tick-v3-item {
    color: #dfe6f2;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .tick-v3-track {
        animation: none;
    }
}

/* ================================ Stats V2 (keep for fallback) ============================== */
.fin-stats-sec {
    position: relative;
    z-index: 3;
}

/* V2: three bold columns, full width, no card box */
.fin-stats-sec.fin-stats-v2 {
    padding: 0;
    background: var(--fin-surface);
}

.fin-stats-v2-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--fin-line);
    border-bottom: 1px solid var(--fin-line);
}

.fin-sv2-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 24px);
    padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 48px);
    overflow: hidden;
    border-inline-end: 1px solid var(--fin-line);
    transition: background .25s ease;
}

.fin-sv2-item:last-child {
    border-inline-end: none;
}

.fin-sv2-item:hover {
    background: var(--fin-bg);
}

/* Middle item: navy accent */
.fin-sv2-item--accent {
    background: var(--fin-navy);
}

.fin-sv2-item--accent:hover {
    background: var(--fin-navy-2);
}

.fin-sv2-item--accent .fin-sv2-ic {
    background: rgba(255, 255, 255, .12);
    color: var(--fin-gold);
}

.fin-sv2-item--accent .fin-sv2-num {
    color: #fff;
}

.fin-sv2-item--accent .fin-sv2-plus {
    color: var(--fin-gold);
}

.fin-sv2-item--accent .fin-sv2-label {
    color: rgba(255, 255, 255, .72);
}

.fin-sv2-item--accent::before {
    -webkit-text-stroke-color: rgba(255, 255, 255, .06);
}

/* Giant ghost number as background decoration */
.fin-sv2-item::before {
    content: attr(data-num);
    position: absolute;
    top: 50%;
    inset-inline-end: -10px;
    transform: translateY(-50%);
    font-size: clamp(72px, 10vw, 110px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(221, 162, 57, .13);
    line-height: 1;
    pointer-events: none;
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    z-index: 0;
}

.fin-sv2-ic {
    flex: 0 0 clamp(44px, 5vw, 60px);
    width: clamp(44px, 5vw, 60px);
    height: clamp(44px, 5vw, 60px);
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: rgba(221, 162, 57, .12);
    color: var(--fin-gold-2);
    font-size: clamp(18px, 2.2vw, 24px);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.fin-sv2-body {
    position: relative;
    z-index: 1;
}

.fin-sv2-num {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--fin-navy);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.fin-sv2-plus {
    font-size: clamp(22px, 3vw, 34px);
    color: var(--fin-gold-2);
    font-weight: 900;
}

.fin-sv2-label {
    display: block;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    color: var(--fin-muted);
    margin-top: 4px;
    letter-spacing: .01em;
}

/* Old stats (non-v2) fallback */
.fin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--sh-sm);
}

.fin-stat {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fin-stat-num {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 34px;
    font-weight: 800;
    color: var(--fin-navy);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.fin-stat-num .target {
    color: var(--fin-gold-2);
}

.fin-stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fin-muted);
    margin-top: 2px;
}

/* Stats V2 responsive */
@media (max-width: 767.98px) {
    .fin-stats-v2-inner {
        grid-template-columns: 1fr;
    }

    .fin-sv2-item {
        border-inline-end: none;
        border-bottom: 1px solid var(--fin-line);
    }

    .fin-sv2-item--accent {
        border-bottom-color: rgba(255, 255, 255, .12);
    }

    .fin-sv2-item:last-child {
        border-bottom: none;
    }
}

/* Dark mode stats v2 */
.theme-dark .fin-stats-sec.fin-stats-v2 {
    background: #0c1a40;
}

.theme-dark .fin-stats-v2-inner {
    border-color: #1c2c58;
}

.theme-dark .fin-sv2-item {
    border-color: #1c2c58;
}

.theme-dark .fin-sv2-item:hover {
    background: #081433;
}

.theme-dark .fin-sv2-num {
    color: #f0f3f9;
}

/* ============================== Ticker V2 ============================== */
.tick-tape-v2 {
    background: var(--fin-surface);
    border-top: 1px solid var(--fin-line);
    border-bottom: 1px solid var(--fin-line);
    overflow: hidden;
}

.tv2-row {
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px dashed rgba(3, 23, 56, .08);
}

.tv2-row:last-child {
    border-bottom: none;
}

.tv2-track {
    display: flex;
    width: max-content;
    animation: tv2-scroll 28s linear infinite;
}

.tv2-track--rev {
    animation: tv2-scroll-rev 22s linear infinite;
}

.tv2-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
    padding: 0 5px;
}

.tv2-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px 7px 14px;
    background: var(--fin-bg-2);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-pill);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--fin-ink);
    white-space: nowrap;
    transition: background .2s, border-color .2s, color .2s;
}

.tv2-chip i {
    color: var(--fin-gold-2);
    font-size: 13px;
    flex-shrink: 0;
}

.tv2-chip:hover {
    background: var(--fin-navy);
    color: #fff;
    border-color: var(--fin-navy);
}

.tv2-chip:hover i {
    color: var(--fin-gold);
}

.tv2-chip--outline {
    background: transparent;
    border-color: var(--fin-line);
    color: var(--fin-muted);
}

.tv2-chip--outline i {
    color: var(--fin-gold);
}

.tv2-chip--outline:hover {
    background: var(--fin-gold);
    color: var(--fin-navy);
    border-color: var(--fin-gold);
}

.tv2-chip--outline:hover i {
    color: var(--fin-navy);
}

@keyframes tv2-scroll {
    to {
        transform: translateX(50%);
    }
}

@keyframes tv2-scroll-rev {
    to {
        transform: translateX(-50%);
    }
}

/* Dark mode ticker v2 */
.theme-dark .tick-tape-v2 {
    background: #0c1a40;
    border-color: #1c2c58;
}

.theme-dark .tv2-row {
    border-bottom-color: rgba(255, 255, 255, .06);
}

.theme-dark .tv2-chip {
    background: #0d1a3d;
    border-color: #1c2c58;
    color: #dfe6f2;
}

.theme-dark .tv2-chip--outline {
    background: transparent;
    color: #8fa0c4;
    border-color: #1c2c58;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .tv2-track, .tv2-track--rev {
        animation: none;
    }
}

/* Old ticker (non-v2) fallback styles start here */
.tick-tape {
    background: var(--fin-navy);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    margin-top: clamp(40px, 6vw, 72px);
}

.tick-track {
    display: flex;
    width: max-content;
    animation: fin-tick 30s linear infinite;
}

.tick-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}

.tick-item i {
    color: var(--fin-gold);
    font-size: 15px;
}

@keyframes fin-tick {
    to {
        transform: translateX(50%);
    }
}

/* ================================ Services =============================== */
.fin-services {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.fin-services-list {
    display: flex;
    flex-direction: column;
}

.fin-service-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 4px;
    border-bottom: 1px solid var(--fin-line);
    transition: background-color .2s ease, padding .2s ease;
}

.fin-service-row:first-child {
    border-top: 1px solid var(--fin-line);
}

/* Subtle sequence number — not a color accent */
.fin-service-no {
    font-size: 12px;
    font-weight: 700;
    color: rgba(3, 23, 56, .2);
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}

.fin-service-main h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--fin-navy);
    margin: 0 0 4px;
    transition: color .2s ease;
}

.fin-service-main h3 a {
    color: inherit;
}

.fin-service-main h3 a:hover {
    color: var(--fin-navy);
}

.fin-service-main p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--fin-muted);
    margin: 0;
    max-width: 520px;
}

.fin-service-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* WhatsApp — monochrome outline, no green */
.fin-service-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--fin-navy);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid var(--fin-line);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.fin-service-wa i {
    font-size: 16px;
    line-height: 1;
}

.fin-service-wa:hover {
    background: var(--fin-navy);
    border-color: var(--fin-navy);
    color: #fff;
}

/* Arrow circle */
.fin-service-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--fin-line);
    display: grid;
    place-items: center;
    color: var(--fin-navy);
    font-size: 17px;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    justify-self: end;
}

.fin-service-row:hover .fin-service-arrow,
.fin-service-row.is-active .fin-service-arrow {
    background: var(--fin-navy);
    border-color: var(--fin-navy);
    color: #fff;
    transform: translateX(-4px);
}

.fin-service-row:hover .fin-service-main h3,
.fin-service-row.is-active .fin-service-main h3 {
    color: var(--fin-navy);
}

/* ---- Service price tag — clean navy badge ---- */
.fin-service-price {
    margin-top: 12px;
}

.fin-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid rgba(3, 23, 56, .15);
    padding: 5px 12px 5px 10px;
    background: rgba(3, 23, 56, .04);
    transition: border-color .2s ease, background .2s ease;
}

.fin-service-row:hover .fin-price-tag,
.fin-service-row.is-active .fin-price-tag {
    border-color: rgba(3, 23, 56, .25);
    background: rgba(3, 23, 56, .07);
}

.fin-price-num {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--fin-navy);
    font-size: 15px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    line-height: 1;
    padding: 0;
}

.fin-price-sar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.fin-sar-img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: .65;
    filter: none;
}

/* Dark mode */
.theme-dark .fin-price-tag {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
}

.theme-dark .fin-price-num {
    color: #e8edf5;
}

.theme-dark .fin-sar-img {
    filter: brightness(0) invert(1);
    opacity: .6;
}

.theme-dark .fin-service-wa {
    color: #e8edf5;
    border-color: #1c2c58;
}

.theme-dark .fin-service-wa:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.fin-services-preview {
    position: sticky;
    top: 110px;
}

.fin-preview-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    aspect-ratio: 4 / 4.4;
}

.fin-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .3s ease;
}

.fin-preview-meta {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 20px 22px;
    background: rgba(3, 23, 56, .9);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.fin-preview-title {
    font-size: 16.5px;
    font-weight: 700;
}

.fin-preview-cue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
}

.fin-preview-cue i {
    color: var(--fin-gold);
    font-size: 14px;
}

/* ================================ About ================================= */
.fin-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}

.fin-about-media {
    position: relative;
    padding-top: 34px;
}

.fin-about-media::before {
    content: "";
    position: absolute;
    top: 6px;
    inset-inline-start: -18px;
    width: calc(100% - 40px);
    height: calc(100% - 28px);
    border: 2px solid var(--fin-gold);
    border-radius: var(--r-lg);
}

.fin-about-img {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    aspect-ratio: 4 / 3;
}

.fin-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fin-about-badge {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -14px;
    background: var(--fin-navy);
    color: #fff;
    border-radius: var(--r-md);
    padding: 16px 22px;
    box-shadow: var(--sh-md);
    text-align: center;
    z-index: 2;
}

.fin-about-badge b {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--fin-gold);
    line-height: 1.2;
}

.fin-about-badge span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8);
}

.fin-about-copy .fin-lead {
    margin-bottom: 22px;
}

.fin-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
}

.fin-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--fin-ink);
}

.fin-check-list li i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(221, 162, 57, .15);
    color: var(--fin-gold-2);
    font-size: 13px;
}

/* ================================ Features =============================== */
.fin-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.fin-feature {
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fin-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: rgba(221, 162, 57, .5);
}

.fin-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fin-feature-ic {
    width: 50px;
    height: 50px;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: rgba(221, 162, 57, .13);
    color: var(--fin-gold-2);
    font-size: 21px;
}

.fin-feature-no {
    font-size: 13px;
    font-weight: 800;
    color: var(--fin-gold-2);
    font-variant-numeric: tabular-nums;
}

.fin-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}

.fin-feature h4 a {
    color: inherit;
}

.fin-feature h4 a:hover {
    color: var(--fin-gold-2);
}

.fin-feature p {
    font-size: 14.5px;
    color: var(--fin-muted);
    margin: 0;
}

/* =============================== Visions ================================= */
.fin-vision {
    background: var(--fin-navy);
    color: #f4f6fb;
}

.fin-vision .fin-heading {
    color: #ffffff;
}

.fin-vision .fin-kicker {
    color: var(--fin-gold);
}

.fin-vision .fin-idx {
    border-color: rgba(255, 255, 255, .2);
}

.fin-vision .fin-sec-para {
    color: rgba(240, 244, 252, .72);
}

.fin-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fin-principle {
    position: relative;
    padding: 34px 28px 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .035) 100%);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.fin-principle::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fin-gold) 0%, rgba(221, 162, 57, .12) 100%);
}

.fin-principle::after {
    content: "";
    position: absolute;
    top: -46px;
    inset-inline-end: -46px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 162, 57, .16) 0%, transparent 68%);
}

.fin-principle:hover {
    transform: translateY(-6px);
    border-color: rgba(221, 162, 57, .5);
    box-shadow: 0 18px 44px -20px rgba(0, 0, 0, .6), 0 0 0 1px rgba(221, 162, 57, .22), 0 0 46px -14px rgba(221, 162, 57, .4);
}

.fin-principle-no {
    position: absolute;
    top: 22px;
    inset-inline-end: 22px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--fin-gold);
    opacity: .4;
    font-variant-numeric: tabular-nums;
    z-index: 1;
}

.fin-principle-ic {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(221, 162, 57, .4), rgba(221, 162, 57, .06));
    color: #f2c66d;
    font-size: 27px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 1px rgba(221, 162, 57, .35), 0 10px 22px -12px rgba(221, 162, 57, .55);
}

.fin-principle h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #ffffff;
}

.fin-principle p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(240, 244, 252, .7);
    margin: 0;
}

/* ================================ Projects =============================== */
.fin-cases {
    display: grid;
    gap: clamp(56px, 8vw, 96px);
}

.fin-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.fin-case.flip .fin-case-media {
    order: 2;
}

.fin-case-media {
    position: relative;
}

.fin-case-media::before {
    content: attr(data-no);
    position: absolute;
    top: -46px;
    inset-inline-start: -10px;
    font-size: clamp(80px, 10vw, 120px);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--fin-gold);
    z-index: 0;
    font-variant-numeric: tabular-nums;
}

.fin-case-media {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    aspect-ratio: 16 / 10;
}

.fin-case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.fin-case-body .fin-kicker {
    margin-top: 0;
}

.fin-case-body h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    margin: 0 0 12px;
}

.fin-case-body h3 a {
    color: var(--fin-navy);
}

.fin-case-body h3 a:hover {
    color: var(--fin-gold-2);
}

.fin-case-body p {
    font-size: 16.5px;
    color: var(--fin-muted);
    margin: 0 0 22px;
    max-width: 540px;
}

/* ================================ Sponsors =============================== */
.fin-marquee {
    overflow: hidden;
    border-top: 1px solid var(--fin-line);
    padding-top: 34px;
}

.fin-marquee-track {
    display: flex;
    width: max-content;
    animation: fin-marquee 26s linear infinite;
}

.fin-marquee-group {
    display: flex;
    align-items: center;
    gap: 64px;
    padding-inline: 32px;
}

.fin-marquee-group img {
    height: clamp(54px, 6vw, 84px);
    width: auto;
    opacity: 1;
    filter: none;
    object-fit: contain;
}

@keyframes fin-marquee {
    to {
        transform: translateX(50%);
    }
}

/* ================================ Reviews ================================ */
.fin-quotes {
    display: block;
}

.fin-quotes.owl-carousel .owl-item {
    padding-bottom: 12px;
}

.fin-quotes.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.fin-quote {
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    margin: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fin-quote:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
}

.fin-quotes .owl-dots {
    margin-top: 22px;
    text-align: center;
}

.fin-quotes .owl-dot span {
    background: rgba(3, 23, 56, .18);
    transition: background-color .2s ease;
}

.fin-quotes .owl-dot.active span,
.fin-quotes .owl-dot:hover span {
    background: var(--fin-navy);
}

.fin-quote-stars {
    display: flex;
    gap: 3px;
    font-size: 15px;
    color: var(--fin-gold);
}

.fin-quote blockquote {
    font-size: 16.5px;
    line-height: 1.95;
    color: var(--fin-ink);
    margin: 0;
    flex: 1;
}

.fin-quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fin-quote-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(221, 162, 57, .15);
    color: var(--fin-gold-2);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
}

.fin-quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fin-quote-id b {
    display: block;
    font-size: 15.5px;
    color: var(--fin-ink);
}

.fin-quote-id small {
    display: block;
    font-size: 12.5px;
    color: var(--fin-muted);
}

/* ============================== CTA + Contact ============================ */
.fin-cta-panel {
    position: relative;
    background: var(--fin-navy);
    border-radius: var(--r-lg);
    padding: clamp(40px, 6vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: clamp(48px, 7vw, 88px);
    box-shadow: var(--sh-md);
}

.fin-cta-panel::before {
    content: "";
    position: absolute;
    top: -44px;
    inset-inline-end: 6%;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(221, 162, 57, .4);
    border-radius: 24px;
    transform: rotate(14deg);
}

.fin-cta-copy {
    position: relative;
    z-index: 1;
}

.fin-cta-copy h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin-bottom: 10px;
}

.fin-cta-copy p {
    color: rgba(255, 255, 255, .72);
    margin: 0;
    font-size: 16.5px;
}

.fin-phone-pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--fin-gold);
    color: var(--fin-navy);
    font-weight: 800;
    font-size: clamp(18px, 2vw, 22px);
    border-radius: var(--r-pill);
    padding: 15px 28px;
    box-shadow: var(--sh-sm);
    transition: transform .2s ease, background-color .2s ease;
}

.fin-phone-pill i {
    font-size: 20px;
}

.fin-phone-pill:hover {
    background: var(--fin-gold-2);
    transform: translateY(-2px);
    color: var(--fin-navy);
}

.fin-contact-form {
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--sh-sm);
}

.fin-form input,
.fin-form textarea {
    width: 100%;
    background: var(--fin-bg);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-sm);
    padding: 15px 18px;
    font-size: 15.5px;
    font-family: inherit;
    color: var(--fin-ink);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.fin-form input::placeholder,
.fin-form textarea::placeholder {
    color: var(--fin-muted);
}

.fin-form input:focus,
.fin-form textarea:focus {
    outline: none;
    background: var(--fin-surface);
    border-color: var(--fin-navy);
    box-shadow: 0 0 0 4px rgba(221, 162, 57, .18);
}

.fin-form .form-group {
    margin-bottom: 20px;
}

.fin-form textarea {
    min-height: 150px;
    resize: vertical;
}

.fin-contact-sheet {
    background: var(--fin-navy);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 40px);
    display: grid;
    gap: 22px;
}

.fin-sheet-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fin-sheet-ic {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: rgba(221, 162, 57, .15);
    color: var(--fin-gold);
    font-size: 19px;
}

.fin-sheet-row h6 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}

.fin-sheet-row p,
.fin-sheet-row a {
    color: rgba(255, 255, 255, .78);
    font-size: 15.5px;
    margin: 0;
    line-height: 1.7;
}

.fin-sheet-row a:hover {
    color: var(--fin-gold);
}

/* ================================ Footer ================================= */
.footer-wrap.style2.fin-foot {
    background: var(--fin-navy);
    color: #aab4c1;
}

.fin-foot-cta {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fin-foot-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 44px 0;
    flex-wrap: wrap;
}

.fin-foot-cta-copy .fin-kicker {
    margin-bottom: 6px;
}

.fin-foot-cta-copy h3 {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 30px);
    margin: 0;
    line-height: 1.3;
}

.fin-foot-cta-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.fin-foot-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.fin-foot-phone i {
    color: var(--fin-gold);
    font-size: 19px;
}

.fin-foot-phone:hover {
    color: var(--fin-gold);
}

.fin-foot-main {
    padding: 72px 0 30px;
}

.fin-foot-col {
    max-width: 100%;
}

.fin-foot-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.fin-foot-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.fin-foot-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #aab4c1;
    margin-bottom: 22px;
}

.fin-foot-contact {
    margin: 0;
}

.fin-foot-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    margin: 0;
}

.fin-foot-ic {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: var(--fin-gold);
    font-size: 15px;
}

.fin-foot-contact div {
    line-height: 1.3;
}

.fin-foot-contact small {
    display: block;
    color: #8b96a5;
    font-size: 12px;
    margin-bottom: 2px;
}

.fin-foot-contact p,
.fin-foot-contact a {
    color: #e3e8f1;
    font-size: 14.5px;
    margin: 0;
}

.fin-foot-contact a:hover {
    color: var(--fin-gold);
}

.fin-foot-title {
    color: #fff;
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 20px;
}

.fin-foot-menu {
    margin: 0;
}

.fin-foot-menu li {
    padding: 0;
    margin: 0 0 12px;
    border: 0;
}

.fin-foot-menu a {
    color: #aab4c1;
    font-size: 15px;
    padding-inline-start: 0;
    transition: padding-inline-start .2s ease, color .2s ease;
}

.fin-foot-menu a::before {
    content: "\ea5c";
    font-family: "remixicon" !important;
    font-size: 13px;
    color: var(--fin-gold);
    margin-inline-end: 8px;
    vertical-align: -1px;
}

.fin-foot-menu a:hover {
    color: #fff;
    padding-inline-start: 4px;
}

.fin-foot-hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .03);
}

.fin-foot-hours-ic {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: var(--fin-gold);
    font-size: 16px;
}

.fin-foot-hours small {
    display: block;
    color: #8b96a5;
    font-size: 12px;
    margin-bottom: 2px;
}

.fin-foot-hours p {
    margin: 0;
    color: #e3e8f1;
    font-size: 14.5px;
}

.fin-foot-social {
    display: flex;
    gap: 10px;
    margin: 0;
}

.fin-foot-social li {
    padding: 0;
    margin: 0;
    border: 0;
}

.fin-foot-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #dbe1e9;
    font-size: 16px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.fin-foot-social a:hover {
    background: var(--fin-gold);
    color: var(--fin-navy);
    transform: translateY(-3px);
}

.fin-foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
}

.fin-foot-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.fin-copy {
    margin: 0;
    color: #8b96a5;
    font-size: 14px;
}

.fin-copy i {
    vertical-align: -2px;
}

.fin-copy span {
    color: var(--fin-gold);
    font-weight: 700;
}

.fin-legal {
    display: flex;
    gap: 22px;
    margin: 0;
}

.fin-legal li {
    padding: 0;
    margin: 0;
    border: 0;
}

.fin-legal a {
    color: #8b96a5;
    font-size: 14px;
}

.fin-legal a:hover {
    color: var(--fin-gold);
}

/* ================================ Dark =================================== */
.theme-dark .fin-home {
    background: #071230;
}

.theme-dark .fin-home p {
    color: #9aa7bd;
}

.theme-dark .fin-home h1,
.theme-dark .fin-home h2,
.theme-dark .fin-home h3,
.theme-dark .fin-home h4,
.theme-dark .fin-home h5,
.theme-dark .fin-home h6 {
    color: #f0f3f9;
}

.theme-dark .header-wrap.style1.fin-header,
.theme-dark .fin-header.sticky {
    background: #071230;
    border-color: #16265c;
}

.theme-dark .fin-header .navbar-nav .nav-link {
    color: #e7ebf1;
}

.theme-dark .fin-hdr-phone {
    background: #0a1638;
    border-color: #1c2c58;
}

.theme-dark .fin-hdr-phone-txt a {
    color: #f0f3f9;
}

.theme-dark .fin-hdr-phone-txt small {
    color: #8fa0c4;
}

.theme-dark .fin-header .mobile-menu a {
    background: #eef2f7;
    color: #071230;
}

.theme-dark .fin-header .menu-close a {
    background: rgba(255, 255, 255, .08);
    color: #f0f3f9;
}

.theme-dark .fin-header .main-menu-wrap {
    background: #081433;
}

.theme-dark .fin-header .main-menu-wrap .navbar-nav .nav-item {
    border-color: #1a2a52;
}

.theme-dark .fin-sec-paper {
    background: #081433;
}

.theme-dark .fin-stats,
.theme-dark .fin-feature,
.theme-dark .fin-quote,
.theme-dark .fin-contact-form {
    background: #0c1a40;
    border-color: #1c2c58;
}

.theme-dark .fin-stat-num,
.theme-dark .fin-service-main h3,
.theme-dark .fin-case-body h3 a {
    color: #f0f3f9;
}

.theme-dark .fin-service-row {
    border-color: #1a2a52;
}

.theme-dark .fin-service-row:hover .fin-service-arrow,
.theme-dark .fin-service-row.is-active .fin-service-arrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.theme-dark .fin-service-no {
    color: rgba(255, 255, 255, .18);
}

.theme-dark .fin-cta-panel {
    border: 1px solid #1c2c58;
}

.theme-dark .fin-form input,
.theme-dark .fin-form textarea {
    background: #0d1a3d;
    border-color: #1c2c58;
    color: #e7ebf1;
}

.theme-dark .fin-form input:focus,
.theme-dark .fin-form textarea:focus {
    background: #0f1e46;
    border-color: var(--fin-gold);
}

.theme-dark .fin-form input::placeholder,
.theme-dark .fin-form textarea::placeholder {
    color: #6b7a99;
}

.theme-dark .fin-check-list li i {
    background: rgba(221, 162, 57, .18);
}

.theme-dark .fin-quote blockquote {
    color: #dfe6f2;
}

.theme-dark .fin-quotes .owl-dot span {
    background: rgba(240, 243, 249, .16);
}

.theme-dark .fin-quotes .owl-dot.active span,
.theme-dark .fin-quotes .owl-dot:hover span {
    background: var(--fin-gold);
}

.theme-dark .fin-quote-id b {
    color: #f0f3f9;
}

.theme-dark .fin-about-img img,
.theme-dark .fin-marquee-group img {
    opacity: 1;
}

.theme-dark .fin-home .hero-slider-one .owl-nav button {
    background: #0c1a40 !important;
    border-color: #1c2c58 !important;
    color: #f0f3f9 !important;
}

.theme-dark .fin-home .hero-slider-one .owl-nav button:hover {
    background: var(--fin-gold) !important;
    color: var(--fin-navy) !important;
}

.theme-dark .btn.style1 {
    background-color: var(--fin-gold) !important;
    border-color: var(--fin-gold) !important;
    color: var(--fin-navy) !important;
}

.theme-dark .btn.style1:hover {
    background-color: var(--fin-gold-2) !important;
    border-color: var(--fin-gold-2) !important;
    color: var(--fin-navy) !important;
}

/* ================================ Responsive ============================= */
@media (max-width: 1199.98px) {
    .fin-services {
        grid-template-columns: 1fr;
    }

    .fin-services-preview {
        display: none;
    }

    .fin-hdr-phone {
        display: none !important;
    }

    .fin-principles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .fin-hero-inner {
        grid-template-columns: 1fr;
    }

    .fin-hero-media {
        max-width: 480px;
    }

    .fin-hero-media {
        margin-inline-start: auto;
    }

    .fin-about-grid {
        grid-template-columns: 1fr;
    }

    .fin-about-media {
        max-width: 520px;
    }

    .fin-case {
        grid-template-columns: 1fr;
    }

    .fin-case.flip .fin-case-media {
        order: 0;
    }

    .fin-case-media::before {
        top: -34px;
    }
}

@media (max-width: 575.98px) {
    .fin-hero-badge {
        width: 88px;
        height: 88px;
        font-size: 11.5px;
        top: -18px;
        inset-inline-start: -8px;
    }

    .fin-hero-chip {
        inset-inline-end: 8px;
        bottom: 16px;
        padding: 12px 14px;
    }

    .fin-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .fin-principles {
        grid-template-columns: 1fr;
    }

    .fin-service-actions {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

/* ============================== Reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
    .tick-track,
    .fin-marquee-track {
        animation: none;
    }

    .fin-home *,
    .fin-home *::before,
    .fin-home *::after {
        transition: none !important;
    }
}

/* ========================= Project page (gallery/show) ==================== */
.fin-page-head {
    background: var(--fin-bg);
    border-bottom: 1px solid var(--fin-line);
    padding: clamp(28px, 4vw, 46px) 0;
}

.fin-page-head-inner {
    text-align: center;
}

.fin-page-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--fin-navy);
    margin: 10px 0 12px;
}

.fin-breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--fin-muted);
}

.fin-breadcrumb a {
    color: var(--fin-muted);
    transition: color .2s ease;
}

.fin-breadcrumb a:hover {
    color: var(--fin-gold-2);
}

.fin-breadcrumb li[aria-current] {
    color: var(--fin-gold-2);
    font-weight: 800;
}

.fin-bc-sep {
    color: #c6cdd8;
}

.fin-project-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.fin-project-main {
    min-width: 0;
}

.fin-project-hero {
    display: block;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: var(--sh-md);
}

.fin-project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fin-project-desc {
    padding: clamp(24px, 3vw, 32px) 0 clamp(22px, 3vw, 28px);
}

.fin-project-desc .fin-heading {
    font-size: clamp(22px, 2.6vw, 30px);
    margin: 0 0 14px;
}

.fin-project-desc p {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--fin-muted);
    max-width: 720px;
    margin: 0;
}

.fin-project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.fin-project-thumb {
    position: relative;
    display: block;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--sh-sm);
}

.fin-project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.fin-project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 56, 0);
    transition: background-color .3s ease;
}

.fin-project-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    color: #fff;
    font-size: 26px;
    opacity: 0;
    z-index: 2;
    transition: opacity .3s ease, transform .3s ease;
}

.fin-project-thumb:hover img {
    transform: scale(1.07);
}

.fin-project-thumb:hover::after {
    background: rgba(3, 23, 56, .38);
}

.fin-project-thumb:hover i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fin-project-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 112px;
}

.fin-side-card {
    background: var(--fin-surface);
    border: 1px solid var(--fin-line);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    box-shadow: var(--sh-sm);
}

.fin-side-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--fin-navy);
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--fin-line);
}

.fin-side-card h3::before {
    content: "";
    width: 4px;
    height: 18px;
    border-radius: 99px;
    background: var(--fin-gold);
}

.fin-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 290px;
    overflow-y: auto;
}

.fin-side-list li + li {
    border-top: 1px solid var(--fin-line);
}

.fin-side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 2px;
    color: var(--fin-ink);
    font-size: 14.5px;
    font-weight: 600;
    transition: color .2s ease;
}

.fin-side-list a i {
    color: var(--fin-muted);
    font-size: 17px;
    transition: transform .2s ease, color .2s ease;
}

.fin-side-list a:hover {
    color: var(--fin-gold-2);
}

.fin-side-list a:hover i {
    color: var(--fin-gold-2);
    transform: translateX(-4px);
}

.fin-wa-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1FB35F 0%, #178E4F 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 20px 22px;
    box-shadow: 0 10px 24px rgba(23, 142, 79, .26);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.fin-wa-card i {
    font-size: 30px;
    line-height: 1;
}

.fin-wa-card b {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.fin-wa-card small {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .88);
}

.fin-wa-card:hover {
    background: linear-gradient(135deg, #178E4F 0%, #0E6E3C 100%);
    color: #fff;
    transform: translateY(-3px);
}

.theme-dark .fin-page-head {
    background: #0c1a40;
    border-color: #1c2c58;
}

.theme-dark .fin-page-title {
    color: #f0f3f9;
}

.theme-dark .fin-breadcrumb,
.theme-dark .fin-breadcrumb a {
    color: #9fb0d0;
}

.theme-dark .fin-breadcrumb li[aria-current] {
    color: var(--fin-gold);
}

.theme-dark .fin-bc-sep {
    color: #3a4a78;
}

.theme-dark .fin-project-desc p {
    color: #9fb0d0;
}

.theme-dark .fin-side-card {
    background: #0c1a40;
    border-color: #1c2c58;
}

.theme-dark .fin-side-card h3 {
    color: #f0f3f9;
    border-color: #1c2c58;
}

.theme-dark .fin-side-list li + li {
    border-color: #1c2c58;
}

.theme-dark .fin-side-list a {
    color: #dfe6f2;
}

@media (max-width: 991.98px) {
    .fin-project-layout {
        grid-template-columns: 1fr;
    }

    .fin-project-side {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .fin-project-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* =============================== Preloader =============================== */
.fin-loader {
    background: #f6f7f9;
    flex-direction: column;
    gap: 22px;
}

.fin-loader.fin-loader .fin-loader2 {
    position: relative;
    width: 200px;
    height: 200px;
    display: grid;
    place-items: center;
    margin: 0;
    background: transparent;
    transform-origin: center;
    animation: none;
}

.fin-loader .fin-loader2 img {
    width: 104px;
    height: auto;
    object-fit: contain;
    animation: finLogoPulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 6px 18px rgba(3, 23, 56, .12));
}

.fin-orbit {
    position: absolute;
    border-radius: 50%;
}

.fin-orbit--a {
    width: 182px;
    height: 182px;
    border: 1px dashed rgba(3, 23, 56, .28);
    animation: finSpin 2.6s linear infinite;
}

.fin-orbit--b {
    width: 134px;
    height: 134px;
    border: 1.5px solid rgba(221, 162, 57, .42);
    animation: finSpinRev 1.8s linear infinite;
}

.fin-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--fin-gold);
    box-shadow: 0 0 0 4px rgba(221, 162, 57, .18), 0 6px 14px rgba(3, 23, 56, .28);
}

.fin-orbit--b .fin-dot {
    background: var(--fin-navy);
    box-shadow: 0 0 0 4px rgba(3, 23, 56, .12), 0 6px 14px rgba(3, 23, 56, .24);
}

.fin-orbit--a .fin-dot {
    top: -7px;
    left: calc(50% - 7px);
}

.fin-orbit--b .fin-dot {
    bottom: -7px;
    left: calc(50% - 7px);
}

.fin-loader-brand {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--fin-navy);
    animation: finBrandFade 2s ease-in-out infinite;
}

@keyframes finSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes finSpinRev {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes finLogoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .92;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes finBrandFade {
    0%, 100% {
        opacity: .5;
    }
    50% {
        opacity: 1;
    }
}

/* =========================== WhatsApp float ============================== */
.fin-wa-float {
    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1FB35F 0%, #178E4F 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(23, 142, 79, .30);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.fin-wa-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(31, 179, 95, .45);
    animation: finWaPulse 2.4s ease-out infinite;
    z-index: -1;
}

.fin-wa-float i {
    font-size: 22px;
    line-height: 1;
}

.fin-wa-float:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #178E4F 0%, #0E6E3C 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(23, 142, 79, .38);
}

@keyframes finWaPulse {
    0% {
        transform: scale(1);
        opacity: .5;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .fin-wa-float {
        right: 16px;
        bottom: 20px;
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
        border-radius: 50%;
    }

    .fin-wa-float span {
        display: none;
    }
}

/* ========================= Typography (font priority) =====================
   The base theme forces `*{ font-family: montserrat !important }` on every
   element. Fight it with an equally-important rule at higher specificity.
   (remixicon/flaticon keep their own !important families — they win.)       */
html body {
    font-family: var(--fin-font) !important;
}

html body * {
    font-family: var(--fin-font) !important;
}

/* =========================== Hero V2 – Split Layout ========================
   Image fills left half (end in RTL), text fills right half (start in RTL).
   Slide transition: text enters from below, image enters from above.         */

/* --- Section height: near-full viewport on desktop --- */
.hero-wrap.style1.fin-hero.fin-hero-v2 {
    padding: 0 !important;
    overflow: hidden !important;
    height: calc(100vh - 80px);
    min-height: 580px;
    max-height: 920px;
    position: relative;
}

/* Cascade fixed height into owl internals */
.fin-hero-v2 .hero-slider-one {
    height: 100% !important;
    position: relative;
}

.fin-hero-v2 .owl-stage-outer,
.fin-hero-v2 .owl-stage {
    height: 100% !important;
}

.fin-hero-v2 .owl-item {
    height: 100% !important;
}

/* Each slide: full-height flex split */
.fin-hero-v2 .hero-slide-item.fin-hv2-slide {
    display: flex !important;
    height: 100% !important;
    padding: 0 !important;
}

/* ---- Copy side (right in RTL – first child) ---- */
.fin-hv2-copy {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    align-items: center;
    background: var(--fin-bg);
    padding: clamp(36px, 5vw, 72px) clamp(28px, 4.5vw, 64px);
    position: relative;
    z-index: 2;
}

.fin-hv2-copy-inner {
    max-width: 520px;
    width: 100%;
}

/* ---- Media side (left in RTL – second child) ---- */
.fin-hv2-media {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    background: var(--fin-navy);
}

.fin-hv2-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform, opacity;
}

.fin-hv2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(3, 23, 56, .45) 0%,
        rgba(3, 23, 56, .12) 50%,
        rgba(3, 23, 56, .05) 100%
    );
}

/* Diagonal accent line between sides */
.fin-hv2-copy::after {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    inset-inline-end: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--fin-line) 20%,
        var(--fin-gold) 50%,
        var(--fin-line) 80%,
        transparent 100%
    );
    z-index: 3;
}

/* Badge inside image */
.fin-hv2-badge {
    position: absolute;
    top: 24px;
    inset-inline-end: 24px;
    inset-inline-start: auto;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--fin-gold);
    color: var(--fin-navy);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    padding: 10px;
    box-shadow: var(--sh-md);
}

.fin-hv2-badge i {
    font-size: 17px;
    display: block;
    margin-bottom: 3px;
}

/* ---- Owl nav: centered at bottom of image half ---- */
.fin-hero-v2 .owl-nav {
    position: absolute;
    bottom: 28px;
    inset-inline-end: 0; /* physical left = image side in RTL */
    width: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
}

.fin-hero-v2 .owl-nav button {
    pointer-events: all;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .18) !important;
    border: 1.5px solid rgba(255, 255, 255, .5) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 20px !important;
    display: grid !important;
    place-items: center;
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
    line-height: 1;
}

.fin-hero-v2 .owl-nav button:hover {
    background: var(--fin-gold) !important;
    border-color: var(--fin-gold) !important;
    color: var(--fin-navy) !important;
    transform: scale(1.1);
}

/* Dots: centered at bottom of copy half */
.fin-hero-v2 .owl-dots {
    position: absolute;
    bottom: 34px;
    inset-inline-start: 0; /* physical right = copy side in RTL */
    width: 50%;
    text-align: center;
    z-index: 10;
}

.fin-hero-v2 .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(3, 23, 56, .2) !important;
    border-radius: 50% !important;
    transition: background .2s ease, width .2s ease !important;
    margin: 0 4px !important;
}

.fin-hero-v2 .owl-dot.active span {
    background: var(--fin-navy) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ================================ Animations ============================== */
@keyframes finHvImgIn {
    from {
        opacity: 0;
        transform: scale(1.08) translateY(-34px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes finHvCopyIn {
    from {
        opacity: 0;
        transform: translateY(38px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image: enter from above (scale + translate down) */
.fin-hero-v2 .owl-item.active .fin-hv2-media > img {
    animation: finHvImgIn 1.1s cubic-bezier(.22, .61, .36, 1) both;
}

/* Text children: staggered enter from below */
.fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > .fin-kicker {
    animation: finHvCopyIn .65s cubic-bezier(.22, .61, .36, 1) .08s both;
}

.fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > .fin-hero-title {
    animation: finHvCopyIn .68s cubic-bezier(.22, .61, .36, 1) .20s both;
}

.fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > .fin-hero-lead {
    animation: finHvCopyIn .68s cubic-bezier(.22, .61, .36, 1) .30s both;
}

.fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > .fin-hero-actions {
    animation: finHvCopyIn .68s cubic-bezier(.22, .61, .36, 1) .40s both;
}

.fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > .fin-trust-row {
    animation: finHvCopyIn .68s cubic-bezier(.22, .61, .36, 1) .50s both;
}

/* ================================ Responsive ============================== */
@media (max-width: 991.98px) {
    /* Reset fixed height – let content dictate */
    .hero-wrap.style1.fin-hero.fin-hero-v2 {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .fin-hero-v2 .hero-slider-one,
    .fin-hero-v2 .owl-stage-outer,
    .fin-hero-v2 .owl-stage,
    .fin-hero-v2 .owl-item {
        height: auto !important;
    }

    /* Stack: image on top, text below */
    .fin-hero-v2 .hero-slide-item.fin-hv2-slide {
        flex-direction: column-reverse;
        height: auto !important;
    }

    .fin-hv2-copy,
    .fin-hv2-media {
        flex: none;
        width: 100%;
    }

    .fin-hv2-media {
        height: 52vw;
        min-height: 220px;
        max-height: 380px;
    }

    .fin-hv2-copy {
        padding: 36px 20px 28px;
    }

    .fin-hv2-copy-inner {
        max-width: 100%;
    }

    .fin-hv2-copy::after {
        display: none; /* hide the vertical divider on mobile */
    }

    /* Nav: below the slider, full width, light style */
    .fin-hero-v2 .owl-nav {
        position: static;
        width: 100%;
        padding: 12px 0 4px;
        background: var(--fin-bg);
    }

    .fin-hero-v2 .owl-nav button {
        background: rgba(3, 23, 56, .08) !important;
        border-color: var(--fin-line) !important;
        color: var(--fin-navy) !important;
    }

    .fin-hero-v2 .owl-nav button:hover {
        background: var(--fin-navy) !important;
        color: #fff !important;
        border-color: var(--fin-navy) !important;
    }

    /* Dots: below nav, full width */
    .fin-hero-v2 .owl-dots {
        position: static;
        width: 100%;
        padding: 0 0 16px;
        background: var(--fin-bg);
    }
}

@media (max-width: 767.98px) {
    .fin-hv2-media {
        height: 58vw;
    }

    .fin-hv2-copy {
        padding: 30px 16px 24px;
    }

    .fin-hv2-badge {
        width: 76px;
        height: 76px;
        font-size: 11px;
        top: 14px;
        inset-inline-end: 14px;
    }
}

@media (max-width: 575.98px) {
    .fin-hv2-media {
        height: 64vw;
        max-height: 300px;
    }

    .fin-hv2-copy {
        padding: 26px 14px 20px;
    }
}

/* ---- Dark mode ---- */
.theme-dark .fin-hv2-copy {
    background: #071230;
}

.theme-dark .fin-hv2-copy::after {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #1a2a52 20%,
        var(--fin-gold) 50%,
        #1a2a52 80%,
        transparent 100%
    );
}

.theme-dark .fin-hero-v2 .owl-dots .owl-dot span {
    background: rgba(240, 243, 249, .16) !important;
}

.theme-dark .fin-hero-v2 .owl-dots .owl-dot.active span {
    background: var(--fin-gold) !important;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .fin-hero-v2 .owl-item.active .fin-hv2-media > img,
    .fin-hero-v2 .owl-item.active .fin-hv2-copy-inner > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════
   HERO — Full-width image + overlay
═══════════════════════════════════ */

/* الشريحة: حاوي نسبي بلوك (مش flex) */
.fin-hv2-slide {
    position: relative !important;
    display: block !important;
    height: 100% !important;
}

/* الصورة: تغطي الشريحة بالكامل */
.fin-hv2-media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    flex: none !important;
}

.fin-hv2-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.fin-hv2-overlay {
    background: linear-gradient(
        to left,
        rgba(4, 14, 38, .95) 0%,
        rgba(4, 14, 38, .80) 38%,
        rgba(4, 14, 38, .45) 68%,
        rgba(4, 14, 38, .18) 100%
    ) !important;
}

/* منطقة النص: تغطي الشريحة بالكامل أيضاً (absolute) */
.fin-hv2-copy {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 0 !important;
    flex: none !important;
}

.fin-hv2-copy::after {
    display: none !important;
}

/* النص: يبدأ من اليمين (RTL) ويمتد 58% من عرض الشاشة */
.fin-hv2-copy {
    justify-content: flex-start !important; /* RTL flex-start = right */
}

.fin-hv2-copy .fin-hv2-copy-inner {
    width: 58% !important;
    max-width: 860px !important;
    min-width: 320px !important;
    padding: 0 clamp(32px, 5vw, 80px) !important;
    margin: 0 !important;
}

/* نصوص على خلفية داكنة */
.fin-hero-v2 .fin-hero-title {
    color: #fff !important;
}

.fin-hero-v2 .fin-hero-lead {
    color: rgba(255, 255, 255, .82) !important;
}

.fin-hero-v2 .fin-kicker {
    color: var(--fin-gold) !important;
}

.fin-hero-v2 .fin-trust-item {
    color: rgba(255, 255, 255, .72) !important;
}

.fin-hero-v2 .fin-link-more {
    color: rgba(255, 255, 255, .85) !important;
}

.fin-hero-v2 .fin-link-more:hover {
    color: #fff !important;
}

/* dots & nav — مرتبطان بالـ owl ولازم يكونوا في الأسفل */
.fin-hero-v2 .owl-dots {
    position: absolute !important;
    bottom: 28px !important;
    inset-inline-start: 0 !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 10 !important;
}

.fin-hero-v2 .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, .30) !important;
}

.fin-hero-v2 .owl-dots .owl-dot.active span {
    background: var(--fin-gold) !important;
}

.fin-hero-v2 .owl-nav {
    position: absolute !important;
    bottom: 20px !important;
    inset-inline-end: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
}

/* Responsive: موبايل */
@media (max-width: 991.98px) {
    .fin-hv2-slide {
        display: flex !important;
        flex-direction: column-reverse !important;
        height: auto !important;
    }

    .fin-hv2-media {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: 56vw !important;
        min-height: 220px;
    }

    .fin-hv2-media img {
        height: 100% !important;
    }

    .fin-hv2-copy {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        background: var(--fin-bg) !important;
        padding: 32px 20px !important;
        display: block !important;
    }

    .fin-hv2-copy .fin-hv2-copy-inner {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .fin-hv2-copy .fin-hv2-copy-inner > * {
        max-width: 100% !important;
    }

    .fin-hero-v2 .fin-hero-title {
        color: var(--fin-navy) !important;
    }

    .fin-hero-v2 .fin-hero-lead {
        color: var(--fin-muted) !important;
    }

    .fin-hero-v2 .fin-kicker {
        color: var(--fin-gold) !important;
    }

    .fin-hero-v2 .fin-trust-item {
        color: var(--fin-muted) !important;
    }

    .fin-hero-v2 .fin-link-more {
        color: var(--fin-navy) !important;
    }

    .fin-hero-v2 .owl-dots,
    .fin-hero-v2 .owl-nav {
        position: static !important;
        width: 100% !important;
    }
}

/* ═══════════════════════════════════
   COUNTER BAR
═══════════════════════════════════ */
.fin-count-bar {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2a3b 60%, #0f2233 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.fin-count-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 80px);
    pointer-events: none;
}

.fin-count-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fin-count-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 24px;
    transition: transform .25s;
}

.fin-count-item:hover {
    transform: translateY(-4px);
}

.fin-count-ico {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, .12);
    border: 1.5px solid rgba(212, 175, 55, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.fin-count-ico i {
    font-size: 24px;
    color: #d4af37;
}

.fin-count-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.fin-count-num b {
    font-size: 36px;
    color: #d4af37;
    font-weight: 700;
    margin-right: 2px;
}

.fin-count-lbl {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.fin-count-sep {
    width: 1px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, .4), transparent);
}

@media (max-width: 767px) {
    .fin-count-inner {
        flex-direction: column;
    }

    .fin-count-sep {
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, .4), transparent);
    }

    .fin-count-num {
        font-size: 40px;
    }
}

/* ═══════════════════════════════════
   SERVICES — Creative Layout
═══════════════════════════════════ */

/* Section background */
#services.fin-sec {
    background: linear-gradient(160deg, #f7f8fc 0%, #eef1f8 50%, #f0f3fa 100%);
    position: relative;
    overflow: hidden;
}

#services.fin-sec::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .10) 0%, transparent 70%);
    pointer-events: none;
}

#services.fin-sec::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 14, 38, .05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Services Slider ── */
.fin-svc-slider-wrap {
    position: relative;
    z-index: 1;
}

.fin-svc-slider .owl-stage-outer {
    padding-bottom: 18px;
}

.fin-svc-slide {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(4, 14, 38, .07);
    box-shadow: 0 2px 14px rgba(4, 14, 38, .05);
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s, border-color .28s;
}

.fin-svc-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(4, 14, 38, .12);
    border-color: rgba(212, 175, 55, .3);
}

.fin-svc-slide--priced {
    border-color: rgba(212, 175, 55, .35);
    box-shadow: 0 4px 22px rgba(212, 175, 55, .1);
}

/* Image */
.fin-svc-slide-img {
    position: relative;
    height: 195px;
    overflow: hidden;
    flex-shrink: 0;
}

.fin-svc-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.fin-svc-slide:hover .fin-svc-slide-img img {
    transform: scale(1.06);
}

.fin-svc-slide-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 14, 38, .65) 0%, rgba(4, 14, 38, .1) 55%, transparent 100%);
}

/* Icon badge — bottom-start over image */
.fin-svc-slide-ico {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 16px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--fin-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
    transition: transform .25s;
}

.fin-svc-slide:hover .fin-svc-slide-ico {
    transform: scale(1.1) rotate(-5deg);
}

.fin-svc-slide-ico i {
    font-size: 22px;
    color: var(--fin-navy);
}

/* Number chip — bottom-end over image */
.fin-svc-slide-num {
    position: absolute;
    bottom: 16px;
    inset-inline-end: 16px;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .85);
    background: rgba(4, 14, 38, .45);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 3px 10px;
}

/* Card body */
.fin-svc-slide-body {
    padding: 20px 20px 0;
    flex: 1;
}

.fin-svc-slide-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--fin-navy);
    margin: 0 0 8px;
    line-height: 1.4;
}

.fin-svc-slide-body p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--fin-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card footer */
.fin-svc-slide-foot {
    padding: 14px 20px 20px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(4, 14, 38, .07);
}

/* Nav buttons */
.fin-svc-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.fin-svc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fin-navy);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background .2s, transform .2s;
}

.fin-svc-nav-btn i {
    color: #fff;
}

.fin-svc-nav-btn:hover {
    background: var(--fin-gold);
    transform: scale(1.08);
}

.fin-svc-nav-btn:hover i {
    color: var(--fin-navy);
}

/* Dots */
.fin-svc-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.fin-svc-slider .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(4, 14, 38, .18);
    display: block;
    transition: background .2s, width .25s;
}

.fin-svc-slider .owl-dot.active span {
    background: var(--fin-gold);
    width: 22px;
}

/* Dark theme */
.theme-dark .fin-svc-slide {
    background: #0c1833;
    border-color: #1a2a52;
}

.theme-dark .fin-svc-slide--priced {
    border-color: rgba(212, 175, 55, .4);
}

.theme-dark .fin-svc-slide-body h3 {
    color: #e8edf5;
}

.theme-dark .fin-svc-slide-foot {
    border-color: rgba(255, 255, 255, .07);
}

.theme-dark #services.fin-sec {
    background: #050e22;
}

.theme-dark .fin-svc-nav-btn {
    background: #1a2a52;
}

.theme-dark .fin-svc-slider .owl-dot span {
    background: rgba(255, 255, 255, .2);
}

/* Footer (reused by slide) */
.fin-svc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(4, 14, 38, .07);
    margin-top: auto;
}

/* Price — عدد ر.س شهرياً */
.fin-svc-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    background: rgba(212, 175, 55, .08);
    border: 1px dashed rgba(212, 175, 55, .35);
    border-radius: 12px;
    padding: 8px 12px;
}

.fin-svc-price-num {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--fin-gold-2);
    font-variant-numeric: tabular-nums;
}

.fin-svc-price-cur {
    font-size: 13px;
    font-weight: 700;
    color: var(--fin-navy);
}

.fin-svc-price-term {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--fin-navy);
    background: var(--fin-gold);
    border-radius: 20px;
    padding: 3px 10px;
}

/* CTA Button — احجز الآن (WhatsApp) */
.fin-svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: 999px;
    transition: transform .2s, box-shadow .2s, background .2s, gap .2s;
    white-space: nowrap;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
}

.fin-svc-cta i {
    font-size: 17px;
    color: #fff;
}

.fin-svc-cta:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
    gap: 10px;
    color: #fff !important;
}

.fin-svc-cta:hover i {
    color: #fff;
}


.theme-dark .fin-svc-price-cur {
    color: #e8edf5;
}

.theme-dark #services.fin-sec {
    background: #050e22;
}


/* ═══════════════════════════════════════════════════════════
   FEATURES — "لماذا نحن؟"  Light bento grid
═══════════════════════════════════════════════════════════ */
.fin-why-sec {
    background: linear-gradient(160deg, #ffffff 0%, #f4f6fb 55%, #eef1f9 100%);
    position: relative;
    overflow: hidden;
}

.fin-why-sec::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .12) 0%, transparent 65%);
    pointer-events: none;
}

.fin-why-sec::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 32, 68, .06) 0%, transparent 70%);
    pointer-events: none;
}

.fin-why-sec .fin-sec-head .fin-heading {
    color: var(--fin-navy);
}

.fin-why-sec .fin-sec-head .fin-kicker {
    color: var(--fin-gold-2);
}

.fin-why-sec .fin-sec-head .fin-idx {
    border-color: rgba(4, 14, 38, .14);
    color: rgba(4, 14, 38, .4);
}

.fin-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* First card: spans 2 cols — flagship feature */
.fin-why-card:first-child {
    grid-column: span 2;
}

.fin-why-card {
    position: relative;
    padding: 34px 28px 30px;
    border-radius: 22px;
    border: 1px solid rgba(4, 14, 38, .07);
    background: #fff;
    box-shadow: 0 2px 12px rgba(4, 14, 38, .04);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

/* gold top-line (always visible on flagship, hover on rest) */
.fin-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fin-gold), rgba(212, 175, 55, .3), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.fin-why-card:first-child::before {
    opacity: 1;
}

.fin-why-card:hover {
    border-color: rgba(212, 175, 55, .35);
    box-shadow: 0 20px 48px rgba(4, 14, 38, .10);
    transform: translateY(-6px);
}

.fin-why-card:hover::before {
    opacity: 1;
}

/* oversized faded number */
.fin-why-bg-num {
    position: absolute;
    bottom: -12px;
    left: 14px;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    color: rgba(212, 175, 55, .07);
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
    transition: color .3s;
}

.fin-why-card:hover .fin-why-bg-num {
    color: rgba(212, 175, 55, .12);
}

/* icon */
.fin-why-ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .16), rgba(212, 175, 55, .04));
    border: 1.5px solid rgba(212, 175, 55, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.fin-why-ico i {
    font-size: 24px;
    color: var(--fin-gold-2);
}

.fin-why-card:hover .fin-why-ico {
    background: linear-gradient(135deg, rgba(212, 175, 55, .26), rgba(212, 175, 55, .08));
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 18px rgba(212, 175, 55, .22);
}

.fin-why-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--fin-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}

.fin-why-body p {
    font-size: 13.5px;
    color: var(--fin-muted);
    line-height: 1.8;
    margin: 0;
}

/* first card bigger text */
.fin-why-card:first-child .fin-why-body h4 {
    font-size: 20px;
}

.fin-why-card:first-child .fin-why-body p {
    font-size: 14.5px;
    color: var(--fin-muted);
}

.fin-why-card:first-child .fin-why-ico {
    width: 64px;
    height: 64px;
}

.fin-why-card:first-child .fin-why-ico i {
    font-size: 30px;
}

/* Dark theme */
.theme-dark .fin-why-sec {
    background: linear-gradient(150deg, #040e26 0%, #071a40 55%, #030c1e 100%);
}

.theme-dark .fin-why-sec .fin-sec-head .fin-heading {
    color: #fff;
}

.theme-dark .fin-why-sec .fin-sec-head .fin-kicker {
    color: var(--fin-gold);
}

.theme-dark .fin-why-sec .fin-sec-head .fin-idx {
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
}

.theme-dark .fin-why-card {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(212, 175, 55, .1);
    box-shadow: none;
}

.theme-dark .fin-why-card:hover {
    box-shadow: 0 24px 52px rgba(0, 0, 0, .35);
}

.theme-dark .fin-why-body h4 {
    color: #fff;
}

.theme-dark .fin-why-body p {
    color: rgba(255, 255, 255, .55);
}

.theme-dark .fin-why-card:hover .fin-why-ico {
    background: rgba(212, 175, 55, .2);
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .fin-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fin-why-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .fin-why-grid {
        grid-template-columns: 1fr;
    }

    .fin-why-card:first-child {
        grid-column: span 1;
    }
}

/* ═══════════════════════════════════════════════════════════
   VISIONS — "ما نؤمن به"  Editorial list
═══════════════════════════════════════════════════════════ */
.fin-vals-sec {
    background: #fff;
}

.fin-vals-list {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    margin: 0 auto;
}

.fin-val-row {
    display: grid;
    grid-template-columns: 60px 44px 1fr;
    gap: 0 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(4, 14, 38, .07);
    cursor: default;
    transition: padding-right .22s;
}

.fin-val-row:first-child {
    border-top: 1px solid rgba(4, 14, 38, .07);
}

.fin-val-row-num {
    font-size: 44px;
    font-weight: 900;
    color: rgba(4, 14, 38, .06);
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    transition: color .25s;
    text-align: center;
}

.fin-val-row-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s;
}

.fin-val-row-ico i {
    font-size: 19px;
    color: var(--fin-gold);
    transition: transform .25s;
}

.fin-val-row-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--fin-navy);
    margin: 0 0 3px;
    line-height: 1.35;
    transition: color .22s;
}

.fin-val-row-body p {
    font-size: 13.5px;
    color: var(--fin-muted);
    margin: 0;
    line-height: 1.75;
}

.fin-val-row:hover {
    padding-right: 10px;
}

.fin-val-row:hover .fin-val-row-num {
    color: rgba(212, 175, 55, .22);
}

.fin-val-row:hover .fin-val-row-ico {
    background: var(--fin-gold);
    border-color: var(--fin-gold);
}

.fin-val-row:hover .fin-val-row-ico i {
    color: #fff;
    transform: scale(1.15);
}

.fin-val-row:hover .fin-val-row-body h3 {
    color: #b8941f;
}

.theme-dark .fin-vals-sec {
    background: #050e22;
}

.theme-dark .fin-val-row {
    border-color: rgba(255, 255, 255, .07);
}

.theme-dark .fin-val-row-num {
    color: rgba(255, 255, 255, .05);
}

.theme-dark .fin-val-row-ico {
    border-color: rgba(212, 175, 55, .3);
}

.theme-dark .fin-val-row-body h3 {
    color: #e8edf5;
}

.theme-dark .fin-val-row-body p {
    color: rgba(255, 255, 255, .5);
}

.theme-dark .fin-val-row:hover .fin-val-row-body h3 {
    color: var(--fin-gold);
}

.theme-dark .fin-val-row:hover .fin-val-row-num {
    color: rgba(212, 175, 55, .18);
}

@media (max-width: 575.98px) {
    .fin-val-row {
        grid-template-columns: 40px 36px 1fr;
        gap: 0 14px;
        padding: 16px 0;
    }

    .fin-val-row-num {
        font-size: 32px;
    }

    .fin-val-row-ico {
        width: 36px;
        height: 36px;
    }

    .fin-val-row-ico i {
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════════════════
   PERFORMANCE — content-visibility for below-fold sections
   Tells the browser to skip rendering off-screen sections until needed
═══════════════════════════════════════════════════════════ */
#about,
#features,
.fin-vals-sec,
#projects,
#reviews {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE MODAL
═══════════════════════════════════════════════════════════ */
/* Trigger cursor */
.fin-svc-modal-trigger { cursor: pointer; }
.fin-svc-modal-trigger:focus-visible { outline: 2px solid var(--fin-gold); outline-offset: 3px; }

/* Details badge */
.fin-svc-details-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12.5px; font-weight: 700;
    color: var(--fin-navy); letter-spacing: .02em;
    border: 1.5px solid rgba(4,14,38,.15);
    border-radius: 999px;
    padding: 5px 14px;
    transition: background .2s, border-color .2s, color .2s;
    user-select: none;
}
.fin-svc-details-btn i { font-size: 14px; }
.fin-svc-modal-trigger:hover .fin-svc-details-btn {
    background: var(--fin-navy); color: #fff; border-color: var(--fin-navy);
}
.theme-dark .fin-svc-details-btn { color: #e8edf5; border-color: rgba(255,255,255,.2); }
.theme-dark .fin-svc-modal-trigger:hover .fin-svc-details-btn { background: var(--fin-gold); border-color: var(--fin-gold); color: var(--fin-navy); }

/* Modal overlay */
.fin-svc-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
.fin-svc-modal[hidden] { display: none; }

.fin-svc-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(4,14,38,.72);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Modal box */
.fin-svc-modal-box {
    position: relative; z-index: 1;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    width: 100%; max-width: 540px;
    max-height: 90dvh;
    display: flex; flex-direction: column;
    box-shadow: 0 32px 80px rgba(4,14,38,.28);
    animation: finModalIn .28s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes finModalIn {
    from { opacity: 0; transform: scale(.92) translateY(24px); }
    to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* Close */
.fin-svc-modal-close {
    position: absolute; top: 12px; inset-inline-end: 12px; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(4,14,38,.55); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.fin-svc-modal-close i { font-size: 20px; color: #fff; }
.fin-svc-modal-close:hover { background: rgba(4,14,38,.85); }

/* Image */
.fin-svc-modal-img {
    position: relative; height: 220px; flex-shrink: 0; overflow: hidden;
}
.fin-svc-modal-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.fin-svc-modal-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,14,38,.6) 0%, transparent 55%);
}
.fin-svc-modal-ico {
    position: absolute; bottom: 16px; inset-inline-start: 20px; z-index: 2;
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--fin-gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.fin-svc-modal-ico i { font-size: 24px; color: var(--fin-navy); }

/* Content */
.fin-svc-modal-content {
    padding: 24px 28px 28px;
    overflow-y: auto;
    flex: 1;
}
.fin-svc-modal-title {
    font-size: 21px; font-weight: 800;
    color: var(--fin-navy); margin: 0 0 14px; line-height: 1.35;
}
.fin-svc-modal-desc {
    font-size: 14.5px; line-height: 1.85;
    color: var(--fin-muted); margin: 0 0 24px;
    white-space: pre-line;
}

/* Footer */
.fin-svc-modal-foot {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(4,14,38,.08);
}
.fin-svc-modal-price-wrap .fin-svc-price { margin: 0; }
.fin-svc-modal-cta { flex: 1; justify-content: center; min-width: 160px; }

/* Dark mode */
.theme-dark .fin-svc-modal-box { background: #0c1833; }
.theme-dark .fin-svc-modal-title { color: #e8edf5; }
.theme-dark .fin-svc-modal-foot { border-color: rgba(255,255,255,.08); }

@media (max-width: 575.98px) {
    .fin-svc-modal-box { max-width: 100%; border-radius: 20px 20px 0 0; align-self: flex-end; max-height: 88dvh; }
    .fin-svc-modal { align-items: flex-end; padding: 0; }
    @keyframes finModalIn {
        from { opacity: 0; transform: translateY(100%); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* Early-hide preloader (fin-loader-hide) */
.js-preloader.fin-loader-hide { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s ease, visibility .45s ease; }

/* ===== Team section ===== */
.fin-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fin-team-card {
    position: relative;
    padding: 34px 22px 30px;
    border-radius: 22px;
    border: 1px solid rgba(4, 14, 38, .07);
    background: #fff;
    box-shadow: 0 2px 12px rgba(4, 14, 38, .04);
    text-align: center;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.fin-team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fin-gold), rgba(212, 175, 55, .3), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.fin-team-card:hover {
    border-color: rgba(212, 175, 55, .35);
    box-shadow: 0 20px 48px rgba(4, 14, 38, .10);
    transform: translateY(-6px);
}

.fin-team-card:hover::before { opacity: 1; }

.fin-team-avatar {
    width: 120px; height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .25), rgba(212, 175, 55, .05));
    border: 1.5px solid rgba(212, 175, 55, .22);
    transition: transform .3s;
}

.fin-team-card:hover .fin-team-avatar { transform: scale(1.05); }

.fin-team-avatar img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #eef1f9;
}

.fin-team-card h4 {
    font-size: 17px; font-weight: 700;
    color: var(--fin-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}

.fin-team-role {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    color: var(--fin-gold-2);
    background: rgba(212, 175, 55, .10);
    border: 1px solid rgba(212, 175, 55, .18);
    padding: 5px 14px;
    border-radius: 999px;
}

.theme-dark .fin-team-card { background: #0c1833; border-color: rgba(255, 255, 255, .06); }
.theme-dark .fin-team-card h4 { color: #e8edf5; }
.theme-dark .fin-team-avatar img { background: #16223d; }

@media (max-width: 991.98px) {
    .fin-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .fin-team-grid { grid-template-columns: 1fr; }
}

/* ===================== Mobile Bottom Navigation (app-style) ============== */
.fin-mn-space { display: none; }

.fin-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 980;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--fin-line);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}

.fin-mn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--fin-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 0;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s;
}

.fin-mn-ic {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 21px;
    line-height: 1;
    transition: background .2s, color .2s;
}

.fin-mn-label {
    line-height: 1;
}

.fin-mn-item.active,
.fin-mn-item:hover {
    color: var(--fin-gold-2);
}

.fin-mn-item.active .fin-mn-ic {
    background: rgba(221, 162, 57, .14);
    color: var(--fin-gold-2);
}

@media (max-width: 991.98px) {
    .fin-mn-space {
        display: block;
        height: 74px;
    }

    .fin-mobile-nav {
        display: flex;
    }

    /* Raise WhatsApp float above bottom nav */
    .fin-wa-float {
        bottom: 92px !important;
    }

    /* Raise back-to-top above bottom nav */
    .progress-wrap {
        bottom: 90px !important;
    }
}

/* Dark mode */
.theme-dark .fin-mobile-nav {
    background: rgba(12, 24, 51, .92);
    border-top-color: rgba(255, 255, 255, .06);
}

.theme-dark .fin-mn-item { color: rgba(232, 237, 245, .5); }
.theme-dark .fin-mn-item.active { color: var(--fin-gold); }
.theme-dark .fin-mn-item.active .fin-mn-ic { background: rgba(221, 162, 57, .16); color: var(--fin-gold); }

/* ════════════════════════════════════════════════════════════
   DARK MODE FIXES — Header & Hero slider
════════════════════════════════════════════════════════════ */

/* Header: nav link hover/active must be gold on dark background
   (base rule sets color:var(--fin-navy) which is #031738 — invisible on #071230 header) */
.theme-dark .fin-header .navbar-nav .nav-link:hover,
.theme-dark .fin-header .navbar-nav .nav-link.active {
    color: var(--fin-gold) !important;
}
.theme-dark .fin-header .navbar-nav .nav-link:hover::after,
.theme-dark .fin-header .navbar-nav .nav-link.active::after {
    background: var(--fin-gold);
}

/* Header: CTA button needs slightly higher contrast against the dark header */
.theme-dark .fin-header .other-options .btn.fin-hdr-cta {
    background: #0d1f4a !important;
    border-color: var(--fin-gold) !important;
}

/* Hero — mobile (<992px): copy area is stacked (position:relative) with
   background:var(--fin-bg) which is #f6f7f9 (light) — need dark bg + light text */
@media (max-width: 991.98px) {
    .theme-dark .fin-hv2-copy {
        background: #071230 !important;
    }

    .theme-dark .fin-hero-v2 .fin-hero-title {
        color: #f0f3f9 !important;
    }

    .theme-dark .fin-hero-v2 .fin-hero-lead {
        color: #9aa7bd !important;
    }

    .theme-dark .fin-hero-v2 .fin-kicker {
        color: var(--fin-gold) !important;
    }

    .theme-dark .fin-hero-v2 .fin-trust-item {
        color: #8fa0c4 !important;
    }

    .theme-dark .fin-hero-v2 .fin-link-more {
        color: #c9d4e8 !important;
    }

    .theme-dark .fin-hero-v2 .fin-link-more:hover {
        color: #fff !important;
    }
}
