:root {
    --blue: #283890;
    --blue-d: #1a2560;
    --blue-dd: #121a47;
    --blue-l: #3d52c4;
    --blue-soft: #5b6fd6;
    --orange: #FA9926;
    --orange-d: #e07d0c;
    --orange-l: #ffb44f;
    --ink: #172150;
    --muted: #5b6488;
    --paper: #fff;
    --sky: #EEF2FF;
    --sky-2: #E3EAFF;
    --cream: #FFF4E4;
    --line: #E5E9F6;
    --shadow: 0 22px 55px -25px rgba(28, 40, 104, .45);
    --shadow-sm: 0 12px 30px -16px rgba(28, 40, 104, .4);
    --r: 22px;
    --maxw: 1200px;
    --disp: 'Fredoka', system-ui, sans-serif;
    --body: 'Nunito', system-ui, sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-family: var(--disp);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0
}

p {
    line-height: 1.7;
    color: #475073;
    margin: 0
}

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

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

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px
}

.sec {
    padding: clamp(60px, 5vw, 106px) 0
}

.eyebrow {
    font-family: var(--disp);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--orange-d);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--cream);
    padding: .4rem .9rem;
    border-radius: 50px;
    border: 1px solid #FBE3C2
}

.eyebrow i {
    color: var(--orange)
}

.head {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center
}

.head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: .85rem 0 .7rem
}

.head p {
    font-size: 1.08rem
}

.blue-text {
    color: var(--blue)
}

.orange-text {
    color: var(--orange-d)
}

.btn-d {
    font-family: var(--disp);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
    padding: .95rem 1.7rem;
    border-radius: 60px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .28s cubic-bezier(.2, .7, .3, 1);
    position: relative;
    overflow: hidden;
    line-height: 1
}

.btn-d::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-22deg);
    transition: left .6s;
    pointer-events: none
}

.btn-d:hover::before {
    left: 150%
}

.b-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 16px 30px -14px rgba(250, 153, 38, .85)
}

.b-orange:hover {
    transform: translateY(-3px);
    background: var(--orange-d);
    color: #fff
}

.b-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 16px 30px -16px rgba(40, 56, 144, .8)
}

.b-blue:hover {
    transform: translateY(-3px);
    background: var(--blue-d);
    color: #fff
}

.b-wa {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 16px 30px -16px rgba(37, 211, 102, .8)
}

.b-wa:hover {
    transform: translateY(-3px);
    background: #1eb955;
    color: #fff
}

.b-ghost {
    background: #fff;
    color: var(--blue);
    border-color: #d9e0f4
}

.b-ghost:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px)
}

.b-light {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
    backdrop-filter: blur(4px)
}

.b-light:hover {
    background: #fff;
    color: var(--blue)
}

.b-sm {
    padding: .68rem 1.2rem;
    font-size: .9rem
}

/* TOPBAR v2 */
.topbar {
    background: linear-gradient(90deg, var(--blue-dd), var(--blue-d) 55%, var(--blue));
    color: #dfe4ff;
    font-size: .85rem;
    font-weight: 700;
    position: relative;
    z-index: 5
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .3rem 1.6rem;
    padding: 0 22px;
    min-height: 44px;
    flex-wrap: wrap
}

.topbar .tl {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    flex-wrap: wrap;
    min-height: 44px
}

.topbar .ti {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #dfe4ff;
    line-height: 1;
    white-space: nowrap
}

.topbar .ti i {
    color: var(--orange-l);
    font-size: .92em
}

.topbar a.ti:hover {
    color: #fff
}

.topbar .tr {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 44px
}

.topbar .tr .lab {
    color: #aeb8ee;
    font-weight: 700
}

.tsoc {
    display: flex;
    align-items: center;
    gap: .4rem
}

.tsoc a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dfe4ff;
    font-size: .85rem;
    transition: .22s
}

.tsoc a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px)
}

@media(max-width:760px) {
    .topbar .thide {
        display: none
    }
}

@media(max-width:600px) {
    .topbar .wrap {
        justify-content: center
    }

    .topbar .tl {
        justify-content: center
    }
}

@media(max-width:480px) {
    .topbar {
        font-size: .78rem
    }
}

/* NAV */
.nav {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--line);
    transition: .3s
}

.nav.scr {
    box-shadow: 0 10px 30px -18px rgba(28, 40, 104, .4)
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 22px;
    gap: 1.3rem;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-left: -6px
}

