@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #171427;
    --muted: #6c6980;
    --paper: #fffdfa;
    --violet: #7c3aed;
    --pink: #ec4899;
    --amber: #f59e0b;
    --cyan: #06b6d4;
    --green: #10b981;
    --red: #ef4444;
    --emerald: #10B981;
    --line: rgba(35, 25, 68, .1);
    --shadow: 0 20px 60px rgba(50, 30, 94, .12);
    --radius: 28px;
    --paper: #FBF9FF;
    --grad-main: linear-gradient(120deg, var(--violet), var(--pink) 45%, var(--amber) 100%);
    --grad-cool: linear-gradient(120deg, var(--cyan), var(--violet));
    --grad-warm: linear-gradient(120deg, var(--pink), var(--red));
    --grad-full: linear-gradient(120deg, var(--violet), var(--pink), var(--amber), var(--cyan), var(--emerald));
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    overflow-x: hidden
}

.display-font,
h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: Outfit, Arial, sans-serif
}

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

img {
    max-width: 100%
}

.section {
    padding: 80px 0;
    position: relative
}

.section-sm {
    padding: 60px 0
}

.eyebrow {
    align-items: center;
    color: var(--violet);
    display: flex;
    font-size: .73rem;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.eyebrow:before {
    background: linear-gradient(90deg, var(--violet), var(--pink));
    border-radius: 999px;
    content: "";
    height: 7px;
    width: 27px
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: 1.02;
    margin: 16px 0 18px
}

.section-copy {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 570px
}

.text-gradient {
    background: linear-gradient(95deg, #8b37ee 5%, #e93c9b 45%, #f19a17 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.gradient-text-alt {
    background: linear-gradient(90deg, #00b8d4, #0fc17e, #e7b217);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.btn {
    align-items: center;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    letter-spacing: .025em;
    padding: 15px 21px;
    position: relative;
    transition: .3s
}

.btn-gradient {
    background: linear-gradient(125deg, var(--violet), var(--pink) 55%, #f2931d);
    background-size: 180%;
    box-shadow: 0 12px 25px rgba(180, 58, 171, .26);
    color: #fff
}

.btn-gradient:hover {
    background-position: 100%;
    box-shadow: 0 15px 32px rgba(180, 58, 171, .36);
    color: #fff;
    transform: translateY(-3px)
}

.btn-light {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .09)
}

.btn-light:hover {
    color: var(--violet);
    transform: translateY(-3px)
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--violet)
}

.btn-ghost {
    background: #f2effa;
    color: var(--violet)
}

.btn-ghost:hover {
    background: #e9e1ff;
    color: var(--violet);
    transform: translateY(-2px)
}

/* loader / cursor */
.page-loader {
    align-items: center;
    background: #171427;
    display: flex;
    height: 100vh;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 10000
}

.loader-mark {
    height: 72px;
    position: relative;
    width: 72px
}

.loader-mark:before,
.loader-mark:after {
    border: 4px solid transparent;
    border-radius: 50%;
    content: "";
    inset: 0;
    position: absolute
}

.loader-mark:before {
    border-top-color: var(--pink);
    border-right-color: var(--amber);
    animation: spin .8s linear infinite
}

.loader-mark:after {
    border-bottom-color: var(--cyan);
    inset: 13px;
    animation: spin 1.1s linear reverse infinite
}

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

.cursor-dot,
.cursor-ring {
    border-radius: 50%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 10001
}

.cursor-dot {
    background: var(--pink);
    height: 7px;
    width: 7px
}

.cursor-ring {
    border: 1px solid rgba(236, 72, 153, .55);
    height: 32px;
    transition: width .22s, height .22s, background .22s;
    width: 32px
}

.cursor-grow {
    background: rgba(236, 72, 153, .12);
    height: 48px;
    width: 48px
}

@media(pointer:coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none
    }
}

/* navbar */
.progress-line {
    background: linear-gradient(90deg, var(--violet), var(--pink), var(--amber), var(--cyan));
    height: 3px;
    left: 0;
    position: fixed;
    top: 0;
    width: 0;
    z-index: 9999
}

.site-nav {
    background: transparent;
    left: 0;
    padding: 8px 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .35s;
    z-index: 1000
}

.site-nav.fixed {
    background: rgba(255, 253, 250, .9);
    box-shadow: 0 8px 28px rgba(37, 20, 68, .08);
    backdrop-filter: blur(16px);
    position: fixed
}

.navbar-brand {
    align-items: center;
    display: inline-flex;
    margin: 0
}

.brand-logo {
    background: #fff;
    border-radius: 12px;
    object-fit: contain;
    padding: 8px 12px;
    width: 170px;
}

.nav-link {
    color: rgba(255, 255, 255, .86) !important;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .035em;
    margin: 0 8px;
    padding: 8px 12px !important;
    position: relative
}

.fixed .nav-link,
.inner-nav .nav-link {
    color: var(--ink) !important
}

.nav-link:after {
    background: currentColor;
    bottom: 3px;
    content: "";
    height: 2px;
    left: 4px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s;
    width: calc(100% - 8px)
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1)
}

