*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: #FAF8F2;
    color: #1E2240;
    font-family: 'Tajawal', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    direction: rtl;
}

::selection {
    background: #D4AF37;
    color: #0D1020
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

section {
    position: relative;
    overflow: hidden
}

:root {
    --g1: #F0D27E;
    --g2: #D4AF37;
    --g3: #9C7A22;
    --g4: #6E5417;
    --navy: #19274E;
    --cream-pure: #FAF8F2;
    --cream: #F5EDD8;
    --ink: #1E2240;
    --td: #006375;
    --gold: #D4AF37;
    --gd: #9C7A22;
    --gl: #F0D27E;
    --teal-dark: #006375;
    --teal: #007F80;
    --teal-light: #f2f8f8;
    --gold-dark: #9C7A22;
    --gold-light: #F0D27E;
    --c1: #FAF6EE;
    --c2: #F5EDD8;
    --c3: #EDE0C4;
    --ink2: rgba(61, 46, 0, .62);
    --ez: cubic-bezier(.22, .7, .22, 1);
    --fd: 'Tajawal', system-ui, sans-serif;
    --fm: 'Tajawal', system-ui, sans-serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--fm);
    font-size: 13px;
    letter-spacing: .04em;
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: all .35s var(--ez);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-gold {
    background: linear-gradient(135deg, #F5DC7A 0%, #D4AF37 50%, #9C7A22 100%);
    color: #002a30;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 28px rgba(212, 175, 55, .42);
}

.btn-gold:hover {
    box-shadow: 0 14px 40px rgba(212, 175, 55, .58)
}

.btn-glass {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .62)
}

@media (max-width: 1536px) {
    .hero h1 {
        font-size: 44px;

    }

    .hero-bg-img {
        height: 113%;
    }
}

.hero {
    height: 100vh;
    min-height: 740px;
    position: relative;
    display: flex;
    align-items: center;
    background: #071e28;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    display: block;
    filter: saturate(.85) brightness(.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to left,
            rgba(5, 25, 35, .96) 0%,
            rgba(5, 25, 35, .88) 20%,
            rgba(5, 25, 35, .65) 38%,
            rgba(5, 25, 35, .28) 55%,
            rgba(5, 25, 35, .08) 70%,
            transparent 84%),
        linear-gradient(to bottom,
            rgba(3, 15, 22, .4) 0%,
            transparent 15%,
            transparent 78%,
            rgba(3, 15, 22, .5) 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
}

#dust-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin-right: 12px !important;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    width: 100%;
    max-width: 560px;
    padding: 140px 0 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-eyebrow {
    font-family: var(--fm);
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--g1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s .1s var(--ez), transform .7s .1s var(--ez);
}

.hero-eyebrow.vis {
    opacity: 1;
    transform: none
}

.pdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g2);
    box-shadow: 0 0 8px 3px rgba(212, 175, 55, .5);
    animation: pdot 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pdot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(.55)
    }
}

.hero h1 {
    font-family: var(--fd);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -.01em;
    color: #FDFAF4;
    margin-bottom: 18px;
    text-shadow: 0 2px 30px rgba(3, 18, 26, .4);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .95s .18s var(--ez),
        transform .95s .18s var(--ez);
}

.hero h1.vis {
    opacity: 1;
    transform: none
}

.hero h1 em {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(118deg, #F5DC7A 0%, #E8C020 30%, #FFE870 58%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gshine 6s linear infinite;
}

@keyframes gshine {
    to {
        background-position: 200% center
    }
}

.hero-divider {
    width: 48px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--g2), transparent);
    margin-bottom: 20px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: opacity .6s .38s ease, transform .6s .38s var(--ez);
}

.hero-divider.vis {
    opacity: 1;
    transform: scaleX(1)
}

.hero-sub {
    color: rgba(253, 250, 243, .68);
    font-size: 16px;
    line-height: 1.95;
    font-weight: 500;
    margin-bottom: 24px;
    text-shadow: 0 1px 16px rgba(3, 18, 26, .4);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .85s .35s var(--ez), transform .85s .35s var(--ez);
}

.hero-sub.vis {
    opacity: 1;
    margin-top: 16px;
    transform: none
}

.hero-sub strong {
    color: rgba(253, 250, 243, .92);
    font-weight: 600
}

.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s .5s var(--ez), transform .8s .5s var(--ez);
}

.hero-checks.vis {
    opacity: 1;
    transform: none
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fm);
    font-size: 13px;
    font-weight: 500;
    color: rgba(253, 250, 243, .7);
    direction: rtl;
}

.hc-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1.5px solid rgba(212, 175, 55, .45);
    background: rgba(212, 175, 55, .07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-closing {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .75s .65s var(--ez), transform .75s .65s var(--ez);
}

.hero-closing.vis {
    opacity: 1;
    transform: none
}

.hero-closing p {
    font-family: var(--fm);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(253, 250, 243, .55);
    line-height: 1.75;
}

.hero-closing p strong {
    color: rgba(253, 250, 243, .88);
    font-weight: 700
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px) scale(.97);
    transition: opacity .7s .78s var(--ez), transform .7s .78s var(--ez);
}

.hero-ctas.vis {
    opacity: 1;
    margin-top: 24px;
    transform: none
}

.hero-ticker {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.ticker-pill {
    font-family: var(--fm);
    font-size: 11px;
    color: rgba(253, 250, 243, .75);
    background: rgba(4, 25, 32, .72);
    border: 1px solid rgba(212, 175, 55, .18);
    backdrop-filter: blur(16px);
    padding: 10px 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(3, 18, 26, .35);
    direction: ltr;
}

.ticker-up {
    color: #7DD9A4
}

.ticker-dn {
    color: #E89494
}

.t-sep {
    color: rgba(255, 255, 255, .15)
}

@media(max-width:768px) {
    .hero-content {
        max-width: 100%;
        padding: 110px 0 90px
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem)
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-overlay {
        background:
            rgba(5, 25, 35, .82),
            linear-gradient(to bottom, rgba(3, 15, 22, .5) 0%, transparent 20%, transparent 75%, rgba(3, 15, 22, .55) 100%);
    }
}

.prob-s {
    background: #FAF8F2;
    padding: 5rem 2.5rem;
    font-family: var(--fd);
    position: relative;
    overflow: hidden;
}

.prob-s::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(-42deg, rgba(25, 39, 78, .014) 0, rgba(25, 39, 78, .014) 1px, transparent 1px, transparent 32px),
        repeating-linear-gradient(48deg, rgba(25, 39, 78, .009) 0, rgba(25, 39, 78, .009) 1px, transparent 1px, transparent 46px);
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}