.brand img {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    box-shadow: 0 6px 16px -8px rgba(28, 40, 104, .5)
}

.brand .bt {
    font-family: var(--disp);
    font-weight: 600;
    line-height: 1;
    color: var(--blue);
    font-size: 1.04rem;
    white-space: nowrap
}

.brand .bt small {
    display: block;
    font-family: var(--body);
    font-weight: 800;
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange-d);
    margin-top: 3px
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    white-space: nowrap
}

.nlinks a {
    font-family: var(--disp);
    font-weight: 500;
    font-size: .9rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0
}

.nlinks a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0;
    background: var(--orange);
    border-radius: 3px;
    transition: .28s
}

.nlinks a:hover {
    color: var(--blue)
}

.nlinks a:hover::after {
    width: 100%
}

.ncta {
    display: flex;
    align-items: center;
    gap: .7rem
}

.ntog {
    display: none;
    background: var(--blue);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.2rem
}

@media(max-width:1080px) {

    .nlinks,
    .ncta .b-orange {
        display: none
    }

    .ntog {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }
}

.mm {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    background: #fff;
    z-index: 1060;
    transform: translateX(100%);
    transition: .35s cubic-bezier(.2, .7, .3, 1);
    padding: 24px 22px;
    overflow-y: auto;
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .4)
}

.mm.open {
    transform: none
}

.mm .mh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.mm .mh img {
    height: 46px;
    border-radius: 50%
}

.mm a {
    display: block;
    font-family: var(--disp);
    font-weight: 500;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--ink)
}

.mc {
    background: var(--sky);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--blue);
    font-size: 1.1rem
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 50, .5);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.scrim.open {
    opacity: 1;
    visibility: visible
}

/* animations */
@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-22px) rotate(8deg)
    }
}

@keyframes bob {

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

    50% {
        transform: translateY(-12px)
    }
}

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

@keyframes pulse {

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

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

@keyframes grad {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@keyframes drift {
    from {
        background-position: 0 0, 0 0
    }

    to {
        background-position: 104px 104px, 30px 30px
    }
}

.hero::after {
    animation: drift 30s linear infinite
}

.hero::before {
    animation: none
}

.hero .deco {
    z-index: 1
}

.deco {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

/* HERO v2 */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(125deg, #16205a 0%, #283890 52%, #3447a8 100%);
    background-size: 150% 150%;
    animation: grad 18s ease infinite;
    isolation: isolate
}

.hero::before {
    content: "";
    position: absolute;
    right: -8%;
    top: -30%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 153, 38, .30), transparent 62%);
    z-index: 0
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='104' height='104'><path d='M52 26c-7 0-11 5-16 5s-9-5-16-5c-9 0-13 9-12 19 1 9 5 13 7 23 2 9 8 10 10 1l3-13c1-4 6-4 7 0l3 13c2 9 8 8 10-1 2-10 6-14 7-23 1-10-3-19-10-19z' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='2'/></svg>"), radial-gradient(rgba(255, 255, 255, .08) 1.3px, transparent 1.3px);
    background-size: 104px 104px, 30px 30px;
    background-position: 0 0, 0 0;
    opacity: 1;
    z-index: 0
}

.hero .wrap {
    position: relative;
    z-index: 2;
    padding-top: clamp(44px, 6vw, 76px);
    padding-bottom: clamp(54px, 8vw, 92px)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 54px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-family: var(--disp);
    font-weight: 500;
    font-size: .85rem;
    color: #fff;
    margin-bottom: 1.1rem
}

.hero-badge i {
    color: var(--orange-l)
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 3.3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.12
}

.hero h1 .ln {
    display: block
}

.hero h1 .u {
    color: var(--orange-l)
}

.hero .lead {
    color: #dde3ff;
    font-size: 1.16rem;
    max-width: 35em;
    margin: 1.2rem 0 1.9rem
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 1.9rem
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.7rem;
    align-items: center
}

.hero-trust .ht {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    font-size: .95rem;
    color: #eef1ff
}

.hero-trust .ht i {
    color: var(--orange-l)
}

.hero-trust .stars {
    color: #FFC83D;
    letter-spacing: 1px
}

.hero-stack {
    position: relative;
    min-height: 430px
}

.h-main {
    position: relative;
    width: 84%;
    margin-left: auto;
    border-radius: 26px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .16);
    box-shadow: 0 40px 70px -28px rgba(0, 0, 0, .6);
    aspect-ratio: 4/3.4
}

