:root {
    --navy: #0b1d35;
    --navy-mid: #112847;
    --navy-lt: #163558;
    --blue: #1a5fa8;
    --blue-br: #2171c2;
    --sky: #e8f3fc;
    --gold: #c9a84c;
    --gold-lt: #e8c97a;
    --white: #ffffff;
    --off: #f5f8fc;
    --td: #0d1f35;
    --tm: #3a5068;
    --ts: #6b84a0;
    --tp: #a8bdd0;
    --bd: rgba(11, 29, 53, 0.12);
    --bw: rgba(255, 255, 255, 0.10);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
    --r: 12px;
    --rl: 20px;
    --sh: 0 4px 24px rgba(11, 29, 53, 0.14);
    --shl: 0 12px 48px rgba(11, 29, 53, 0.22);
    --ease: cubic-bezier(.25, .46, .45, .94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--td);
    line-height: 1.65
}

img {
    max-width: 100%;
    height: auto
}


h1,
h2,
h3 {
    font-family: var(--serif)
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--off)
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px
}

/* NAV */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .4s var(--ease)
}

#nav.on,
#nav.menu-open {
    padding: 8px 0;
    background: rgba(11, 29, 53, .98);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3)
}

.nbrand img {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1)
}

@media(max-width: 767px) {
    .nbrand img {
        height: 26px
    }
}


.nbrand {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    letter-spacing: -.01em
}

.nbrand span {
    color: var(--gold-lt)
}

.nlink {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .68) !important;
    padding: 6px 13px !important;
    text-decoration: none;
    transition: color .3s
}

.nlink:hover,
.nlink.act {
    color: var(--white) !important
}

.nbtn {
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: .84rem;
    padding: 9px 22px !important;
    transition: all .3s
}

.nbtn:hover {
    background: var(--gold-lt);
    box-shadow: 0 4px 18px rgba(201, 168, 76, .4);
    transform: translateY(-1px)
}

.ntog {
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 6px 10px
}

.ntog-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

/* HERO */
#hero {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, #0e2d52 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
    width: 100%
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255, 255, 255, .016) 60px, rgba(255, 255, 255, .016) 61px)
}

.h-orb {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 95, 168, .28) 0%, transparent 65%);
    top: -180px;
    right: -140px;
    pointer-events: none
}

.h-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .77rem;
    font-weight: 600;
    color: var(--gold-lt);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px
}

.pdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s ease infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.htitle {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.07;
    letter-spacing: -.025em;
    margin-bottom: 22px
}

.htitle em {
    font-style: italic;
    color: var(--gold-lt)
}

.hsub {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, .6);
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 38px;
    line-height: 1.76
}

.hacts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.bcta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: .9rem;
    transition: all .3s var(--ease);
    border: none;
    cursor: pointer
}

.bcta:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, .42)
}

.bgh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .8) !important;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: all .3s
}

.bgh:hover {
    border-color: var(--gold);
    color: var(--gold-lt) !important
}

.hstats {
    margin-top: 50px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.hstat .sv {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1
}

.hstat .sl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px
}

/* Hero card */
.hcard {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--rl);
    backdrop-filter: blur(8px);
    padding: 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.hch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.hct {
    font-size: .77rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .08em;
    text-transform: uppercase
}

.hcv {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--gold-lt);
    border: 1px solid rgba(201, 168, 76, .38);
    border-radius: 100px;
    padding: 3px 10px;
}

.irow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    margin: 0 -14px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    border-left: 0 solid transparent;
}

.irow:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateX(10px);
    border-bottom-color: transparent;
    border-left: 3px solid var(--gold);
}

.irow:hover .in {
    color: var(--gold) !important;
}

.irow:last-of-type {
    border-bottom: none
}


.in {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    transition: color 0.3s;
}


.ic {
    font-size: .69rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px
}

.ibadge {
    font-size: .67rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px
}