.prob-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.prob-ey {
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 500px;

    text-transform: uppercase;
    color: #9C7A22;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.prob-ey::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(270deg, transparent, #9C7A22)
}

.prob-ey.in {
    opacity: 1;
    transform: none
}

.prob-h2 {
    font-family: var(--fd);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    color: var(--teal-dark);
    line-height: 1.2;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .75s .08s ease, transform .75s .08s ease;
}

.prob-h2.in {
    opacity: 1;
    transform: none
}

.prob-sub {
    font-size: 15px;
    color: rgba(30, 34, 64, .52);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 560px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s .15s ease, transform .7s .15s ease;
}

.prob-sub.in {
    opacity: 1;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
    transform: none
}

.prob-body {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media(max-width:860px) {
    .prob-body {
        grid-template-columns: 1fr
    }
}

.prob-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 1
}

.prob-right {
    order: 2;
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .8s .2s ease, transform .8s .2s var(--ez);
}

.prob-right.in {
    opacity: 1;
    transform: none
}

.prob-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s var(--ez);
}

.prob-item.in {
    opacity: 1;
    transform: none
}

.prob-red {
    background: rgba(192, 57, 43, .07);
    border-color: rgba(192, 57, 43, .22)
}

.prob-warn {
    background: rgba(211, 84, 0, .07);
    border-color: rgba(211, 84, 0, .22)
}

.prob-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.prob-red .prob-icon {
    stroke: #c0392b
}

.prob-warn .prob-icon {
    stroke: #d35400
}

.prob-title {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px
}

.prob-red .prob-title {
    color: #922b21
}

.prob-warn .prob-title {
    color: #935116
}

.prob-desc {
    font-size: 12px;
    line-height: 1.6
}

.prob-red .prob-desc {
    color: rgba(146, 43, 33, .68)
}

.prob-warn .prob-desc {
    color: rgba(147, 81, 22, .68)
}

.prob-toggle-wrap {
    display: flex;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .09);
    border-bottom: none;
}

.prob-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .28s ease;
    font-family: var(--fm);
}

.prob-btn-without {
    background: #c0392b;
    color: #fff
}

.prob-btn-without.inactive {
    background: #ede9df;
    color: rgba(30, 34, 64, .38)
}

.prob-btn-with {
    background: #ede9df;
    color: rgba(30, 34, 64, .38)
}

.prob-btn-with.active {
    background: #006375;
    color: #fff
}

.prob-dash {
    background: #FAF8F2;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .09);
    border-top: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
}

.prob-dash-topbar {
    height: 3px;
    transition: background .5s
}

.prob-dash-hdr {
    background: #EDE1C8;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(156, 122, 34, .18);
}

.prob-dash-title {
    font-size: 13px;
    font-weight: 700;
    color: #19274E
}

.prob-dash-live {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    letter-spacing: .04em
}

.prob-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transition: background .4s
}

.prob-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-bottom: 1px solid rgba(156, 122, 34, .12);
    background: rgba(156, 122, 34, .14);
}

.prob-stat {
    background: #FAF8F2;
    padding: 8px 9px
}

.prob-stat-lbl {
    font-size: 7px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(25, 39, 78, .38);
    display: block;
    margin-bottom: 3px;
}

.prob-stat-val {
    font-size: 13px;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    transition: color .4s
}

.prob-stat-sub {
    font-size: 7px;
    display: block;
    margin-top: 2px;
    transition: color .4s
}

.prob-chart-area {
    padding: 9px 14px 7px;
    background: #FAF8F2
}

.prob-chart-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px
}

.prob-chart-lbl {
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(25, 39, 78, .35)
}

.prob-chart-trend {
    font-size: 8px;
    font-weight: 700;
    transition: color .4s
}

.prob-chart-svg {
    width: 100%;
    height: 60px;
    display: block
}

.prob-rows {
    border-top: 1px solid rgba(156, 122, 34, .1)
}

.prob-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px;
    border-bottom: 1px solid rgba(156, 122, 34, .07);
}

.prob-row:last-child {
    border-bottom: none
}

.prob-row:hover {
    background: rgba(0, 99, 117, .04)
}

.prob-row-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #19274E
}

.prob-badge {
    font-size: 8px;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 999px;
    transition: all .4s;
    font-family: var(--fm);
}

.prob-ticker {
    padding: 5px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    transition: background .4s;
    direction: ltr;
}

.prob-tick-item {
    font-size: 8px;
    letter-spacing: .04em;
    color: rgba(240, 210, 126, .7);
    display: flex;
    align-items: center;
    gap: 4px
}

.prob-tick-item strong {
    color: #F0D27E
}

.prob-tick-sep {
    color: rgba(255, 255, 255, .14)
}

.hiw {
    background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 55%, var(--c3) 100%);
    padding: 5.5rem 2.5rem 6rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.hiw-hatch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        repeating-linear-gradient(-42deg, rgba(156, 122, 34, .018) 0, rgba(156, 122, 34, .018) 1px, transparent 1px, transparent 34px),
        repeating-linear-gradient(48deg, rgba(156, 122, 34, .012) 0, rgba(156, 122, 34, .012) 1px, transparent 1px, transparent 48px);
    mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 20%, transparent 100%);
}

.hiw-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: gp 5s ease-in-out infinite;
}

@keyframes gp {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

#hiw-cv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.hiw-inner {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hiw-ey {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gd);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .6s ease, transform .6s ease;
}