.h-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hslide {
    position: absolute;
    inset: 0
}

.hslide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.07);
    transition: opacity 1.1s ease, transform 5.2s ease
}

.hslide img.on {
    opacity: 1;
    transform: scale(1)
}

.hdots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 3
}

.hdots b {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .3s;
    display: block
}

.hdots b.on {
    background: #fff;
    width: 22px;
    border-radius: 50px
}

.h-sub {
    position: absolute;
    left: 0;
    bottom: -26px;
    width: 46%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1
}

.h-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.h-mascot {
    position: absolute;
    right: -6px;
    top: -22px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: var(--shadow);
    animation: bob 4s ease-in-out infinite;
    z-index: 4
}

.h-mascot img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.fc {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 15px;
    padding: .65rem .9rem;
    box-shadow: var(--shadow);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800
}

.fc .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: .95rem;
    flex: none
}

.fc small {
    display: block;
    font-weight: 700;
    color: var(--muted);
    font-size: .68rem
}

.fc b {
    font-family: var(--disp);
    font-size: 1rem;
    line-height: 1
}

.fc-rate {
    right: -12px;
    bottom: 24%;
    animation: floaty 6s ease-in-out infinite
}

.fc-rate .ic {
    background: #FFC83D;
    color: #7a5500
}

.fc-open {
    left: -14px;
    top: 10%;
    animation: floaty 7s ease-in-out infinite .8s
}

.fc-open .ic {
    background: #25D366
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block
}

.mq-strip {
    background: var(--orange);
    overflow: hidden;
    position: relative
}

.mq-strip::before,
.mq-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55px;
    z-index: 2;
    pointer-events: none
}

.mq-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--orange), transparent)
}

.mq-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--orange), transparent)
}

.mq {
    display: flex;
    width: max-content;
    animation: mq 34s linear infinite;
    padding: 9px 0
}

.mq:hover {
    animation-play-state: paused
}

.mq .mi {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--disp);
    font-weight: 600;
    color: #fff;
    font-size: .92rem;
    padding: 0 20px;
    white-space: nowrap
}

.mq .mi i {
    font-size: .5rem;
    color: rgba(255, 255, 255, .8)
}

@keyframes mq {
    to {
        transform: translateX(-50%)
    }
}

@media(max-width:992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center
    }

    .hero-badge,
    .hero-cta,
    .hero-trust {
        justify-content: center
    }

    .hero .lead {
        margin-inline: auto
    }

    .hero-stack {
        max-width: 460px;
        margin: 0 auto
    }

    .h-main {
        width: 88%
    }
}

/* SERVICES detailed */
.svc {
    background: linear-gradient(180deg, var(--sky) 0%, #fff 55%)
}

.svc-cat {
    margin-bottom: 46px
}

.svc-cathead {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.cth-ic {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-l));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.55rem;
    flex: none;
    box-shadow: var(--shadow-sm)
}

.svc-cathead .ct-no {
    font-family: var(--disp);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange-d)
}

.svc-cathead h3 {
    font-size: 1.6rem;
    line-height: 1.1
}

.svc-cathead p {
    font-size: .92rem;
    margin-top: .15rem
}

.svc-cathead .ln {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--line), transparent);
    min-width: 40px
}

@media(max-width:600px) {
    .svc-cathead .ln {
        display: none
    }
}

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

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

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

.scard {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px 22px;
    overflow: hidden;
    transition: .32s;
    cursor: default
}

.scard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s
}

.scard::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 56, 144, .06), transparent 70%);
    transition: .4s
}

.scard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(250, 153, 38, .4)
}

.scard:hover::before {
    transform: scaleX(1)
}

.scard:hover::after {
    background: radial-gradient(circle, rgba(250, 153, 38, .16), transparent 70%)
}

.sc-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--sky);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 1.45rem;
    margin-bottom: 16px;
    transition: .35s;
    position: relative;
    z-index: 1
}

.scard:hover .sc-ic {
    background: var(--blue);
    color: #fff;
    transform: rotate(-8deg) scale(1.05)
}

.scard h4 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
    position: relative;
    z-index: 1
}