.bg {
    background: rgba(52, 211, 153, .14);
    color: #6ee7b7
}

.ba {
    background: rgba(251, 191, 36, .14);
    color: #fcd34d
}

.bb {
    background: rgba(59, 143, 232, .16);
    color: #93c5fd
}

.iveri {
    font-size: .67rem;
    color: rgba(255, 255, 255, .32)
}

.iveri i {
    color: var(--gold);
    font-size: .62rem;
    margin-right: 3px
}

.hcf {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hctl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4)
}

.hcam {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold-lt)
}

.mchart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px
}

.mb {
    width: 5px;
    border-radius: 2px;
    background: rgba(201, 168, 76, .4)
}

.mb.a {
    background: var(--gold)
}

.fltcard {
    position: absolute;
    background: var(--white);
    border-radius: 11px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 28px rgba(11, 29, 53, .22);
    font-size: .77rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    animation: fly 5s ease-in-out infinite
}

.fltcard i {
    color: var(--blue);
    font-size: .95rem
}

.fc1 {
    bottom: 8px;
    left: -18px;
    animation-delay: 0s
}

.fc2 {
    top: -12px;
    right: -8px;
    animation-delay: 1.7s
}

@keyframes fly {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

/* MARQUEE */
.mqbar {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.mqtrack {
    display: flex;
    gap: 52px;
    animation: mq 26s linear infinite;
    width: max-content
}

.mqi {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .77rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap
}

.mqi i {
    color: var(--gold);
    font-size: .65rem
}

@keyframes mq {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* SECTIONS */
.sp {
    padding: 96px 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .71rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 13px
}

.eyebrow::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.eyw {
    color: var(--gold-lt)
}

.eyw::before {
    background: var(--gold)
}

.stitle {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 14px
}

.stw {
    color: var(--white)
}

.ssub {
    font-size: .98rem;
    color: var(--ts);
    max-width: 490px;
    font-weight: 300;
    line-height: 1.75
}

.ssubl {
    color: rgba(255, 255, 255, .52)
}

.rule {
    width: 38px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px 0
}

/* VERIFACTU */
#veri {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, #102643 100%);
    position: relative;
    overflow: hidden
}

#veri::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(26, 95, 168, .22) 0%, transparent 60%);
    pointer-events: none
}

.vbadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 168, 76, .38);
    border-radius: 8px;
    padding: 7px 15px;
    font-size: .77rem;
    font-weight: 600;
    color: var(--gold-lt);
    margin-bottom: 20px
}

.vlist {
    list-style: none;
    margin: 22px 0
}

.vlist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 13px;
    line-height: 1.55
}

.vlist li i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px
}

.vbox {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--rl);
    padding: 38px 28px;
    text-align: center
}

.sring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, .38);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative
}

.sring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .14)
}

.sring i {
    font-size: 2.5rem;
    color: var(--gold)
}

.vbox h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 5px
}

.vbox p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    margin: 0
}

.vkpi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px
}

.vkc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px;
    text-align: center
}

.vkc .kv {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-lt)
}

.vkc .kl {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 3px
}

/* FEATURES */
#features {
    background: var(--white);
    overflow: hidden;
    width: 100%
}


.fc {
    background: var(--white);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 28px 24px;
    height: 100%;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden
}

.fc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease)
}

.fc:hover {
    box-shadow: var(--sh);
    transform: translateY(-4px)
}

.fc:hover::after {
    transform: scaleX(1)
}

.fci {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: 16px;
    transition: all .3s
}

.fc:hover .fci {
    background: var(--blue);
    color: var(--white)
}

.fc.fcs {
    border-color: rgba(26, 95, 168, .28);
    background: linear-gradient(145deg, #eef6ff 0%, var(--white) 100%)
}

.fct {
    font-size: .98rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--td)
}

.fcd {
    font-size: .84rem;
    color: var(--ts);
    line-height: 1.7
}