.hiw-ey::before {
    content: '';
    width: 26px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--gd))
}

.hiw-ey.in {
    opacity: 1;
    transform: none
}

.hiw-h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    max-width: 100%;
    margin-bottom: 3.8rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .8s .08s ease, transform .8s .08s ease;
}

.hiw-h2 em {
    font-style: normal;
    color: var(--gd)
}

.hiw-h2.in {
    opacity: 1;
    transform: none
}

.hiw-connector {
    position: absolute;
    top: 43px;
    right: calc(12.5%);
    left: calc(12.5%);
    height: 1.5px;
    background: rgba(156, 122, 34, .15);
    z-index: 0;
}

@media(max-width:680px) {
    .hiw-connector {
        display: none
    }
}

.hiw-fill {
    height: 100%;
    background: linear-gradient(270deg, var(--gold), rgba(212, 175, 55, .3));
    width: 0;
    transition: width 1.2s var(--ez)
}

.hiw-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

@media(max-width:680px) {
    .hiw-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
}

.hiw-step {
    padding: 0 1rem;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s var(--ez);
}

.hiw-step.in {
    opacity: 1;
    transform: none
}

.hiw-badge {
    width: 86px;
    height: 86px;
    margin: 0 auto 1.4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .45s cubic-bezier(.34, 1.3, .64, 1);
}

.hiw-step:hover .hiw-badge,
.hiw-step.active .hiw-badge {
    transform: translateY(-6px) scale(1.08)
}

.hiw-ring {
    position: absolute;
    inset: -5px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: rgba(156, 122, 34, .12);
    transition: all .45s;
}

.hiw-hex {
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: #FDFAF4;
    transition: all .45s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step.done .hiw-hex {
    background: linear-gradient(145deg, #F5DC7A, var(--gold))
}

.hiw-step.done .hiw-ring {
    background: rgba(212, 175, 55, .2);
    inset: -8px
}

.hiw-step.active .hiw-hex {
    background: linear-gradient(145deg, var(--navy), #1F3060)
}

.hiw-step.active .hiw-ring {
    background: rgba(25, 39, 78, .15);
    inset: -9px
}

.hiw-num {
    font-family: var(--fd);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gd);
    position: relative;
    z-index: 1;
    transition: color .4s
}

.hiw-step.done .hiw-num {
    color: var(--navy)
}

.hiw-step.active .hiw-num {
    color: #fff
}

.hiw-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: .8rem;
    text-align: center;
    transition: color .3s
}

.hiw-step.active .hiw-step-title {
    color: var(--navy)
}

.hiw-step.done .hiw-step-title {
    color: var(--gd)
}

.hiw-bullets {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.hiw-bullet {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(13, 16, 32, .58);
    line-height: 1.55;
    padding-right: .7rem;
    border-right: 2px solid rgba(156, 122, 34, .25);
    transition: color .3s, border-color .3s;
}

.hiw-step.active .hiw-bullet {
    color: rgba(13, 16, 32, .78);
    border-right-color: var(--td)
}

.hiw-step.done .hiw-bullet {
    color: rgba(110, 84, 23, .65);
    border-right-color: var(--gold)
}

.fs {
    background: #FAF8F2;
    padding: 5.5rem 2rem 7rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.fs-hatch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        repeating-linear-gradient(-42deg, rgba(25, 39, 78, .016) 0, rgba(25, 39, 78, .016) 1px, transparent 1px, transparent 32px),
        repeating-linear-gradient(48deg, rgba(25, 39, 78, .01) 0, rgba(25, 39, 78, .01) 1px, transparent 1px, transparent 46px);
    mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 20%, transparent 100%);
}

#fs-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.fs-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: gpulse 4.5s ease-in-out infinite;
}

@keyframes gpulse {

    0%,
    100% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.fs-center {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3
}

.fs-eyebrow {
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 500px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9C7A22;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.fs-eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(270deg, transparent, #9C7A22)
}

.fs-eyebrow.in {
    opacity: 1;
    transform: none
}

.fs-subtitle {
    font-family: var(--fm);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .08em;
    color: rgba(25, 39, 78, 1);
    margin-bottom: 2.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s .1s ease, transform .6s .1s ease;
}

.fs-subtitle.in {
    opacity: 1;
    transform: none
}

.fs-box {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid rgba(25, 39, 78, .09);
    border-radius: 22px;
    padding: 3rem 2.5rem 2.8rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 80px -20px rgba(25, 39, 78, .1), 0 0 0 1px rgba(212, 175, 55, .06);
    position: relative;
    z-index: 4;
    overflow: hidden;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s .15s ease, transform .8s .15s var(--ez);
}

.fs-box.in {
    opacity: 1;
    transform: none
}

.fs-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-top: 2px solid rgba(212, 175, 55, .5);
    border-right: 2px solid rgba(212, 175, 55, .5);
    border-radius: 0 22px 0 0;
    pointer-events: none;
}

.fs-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border-bottom: 2px solid rgba(212, 175, 55, .5);
    border-left: 2px solid rgba(212, 175, 55, .5);
    border-radius: 0 0 0 22px;
    pointer-events: none;
}

.fs-box-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(270deg, transparent, rgba(212, 175, 55, .6) 40%, rgba(0, 99, 117, .4) 60%, transparent);
    opacity: 0;
    transition: opacity .5s .9s ease;
}

.fs-box.in .fs-box-topline {
    opacity: 1
}

.fs-scan {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .05), transparent);
    animation: scan 5s 1.8s ease-in-out infinite;
}

@keyframes scan {
    0% {
        right: -80px
    }

    100% {
        right: 110%
    }
}

.fs-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem .2rem;
    font-family: var(--fd);
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    font-weight: 300;
    color: #1E2240;
    line-height: 1.6;
    direction: rtl;
}

.fs-part {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    opacity: 0;
    transform: translateY(18px) scale(.93);
    transition: opacity .6s ease, transform .6s cubic-bezier(.34, 1.2, .64, 1);
}

.fs-part.in {
    opacity: 1;
    transform: none
}

.fs-var-wrap {
    position: relative;
    display: inline-block
}