.nav-cta {
    font-size: .72rem;
    padding: 12px 17px
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    color: #fff !important
}

.fixed .navbar-toggler,
.inner-nav .navbar-toggler {
    color: var(--ink) !important
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1)
}

.fixed .navbar-toggler-icon,
.inner-nav .navbar-toggler-icon {
    filter: none
}

@media(max-width:991px) {
    .site-nav {
        padding: 13px 0
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow);
        margin-top: 12px;
        padding: 13px 18px
    }

    .nav-link {
        color: var(--ink) !important;
        margin: 2px 0
    }

    .nav-cta {
        margin: 8px 0 3px
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1)
    }

    .navbar-collapse .btn {
        width: 100%
    }
}

/* hero */
.hero {
    align-items: center;
    background: #251653;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding: 125px 0 55px;
    position: relative
}

.hero:before {
    background: linear-gradient(90deg, rgba(20, 11, 45, .93) 0%, rgba(35, 19, 76, .78) 39%, rgba(74, 18, 93, .29) 72%, rgba(239, 72, 153, .2));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1
}

.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=2200&q=90');
    background-position: center;
    background-size: cover;
    inset: 0;
    position: absolute;
    opacity: .92
}

.hero:after {
    background: radial-gradient(circle at 18% 21%, rgba(244, 152, 20, .45), transparent 21%), radial-gradient(circle at 78% 70%, rgba(6, 182, 212, .37), transparent 25%);
    content: "";
    inset: 0;
    mix-blend-mode: screen;
    position: absolute;
    z-index: 1
}

.hero .container {
    position: relative;
    z-index: 2
}

/* .hero-content {
    max-width: 770px
} */

.hero .eyebrow {
    color: #f6d9ff
}

.hero .eyebrow:before {
    background: linear-gradient(90deg, #f5c01d, #ed53c2)
}

.hero h1 {
    color: #fff;
    font-size: clamp(3.2rem, 5.5vw, 5.9rem);
    font-weight: 700;
    /* letter-spacing: -.072em;
    line-height: .96; */
    margin: 18px 0 28px
}

.hero h1 em {
    color: #ffcf45;
    font-style: normal
}

.hero-copy {
    color: rgba(255, 255, 255, .8);
    font-size: clamp(.97rem, 1.25vw, 1.15rem);
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px
}

.hero-trust {
    align-items: center;
    color: rgba(255, 255, 255, .78);
    display: flex;
    font-size: .74rem;
    font-weight: 700;
    gap: 13px;
    margin-top: 45px
}

.avatar-stack {
    display: flex
}

.avatar-stack img {
    border: 2px solid #3d1d67;
    border-radius: 50%;
    height: 34px;
    margin-left: -8px;
    object-fit: cover;
    width: 34px
}

.avatar-stack img:first-child {
    margin-left: 0
}

.hero-info-card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
    bottom: 8%;
    color: #fff;
    padding: 17px;
    position: absolute;
    right: 4%;
    width: 190px;
    z-index: 3;
    backdrop-filter: blur(12px);
    animation: float 4s ease-in-out infinite
}

.hero-info-card span {
    display: block;
    font-size: .7rem;
    letter-spacing: .08em;
    opacity: .7;
    text-transform: uppercase
}

.hero-info-card strong {
    display: block;
    font-family: Outfit;
    font-size: 1.6rem;
    margin: 3px 0
}

.hero-info-card small {
    color: #ffd247
}

.album-float {
    bottom: 6%;
    height: 300px;
    position: absolute;
    right: 16%;
    transform: rotate(-12deg);
    width: 230px;
    z-index: 2;
    animation: albumFloat 5s ease-in-out infinite
}

.album-float img {
    border: 10px solid #f7f1e6;
    border-radius: 7px;
    box-shadow: -20px 28px 35px rgba(9, 0, 30, .38);
    height: 100%;
    object-fit: cover;
    width: 100%
}

.album-float:after {
    background: #e7c193;
    border-radius: 0 0 6px 6px;
    bottom: -13px;
    box-shadow: -20px 29px 34px rgba(9, 0, 30, .28);
    content: "";
    height: 13px;
    left: 0;
    position: absolute;
    width: 100%
}

@keyframes float {
    50% {
        transform: translateY(-16px)
    }
}