/* HOW */
#how {
    background: var(--off)
}

.tlwrap {
    position: relative
}

.tlwrap::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--gold) 100%);
    border-radius: 2px
}

.tli {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 22px 0
}

.tln {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-lt);
    font-family: var(--serif);
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--off)
}

.tlb {
    background: var(--white);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 20px 22px;
    flex: 1;
    transition: box-shadow .3s
}

.tlb:hover {
    box-shadow: var(--sh)
}

.tlb h4 {
    font-size: .97rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--td)
}

.tlb p {
    font-size: .86rem;
    color: var(--ts);
    margin: 0
}

/* SERVICES */
#services {
    background: var(--white)
}

.sc {
    background: var(--white);
    border: 1px solid var(--bd);
    border-radius: var(--r);
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: all .3s var(--ease)
}

.sc:hover {
    box-shadow: var(--sh);
    transform: translateY(-4px);
    border-color: rgba(26, 95, 168, .2)
}

.sic {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    transition: transform .3s
}

.sc:hover .sic {
    transform: scale(1.06)
}

.s1 {
    background: #e8f3fc;
    color: var(--blue)
}

.s2 {
    background: #fef9ee;
    color: #b07d1a
}

.s3 {
    background: #edf7f2;
    color: #217a4e
}

.s4 {
    background: #f3eeff;
    color: #6b3fa0
}

.s5 {
    background: #fff3f3;
    color: #c0392b
}

.s6 {
    background: #e8f3fc;
    color: var(--blue)
}

.s7 {
    background: #fef9ee;
    color: #b07d1a
}

.s8 {
    background: #edf7f2;
    color: #217a4e
}

.sc h4 {
    font-size: .97rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--td)
}

.sc p {
    font-size: .84rem;
    color: var(--ts)
}

/* GALLERY */
#gallery {
    background: var(--off)
}

.gi {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--bd);
    transition: all .35s var(--ease);
    position: relative
}

.gi:hover {
    box-shadow: var(--shl);
    transform: translateY(-4px)
}

.gi img {
    width: 100%;
    display: block;
    transition: transform .4s var(--ease)
}

.gi:hover img {
    transform: scale(1.04)
}

.gov {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 29, 53, .75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px
}

.gi:hover .gov {
    opacity: 1
}

.gov h6 {
    font-size: .84rem;
    font-weight: 600;
    color: var(--white);
    margin: 0
}

.gov p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .62);
    margin: 0
}

/* TESTIMONIALS */
#testi {
    background: var(--navy)
}

.tc {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--rl);
    padding: 30px;
    height: 100%;
    transition: all .3s
}

.tc:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(201, 168, 76, .28)
}

.tstars {
    color: var(--gold);
    font-size: .83rem;
    margin-bottom: 13px;
    letter-spacing: 2px
}

.ttxt {
    font-size: .93rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px
}

.tauth {
    display: flex;
    align-items: center;
    gap: 11px
}

.tav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy-lt);
    border: 2px solid rgba(201, 168, 76, .38);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: .88rem;
    color: var(--gold-lt)
}

.tnam {
    font-size: .875rem;
    font-weight: 600;
    color: var(--white)
}

.trol {
    font-size: .73rem;
    color: rgba(255, 255, 255, .38)
}

/* PRICING */
#prices {
    background: var(--off);
    overflow: hidden;
    width: 100%
}


.ptog {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    font-size: .875rem;
    color: var(--ts)
}

.ptrk {
    width: 44px;
    height: 23px;
    background: rgba(26, 95, 168, .12);
    border: 1px solid rgba(26, 95, 168, .28);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background .3s
}

.ptrk input {
    display: none
}

.pknob {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--tp);
    top: 3px;
    left: 3px;
    transition: all .3s var(--ease);
    pointer-events: none
}

.ptrk input:checked~.pknob {
    background: var(--blue);
    left: 24px
}