.fs-var {
    font-style: italic;
    color: #19274E;
    font-weight: 500;
    cursor: default;
    display: inline-block;
    padding: .05em .15em;
    transition: color .25s
}

.fs-var::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #D4AF37, #9C7A22);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ez)
}

.fs-var-wrap:hover .fs-var {
    color: #006375
}

.fs-var-wrap:hover .fs-var::after {
    transform: scaleX(1)
}

.fs-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #19274E;
    color: #F0D27E;
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 10;
    direction: rtl
}

.fs-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #19274E
}

.fs-var-wrap:hover .fs-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.fs-op {
    color: rgba(25, 39, 78, 1);
    font-size: .78em;
    padding: 0 .4rem;
    font-weight: 300;
    font-style: normal
}

.fs-paren {
    color: rgba(25, 39, 78, 1);
    font-size: .9em
}

.fs-times {
    color: rgba(25, 39, 78, 1);
    font-size: .65em;
    padding: 0 .28rem
}

.fs-eq-wrap {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .7s ease, transform .7s var(--ez)
}

.fs-eq-wrap.in {
    opacity: 1;
    transform: none
}

.fs-eq {
    font-weight: 700;
    font-style: normal;
    color: #006375;
    font-size: 1em;
    padding: 0 .3rem
}

.fs-result {
    font-family: var(--fd);
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    color: #006375;
    position: relative;
    padding: .1em .3em
}

.fs-result::before {
    content: '';
    position: absolute;
    inset: -6px -14px;
    border-radius: 10px;
    background: rgba(0, 99, 117, .055);
    border: 1px solid rgba(0, 99, 117, .14);
    opacity: 0;
    animation: respulse 2.8s 2s ease-in-out infinite
}

@keyframes respulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(.94)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }
}

.fs-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 2.2rem 0 .4rem;
    opacity: 0;
    transition: opacity .6s 1s ease
}

.fs-divider.in {
    opacity: 1
}

.fdl {
    flex: 1;
    max-width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 39, 78, .15))
}

.fdl.r {
    background: linear-gradient(90deg, rgba(25, 39, 78, .15), transparent)
}

.fdg {
    width: 6px;
    height: 6px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: #D4AF37
}

.fs-cap {
    font-family: var(--fm);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(25, 39, 78, .87);
    display: block;
    text-align: center;
    opacity: 0;
    transition: opacity .6s 1.2s ease
}

.fs-cap.in {
    opacity: 1
}

@media(max-width:680px) {
    .fs-box {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, .98);
    }

    .fs-scan {
        display: none
    }

    .fs-glow {
        animation: none;
        opacity: .55
    }
}

.ft-s {
    background: #005566;
    padding: 5.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.ft-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle 1px at center, rgba(0, 99, 117, .1) 0%, transparent 100%);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%)
}

.ft-glow-tr {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 122, 34, .11) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: glowpulse 5s ease-in-out infinite
}

.ft-glow-bl {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 99, 117, .09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

@keyframes glowpulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.12)
    }
}

#ft-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.ft-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.ft-hdr {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3.5rem
}

.ft-eyebrow {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F0D27E;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.1rem;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .6s ease, transform .6s ease;
    justify-content: center
}

.ft-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(270deg, transparent, #F0D27E)
}

.ft-eyebrow.in {
    opacity: 1;
    transform: none
}

.ft-h2 {
    font-family: var(--fd);
    font-size: clamp(2rem, 3.8vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -.01em;
    opacity: 0;
    transform: translateX(0);
    transition: opacity .75s .08s ease, transform .75s .08s ease;
    text-align: center
}

.ft-h2.in {
    opacity: 1;
    transform: none
}

.ft-h2 em {
    font-style: normal;
    color: #D4AF37
}

.ft-tabs-wrap {
    position: relative;
    margin-bottom: 14px
}

.ft-tabs {
    display: flex;
    gap: 3px;
    border-bottom: 2px solid rgba(255, 255, 255, .15);
    margin-bottom: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    opacity: 0;
    transition: opacity .6s .3s ease;
    flex-direction: row
}

.ft-tabs.in {
    opacity: 1
}

.ft-tabs::-webkit-scrollbar {
    display: none
}

.ft-tab {
    font-family: var(--fm);
    font-size: 13px;
    letter-spacing: .04em;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    padding: .9rem 1.4rem;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .25s, background .25s, border-color .25s;
    border-radius: 4px 4px 0 0
}

.ft-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.ft-tab.active {
    color: #fff;
    font-weight: 700;
    border-bottom-color: #D4AF37;
    background: rgba(255, 255, 255, .1)
}

.ft-panel {
    display: none
}

.ft-panel.active {
    display: block
}

.ft-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media(max-width:860px) {
    .ft-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .ft-cards {
        grid-template-columns: 1fr
    }
}

.ft-panel.cols2 .ft-cards {
    grid-template-columns: repeat(2, 1fr)
}

@media(max-width:600px) {
    .ft-panel.cols2 .ft-cards {
        grid-template-columns: 1fr
    }
}

.ft-card {
    background: rgba(255, 244, 221, 0.97);
    border: 1.5px solid rgba(0, 99, 117, .14);
    border-radius: 16px;
    padding: 1.9rem 1.7rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s var(--ez), background .35s, border-color .35s, box-shadow .35s
}

.ft-card.in {
    opacity: 1;
    transform: none
}

.ft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s var(--ez)
}

.ft-card:hover {
    background: #fff;
    border-color: rgba(0, 99, 117, .32);
    transform: translateY(-7px) !important;
    box-shadow: 0 22px 50px rgba(0, 99, 117, .1)
}

.ft-card:hover::before {
    transform: scaleX(1)
}

.ft-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 99, 117, .1);
    border: 1.5px solid rgba(0, 99, 117, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all .35s
}

.ft-card:hover .ft-card-icon {
    background: rgba(0, 99, 117, .18);
    border-color: var(--teal-dark);
    box-shadow: 0 0 16px rgba(0, 99, 117, .18);
    transform: scale(1.08)
}