.scard p {
    font-size: .88rem;
    position: relative;
    z-index: 1
}

.sc-go {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--disp);
    font-weight: 600;
    font-size: .83rem;
    color: var(--orange-d);
    opacity: 0;
    transform: translateX(-6px);
    transition: .32s
}

.scard:hover .sc-go {
    opacity: 1;
    transform: none
}

.svc-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

@media(max-width:900px) {
    .svc-grid2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .svc-grid2 {
        grid-template-columns: 1fr
    }
}

.scard2 {
    background: linear-gradient(170deg, #F4F8FF 0%, #DCE6FF 100%);
    border: 1px solid #D5DFF8;
    border-radius: 20px;
    overflow: hidden;
    transition: .32s;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    box-shadow: var(--shadow-sm)
}

.scard2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(250, 153, 38, .5)
}

.sc-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0c1442
}

.sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s
}

.scard2:hover .sc-img img {
    transform: scale(1.09)
}

.sc-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 26, 71, .6))
}

.sc-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.sc-body h4 {
    font-size: 1.12rem;
    margin-bottom: .4rem;
    color: var(--blue)
}

.sc-body p {
    font-size: .87rem;
    margin-bottom: 1.15rem;
    flex: 1;
    color: var(--muted)
}

.sc-body .btn-d {
    align-self: flex-start
}

/* PITCH contained dark with image */
.pitchx {
    padding: clamp(40px, 6vw, 72px) 0
}

.pitchx.center {
    padding-top: 0;
}

.pitchx .pcard {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: #fff;
    isolation: isolate;
    box-shadow: var(--shadow)
}

.pitchx .pcard>img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2
}

.pitchx .pcard::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(18, 26, 71, .96) 0%, rgba(26, 37, 96, .86) 50%, rgba(40, 56, 144, .72) 100%)
}

.pitchx .pinner {
    padding: clamp(38px, 6vw, 70px) clamp(26px, 5vw, 64px);
    max-width: 720px
}

.pitchx.thin .pinner {
    padding: clamp(26px, 3.4vw, 40px) clamp(26px, 5vw, 58px)
}

.pitchx.thin h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.05rem)
}

.pitchx.thin p {
    font-size: 1rem;
    margin-bottom: 1.2rem
}

.pitchx.center .pinner {
    margin: 0 auto;
    text-align: center;
    max-width: 740px
}

.pitchx .eyebrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: var(--orange-l)
}

.pitchx .eyebrow i {
    color: var(--orange-l)
}

.pitchx h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    margin: .8rem 0 .6rem
}

.pitchx p {
    color: #d6dcff;
    font-size: 1.06rem;
    margin-bottom: 1.5rem
}

.pitchx .pcta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.pitchx.center .pcta {
    justify-content: center
}

.pitchx .ptrust {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.6rem;
    margin-top: 1.6rem;
    font-weight: 800;
    font-size: .92rem;
    color: #eef1ff
}

.pitchx.center .ptrust {
    justify-content: center
}

.pitchx .ptrust span {
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.pitchx .ptrust i {
    color: var(--orange-l)
}

.pitchx .ptrust .stars {
    color: #FFC83D
}

/* ABOUT v2 */
.about {
    background: linear-gradient(155deg, var(--blue-dd) 0%, var(--blue-d) 55%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
    color: #fff
}

.about::before {
    content: "\f5c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17rem;
    color: rgba(255, 255, 255, .045);
    z-index: 0
}

.about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    opacity: .7;
    z-index: 0
}

.about .wrap {
    position: relative;
    z-index: 1
}

.about h2 {
    color: #fff
}

.about-copy p {
    color: #cfd6ff
}

.about .eyebrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: var(--orange-l)
}

.about .eyebrow i {
    color: var(--orange-l)
}

.about .check li {
    color: #eef1ff
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 1.4rem 0 1.7rem
}

@media(max-width:520px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

.astat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    transition: .3s
}

.astat:hover {
    background: rgba(250, 153, 38, .16);
    border-color: rgba(250, 153, 38, .4);
    transform: translateY(-3px)
}

.astat b {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--orange-l);
    display: block;
    line-height: 1
}

.astat .stars {
    color: #FFC83D;
    font-size: 1rem;
    line-height: 1.3
}

.astat small {
    color: #cfd6ff;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-top: .32rem;
    display: block
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.06fr;
    gap: 56px;
    align-items: center
}