.stag {
    background: rgba(26, 95, 168, .1);
    color: var(--blue);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: .69rem;
    font-weight: 600
}

.pcard {
    background: var(--white);
    border: 1px solid var(--bd);
    border-radius: var(--rl);
    padding: 34px;
    height: 100%;
    transition: all .35s var(--ease);
    position: relative
}

.pcard:hover {
    box-shadow: var(--shl);
    border-color: rgba(26, 95, 168, .18);
    transform: translateY(-4px)
}

.pfeat {
    background: var(--navy);
    border-color: rgba(201, 168, 76, .38)
}

.pfeat:hover {
    border-color: var(--gold)
}

.pbadge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--gold);
    color: var(--navy);
    font-size: .67rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 100px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.pplan {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ts);
    margin-bottom: 11px
}

.pfeat .pplan {
    color: rgba(255, 255, 255, .42)
}

.pamount {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 5px
}

.psym {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ts);
    margin-top: 8px
}

.pnum {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.04em
}

.pfeat .psym,
.pfeat .pnum {
    color: var(--gold-lt)
}

.pper {
    font-size: .77rem;
    color: var(--ts);
    align-self: flex-end;
    margin-bottom: 5px
}

.pfeat .pper {
    color: rgba(255, 255, 255, .4)
}

.pdesc {
    font-size: .83rem;
    color: var(--ts);
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bd)
}

.pfeat .pdesc {
    color: rgba(255, 255, 255, .48);
    border-bottom-color: rgba(255, 255, 255, .09)
}

.plist {
    list-style: none;
    margin-bottom: 28px
}

.plist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .875rem;
    color: var(--tm);
    margin-bottom: 8px
}

.plist li i {
    color: var(--blue);
    font-size: .84rem;
    flex-shrink: 0
}

.pfeat .plist li {
    color: rgba(255, 255, 255, .65)
}

.pfeat .plist li i {
    color: var(--gold)
}

.plist li.off {
    opacity: .28
}

.plist li.off i {
    color: var(--tp)
}

.bplan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: 9px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s
}

.bpo {
    border: 1px solid rgba(26, 95, 168, .28);
    color: var(--blue)
}

.bpo:hover {
    background: var(--sky);
    border-color: var(--blue);
    color: var(--blue)
}

.bpg {
    background: var(--gold);
    color: var(--navy)
}

.bpg:hover {
    background: var(--gold-lt);
    box-shadow: 0 4px 18px rgba(201, 168, 76, .38)
}

/* CTA */
#cta {
    background: linear-gradient(140deg, var(--navy-mid) 0%, var(--navy) 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

#cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(26, 95, 168, .22) 0%, transparent 65%);
    pointer-events: none
}

.ctitle {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 13px
}

.ctitle em {
    font-style: italic;
    color: var(--gold-lt)
}

.csub {
    font-size: .98rem;
    color: rgba(255, 255, 255, .52);
    max-width: 430px;
    margin: 0 auto 34px;
    font-weight: 300
}

/* CONTACT */
#contact {
    background: var(--white)
}

.cpanel {
    background: var(--white);
    border: 1px solid var(--bd);
    border-radius: var(--rl);
    padding: 42px;
    box-shadow: var(--sh)
}

.cpanel h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 22px
}

.flabel {
    display: block;
    font-size: .77rem;
    font-weight: 600;
    color: var(--tm);
    margin-bottom: 5px
}

.finput {
    width: 100%;
    border: 1px solid rgba(11, 29, 53, .14);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: .875rem;
    color: var(--td);
    font-family: var(--sans);
    background: var(--white);
    transition: all .3s;
    outline: none
}

.finput::placeholder {
    color: var(--tp)
}

.finput:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 168, .09)
}

textarea.finput {
    resize: vertical;
    min-height: 110px
}

.fg {
    margin-bottom: 15px
}

.cirow {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px
}