.ft-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal-dark);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ft-tag {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--teal-dark);
    background: rgba(0, 99, 117, .1);
    border: 1px solid rgba(0, 99, 117, .22);
    border-radius: 999px;
    padding: 4px 11px;
    display: inline-block;
    margin-bottom: .8rem
}

.ft-card h3 {
    font-family: var(--fd);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: .55rem;
    transition: color .3s
}

.ft-card:hover h3 {
    color: var(--teal-dark)
}

.ft-card p {
    font-family: var(--fd);
    font-size: .88rem;
    font-weight: 400;
    color: rgba(0, 50, 50, .8);
    line-height: 1.8
}

.ft-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .95rem;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-dark);
    opacity: .55;
    transition: opacity .25s, transform .3s
}

.ft-card:hover .ft-card-arrow {
    opacity: 1;
    transform: translateX(-5px)
}

.sb-s {
    background: var(--teal-light);
    padding: 5.5rem 2.5rem 5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.sb-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle 1px at center, rgba(0, 99, 117, .09) 0%, transparent 100%);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%)
}

#sb-cv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.sb-gl1 {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: gp 5s ease-in-out infinite
}

.sb-gl2 {
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 99, 117, .1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0
}

.sb-inner {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.sb-hdr {
    text-align: center;
    margin-bottom: 3rem
}

.sb-ey {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--td);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .9rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease
}

.sb-ey::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--td))
}

.sb-ey.in {
    opacity: 1;
    transform: none
}

.sb-h2 {
    font-family: var(--fd);
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: .65rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .75s .08s ease, transform .75s .08s ease
}

.sb-h2.in {
    opacity: 1;
    transform: none
}

.sb-h2 em {
    font-style: normal;
    color: var(--td)
}

.sb-sub {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(0, 99, 117, .6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.85;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s .16s ease, transform .7s .16s ease
}

.sb-sub.in {
    opacity: 1;
    transform: none
}

.flow-wrap {
    background: #fff;
    border: 1.5px solid rgba(0, 99, 117, .14);
    border-radius: 20px;
    padding: 3rem 2.2rem 2.6rem;
    box-shadow: 0 20px 60px rgba(0, 99, 117, .09);
    margin-bottom: 2.6rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s .2s ease, transform .8s .2s var(--ez)
}

.flow-wrap.in {
    opacity: 1;
    transform: none
}

.flow-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(270deg, transparent, var(--gold) 30%, var(--td) 70%, transparent);
    opacity: 0;
    transition: opacity .6s .8s ease
}

.flow-wrap.in::before {
    opacity: 1
}

.flow-label {
    font-family: var(--fm);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(0, 99, 117, .6);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600
}

.flow-nodes {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    row-gap: 1.6rem;
    column-gap: 0;
}

.fn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(18px) scale(.93);
    transition: opacity .55s ease, transform .55s var(--ez)
}

.fn.in {
    opacity: 1;
    transform: none
}

.fn-box {
    width: 124px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--fm);
    font-size: 11.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1.5px solid;
    cursor: default;
    transition: transform .35s var(--ez), box-shadow .35s;
    padding: .6rem
}

.fn-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12)
}

.fn-box svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fn-scan {
    background: rgba(0, 99, 117, .07);
    border-color: rgba(0, 99, 117, .25);
    color: var(--td)
}

.fn-scan svg {
    stroke: var(--td)
}

.fn-price {
    background: rgba(212, 175, 55, .09);
    border-color: rgba(212, 175, 55, .35);
    color: var(--gd)
}

.fn-price svg {
    stroke: var(--gd)
}

.fn-inv {
    background: rgba(0, 99, 117, .07);
    border-color: rgba(0, 99, 117, .25);
    color: var(--td)
}

.fn-inv svg {
    stroke: var(--td)
}

.fn-acc {
    background: rgba(29, 158, 117, .08);
    border-color: rgba(29, 158, 117, .28);
    color: #0F6E56
}

.fn-acc svg {
    stroke: #0F6E56
}

.fn-comp {
    background: rgba(212, 175, 55, .09);
    border-color: rgba(212, 175, 55, .35);
    color: var(--gd)
}

.fn-comp svg {
    stroke: var(--gd)
}

.fn-lbl {
    font-family: var(--fm);
    font-size: 14px;
    font-weight: 500 !important;
    letter-spacing: .02em;
    color: rgba(0, 50, 50, .88);
    text-align: center;
    max-width: 130px;
    line-height: 1.55
}

.fa {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100px;
    padding: 0 .4rem;
    opacity: 0;
    transition: opacity .5s ease
}

.fa.in {
    opacity: 1
}

.goldfa-line {
    height: 2.5px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--td));
    transition: width .6s var(--ez);
    position: relative
}

.goldfa-line.in {
    width: 40px
}

.goldfa-line::after {
    content: '';
    position: absolute;
    left: -1px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 6px solid var(--gold)
}

.fn-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--td);
    box-shadow: 0 0 0 0 rgba(0, 99, 117, .4);
    animation: pulse-ring 2s ease-in-out infinite;
    margin-top: .2rem
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 99, 117, .4)
    }

    70% {
        box-shadow: 0 0 0 7px rgba(0, 99, 117, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 99, 117, 0)
    }
}

.flow-note {
    text-align: center;
    margin-top: 1.8rem;
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(0, 99, 117, .79);
    font-weight: 600;
    opacity: 0;
    transition: opacity .6s ease
}

.flow-note.in {
    opacity: 1
}