.about-media {
    position: relative
}

.about-media .am {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 6px solid #fff
}

.about-media .am img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.about-media .am2 {
    position: absolute;
    right: -20px;
    bottom: -28px;
    width: 190px;
    height: 190px;
    border-radius: 22px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow)
}

.about-media .am2 img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-media .badgey {
    position: absolute;
    left: -22px;
    top: 24px;
    background: #fff;
    border-radius: 16px;
    padding: .7rem 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3
}

.about-media .badgey i {
    color: var(--orange);
    font-size: 1.5rem
}

.about-media .badgey b {
    font-family: var(--disp);
    font-size: 1rem;
    display: block;
    line-height: 1
}

.about-media .badgey small {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700
}

.check {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.7rem;
    display: grid;
    gap: .7rem
}

.check li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-weight: 700;
    color: #2f3a63
}

.check i {
    color: #fff;
    background: var(--orange);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .7rem;
    flex: none;
    margin-top: 2px
}

.about .tagq {
    margin: 1.3rem 0 1.5rem;
    padding: 14px 20px;
    border-left: 4px solid var(--orange);
    background: var(--cream);
    border-radius: 0 14px 14px 0;
    font-family: var(--disp);
    font-weight: 500;
    color: var(--blue);
    font-size: 1.05rem
}

@media(max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 64px
    }

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

/* STATS band */
.stats {
    background: linear-gradient(180deg, #fff, var(--sky))
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

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

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    transition: .32s;
    position: relative;
    overflow: hidden
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(250, 153, 38, .4)
}

.stat .si {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-l));
    transition: .35s
}

.stat:hover .si {
    background: linear-gradient(135deg, var(--orange), var(--orange-l))
}

.stat b {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--blue);
    line-height: 1;
    display: block
}

.stat .stars {
    color: #FFC83D;
    font-size: 1.4rem;
    line-height: 1
}

.stat small {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 800;
    margin-top: .35rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: .04em
}

/* CONDITIONS */
.cond {
    background: #fff;
    position: relative;
    overflow: hidden
}

.cond-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

@media(max-width:820px) {
    .cond-grid {
        grid-template-columns: 1fr
    }
}

.ccard {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 22px;
    transition: .3s
}

.ccard:nth-child(4n+1) {
    background: #FFF4E4;
    border-color: #FBE3C2
}

.ccard:nth-child(4n+2) {
    background: #EDF2FF;
    border-color: #D8E1FB
}

.ccard:nth-child(4n+3) {
    background: #E8FAF0;
    border-color: #C7EAD6
}

.ccard:nth-child(4n) {
    background: #FDEEF1;
    border-color: #F7D3DA
}

.ccard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm)
}

.cc-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: var(--blue);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: .32s
}

.ccard:hover .cc-ic {
    background: var(--orange);
    color: #fff
}

.ccard h4 {
    font-size: 1.08rem;
    margin-bottom: .2rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.cc-sol {
    font-size: .88rem;
    color: #475073
}

.cc-sol b {
    color: var(--blue);
    font-weight: 800
}

.cond .cnote {
    text-align: center;
    margin-top: 34px
}

/* RESULTS */
.results {
    background: linear-gradient(140deg, var(--blue-d), var(--blue));
    color: #fff;
    position: relative;
    overflow: hidden
}

.results .head h2 {
    color: #fff
}

.results .head p {
    color: #cfd6ff
}

.results .eyebrow {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: var(--orange-l)
}

.results .eyebrow i {
    color: var(--orange-l)
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

@media(max-width:860px) {
    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin: 0 auto
    }
}

.ba-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    padding: 14px;
    transition: .32s
}

.ba-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .1)
}

.ba-card .bim {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1.02;
    background: #0c1442
}

.ba-card .bim img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ba-card .bb {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: #fff;
    font-family: var(--disp);
    font-weight: 600;
    font-size: .72rem;
    padding: .3rem .7rem;
    border-radius: 50px
}

.ba-card .bb.aft {
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    background: #25D366
}

.ba-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 14px 4px 2px;
    line-height: 28px;
}

.ba-card p {
    color: #cfd6ff;
    font-size: .85rem;
    margin: 0 4px 8px
}

.results .disc {
    text-align: center;
    color: #aab4ee;
    font-size: .82rem;
    margin-top: 26px
}