.ciic {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--sky);
    border: 1px solid rgba(26, 95, 168, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .95rem
}

.cilb {
    font-size: .71rem;
    color: var(--ts);
    font-weight: 500
}

.civl {
    font-size: .875rem;
    color: var(--td);
    font-weight: 500
}

.civl a {
    color: inherit;
    text-decoration: none
}

.civl a:hover {
    color: var(--blue)
}

/* FOOTER */
footer {
    background: var(--navy);
    padding: 52px 0 26px
}

.fbrand img {
    height: 30px;
    width: auto;
    margin-bottom: 12px;
    display: block
}


.fabout {
    font-size: .83rem;
    color: rgba(255, 255, 255, .42);
    margin-top: 9px;
    max-width: 255px;
    line-height: 1.7
}

.fhead {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 13px
}

.flink {
    display: block;
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    margin-bottom: 7px;
    transition: color .3s
}

.flink:hover {
    color: var(--gold-lt)
}

.fdiv {
    border-color: rgba(255, 255, 255, .08);
    margin: 34px 0 18px
}

.fcopy {
    font-size: .77rem;
    color: rgba(255, 255, 255, .28)
}

.fcopy a {
    color: rgba(255, 255, 255, .42);
    text-decoration: none
}

.fcopy a:hover {
    color: var(--gold-lt)
}

.fsoc {
    display: flex;
    gap: 7px;
    margin-top: 14px
}

.fsb {
    width: 31px;
    height: 31px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .42);
    text-decoration: none;
    font-size: .83rem;
    transition: all .3s
}

.fsb:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold)
}

/* SCROLL TOP */
#gtop {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    opacity: 0;
    transform: translateY(14px);
    transition: all .35s var(--ease);
    z-index: 999;
    box-shadow: 0 4px 14px rgba(26, 95, 168, .42)
}

#gtop.show {
    opacity: 1;
    transform: translateY(0)
}

#gtop:hover {
    background: var(--navy)
}

@media(max-width:991px) {

    .fc1,
    .fc2 {
        display: none
    }
}

@media(max-width:767px) {
    .sp {
        padding: 68px 0
    }

    .cpanel {
        padding: 26px 18px
    }

    .pcard {
        padding: 26px 20px
    }
}

/* UPGRADES SECTION - Enhanced */
.upgrades-box {
    background: #ffffff;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(11, 29, 53, 0.05), 0 0 0 1px rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    transition: all 0.5s ease;
}

.upgrades-box:hover {
    border-color: #c9a84c;
    box-shadow: 0 30px 80px rgba(201, 168, 76, 0.12);
}

.upgrades-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 100% 0%, rgba(201, 168, 76, 0.1), transparent 70%);
    pointer-events: none;
}

.upgrades-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0b1d35;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: -0.01em;
}

.upgrades-title i {
    color: #c9a84c;
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
}

.upgrade-item {
    background: #ffffff;
    border: 1px solid rgba(11, 29, 53, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.upgrade-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(11, 29, 53, 0.15);
    border-color: #c9a84c;
}

.upgrade-item i {
    font-size: 2.4rem;
    color: #1a5fa8;
    background: linear-gradient(135deg, #e8f3fc 0%, #d4e9f9 100%);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(26, 95, 168, 0.08);
}

.upgrade-item:hover i {
    background: linear-gradient(135deg, #1a5fa8 0%, #2171c2 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(26, 95, 168, 0.3);
}

.upgrade-item strong {
    display: block;
    font-size: 1.2rem;
    color: #0b1d35;
    margin-bottom: 8px;
    font-weight: 750;
    letter-spacing: -0.01em;
}

.upgrade-item p {
    font-size: 0.92rem;
    color: #6b84a0;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .upgrades-box {
        padding: 40px 20px;
    }
    
    .upgrade-item {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    
    .upgrade-item i {
        margin: 0 auto 20px;
    }
}