@media(max-width:680px) {
    .flow-wrap {
        padding: 2.2rem 1.2rem 2rem
    }

    .flow-label {
        font-size: 12px;
        margin-bottom: 1.6rem
    }

    .flow-nodes {
        flex-direction: column;
        align-items: center;
        gap: .2rem;
        overflow: visible
    }

    .fn {
        width: 100%
    }

    .fn-box {
        width: 100%;
        max-width: 260px;
        height: 100px;
        flex-direction: row;
        justify-content: flex-start;
        gap: .9rem;
        padding: 0 1.2rem
    }

    .fn-lbl {
        max-width: none
    }

    .fa {
        height: auto;
        padding: .4rem 0
    }

    .goldfa-line {
        width: 2.5px;
        height: 0;
        background: linear-gradient(180deg, var(--gold), var(--td));
        transition: height .6s var(--ez)
    }

    .goldfa-line.in {
        width: 2.5px;
        height: 30px
    }

    .goldfa-line::after {
        left: 50%;
        right: auto;
        top: auto;
        bottom: -1px;
        transform: translateX(50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--gold);
        border-bottom: none
    }

    .flow-note {
        font-size: 10.5px;
        margin-top: 1.4rem
    }
}

.cp {
    background: var(--td);
    padding: 5.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.cp-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 56px 56px;
    animation: gridShift 18s linear infinite
}

@keyframes gridShift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 56px 56px
    }
}

#cp-cv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.cp-blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite
}

.cp-blob1 {
    top: 10%;
    right: -80px;
    animation-delay: 0s
}

.cp-blob2 {
    bottom: 5%;
    left: -60px;
    width: 260px;
    height: 260px;
    animation-delay: -4s
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-20px) scale(1.05)
    }
}

.cp-g1 {
    position: absolute;
    top: -60px;
    left: -40px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: gp 5s ease-in-out infinite
}

.cp-corner {
    position: absolute;
    pointer-events: none;
    z-index: 1
}

.cp-corner-tl {
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-top: 1.5px solid rgba(255, 255, 255, .15);
    border-right: 1.5px solid rgba(255, 255, 255, .15)
}

.cp-corner-br {
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-bottom: 1.5px solid rgba(255, 255, 255, .15);
    border-left: 1.5px solid rgba(255, 255, 255, .15)
}

.cp-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.cp-hdr {
    margin-bottom: 3.2rem;
    text-align: center
}

.cp-ey {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
    justify-content: center
}

.cp-ey::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--gold))
}

.cp-ey.in {
    opacity: 1;
    transform: none
}

.cp-h2 {
    font-size: clamp(2.1rem, 3.8vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .65rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .75s .08s ease, transform .75s .08s ease
}

.cp-h2 em {
    font-style: normal;
    color: var(--gl)
}

.cp-h2.in {
    opacity: 1;
    transform: none
}

.cp-sub {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    max-width: 580px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s .15s ease, transform .7s .15s ease;
    margin-top: 26px !important;
    margin: 0 auto
}

.cp-sub.in {
    opacity: 1;
    transform: none
}

.cp-body {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2.2rem;
    align-items: start
}

@media(max-width:740px) {
    .cp-body {
        grid-template-columns: 1fr
    }
}

.cp-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .7s .3s ease, transform .7s .3s ease
}

.cp-tabs.in {
    opacity: 1;
    transform: none
}

.cp-tab {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: all .32s var(--ez);
    position: relative;
    overflow: hidden
}

.cp-tab::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.5px;
    background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, .2));
    opacity: 0;
    transition: opacity .32s;
    border-radius: 3px 0 0 3px
}

.cp-tab:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2)
}

.cp-tab.active {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .28)
}

.cp-tab.active::after {
    opacity: 1
}

.cp-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    transition: all .32s
}

.cp-tab-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: rgba(255, 255, 255, .7)
}

.cp-tab.active .cp-tab-icon {
    background: rgba(212, 175, 55, .2);
    border-color: rgba(212, 175, 55, .45);
    box-shadow: 0 0 14px rgba(212, 175, 55, .2)
}

.cp-tab.active .cp-tab-icon svg {
    stroke: var(--gl)
}

.cp-tab-info {
    flex: 1;
    min-width: 0
}

.cp-tab-std {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    display: block;
    margin-bottom: .22rem;
    transition: color .3s
}

.cp-tab.active .cp-tab-std {
    color: var(--gl)
}

.cp-tab-name {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    line-height: 1.2;
    transition: color .3s
}

.cp-tab.active .cp-tab-name {
    color: #fff
}

.cp-tab-badge {
    font-family: var(--fm);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
    flex-shrink: 0;
    font-weight: 600
}

.tb-ok {
    background: rgba(13, 110, 86, .22);
    color: #7DD9A4;
    border: 1px solid rgba(13, 110, 86, .32)
}

.tb-bi {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .18)
}

.tb-au {
    background: rgba(212, 175, 55, .18);
    color: var(--gl);
    border: 1px solid rgba(212, 175, 55, .3)
}

.tb-bk {
    background: rgba(180, 40, 40, .22);
    color: #E89494;
    border: 1px solid rgba(180, 40, 40, .32)
}

.cp-content {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .7s .35s ease, transform .7s .35s var(--ez)
}

.cp-content.in {
    opacity: 1;
    transform: none
}

.cp-content-bar {
    height: 4px;
    background: linear-gradient(270deg, var(--td), var(--gold));
    transition: background .4s ease
}

.cp-panel {
    display: none;
    padding: 2.2rem 2.4rem 2rem;
    animation: panelIn .42s var(--ez)
}

.cp-panel.active {
    display: block
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.cp-panel-top {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    margin-bottom: 1.6rem
}

.cp-panel-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid
}

.cp-panel-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pi-gold {
    background: rgba(212, 175, 55, .1);
    border-color: rgba(212, 175, 55, .3)
}

.pi-gold svg {
    stroke: var(--gd)
}

.pi-teal {
    background: rgba(0, 99, 117, .08);
    border-color: rgba(0, 99, 117, .22)
}

.pi-teal svg {
    stroke: var(--td)
}

.pi-green {
    background: rgba(13, 110, 86, .08);
    border-color: rgba(13, 110, 86, .22)
}

.pi-green svg {
    stroke: #0F6E56
}

.pi-red {
    background: rgba(180, 40, 40, .08);
    border-color: rgba(180, 40, 40, .22)
}

.pi-red svg {
    stroke: #c0392b
}

.cp-panel-head {
    flex: 1
}

.cp-panel-std {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--td);
    display: block;
    margin-bottom: .32rem;
    font-weight: 600
}