/* WHY */
.why {
    background: #fff
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

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

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

.wcard {
    background: linear-gradient(180deg, #fff, var(--sky));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 26px;
    transition: .32s;
    position: relative;
    overflow: hidden
}

.wcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.wcard .wic {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-l));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: .35s
}

.wcard:hover .wic {
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    transform: rotate(-8deg) scale(1.06)
}

.wcard h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem
}

.wcard p {
    font-size: .93rem
}

.wcard .wn {
    position: absolute;
    right: 18px;
    top: 14px;
    font-family: var(--disp);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--sky-2);
    z-index: 0
}

.wcard:hover .wn {
    color: #FCE6C8
}

/* KIDS */
.kids {
    background: linear-gradient(160deg, var(--cream), #fff);
    position: relative;
    overflow: hidden
}

.kids-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 50px;
    align-items: center
}

@media(max-width:900px) {
    .kids-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.kids-photos {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.kids-photos .kp {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid #fff
}

.kids-photos .kp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4
}

.kids-photos .kp:first-child {
    margin-top: 34px
}

.kids .eyebrow {
    background: #fff;
    border-color: #FBE3C2
}

.kids ul.check i {
    background: var(--blue)
}

/* GALLERY 4x2 */
.gallery {
    background: var(--blue-d)
}

.gallery .head h2 {
    color: #fff
}

.gallery .head p {
    color: #cfd6ff
}

.gallery .eyebrow {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: var(--orange-l)
}

.ggrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

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

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

.gt {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0c1442;
    aspect-ratio: 1/1
}

.gt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s
}

.gt:hover img {
    transform: scale(1.1)
}

.gt::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(12, 20, 66, .72));
    opacity: 0;
    transition: .3s
}

.gt:hover::after {
    opacity: 1
}

.gt .gtag {
    position: absolute;
    left: 12px;
    bottom: 11px;
    z-index: 2;
    color: #fff;
    font-family: var(--disp);
    font-weight: 600;
    font-size: .8rem;
    opacity: 0;
    transform: translateY(8px);
    transition: .3s
}

.gt:hover .gtag {
    opacity: 1;
    transform: none
}

/* LOCATION */
.loc {
    background: #fff
}

.loc-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: stretch
}

@media(max-width:900px) {
    .loc-grid {
        grid-template-columns: 1fr
    }
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 6px solid #fff;
    min-height: 380px;
    position: relative
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block
}

.loc-card {
    background: linear-gradient(160deg, var(--blue-d), var(--blue));
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.loc-card::before {
    content: "\f5c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 10rem;
    color: rgba(255, 255, 255, .05)
}

.loc-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem
}

.lrow {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.lrow .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(250, 153, 38, .18);
    border: 1px solid rgba(250, 153, 38, .4);
    display: grid;
    place-items: center;
    color: var(--orange-l);
    flex: none
}

.lrow b {
    font-family: var(--disp);
    font-weight: 600;
    display: block;
    font-size: 1rem
}

.lrow span,
.lrow a {
    color: #cfd6ff;
    font-size: .92rem
}

.lrow a:hover {
    color: var(--orange-l)
}

.loc-card .btn-d {
    position: relative;
    z-index: 1;
    margin-top: .4rem
}

/* REVIEWS */
.reviews {
    background: var(--sky)
}

.rev-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 36px;
    align-items: start
}

@media(max-width:960px) {
    .rev-layout {
        grid-template-columns: 1fr;
        gap: 26px
    }
}

.rev-aside {
    position: sticky;
    top: 96px;
    background: linear-gradient(150deg, var(--blue), var(--blue-l));
    color: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    overflow: hidden
}

@media(max-width:960px) {
    .rev-aside {
        position: static;
        text-align: center
    }
}

.rev-aside::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 153, 38, .35), transparent 70%)
}

.rev-aside .gb {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px
}

@media(max-width:960px) {
    .rev-aside .gb {
        margin: 0 auto 16px
    }
}

.rev-aside .score {
    position: relative;
    z-index: 1;
    font-family: var(--disp);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: #fff
}

.rev-aside .stars {
    position: relative;
    z-index: 1;
    color: #FFC83D;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: .3rem 0 .5rem
}

.rev-aside p {
    position: relative;
    z-index: 1;
    color: #d3daff;
    font-size: .9rem;
    margin-bottom: 1.3rem
}