@keyframes albumFloat {
    50% {
        transform: translateY(-19px) rotate(-9deg)
    }
}

.scroll-indicator {
    bottom: 25px;
    color: rgba(255, 255, 255, .7);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    position: absolute;
    text-transform: uppercase;
    z-index: 2
}

.scroll-indicator:after {
    background: #fff;
    border-radius: 999px;
    content: "";
    display: block;
    height: 42px;
    margin: 10px auto 0;
    width: 1px
}

@media(max-width:991px) {
    .hero {
        min-height: 820px
    }

    .album-float {
        height: 230px;
        right: 12%;
        width: 175px
    }

    .hero-info-card {
        bottom: 6%;
        right: 3%
    }
}

@media(max-width:575px) {
    .hero {
        min-height: 780px;
        padding-bottom: 125px
    }

    .hero h1 {
        font-size: 3.25rem
    }

    .hero-info-card,
    .album-float {
        display: none
    }

    .hero-trust {
        margin-top: 33px
    }

    .scroll-indicator {
        display: none
    }
}

/* accent and stats */
.color-orb {
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
    position: absolute
}

.orb-pink {
    background: linear-gradient(140deg, #f6a9d6, #ec4899);
    height: 260px;
    opacity: .22;
    right: -100px;
    top: 10%;
    width: 260px
}

.orb-cyan {
    background: linear-gradient(140deg, #72e4f1, #06b6d4);
    bottom: 8%;
    height: 210px;
    left: -120px;
    opacity: .18;
    width: 210px
}

.stats-wrap {
    margin-top: -73px;
    position: relative;
    z-index: 5
}

.stat-card {
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(29, 17, 64, .11);
    height: 100%;
    padding: 26px 20px;
    backdrop-filter: blur(15px);
    transition: .3s
}

.stat-card:hover {
    transform: translateY(-7px)
}

.stat-num {
    font-family: Outfit;
    font-size: 2.55rem;
    font-weight: 700;
    letter-spacing: -.07em;
    line-height: 1
}

.stat-label {
    color: var(--muted);
    font-size: .73rem;
    font-weight: 700;
    margin-top: 9px
}

.stat-icon {
    align-items: center;
    background: linear-gradient(135deg, #f0e5ff, #fbddec);
    border-radius: 12px;
    color: var(--violet);
    display: flex;
    font-size: 1.1rem;
    height: 39px;
    justify-content: center;
    margin-bottom: 17px;
    width: 39px
}

.stat-card:nth-child(2n) .stat-icon {
    background: #dcf7fb;
    color: var(--cyan)
}

/* services */
.service-section {
    background: linear-gradient(180deg, var(--paper), #faf7ff 50%, var(--paper))
}

.service-card {
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(123, 58, 237, .09);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(53, 30, 95, .055);
    height: 100%;
    overflow: hidden;
    padding: 27px;
    position: relative;
    transition: .4s
}

.service-card:before {
    background: linear-gradient(130deg, var(--violet), var(--pink), var(--amber));
    content: "";
    height: 4px;
    left: 25px;
    position: absolute;
    right: 25px;
    top: 0;
    transform: scaleX(0);
    transition: .4s
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 23px 45px rgba(91, 47, 133, .15);
    transform: translateY(-9px)
}

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

.service-icon {
    align-items: center;
    background: linear-gradient(145deg, #eee4ff, #fce5f1);
    border-radius: 18px;
    color: var(--violet);
    display: flex;
    font-size: 1.5rem;
    height: 56px;
    justify-content: center;
    margin-bottom: 29px;
    transition: .35s;
    width: 56px
}

.service-card:nth-child(3n+2) .service-icon {
    background: linear-gradient(145deg, #d8f8fa, #def7ed);
    color: #009fae
}

.service-card:nth-child(3n+3) .service-icon {
    background: linear-gradient(145deg, #fff2d5, #ffe6d1);
    color: #e78a00
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08)
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.035em
}

.service-card p {
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.7;
    margin: 11px 0 18px
}

.card-link {
    color: var(--violet);
    font-size: .75rem;
    font-weight: 800
}

.card-link i {
    margin-left: 4px;
    transition: .2s
}

.card-link:hover i {
    margin-left: 9px
}

/* why, collage */
.why-section {
    overflow: hidden
}

.why-image {
    min-height: 560px;
    position: relative
}

.why-image .main-img {
    border-radius: var(--radius);
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    width: 87%
}

.why-image .mini-img {
    border: 7px solid #fff;
    border-radius: 20px;
    bottom: 42px;
    box-shadow: var(--shadow);
    height: 190px;
    object-fit: cover;
    position: absolute;
    right: 0;
    width: 190px
}

.quality-stamp {
    align-items: center;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    border: 5px solid #fff;
    border-radius: 50%;
    bottom: 218px;
    color: #fff;
    display: flex;
    font-family: Outfit;
    font-size: .73rem;
    font-weight: 700;
    height: 106px;
    justify-content: center;
    line-height: 1.25;
    position: absolute;
    right: 10px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(12deg);
    width: 106px
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
    margin-top: 32px
}

.feature-item {
    align-items: center;
    color: #464058;
    display: flex;
    font-size: .78rem;
    font-weight: 800;
    gap: 10px
}

.feature-item i {
    align-items: center;
    background: linear-gradient(135deg, #e8dbff, #fee2ed);
    border-radius: 9px;
    color: var(--violet);
    display: inline-flex;
    height: 29px;
    justify-content: center;
    width: 29px
}

.feature-item:nth-child(3n+2) i {
    background: #dcf8f6;
    color: #009fae
}

.feature-item:nth-child(3n) i {
    background: #fff0d6;
    color: #db8a00
}

@media(max-width:991px) {
    .why-image {
        min-height: 420px;
        margin-bottom: 48px
    }

    .why-image .main-img {
        min-height: 420px
    }

    .feature-list {
        grid-template-columns: 1fr
    }
}

/* categories */
.category-area {
    background: #1c1434;
    color: #fff;
    overflow: hidden
}

.category-area:before {
    background: radial-gradient(circle at 0% 10%, rgba(124, 58, 237, .6), transparent 28%), radial-gradient(circle at 95% 90%, rgba(236, 72, 153, .5), transparent 23%);
    content: "";
    inset: 0;
    position: absolute
}

.category-area .container {
    position: relative
}

.category-area .eyebrow {
    color: #ffaedc
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 26px;
    overflow: hidden;
    color: #fff;
    isolation: isolate
}

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

.category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(17, 6, 31, .82), transparent 65%)
}

.category-card:hover img {
    transform: scale(1.1)
}

.category-card .label {
    position: absolute;
    left: 25px;
    bottom: 22px
}

.category-card h3 {
    margin: 0;
    font-size: 1.4rem
}

.category-card small {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #f6cdf2
}

.category-card:hover .category-title span {
    transform: translateY(0)
}

.category-large {
    height: 490px
}

@media(max-width:767px) {
    .category-large {
        height: 360px
    }
}

/* process */
.process-step {
    padding: 25px 11px;
    position: relative;
    text-align: center
}

.process-step:after {
    background: linear-gradient(90deg, var(--violet), var(--pink), var(--amber));
    content: "";
    height: 2px;
    left: 60%;
    position: absolute;
    top: 57px;
    width: 78%
}

.process-step:last-child:after {
    display: none
}

.process-num {
    align-items: center;
    background: #fff;
    border: 2px solid #eee6fb;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(72, 31, 125, .09);
    color: var(--violet);
    display: flex;
    font-family: Outfit;
    font-size: .86rem;
    font-weight: 800;
    height: 64px;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    width: 64px;
    z-index: 1
}

.process-step:nth-child(2n) .process-num {
    border-color: #ffd5e8;
    color: var(--pink)
}

.process-step:nth-child(3n) .process-num {
    border-color: #ffebc4;
    color: #e99700
}

.process-step h4 {
    font-size: .81rem;
    font-weight: 800;
    margin: 0
}

.process-step p {
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.55;
    margin: 8px auto 0;
    max-width: 125px
}

@media(max-width:991px) {
    .process-step:after {
        display: none
    }

    .process-step {
        padding: 18px 8px
    }
}

/* gallery */
.gallery-section {
    background: linear-gradient(135deg, #faf7ff, #fff9f4)
}

.filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px
}

.filter-btn {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #5c576b;
    font-size: .72rem;
    font-weight: 800;
    padding: 10px 15px;
    transition: .25s
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(110deg, var(--violet), var(--pink));
    border-color: transparent;
    color: #fff
}

.gallery-item {
    margin-bottom: 24px
}

.gallery-image {
    border-radius: 12px;
    display: block;
    height: 100%;
    isolation: isolate;
    overflow: hidden;
    position: relative
}

.gallery-image img {
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: .6s;
    width: 100%
}

.gallery-image:after {
    background: linear-gradient(0deg, rgba(37, 14, 63, .7), transparent 60%);
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: .35s
}

.gallery-image:hover img {
    transform: scale(1.09)
}

.gallery-image:hover:after {
    opacity: 1
}

.gallery-caption {
    bottom: 18px;
    color: #fff;
    left: 20px;
    opacity: 0;
    position: absolute;
    transform: translateY(10px);
    transition: .35s;
    z-index: 2
}

.gallery-caption span {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase
}

.gallery-caption h4 {
    font-size: 1rem;
    margin: 3px 0 0
}

.gallery-image:hover .gallery-caption {
    opacity: 1;
    transform: none
}

.gallery-tall {
    height: 494px
}

.gallery-short {
    height: 235px
}

.gallery-short img {
    min-height: 235px
}

@media(max-width:767px) {

    .gallery-tall,
    .gallery-short {
        height: 270px
    }

    .gallery-tall img {
        min-height: 270px
    }
}

/* video */
.video-section {
    padding: 0 0 115px
}

.video-showcase {
    align-items: center;
    background-image: linear-gradient(90deg, rgba(20, 10, 49, .84), rgba(20, 10, 49, .16)), url('https://images.unsplash.com/photo-1537633552985-df8429e8048b?auto=format&fit=crop&w=1800&q=85');
    background-position: center;
    border-radius: 32px;
    color: #fff;
    display: flex;
    min-height: 480px;
    overflow: hidden;
    padding: 64px;
    position: relative
}

.video-showcase h2 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    letter-spacing: -.06em;
    line-height: 1.02;
    max-width: 520px
}

.video-showcase p {
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
    line-height: 1.8;
    max-width: 460px
}

.play-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 15px rgba(255, 255, 255, .18);
    color: var(--pink);
    display: flex;
    font-size: 1.05rem;
    height: 70px;
    justify-content: center;
    position: absolute;
    right: 13%;
    transition: .3s;
    width: 70px
}

.play-button:hover {
    color: var(--violet);
    transform: scale(1.12)
}

@media(max-width:767px) {
    .video-showcase {
        min-height: 430px;
        padding: 34px
    }

    .play-button {
        bottom: 42px;
        left: 40px;
        right: auto
    }
}

/* testimonial */
.section-pad {
    padding: 110px 0;
}

.soft-bg {
    background: linear-gradient(130deg, #fdf7ff, #f4fcff 50%, #fff9ee);
    position: relative;
    overflow: hidden;
}

.testimonial {
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 15px 38px rgba(64, 35, 110, .08)
}

.stars {
    color: var(--amber);
    font-size: .8rem
}

.quote {
    font-size: .87rem;
    line-height: 1.8;
    color: #555066
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover
}

.logo-run {
    white-space: nowrap;
    overflow: hidden;
    border-block: 1px solid var(--line);
    padding: 25px 0
}

.logo-track {
    display: inline-block;
    animation: marquee 22s linear infinite
}

.logo-track span {
    margin: 0 35px;
    font: 800 1.12rem Outfit;
    color: #514a5e
}

.trusted-strip {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    margin-top: 88px;
    overflow: hidden;
    padding: 28px 0
}

.logo-track {
    align-items: center;
    animation: marquee 22s linear infinite;
    display: flex;
    gap: 68px;
    width: max-content
}

.logo-name {
    color: #817c8e;
    font-family: Outfit;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.06em;
    white-space: nowrap
}

.logo-name i {
    color: var(--pink);
    font-size: 1rem;
    margin-right: 5px
}

@keyframes marquee {
    to {
        transform: translateX(-35%)
    }
}

/* faq */
.faq-section {
    background: linear-gradient(140deg, #f6f1ff, #fff8fb)
}

.faq-photo {
    border-radius: 28px;
    height: 100%;
    min-height: 485px;
    object-fit: cover;
    width: 100%
}

.accordion-item {
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(66, 42, 111, .09) !important;
    border-radius: 15px !important;
    margin-bottom: 12px;
    overflow: hidden
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ink) !important;
    font-family: Outfit;
    font-size: .95rem;
    font-weight: 700;
    padding: 20px
}

.accordion-button:not(.collapsed) {
    color: var(--violet) !important
}

.accordion-button:after {
    background-size: 1rem
}

.accordion-body {
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.75;
    padding: 0 20px 20px
}

/* cta / footer */
.cta-band {
    background: linear-gradient(115deg, #6f32e2, #d839a1 53%, #ee9822);
    border-radius: 32px;
    color: #fff;
    overflow: hidden;
    padding: 68px 7%;
    position: relative
}

.cta-band:before,
.cta-band:after {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    content: "";
    height: 320px;
    position: absolute;
    width: 320px
}

.cta-band:before {
    right: -100px;
    top: -170px
}

.cta-band:after {
    bottom: -205px;
    left: 32%;
    width: 410px
}

.cta-band>* {
    position: relative
}

.cta-band h2 {
    font-size: clamp(2rem, 3.7vw, 3.6rem);
    letter-spacing: -.06em;
    line-height: 1.04;
    max-width: 650px
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
    font-size: .93rem;
    max-width: 520px
}

.site-footer {
    background: #171427;
    color: #fff;
    margin-top: 50px;
    padding: 75px 0 20px
}

.footer-logo {
    background: #fff;
    border-radius: 14px;
    height: 50px;
    object-fit: contain;
    padding: 5px;
    width: 160px
}

.footer-copy {
    color: #bdb7cb;
    font-size: .77rem;
    line-height: 1.8;
    margin-top: 18px;
    max-width: 300px
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 21px
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    display: flex;
    height: 34px;
    justify-content: center;
    transition: .25s;
    width: 34px
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-3px)
}

.footer-title {
    font-family: Outfit;
    font-size: 1rem;
    font-weight: 700;
    margin: 9px 0 18px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    margin: 10px 0
}

.footer-links a {
    color: #bdb7cb;
    font-size: .75rem;
    transition: .2s
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px
}

.footer-contact {
    color: #bdb7cb;
    font-size: .75rem;
    line-height: 1.8
}

.footer-contact i {
    color: #ef6db6;
    margin-right: 7px
}

.newsletter {
    display: flex;
    margin-top: 18px
}

.newsletter input {
    border: 0;
    border-radius: 10px 0 0 10px;
    font-size: .72rem;
    outline: 0;
    padding: 12px;
    width: 100%
}

.newsletter button {
    background: var(--pink);
    border: 0;
    border-radius: 0 10px 10px 0;
    color: #fff;
    padding: 0 14px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #8c869d;
    font-size: .68rem;
    margin-top: 55px;
    padding-top: 19px
}

.footer-bottom a {
    color: #c0b6d5
}

.whatsapp-float,
.back-to-top {
    align-items: center;
    border-radius: 50%;
    bottom: 26px;
    color: #fff;
    display: flex;
    height: 48px;
    justify-content: center;
    position: fixed;
    transition: .3s;
    width: 48px;
    z-index: 900
}

.whatsapp-float {
    background: #25d366;
    box-shadow: 0 10px 23px rgba(37, 211, 102, .35);
    font-size: 1.35rem;
    left: 25px
}

.back-to-top {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    box-shadow: 0 10px 23px rgba(124, 58, 237, .25);
    font-size: .9rem;
    opacity: 0;
    right: 25px;
    transform: translateY(15px);
    visibility: hidden
}

.back-to-top.show {
    opacity: 1;
    transform: none;
    visibility: visible
}

.whatsapp-float:hover,
.back-to-top:hover {
    color: #fff;
    transform: translateY(-4px)
}

/* inner pages */
.inner-nav {
    background: rgba(255, 253, 250, .94);
    position: relative
}

.page-hero {
    background: #21153d;
    color: #fff;
    overflow: hidden;
    padding: 70px 0 50px;
    position: relative
}

.page-hero:before {
    background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, .7), transparent 25%), radial-gradient(circle at 10% 100%, rgba(6, 182, 212, .52), transparent 30%);
    content: "";
    inset: 0;
    position: absolute
}

.page-hero:after {
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80') center/cover;
    content: "";
    inset: 0;
    mix-blend-mode: soft-light;
    opacity: .35;
    position: absolute
}

.page-hero .container {
    position: relative
}

.page-hero h1 {
    font-size: clamp(2.1rem, 5vw, 4.7rem);
    letter-spacing: 0.02em;
    line-height: .96;
    margin: 15px 0
}

.breadcrumb {
    font-size: .75rem;
    margin: 0
}

.breadcrumb-item+.breadcrumb-item:before {
    color: #fff
}

.breadcrumb-item.active,
.breadcrumb-item a {
    color: rgba(255, 255, 255, .68)
}

.inner-intro-img {
    border-radius: 28px;
    height: 500px;
    object-fit: cover;
    width: 100%
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 10px 31px rgba(57, 37, 90, .06);
    height: 100%;
    padding: 20px
}

.service-detail-card .service-icon {
    margin-bottom: 23px
}

.service-detail-card h3 {
    font-size: 1.4rem;
    letter-spacing: -.04em
}

.service-detail-card p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.75
}

.gallery-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    color: #fff;
    text-decoration: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.gallery-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.gallery-link:hover .gallery-image,
.gallery-link:focus-visible .gallery-image {
    transform: scale(1.1);
}

.gallery-link:hover .gallery-overlay,
.gallery-link:focus-visible .gallery-overlay {
    opacity: 1;
}

.check-list {
    list-style: none;
    margin: 19px 0 0;
    padding: 0
}

.check-list li {
    color: #5f596c;
    font-size: .76rem;
    margin: 10px 0
}

.check-list i {
    color: var(--green);
    margin-right: 8px
}

.about-value {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 9px 27px rgba(57, 37, 90, .06);
    height: 100%;
    padding: 24px
}

.about-value span {
    color: var(--pink);
    font-family: Outfit;
    font-size: 2rem;
    font-weight: 700
}

.about-value h4 {
    font-size: 1rem;
    margin: 7px 0
}

.about-value p {
    color: var(--muted);
    font-size: .77rem;
    line-height: 1.65;
    margin: 0
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.team-card img {
    height: 330px;
    object-fit: cover;
    width: 100%
}

.team-card-info {
    background: #fff;
    margin: -45px 16px 0;
    padding: 17px;
    position: relative;
    text-align: center
}

.team-card-info h4 {
    font-size: 1rem;
    margin: 0
}

.team-card-info p {
    color: var(--pink);
    font-size: .67rem;
    font-weight: 700;
    margin: 4px 0 0
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    height: 100%;
    padding: 24px
}

.contact-info-icon {
    align-items: center;
    background: linear-gradient(135deg, #e9deff, #fde0ee);
    border-radius: 13px;
    color: var(--violet);
    display: flex;
    font-size: 1rem;
    height: 44px;
    justify-content: center;
    margin-bottom: 17px;
    width: 44px
}

.contact-info-card h4 {
    font-size: 1rem
}

.contact-info-card p,
.contact-info-card a {
    color: var(--muted);
    font-size: .79rem;
    line-height: 1.75
}

.contact-form {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(44, 26, 78, .1);
    padding: 42px
}

.form-label {
    font-size: .72rem;
    font-weight: 800
}

.form-control,
.form-select {
    border: 1px solid #e5e0ee;
    border-radius: 11px;
    font-size: .8rem;
    padding: 13px
}

.form-control:focus,
.form-select:focus {
    border-color: #bf9af8;
    box-shadow: 0 0 0 .2rem rgba(124, 58, 237, .11)
}

.map-frame {
    border: 0;
    border-radius: 25px;
    height: 390px;
    width: 100%
}

@media(max-width:767px) {
    .section {
        padding: 75px 0
    }

    .stats-wrap {
        margin-top: -40px
    }

    .stat-card {
        padding: 20px 16px
    }

    .stat-num {
        font-size: 2rem
    }

    .feature-list {
        gap: 12px
    }

    .site-footer {
        margin-top: 74px
    }

    .footer-column {
        margin-top: 27px
    }

    .contact-form {
        padding: 24px
    }

    .page-hero {
        padding: 130px 0 75px
    }

    .inner-intro-img {
        height: 330px
    }
}

.scroll-indicator {
    left: 12px
}

/* printer-led homepage hero */
.hero-printer {
    background: #201b17;
    min-height: 850px
}

.hero-printer .hero-bg {
    background-image: url('../images/hero-printer-albums.png');
    background-position: center;
    background-size: cover;
    opacity: 1;
    transform: scale(1.015);
    transition: transform 8s ease-out
}

.hero-printer:hover .hero-bg {
    transform: scale(1.045)
}

.hero-printer:before {
    background: linear-gradient(90deg, rgba(17, 15, 14, .97) 0%, rgba(25, 22, 19, .91) 33%, rgba(31, 27, 23, .53) 57%, rgba(24, 21, 18, .08) 100%);
    z-index: 1
}

.hero-printer:after {
    background: radial-gradient(circle at 15% 24%, rgba(6, 182, 212, .18), transparent 27%), radial-gradient(circle at 56% 81%, rgba(245, 158, 11, .17), transparent 24%);
    mix-blend-mode: screen
}

/* .hero-printer .hero-content {
    max-width: 680px
} */

.hero-printer h1 {
    font-size: clamp(2.3rem, 3.4vw, 3.9rem);
    /* max-width: 665px */
}

.hero-printer h1 em {
    color: #ffc642
}

.hero-printer .hero-copy {
    max-width: 560px
}

.hero-explorer {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 19px;
    backdrop-filter: blur(18px);
    margin-top: 27px;
    max-width: 465px;
    padding: 15px 16px 14px
}

.explorer-head {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.explorer-head span {
    color: rgba(255, 255, 255, .7);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase
}

.explorer-head span i {
    color: #5fe4f0;
    margin-right: 5px
}

.explorer-head strong {
    color: #fff;
    font-family: Outfit;
    font-size: .9rem;
    font-weight: 700
}

.feature-tabs {
    display: flex;
    gap: 7px;
    margin: 13px 0 9px
}

.feature-tab {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .75);
    font-family: Manrope;
    font-size: .67rem;
    font-weight: 800;
    padding: 7px 13px;
    transition: .25s
}

.feature-tab.active,
.feature-tab:hover {
    background: #fff;
    border-color: #fff;
    color: #241637
}

.hero-explorer p {
    color: rgba(255, 255, 255, .73);
    font-size: .72rem;
    line-height: 1.65;
    margin: 0;
    min-height: 24px
}

.hero-product-note {
    align-items: center;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 17px;
    bottom: 9%;
    box-shadow: 0 15px 40px rgba(23, 16, 10, .18);
    color: #30293a;
    gap: 10px;
    padding: 12px 16px;
    position: absolute;
    right: 3%;
    z-index: 3;
    backdrop-filter: blur(12px)
}

.hero-product-note i {
    align-items: center;
    background: linear-gradient(135deg, #e5dcff, #f9dced);
    border-radius: 10px;
    color: var(--violet);
    display: flex;
    font-size: 1rem;
    height: 35px;
    justify-content: center;
    width: 35px
}

.hero-product-note span {
    font-size: .65rem;
    font-weight: 700;
    line-height: 1.4
}

.hero-product-note strong {
    color: var(--violet);
    font-size: .72rem
}

.hero-printer .scroll-indicator {
    left: 12px
}

@media(max-width:991px) {
    .hero-printer {
        min-height: 820px
    }

    .hero-printer:before {
        background: linear-gradient(90deg, rgba(17, 15, 14, .92), rgba(24, 21, 18, .68) 58%, rgba(24, 21, 18, .22))
    }

    .hero-printer .hero-content {
        max-width: 650px
    }
}

@media(max-width:575px) {
    .hero-printer {
        min-height: 850px;
        background: #181614;
        padding-bottom: 75px
    }

    .hero-printer .hero-bg {
        background-position: 66% center;
        opacity: .65%
    }

    .hero-printer:before {
        background: linear-gradient(90deg, rgba(17, 15, 14, .96), rgba(17, 15, 14, .8))
    }

    .hero-printer h1 {
        font-size: 3.2rem
    }

    .hero-explorer {
        margin-top: 22px
    }

    .hero-printer .hero-trust {
        margin-top: 27px
    }
}

@media(max-width:575px) {
    .hero-printer .hero-bg {
        opacity: .65
    }
}

.hero-explorer p {
    transition: opacity .18s ease
}

.hero-printer .scroll-indicator {
    display: none !important
}


/* ===== pricing ===== */
.price-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}

.price-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, .08);
    box-shadow: 0 20px 44px rgba(23, 14, 43, .07);
    margin-bottom: 34px;
    scroll-margin-top: 110px;
}

.price-block-head {
    background: var(--card-grad, var(--grad-main));
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.price-block-head h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: .02em;
}

.price-block-head span {
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.price-block-body {
    padding: 10px 30px 26px;
}

.price-grid {
    display: grid;
    width: 100%;
}

.price-cell {
    padding: 15px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(124, 58, 237, .08);
}

.price-cell.no-border {
    border-bottom: none;
}

.price-head-cell {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a7ba3;
    border-bottom: 2px solid rgba(124, 58, 237, .14);
    padding-top: 0;
}

.price-item-cell {
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
}

.price-value-cell {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    justify-content: center;
    text-align: center;
    color: var(--violet);
}

.price-row-alt .price-cell {
    background: rgba(124, 58, 237, .025);
}

.price-cell:hover {
    background: rgba(236, 72, 153, .06);
}

.mobile-label {
    display: none;
}

@media (max-width:767px) {
    .price-block-body {
        padding: 6px 16px 18px;
    }

    .price-grid {
        grid-template-columns: 1fr !important;
    }

    .price-head-cell {
        display: none;
    }

    .price-item-cell {
        border-bottom: none !important;
        padding-bottom: 4px;
        padding-top: 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.02rem;
    }

    .price-value-cell {
        justify-content: space-between;
        padding: 9px 4px;
        border-bottom: 1px dashed rgba(124, 58, 237, .14) !important;
    }

    .mobile-label {
        display: inline-block;
        font-family: 'Manrope', sans-serif;
        font-weight: 600;
        font-size: .85rem;
        color: #8a7ba3;
        text-transform: none;
        letter-spacing: 0;
    }
}

.price-note {
    border-radius: var(--radius-md);
    padding: 28px 32px;
    background: linear-gradient(120deg, rgba(124, 58, 237, .07), rgba(236, 72, 153, .07));
    border: 1.5px dashed rgba(124, 58, 237, .25);
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.price-note-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.price-note-text span {
    color: #665a7d;
    font-size: .92rem;
}

.price-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(23, 14, 43, .1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.price-call-btn i {
    color: var(--violet);
    font-size: 1.1rem;
}

.price-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(124, 58, 237, .22);
    color: var(--ink);
}