.cp-panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink)
}

.cp-div {
    height: 1px;
    background: rgba(0, 99, 117, .1);
    margin-bottom: 1.5rem
}

.cp-panel-body {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(10, 42, 42, .72);
    line-height: 1.9;
    margin-bottom: 1.5rem
}

.cp-panel-body strong {
    color: var(--td);
    font-weight: 700
}

.cp-panel-tags {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.cp-ptag {
    font-family: var(--fm);
    font-size: 8.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 999px;
    font-weight: 600;
    background: rgba(0, 99, 117, .08);
    color: var(--td);
    border: 1px solid rgba(0, 99, 117, .18)
}

.cp-panel-list {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.cp-pl-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(10, 42, 42, .6);
    line-height: 1.65
}

.cp-pl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: .38rem
}

.cp-pl-item strong {
    color: var(--ink)
}

.cp-score-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--td);
    padding: .95rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem
}

.cp-sb-label {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap
}

.cp-sb-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .15);
    border-radius: 999px;
    overflow: hidden
}

.cp-sb-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .5), var(--gl));
    border-radius: 999px;
    width: 0;
    transition: width 1.8s var(--ez)
}

.cp-sb-fill.go {
    width: 100%
}

.cp-sb-num {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap
}

.faq {
    background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 60%, var(--c3) 100%);
    padding: 5.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.faq-hatch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(-42deg, rgba(156, 122, 34, .02) 0, rgba(156, 122, 34, .02) 1px, transparent 1px, transparent 32px), repeating-linear-gradient(48deg, rgba(156, 122, 34, .014) 0, rgba(156, 122, 34, .014) 1px, transparent 1px, transparent 46px);
    mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 20%, transparent 100%)
}

.faq-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: fg 5s ease-in-out infinite
}

@keyframes fg {

    0%,
    100% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08)
    }
}

.faq-corner {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 70px;
    height: 70px
}

.fc-tl {
    top: 2rem;
    right: 2rem;
    border-top: 1.5px solid rgba(156, 122, 34, .28);
    border-right: 1.5px solid rgba(156, 122, 34, .28)
}

.fc-br {
    bottom: 2rem;
    left: 2rem;
    border-bottom: 1.5px solid rgba(156, 122, 34, .28);
    border-left: 1.5px solid rgba(156, 122, 34, .28)
}

#faq-cv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.faq-hdr {
    text-align: center;
    margin-bottom: 3.5rem
}

.faq-ey {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gd);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease
}

.faq-ey::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(270deg, transparent, var(--gd))
}

.faq-ey.in {
    opacity: 1;
    transform: none
}

.faq-h2 {
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: .6rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .75s .08s ease, transform .75s .08s ease
}

.faq-h2 em {
    font-style: normal;
    color: var(--gd)
}

.faq-h2.in {
    opacity: 1;
    transform: none
}

.faq-sub {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink2);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s .15s ease, transform .7s .15s ease
}

.faq-sub.in {
    opacity: 1;
    transform: none
}

.faq-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 1.8rem 0 0;
    opacity: 0;
    transition: opacity .6s .22s ease
}

.faq-rule.in {
    opacity: 1
}

.fr-l {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(156, 122, 34, .28))
}

.fr-l.r {
    background: linear-gradient(90deg, rgba(156, 122, 34, .28), transparent)
}

.fr-g {
    width: 7px;
    height: 7px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--gold)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, .8);
    border: 1.5px solid rgba(156, 122, 34, .13);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s var(--ez), border-color .35s, box-shadow .35s, background .35s
}

.faq-item.in {
    opacity: 1;
    transform: none
}

.faq-item.open {
    background: #fff;
    border-color: rgba(156, 122, 34, .32);
    box-shadow: 0 16px 48px rgba(156, 122, 34, .1)
}

.faq-bar {
    height: 3px;
    background: linear-gradient(270deg, var(--td), var(--gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s var(--ez)
}

.faq-item.open .faq-bar {
    transform: scaleX(1)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    text-align: right;
    transition: background .25s
}

.faq-q:hover {
    background: rgba(156, 122, 34, .03)
}

.faq-item.open .faq-q {
    background: rgba(156, 122, 34, .04)
}

.faq-q-text {
    font-family: var(--fd);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    transition: color .3s;
    flex: 1
}

.faq-item.open .faq-q-text,
.faq-q:hover .faq-q-text {
    color: var(--gd)
}

.faq-chev {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(156, 122, 34, .08);
    border: 1.5px solid rgba(156, 122, 34, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s var(--ez)
}

.faq-chev svg {
    width: 14px;
    height: 14px;
    stroke: var(--gd);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: transform .4s var(--ez)
}

.faq-item.open .faq-chev {
    background: var(--gd);
    border-color: var(--gd);
    box-shadow: 0 0 12px rgba(156, 122, 34, .3)
}

.faq-item.open .faq-chev svg {
    stroke: #fff;
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ez)
}

.faq-item.open .faq-a {
    max-height: 300px
}

.faq-a-inner {
    padding: .2rem 1.8rem 1.8rem;
    border-top: 1px solid rgba(156, 122, 34, .1)
}

.faq-a-text {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(61, 46, 0, .7);
    line-height: 1.9;
    padding-top: 1rem
}

.faq-a-text strong {
    color: var(--ink);
    font-weight: 700
}

.faq-tags {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-top: .9rem
}

.faq-tag {
    font-family: var(--fm);
    font-size: 8.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 999px;
    font-weight: 600;
    background: rgba(156, 122, 34, .09);
    color: var(--gd);
    border: 1px solid rgba(156, 122, 34, .2)
}

.faq-tag.t-tl {
    background: rgba(0, 99, 117, .08);
    color: var(--td);
    border-color: rgba(0, 99, 117, .18)
}

.cta {
    background: var(--td);
    padding: 6.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    font-family: var(--fd)
}

.cta-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
    background-size: 54px 54px;
    animation: gridm 18s linear infinite
}

@keyframes gridm {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 54px 54px
    }
}