.rev-aside .btn-d {
    position: relative;
    z-index: 1;
    width: 100%
}

.rev-mason {
    column-count: 2;
    column-gap: 18px
}

@media(max-width:600px) {
    .rev-mason {
        column-count: 1
    }
}

.rcard {
    break-inside: avoid;
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: .3s
}

.rcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.rcard.feat {
    background: linear-gradient(150deg, #fff, var(--cream));
    border-color: #FBE3C2
}

.rtop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: .5rem
}

.rav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--disp);
    font-weight: 700;
    font-size: 1.1rem;
    flex: none
}

.rid b {
    font-family: var(--disp);
    font-size: .97rem;
    display: block;
    line-height: 1.2
}

.rid small {
    color: var(--muted);
    font-size: .76rem
}

.rtop .gm {
    margin-left: auto
}

.rstars {
    color: #FBBC04;
    font-size: .9rem;
    letter-spacing: 1px;
    margin-bottom: .5rem
}

.rstars .rt {
    color: var(--muted);
    font-size: .75rem;
    margin-left: .4rem;
    letter-spacing: 0
}

.rtext {
    font-size: .92rem;
    color: #414a70;
    line-height: 1.65;
    margin: 0 0 .9rem
}

.rfoot {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .75rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: .75rem
}

.rfoot i {
    color: #34A853
}

/* APPOINTMENT */
.appt {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-l) 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.appt::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 153, 38, .25), transparent 70%)
}

.appt-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

@media(max-width:900px) {
    .appt-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.appt h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem)
}

.appt .lead {
    color: #d3daff;
    margin: .9rem 0 1.5rem;
    font-size: 1.05rem
}

.appt-contacts {
    display: grid;
    gap: .9rem
}

.appt-contacts a {
    display: flex;
    gap: .85rem;
    align-items: center;
    color: #fff
}

.appt-contacts .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    color: var(--orange-l);
    flex: none
}

.appt-contacts b {
    font-family: var(--disp);
    display: block;
    font-size: 1rem
}

.appt-contacts small {
    color: #cfd6ff;
    font-size: .82rem
}

.fcard {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55)
}

.fhead {
    background: #172150;
    padding: 22px 30px;
    color: #fff
}

.fhead h3 {
    color: #fff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.fhead p {
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: .86rem;
    margin-top: .2rem
}

.fbody {
    padding: 26px 30px 30px
}

.fbody label {
    font-family: var(--disp);
    font-weight: 500;
    font-size: .82rem;
    color: var(--ink);
    margin-bottom: .3rem;
    display: block
}

.fbody .form-control,
.fbody .form-select {
    border: 1.6px solid var(--line);
    border-radius: 13px;
    padding: .72rem .9rem;
    font-size: .93rem;
    font-family: var(--body);
    font-weight: 600;
    color: var(--ink);
    background: #fbfcff
}

.fbody .form-control:focus,
.fbody .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 .2rem rgba(250, 153, 38, .22);
    background: #fff
}

.fbody .note {
    font-size: .76rem;
    color: var(--muted);
    margin-top: .9rem;
    display: flex;
    gap: .4rem;
    align-items: flex-start;
    font-weight: 700
}

.fbody .note i {
    color: #25D366;
    margin-top: 2px
}

/* FAQ */
.faq {
    background: var(--sky)
}

.faq-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: start
}

@media(max-width:900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }
}

.faq-aside {
    position: sticky;
    top: 96px
}

@media(max-width:900px) {
    .faq-aside {
        position: static
    }
}

.faq-aside .fbox {
    background: linear-gradient(150deg, var(--orange), var(--orange-l));
    color: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.faq-aside .fbox::before {
    content: "\f059";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -16px;
    bottom: -22px;
    font-size: 9rem;
    color: rgba(255, 255, 255, .14)
}

.faq-aside h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: .5rem
}

.faq-aside p {
    color: rgba(255, 255, 255, .92);
    font-size: .95rem;
    margin-bottom: 1.3rem
}

.faq-aside .btn-d {
    position: relative;
    z-index: 1
}

.fitem {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 13px;
    overflow: hidden;
    transition: .3s
}

.fitem.open {
    box-shadow: var(--shadow-sm);
    border-color: rgba(250, 153, 38, .5)
}

.fq {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 19px 22px;
    font-family: var(--disp);
    font-weight: 500;
    font-size: 1.04rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    cursor: pointer
}

.fq .p {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--blue);
    display: grid;
    place-items: center;
    transition: .3s;
    font-size: .85rem
}

.fitem.open .p {
    background: var(--orange);
    color: #fff;
    transform: rotate(45deg)
}

.fa-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 22px
}

.fitem.open .fa-ans {
    max-height: 340px;
    padding: 0 22px 19px
}

.fa-ans p {
    font-size: .94rem
}

/* FOOTER */
.foot {
    background: #0c1230;
    color: #aab2d6;
    padding-top: 62px
}

.foot .fg {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 34px;
    padding-bottom: 42px
}

@media(max-width:820px) {
    .foot .fg {
        grid-template-columns: 1fr 1fr
    }
}

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

.foot .fb {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 14px
}

.foot .fb img {
    height: 54px;
    width: 54px;
    border-radius: 50%
}

.foot .fb b {
    font-family: var(--disp);
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.1
}

.foot .fb small {
    display: block;
    color: var(--orange-l);
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 3px
}

.foot p {
    font-size: .9rem;
    color: #8b94bd
}

.foot h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px
}

.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem
}

.foot ul a {
    color: #8b94bd;
    font-size: .9rem;
    transition: .2s
}

.foot ul a:hover {
    color: var(--orange-l)
}

.foot .fc-li {
    display: flex;
    gap: .6rem;
    font-size: .9rem;
    color: #8b94bd;
    align-items: flex-start
}

.foot .fc-li i {
    color: var(--orange-l);
    margin-top: 3px;
    width: 15px
}

.fsoc {
    display: flex;
    gap: .6rem;
    margin-top: 14px
}

.fsoc a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-items: center;
    color: #cfd6ff;
    transition: .25s
}

.fsoc a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px)
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    text-align: center;
    font-size: .83rem;
    color: #6f78a3
}

/* floating */
.fwa {
    position: fixed;
    right: 18px;
    bottom: 84px;
    z-index: 1035;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow);
    animation: pulse 2.6s ease-in-out infinite
}

.fwa:hover {
    transform: scale(1.08);
    color: #fff;
    animation: none
}

.mobar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: none;
    background: #fff;
    box-shadow: 0 -10px 30px -18px rgba(0, 0, 0, .4);
    padding: 8px;
    gap: 8px;
    border-top: 1px solid var(--line)
}

.mobar a {
    flex: 1;
    border-radius: 13px;
    padding: .72rem;
    font-family: var(--disp);
    font-weight: 600;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem
}

.mobar .mca {
    background: var(--blue);
    color: #fff
}

.mobar .mwa {
    background: #25D366;
    color: #fff
}

.mobar .mbk {
    background: var(--orange);
    color: #fff
}

@media(max-width:992px) {
    .mobar {
        display: flex
    }

    body {
        padding-bottom: 66px
    }
}

.rev {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1)
}

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

.about-media .am img {
    transition: .6s
}

.about-media:hover .am img {
    transform: scale(1.05)
}

.h-sub img {
    transition: .6s
}

.hero-stack:hover .h-sub img {
    transform: scale(1.06)
}

@media(prefers-reduced-motion:reduce) {
    .rev {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero,
    .h-mascot,
    .deco,
    .fwa {
        animation: none !important
    }
}

@media(max-width:768px) {
    .rev-aside::before {
        display: none;
    }

    .hslide {
        position: relative;
    }

    .hslide img {
        position: relative;
    }

    .h-sub {
        display: none;
    }

    .hslide img {
        opacity: 1;
    }

    .hero-grid {
        gap: 20px;
    }

    .rev {
        opacity: 1;
    }

    .hero-trust {
        display: none;
    }

    .hdots {
        display: none;
    }

    .topbar {
        display: none;
    }

    .h-main {
        width: 100%;
    }

    .hero-stack {
        min-height: 100%;
    }

    .fwa {
        display: none;
    }

    .wrap {
        padding: 0 15px;
    }

    .about-media .am img {
        height: 300px;
        width: 310px;
    }

    .about-media .badgey {
        display: none;
    }

    .about-media .am2 {
        display: none;
    }

    .kids-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .map-wrap {
        min-height: 250px;
    }

    .map-wrap iframe {
        min-height: 100%;
    }

    .about-grid {
        flex-direction: column-reverse;
        display: flex;
    }
}