#cta-cv {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .13) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: gp 5s ease-in-out infinite
}

.cta-blob1,
.cta-blob2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.cta-blob1 {
    top: -100px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 65%);
    animation: blob1 9s ease-in-out infinite
}

.cta-blob2 {
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 65%);
    animation: blob2 7s ease-in-out infinite
}

@keyframes blob1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-20px, -20px)
    }
}

@keyframes blob2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(15px, 15px)
    }
}

.cta-corner {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    width: 70px;
    height: 70px
}

.cc-tl {
    top: 2.2rem;
    right: 2.2rem;
    border-top: 1.5px solid rgba(255, 255, 255, .2);
    border-right: 1.5px solid rgba(255, 255, 255, .2)
}

.cc-tr {
    top: 2.2rem;
    left: 2.2rem;
    border-top: 1.5px solid rgba(255, 255, 255, .2);
    border-left: 1.5px solid rgba(255, 255, 255, .2)
}

.cc-bl {
    bottom: 2.2rem;
    right: 2.2rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, .2);
    border-right: 1.5px solid rgba(255, 255, 255, .2)
}

.cc-br {
    bottom: 2.2rem;
    left: 2.2rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, .2);
    border-left: 1.5px solid rgba(255, 255, 255, .2)
}

.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3
}

.cta-live {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 1.2rem;
    opacity: 0;
    transition: opacity .6s ease;
    direction: ltr
}

.cta-live.in {
    opacity: 1
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7DD9A4;
    box-shadow: 0 0 6px #7DD9A4;
    animation: ldot 1.8s ease-in-out infinite
}

@keyframes ldot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(.5)
    }
}

.cta-ey {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease
}

.cta-ey::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: linear-gradient(270deg, transparent, rgba(255, 255, 255, .8))
}

.cta-ey.in {
    opacity: 1;
    transform: none
}

.cta-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.6rem;
    opacity: 0;
    transition: opacity .6s .1s ease
}

.cta-rule.in {
    opacity: 1
}

.cr-l {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22))
}

.cr-l.r {
    background: linear-gradient(90deg, rgba(255, 255, 255, .22), transparent)
}

.cr-g {
    width: 7px;
    height: 7px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, #F5DC7A, var(--gold))
}

.cta-h2 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -.01em;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s .12s ease, transform .8s .12s ease
}

.cta-h2 em {
    font-style: normal;
    font-weight: 700;
    color: var(--gl);
    text-shadow: 0 0 30px rgba(212, 175, 55, .45)
}

.cta-h2.in {
    opacity: 1;
    transform: none
}

.cta-p {
    font-size: 1.8rem;
    margin-top: 21px;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
    margin-bottom: 2.8rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s .22s ease, transform .7s .22s ease
}

.cta-p.in {
    opacity: 1;
    transform: none
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s .34s ease, transform .6s .34s ease
}

.cta-btns.in {
    opacity: 1;
    transform: none
}

.cta-trust {
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity .6s .46s ease
}

.cta-trust.in {
    opacity: 1
}

.ct-item {
    display: flex;
    align-items: center;
    gap: .45rem
}

.ct-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25)
}

.ct-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(13, 110, 86, .25);
    border: 1px solid rgba(13, 110, 86, .4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ct-check svg {
    width: 8px;
    height: 8px;
    stroke: #7DD9A4;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round
}


@media(max-width:768px) {
    .hero-content {
        max-width: 100%;
        padding: 110px 0 90px
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem)
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

@media(max-width:768px) {
    .hero-bg-img {
        filter: saturate(.8) brightness(.85) blur(2px);
    }

    .hero-content {
        max-width: 100%;
        padding: 128px 18px 120px;
        background: rgba(3, 15, 22, .5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 18px 0 0 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    }

    .hero-overlay {
        background:
            rgba(5, 25, 35, .55),
            linear-gradient(to bottom, rgba(3, 15, 22, .5) 0%, transparent 20%, transparent 75%, rgba(3, 15, 22, .55) 100%);
    }
}

.ft-scroll-btn {
    display: none;
}

@media(max-width:860px) {
    .ft-tabs-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .ft-tabs {
        flex: 1;
        min-width: 0;
    }

    .ft-scroll-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .12);
        border: 1.5px solid rgba(255, 255, 255, .32);
        color: #fff;
        flex-shrink: 0;
        cursor: pointer;
    }

    .ft-scroll-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media(max-width:680px) {
    .fn-box {
        justify-content: center;
        text-align: center;
    }
}

@media(max-width:740px) {
    .cp-content {
        min-height: unset;
    }

    .cp-panel {
        padding: 1.6rem 1.3rem 1.8rem;
    }

    .cp-panel-top {
        gap: .9rem;
        margin-bottom: 1.1rem;
    }

    .cp-panel-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .cp-panel-icon svg {
        width: 20px;
        height: 20px;
    }

    .cp-panel-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .cp-panel-std {
        font-size: 9px;
    }

    .cp-panel-body {
        font-size: .92rem;
        line-height: 1.75;
        margin-bottom: 1.1rem;
    }

    .cp-panel-tags {
        gap: .35rem;
        margin-bottom: 1.1rem;
    }

    .cp-ptag {
        font-size: 8px;
        padding: 3px 10px;
    }

    .cp-panel-list {
        gap: .55rem;
    }

    .cp-pl-item {
        font-size: .88rem;
        line-height: 1.55;
    }
}

@media(max-width:680px) {
    .faq-item.open .faq-a {
        max-height: 1000px
    }
}

@media(max-width:768px) {
    .faq-glow {
        animation: none !important;
        display: none !important;
    }

    .faq-item,
    .faq-item.open .faq-a {
        transition: none !important;
    }

    #faq-cv {
        display: none !important;
    }
}

@media(max-width:768px) {

    .ft-glow-tr,
    .ft-glow-bl {
        animation: none !important;
        display: none !important;
    }

    .ft-eyebrow,
    .ft-h2,
    .ft-tabs,
    .ft-card {
        transition: none !important;
    }

    #ft-canvas {
        display: none !important;
    }
}