:root {
    --orange: #fa731e;
    --orange-2: #ff9a4d;
    --amber: #ffb648;
    --bg-900: #080a0f;
    --bg-850: #0c0f16;
    --bg-800: #10141d;
    --bg-card: #141924;
    --line: rgba(255, 255, 255, .08);
    --line-2: rgba(255, 255, 255, .15);
    --text: #e9edf5;
    --muted: #9aa4b6;
    --white: #fff;
    --grad: linear-gradient(135deg, var(--orange), var(--orange-2));
    --grad-soft: linear-gradient(135deg, var(--orange), var(--amber));
    --glow: 0 14px 40px rgba(250, 115, 30, .32);
    --glow-lg: 0 24px 60px rgba(250, 115, 30, .42);
    --shadow: 0 28px 70px rgba(0, 0, 0, .55);
    --radius: 20px;
    --ff-display: 'Space Grotesk', sans-serif;
    --ff-body: 'Inter', sans-serif;
}

@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--bg-900);
    overflow-x: clip;
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.14;
    color: var(--white)
}

p {
    color: var(--muted)
}

a {
    text-decoration: none;
    transition: .3s
}

img {
    max-width: 100%
}

section {
    position: relative
}

section[id] {
    scroll-margin-top: 90px
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    padding: .42rem .95rem;
    border-radius: 100px;
    background: rgba(250, 115, 30, .1);
    border: 1px solid rgba(250, 115, 30, .28);
    margin-bottom: 1.1rem
}

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    margin-bottom: 1rem;
    letter-spacing: -.5px;
    text-transform: capitalize;
}

.text-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.pad {
    padding: clamp(2.5rem, 5vw, 4.75rem) 0;
    position: relative;
    z-index: 2
}

.bg-alt {
    background: var(--bg-850)
}

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

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--grad);
    z-index: 3000
}


/* Buttons */

.btn {
    font-family: var(--ff-display);
    font-weight: 600;
    border-radius: 100px;
    padding: .85rem 1.9rem;
    transition: .35s cubic-bezier(.2, .8, .2, 1)
}

.btn-brand {
    background: var(--grad);
    color: #1a0d03;
    border: none;
    box-shadow: var(--glow)
}

.btn-brand:hover {
    box-shadow: var(--glow-lg);
    color: #1a0d03;
    transform: translateX(5px);
    background: var(--grad);
}

.btn-ghost {
    border: 1.5px solid var(--line-2);
    color: var(--white)
}

.btn-ghost:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #1a0d03
}

.btn-outline-brand {
    border: 1.5px solid var(--orange);
    color: var(--orange)
}

.btn-outline-brand:hover {
    background: var(--grad);
    color: #1a0d03
}


/* Spotlight + gradient border */

.spot {
    position: relative;
    overflow: hidden
}

.spot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(250, 115, 30, .16), transparent 62%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
    z-index: 0
}

.spot:hover::before {
    opacity: 1
}

.spot>* {
    position: relative;
    z-index: 1
}


/* ===== HEADER ===== */

.topbar {
    background: #05070b;
    color: var(--muted);
    font-size: .85rem;
    border-bottom: 1px solid var(--line)
}

.topbar a {
    color: var(--muted)
}

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

.topbar .divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .14)
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(8, 10, 15, .9);
    backdrop-filter: blur(12px);
    transition: padding .35s, box-shadow .35s, border-color .35s;
    padding: 1rem 0;
    border-bottom: 1px solid transparent
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    border-bottom-color: var(--line);
    padding: .65rem 0
}

.brand {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .6rem
}


/* .brand .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #1a0d03;
    font-size: 1.1rem;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
    flex: none
}

.brand .logo-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: translateX(-120%);
    animation: sheen 3.5s infinite
}

@keyframes sheen {
    0%,
    60% {
        transform: translateX(-120%)
    }
    100% {
        transform: translateX(120%)
    }
} */

.navbar .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    margin: 0 .5rem;
    position: relative;
    font-family: var(--ff-body)
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -2px;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s
}

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

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--orange)
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: .2rem .4rem
}

.navbar-toggler:focus {
    box-shadow: none
}

.offcanvas {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: var(--bg-900) !important;
    border-left: 1px solid var(--line);
    z-index: 1055 !important;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
}

.offcanvas-header .brand {
    display: flex;
    align-items: center;
    max-width: 200px;
}

.offcanvas-header .brand img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 50px;
}

.offcanvas .btn-close {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    filter: invert(1) grayscale(1) brightness(2);
    opacity: .8;
    background-size: 18px;
}

.offcanvas .btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    display: block !important;
    width: 100%;
    padding: 20px !important;
    overflow-y: auto;
}

.offcanvas .navbar-nav {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas .nav-item {
    width: 100%;
}

.offcanvas .nav-link {
    display: block;
    width: 100%;
    padding: 15px 0 !important;
    margin: 0 !important;
    color: var(--text);
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: color .3s ease, padding-left .3s ease;
}

.offcanvas .nav-link::after {
    display: none !important;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: var(--orange);
    padding-left: 8px !important;
}

.mobile-quote-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 25px 0 0 !important;
}


/* =========================================
   BACKDROP
========================================= */

.offcanvas-backdrop {
    z-index: 1050 !important;
}


/* ===== HERO ===== */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-900);
    padding: 5.5rem 0 0
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0
}

.hero-glow.a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(250, 115, 30, .42), transparent 70%);
    top: -140px;
    right: 8%;
    animation: drift1 14s ease-in-out infinite
}

.hero-glow.b {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 154, 77, .22), transparent 70%);
    bottom: 30px;
    left: -120px;
    animation: drift2 16s ease-in-out infinite
}

@keyframes drift1 {
    0%,
    100% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(30px, 40px)
    }
}

@keyframes drift2 {
    0%,
    100% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(-40px, -30px)
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 30% 30%, #000, transparent 72%);
    opacity: .6;
    z-index: 0
}

.hero-gear {
    position: absolute;
    left: -70px;
    top: 46%;
    transform: translateY(-50%);
    font-size: 22rem;
    color: rgba(250, 115, 30, .10);
    z-index: 0;
    line-height: 1;
    animation: spin360 60s linear infinite
}

@keyframes spin360 {
    to {
        transform: translateY(-50%) rotate(360deg)
    }
}

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

.hero-content {
    padding: 2.5rem 0 3.5rem
}

.hero-eyebrow {
    color: var(--orange);
    font-family: var(--ff-display);
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 1.2rem;
    display: inline-block
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.3rem);
    letter-spacing: -1px;
    margin-bottom: 1.4rem
}

.hero h1 .line {
    display: block;
    overflow: hidden;
    padding-bottom: .06em
}

.hero h1 .line-in {
    display: block
}

.type-word {
    border-right: 3px solid var(--amber);
    padding-right: 3px
}

.hero .lead {
    color: #c3cbdb;
    font-size: 1.12rem;
    max-width: 480px;
    margin-bottom: 2.2rem
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: #12151d;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: .35s;
    flex: none
}

.play-btn::before,
.play-btn::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .45);
    animation: ripple 2.6s ease-out infinite
}

.play-btn::after {
    animation-delay: 1.4s
}

@keyframes ripple {
    0% {
        transform: scale(.86);
        opacity: .8
    }
    100% {
        transform: scale(1.55);
        opacity: 0
    }
}

.play-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.05)
}

.hero-figure {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center
}

.hero-stage {
    position: relative;
    width: min(560px, 94%);
    margin-left: auto;
    aspect-ratio: 1/1
}

.hero-orb {
    position: absolute;
    inset: 0;
    transform: translate(30px, 30px);
    border-radius: 50%;
    background: var(--grad);
    opacity: .92;
    z-index: 0
}

.hero-shape {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 6px solid var(--bg-900);
    z-index: 1
}

.hero-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(8, 10, 15, .55);
    pointer-events: none
}

.hero-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    display: block
}

.hero-dots {
    position: absolute;
    left: -4px;
    bottom: 56px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 8px);
    gap: 9px
}

.hero-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    opacity: .5
}

.hero-badge-float {
    position: absolute;
    left: -16px;
    top: 50px;
    z-index: 3;
    background: var(--bg-800);
    border: 1px solid var(--line-2);
    border-radius: 16px;
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    box-shadow: var(--shadow);
    animation: floaty 5.5s ease-in-out infinite
}

.hero-badge-float .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center
}

.hero-badge-float .n {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    line-height: 1
}

.hero-badge-float small {
    color: var(--muted);
    font-size: .72rem
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-14px)
    }
}

.hero-eq {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 120px;
    overflow: hidden;
    opacity: .6
}

.hero-eq span {
    flex: 1;
    background: linear-gradient(to top, rgba(250, 115, 30, .78), rgba(250, 115, 30, 0));
    border-radius: 3px 3px 0 0
}


/* Marquee */


/* .marquee {
    overflow: hidden;
    padding: 2.2rem 0;
    background: var(--bg-850);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollx 26s linear infinite
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

.marquee-track span {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: #5c667a;
    display: flex;
    align-items: center;
    gap: .6rem;
    white-space: nowrap;
    transition: .3s
}

.marquee-track span:hover {
    color: var(--orange)
}

@keyframes scrollx {
    to {
        transform: translateX(-50%)
    }
} */

.marquee {
    overflow: hidden;
    padding: 2.2rem 0;
    background: var(--bg-850);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scrollx 26s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-track span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: .3s ease;
}

.marquee-track span:hover img {
    transform: scale(1.12);
}

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


/* Bento */

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 1.2rem
}

.tile {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: .4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .4)
}

.b1 {
    grid-column: 1/3;
    grid-row: 1/3;
    background: linear-gradient(160deg, #1c1016, #12151d)
}

.b2 {
    grid-column: 3/4;
    grid-row: 1/2
}

.b3 {
    grid-column: 4/5;
    grid-row: 1/2
}

.b4 {
    grid-column: 3/5;
    grid-row: 2/3
}

.b5 {
    grid-column: 1/3;
    grid-row: 3/4
}

.b6 {
    grid-column: 3/5;
    grid-row: 3/4
}

.tile .ti {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(250, 115, 30, .14);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: auto
}

.b1 .ti {
    background: var(--grad);
    color: #1a0d03;
    width: 60px;
    height: 60px;
    font-size: 1.6rem
}

.tile h5 {
    margin: 1rem 0 .3rem
}

.tile .big-num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--white);
    line-height: 1
}

.tile .bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    margin-top: 1rem
}

.tile .bars span {
    flex: 1;
    background: var(--grad);
    border-radius: 4px 4px 0 0;
    opacity: .85
}

.bar-40 {
    height: 40%
}

.bar-50 {
    height: 50%
}

.bar-65 {
    height: 65%
}

.bar-70 {
    height: 70%
}

.bar-85 {
    height: 85%
}

.bar-100 {
    height: 100%
}


/* About */

.about-figure {
    position: relative
}

.about-figure img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
    border-radius: 16px;
}

.exp-badge {
    position: absolute;
    right: 2px;
    bottom: 6px;
    z-index: 2;
    background: var(--bg-800);
    border: 1px solid var(--line-2);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    box-shadow: var(--shadow);
    text-align: center
}

.exp-badge .n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.1rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.exp-badge small {
    color: var(--muted)
}

.check-list li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: .7rem;
    color: var(--text);
    font-weight: 500
}

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


/* Counters */


/* .counter-strip {
    background: var(--bg-800);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.counter-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 20% 0, rgba(250, 115, 30, .2), transparent 60%)
}

.count-num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white)
}

.count-item p {
    color: var(--muted);
    margin: 0
} */

.counter-strip {
    background: var(--bg-800);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.counter-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 20% 0, rgba(250, 115, 30, .2), transparent 60%);
}

.count-item {
    position: relative;
}

.count-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--line);
}

.count-num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1;
}

.count-item p {
    color: var(--muted);
    margin: 8px 0 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .5px;
}


/* Services */

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.2rem 1.9rem;
    height: 100%;
    border: 1px solid var(--line);
    transition: .4s;
    transform-style: preserve-3d
}

.service-card:hover {
    box-shadow: var(--glow);
    transform: translateY(-6px);
    border-color: rgba(250, 115, 30, .4)
}

.service-num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 3.4rem;
    color: rgba(255, 255, 255, .06);
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    line-height: 1
}

.service-card .si {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: rgba(250, 115, 30, .14);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    transition: .4s
}

.service-card:hover .si {
    background: var(--grad);
    color: #1a0d03;
    transform: rotate(-8deg)
}

.service-card h5 {
    margin-bottom: .6rem
}

.service-card .link {
    color: var(--orange);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .9rem
}


/* Process */

.process-wrap {
    position: relative
}

.process-line {
    position: absolute;
    top: 75px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--line);
    z-index: 0
}

.process-line .fill {
    position: absolute;
    inset: 0;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(.2, .8, .2, 1)
}

.process-line .fill.filled {
    transform: scaleX(1)
}

.step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
    z-index: 1
}

.step .ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 1.4rem;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    color: #1a0d03;
    background: var(--grad);
    box-shadow: var(--glow);
    position: relative
}

.step .ring span {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-800);
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .85rem;
    display: grid;
    place-items: center;
    border: 3px solid var(--bg-900)
}


/* Testimonials */

.testi-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    min-height: 300px
}

.testi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: .6s;
    text-align: center;
    pointer-events: none
}

.testi-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.testi-slide .big-quote {
    font-size: 2.6rem;
    color: var(--orange);
    opacity: .6;
    margin-bottom: .8rem
}

.testi-slide .stars {
    color: var(--amber);
    margin-bottom: 1rem
}

.testi-slide .txt {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--white);
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto 1.6rem
}

.testi-slide .who {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-family: var(--ff-display);
    font-weight: 700
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 1.8rem
}

.testi-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--line-2);
    cursor: pointer;
    transition: .3s;
    padding: 0
}

.testi-dots button.active {
    background: var(--orange);
    width: 28px;
    border-radius: 100px
}


/* FAQ */

.faq .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 1rem;
    overflow: hidden
}

.faq .accordion-button {
    background: var(--bg-card);
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    box-shadow: none;
    padding: 1.2rem 1.4rem
}

.faq .accordion-button:not(.collapsed) {
    background: rgba(250, 115, 30, .12);
    color: var(--orange)
}

.faq .accordion-button::after {
    /* filter: invert(1) sepia(1) saturate(6) hue-rotate(340deg) */
    filter: invert(48%) sepia(94%) saturate(2458%) hue-rotate(359deg) brightness(101%) contrast(94%);
}

.faq .accordion-body {
    color: var(--muted);
    padding: 1rem 1.4rem 1.3rem
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(250, 115, 30, .25)
}


/* CTA */

.cta {
    /* background: var(--grad); */
    background: #151515;
    border: 1px solid rgba(255, 132, 35, 0.22);
    border-radius: 32px;
    color: #1a0d03;
    padding: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden
}

.cta h2 {
    color: var(--orange);
}

.cta p {
    color: var(--text)
}

.cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, .14); */
    background: rgba(255, 118, 25, 0.38);
    filter: blur(55px);
    top: -120px;
    right: -60px
}

.cta::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, .12); */
    background: rgba(255, 118, 25, 0.30);
    filter: blur(55px);
    bottom: -90px;
    left: 10%
}

.cta .btn-dark2 {
    /* background: #1a0d03; */
    background: var(--grad);
    color: var(--white);
    border: none
}

.cta .btn-dark2:hover {
    color: var(--bg-800);
    background: var(--amber);
}

.cta .btn-line {
    border: 1.5px solid var(--white);
    color: var(--white)
}

.cta .btn-line:hover {
    background: #1a0d03;
    color: var(--amber)
}


/* Footer */

.footer {
    background: #05070b;
    color: #8b95a8;
    padding-top: 4.5rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2
}

.footer h6 {
    color: var(--white);
    font-family: var(--ff-display);
    margin-bottom: 1.2rem
}

.footer p {
    color: #8b95a8
}

.footer a {
    color: #8b95a8
}

.footer a:hover {
    color: var(--orange);
    padding-left: 4px
}

.footer .social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    display: grid;
    place-items: center;
    color: var(--white)
}

.footer .social a:hover {
    background: var(--grad);
    color: #1a0d03;
    transform: translateY(-3px)
}

.footer .foot-input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    color: var(--white);
    border-radius: 100px
}

.footer .foot-input::placeholder {
    color: #6b7488
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 3rem;
    padding: 1.4rem 0;
    color: #6b7488;
    font-size: .9rem
}

.footer .foot-contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    line-height: 1.55
}

.footer .foot-contact li i {
    color: var(--orange);
    font-size: .95rem;
    margin-top: .28rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0
}

#toTop {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad);
    color: #1a0d03;
    border: none;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .4s;
    z-index: 1050;
    box-shadow: var(--glow)
}

#toTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}


/* ===== Video CTA band ===== */

.video-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(rgba(8, 10, 15, .82), rgba(8, 10, 15, .9)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.vc-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 115, 30, .32), transparent 70%);
    filter: blur(70px);
    top: -150px;
    left: -90px;
    z-index: 0
}

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

.vc-title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    letter-spacing: -.5px
}

.vc-lead {
    color: #c3cbdb;
    max-width: 520px
}

.btn-light {
    background: var(--white);
    color: #12151d;
    border: none;
    font-family: var(--ff-display);
    font-weight: 600
}

.btn-light:hover {
    background: var(--amber);
    color: #12151d;
    transform: translateY(-2px)
}


/* ===== Reviews ===== */

.review-src {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .8rem;
    color: var(--muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    padding: .4rem .9rem;
    border-radius: 100px;
    margin-bottom: 1rem
}

.review-src .fa-google {
    color: #4285F4
}

.review-src .fa-upwork {
    color: #14a800
}

.testi-slide .stars .rating {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--white);
    margin-left: .55rem;
    font-size: 1rem
}


/* ===== Video modal ===== */

.video-modal {
    background: #05070b;
    border: 1px solid var(--line-2);
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.video-modal .ratio {
    border-radius: 16px;
    overflow: hidden
}

.video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.video-close:hover {
    background: var(--orange);
}


/* Hero buttons: guaranteed-visible entrance (independent of GSAP) */

.hero-cta {
    animation: heroUp .8s ease both .5s
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.play-btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}


/* ===================== ABOUT PAGE ===================== */


/* Page banner */


/* .page-banner {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 3.5rem;
    background: var(--bg-850);
    border-bottom: 1px solid var(--line)
}

.page-banner::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 115, 30, .28), transparent 70%);
    filter: blur(70px);
    top: -160px;
    right: -60px
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 72% 30%, #000, transparent 70%);
    opacity: .5
}

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

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem)
}

.crumb {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: .9rem
}

.crumb a {
    color: var(--muted)
}

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

.crumb .sep {
    color: var(--orange);
    margin: 0 .4rem
} */

.page-banner {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    padding: 7rem 0 3.5rem;
    display: flex;
    align-items: center;
    background: var(--bg-850);
    border-bottom: 1px solid var(--line);
}

.page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: .7;
    z-index: 0;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(8, 10, 15, .96) 0%, rgba(8, 10, 15, .85) 40%, rgba(8, 10, 15, .45) 75%, rgba(250, 115, 30, .15) 100%);
}

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

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.crumb {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: .9rem;
}

.crumb a {
    color: var(--muted);
}

.crumb a:hover {
    color: var(--orange);
}

.crumb .sep {
    color: var(--orange);
    margin: 0 .4rem;
}


/* Mission / Vision / Values */

.mvv-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem 1.9rem;
    height: 100%;
    transition: .4s;
    position: relative;
    overflow: hidden
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .4)
}

.mvv-card .mi {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.3rem
}

.mvv-card .idx {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 3rem;
    color: rgba(255, 255, 255, .05);
    line-height: 1
}


/* Feature cards (why choose us) */

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    height: 100%;
    transition: .4s;
    position: relative;
    overflow: hidden
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grad);
    transform: scaleY(0);
    transform-origin: top;
    transition: .4s
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .35)
}

.feature-card:hover::after {
    transform: scaleY(1)
}

.feature-card .fi {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(250, 115, 30, .14);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    transition: .4s
}

.feature-card:hover .fi {
    background: var(--grad);
    color: #1a0d03
}


/* Skills / progress bars */

.skill {
    margin-bottom: 1.5rem
}

.skill-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: .55rem;
    font-family: var(--ff-display);
    font-weight: 600;
    color: var(--white)
}

.skill-top span:last-child {
    color: var(--orange)
}

.skill-bar {
    height: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden
}

.skill-fill {
    height: 100%;
    width: 0;
    background: var(--grad);
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(.2, .8, .2, 1)
}


/* Journey timeline */


/* .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line);
    transform: translateX(-50%)
}

.tl-item {
    position: relative;
    width: 50%;
    padding: 1.1rem 2.6rem;
    box-sizing: border-box
}

.tl-item:nth-child(odd) {
    left: 0;
    text-align: right
}

.tl-item:nth-child(even) {
    left: 50%
}

.tl-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    transition: .4s
}

.tl-card:hover {
    border-color: rgba(250, 115, 30, .4);
    box-shadow: var(--glow);
    transform: translateY(-4px)
}

.tl-year {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: .25rem
}

.tl-card p {
    margin: 0
}

.tl-item::after {
    content: "";
    position: absolute;
    top: 1.7rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--grad);
    border: 3px solid var(--bg-900);
    z-index: 2
}

.tl-item:nth-child(odd)::after {
    right: -8px
}

.tl-item:nth-child(even)::after {
    left: -8px
} */


/* ===================== SERVICE DETAIL PAGE ===================== */

.svc-nav {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .9rem;
    margin-bottom: 1.5rem
}

.svc-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    color: var(--text);
    font-family: var(--ff-display);
    font-weight: 600;
    transition: .3s;
    margin-bottom: .35rem
}

.svc-nav a:last-child {
    margin-bottom: 0
}

.svc-nav a .lbl {
    display: flex;
    align-items: center
}

.svc-nav a i {
    color: var(--orange);
    transition: .3s
}

.svc-nav a .go {
    font-size: .8rem;
    opacity: .5
}

.svc-nav a:hover {
    background: var(--bg-800);
    padding-left: 1.3rem
}

.svc-nav a.active {
    background: var(--grad);
    color: #1a0d03
}

.svc-nav a.active i,
.svc-nav a.active .go {
    color: #1a0d03;
    opacity: 1
}

.svc-help {
    background: linear-gradient(160deg, #1c1016, #12151d);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.svc-help::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 115, 30, .3), transparent 70%);
    filter: blur(40px);
    top: -70px;
    right: -40px
}

.svc-help .hi {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    position: relative
}

.svc-help h5,
.svc-help p {
    position: relative
}

.svc-banner-icon {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow)
}

.svc-lead {
    font-size: 1.18rem;
    color: #c3cbdb;
    font-family: var(--ff-display);
    font-weight: 500;
    line-height: 1.6
}

.svc-section-h {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.5rem;
    margin: 2.4rem 0 1.2rem
}

.svc-figure {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow);
    background: var(--bg-800);
    line-height: 0
}

.svc-figure img {
    width: 100%;
    display: block
}


/* ===================== GBP REVIEWS ===================== */

.gbp-score {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .9rem 1.5rem;
    margin-top: .4rem;
    color: var(--bg-850);
}

.gbp-score .g-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-soft);
    display: grid;
    place-items: center;
    font-size: 1.4rem
}

.gbp-score .num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--white);
    line-height: 1
}

.gbp-score .rs {
    color: var(--amber);
    font-size: .9rem;
    letter-spacing: 1px
}

.gbp-score small {
    color: var(--muted);
    display: block
}

.gbp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.gbp-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    transition: .35s
}

.gbp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .3)
}

.gbp-card .g-top {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem
}

.gbp-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--white);
    flex: none
}

.gbp-av.a1 {
    background: var(--grad-soft);
    color: #1a0d03
}

.gbp-av.a2 {
    background: linear-gradient(135deg, #4285F4, #7aa8ff)
}

.gbp-av.a3 {
    background: linear-gradient(135deg, #34A853, #7bd39a);
    color: #0b2a16
}

.gbp-av.a4 {
    background: linear-gradient(135deg, #a855f7, #d8b4fe)
}

.gbp-card .g-name {
    font-family: var(--ff-display);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1
}

.gbp-card .g-date {
    color: var(--muted);
    font-size: .8rem
}

.gbp-card .g-stars {
    color: var(--amber);
    font-size: .85rem;
    margin-bottom: .5rem
}

.gbp-card .g-text {
    color: var(--text);
    font-size: .94rem;
    margin: 0
}

.gbp-card .g-foot {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .8rem;
    border-top: 1px solid var(--line);
    padding-top: .8rem
}

.gbp-card .g-foot .fa-google {
    font-size: .95rem
}


/* ===================== RESULTS / TESTIMONIALS ===================== */

.tst-card {
    background: linear-gradient(160deg, #161b26, #0f131c);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.4rem 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .4s
}

.tst-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 115, 30, .18), transparent 70%);
    top: -90px;
    right: -70px
}

.tst-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(250, 115, 30, .3)
}

.tst-quote {
    font-size: 2.4rem;
    color: var(--orange);
    opacity: .6;
    line-height: 1;
    margin-bottom: .8rem;
    position: relative
}

.tst-stars {
    color: var(--amber);
    margin-bottom: 1rem;
    position: relative
}

.tst-text {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--text);
    position: relative
}

.tst-text b {
    color: var(--white);
    background: linear-gradient(transparent 60%, rgba(250, 115, 30, .28) 60%)
}

.tst-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin: 1.6rem 0;
    position: relative
}

.tst-metric .m-n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.7rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1
}

.tst-metric .m-l {
    color: var(--muted);
    font-size: .82rem
}

.tst-who {
    display: flex;
    align-items: center;
    gap: .9rem;
    border-top: 1px solid var(--line);
    padding-top: 1.3rem;
    position: relative
}

.tst-photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-family: var(--ff-display);
    font-weight: 700;
    flex: none
}

.tst-who .w-name {
    font-family: var(--ff-display);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1
}

.tst-who .w-role {
    color: var(--orange);
    font-size: .85rem
}


/* ===================== CREATIVES / REELS ===================== */

.crv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem
}

.crv-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 1;
    background: var(--bg-800)
}

.crv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.crv-card:hover img {
    transform: scale(1.07)
}


/* .crv-cat {
    position: absolute;
    top: .9rem;
    left: .9rem;
    z-index: 3;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .66rem;
    letter-spacing: .12em;
    color: #1a0d03;
    background: var(--grad);
    padding: .32rem .7rem;
    border-radius: 100px
} */

.crv-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(to top, rgba(8, 10, 15, .88), rgba(8, 10, 15, .35));
    opacity: 0;
    transition: .4s
}

.crv-card:hover .crv-overlay {
    opacity: 1
}

.crv-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: #12151d;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: .3s
}

.crv-play:hover {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.08)
}

.crv-cta {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 100px;
    padding: .5rem 1.2rem;
    transition: .3s
}

.crv-cta:hover {
    background: var(--white);
    color: #12151d
}

.crv-cta i {
    color: var(--orange)
}

.crv-cta:hover i {
    color: #12151d
}


/* Creatives carousel */

.crv-carousel {
    position: relative
}

.crv-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.1rem
}

.crv-nav {
    display: flex;
    gap: .6rem
}

.crv-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: var(--bg-card);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .3s;
    font-size: .95rem
}

.crv-nav button:hover:not(:disabled) {
    background: var(--grad);
    color: #1a0d03;
    border-color: transparent
}

.crv-nav button:disabled {
    opacity: .3;
    cursor: default
}

.crv-slider {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: .4rem;
    margin: -.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.crv-slider::-webkit-scrollbar {
    display: none
}

.crv-slide {
    flex: 0 0 auto;
    width: min(300px, 82vw);
    scroll-snap-align: start
}


/* Creatives continuous marquee */

.crv-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent)
}

.crv-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    padding: .4rem 0;
    animation: crvscroll 55s linear infinite
}

.crv-marquee:hover .crv-track {
    animation-play-state: paused
}


/* Grab-and-slide: once JS takes over, kill the CSS auto-scroll
   and drive the transform manually so the user can drag freely. */

.crv-drag {
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y
}

.crv-drag.is-grabbing {
    cursor: grabbing
}

.crv-drag.crv-live .crv-track,
.crv-drag.crv-live .marquee-track {
    animation: none !important;
    will-change: transform
}

.crv-drag img,
.crv-drag a {
    -webkit-user-drag: none;
    user-drag: none
}

.crv-hint {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .04em;
    color: var(--muted)
}

.crv-hint i {
    color: var(--orange);
    animation: crvNudge 1.8s ease-in-out infinite
}

@keyframes crvNudge {
    0%,
    100% {
        transform: translateX(-3px)
    }
    50% {
        transform: translateX(3px)
    }
}

@media (prefers-reduced-motion: reduce) {
    .crv-hint i {
        animation: none
    }
}

@keyframes crvscroll {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}


/* GBP cards guaranteed entrance (independent of GSAP) */

.gbp-reveal .gbp-card {
    animation: heroUp .7s ease both
}

.gbp-reveal .gbp-card:nth-child(1) {
    animation-delay: .05s
}

.gbp-reveal .gbp-card:nth-child(2) {
    animation-delay: .15s
}

.gbp-reveal .gbp-card:nth-child(3) {
    animation-delay: .25s
}

.gbp-reveal .gbp-card:nth-child(4) {
    animation-delay: .35s
}


/* ===================== PORTFOLIO ===================== */

.pf-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 2.4rem
}

.pf-filter button {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .85rem;
    color: var(--muted);
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: .55rem 1.3rem;
    cursor: pointer;
    transition: .3s
}

.pf-filter button:hover {
    color: var(--white);
    border-color: var(--line-2)
}

.pf-filter button.active {
    background: var(--grad);
    color: #1a0d03;
    border-color: transparent;
    box-shadow: var(--glow)
}

.pf-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    background: var(--bg-800);
    transition: .45s cubic-bezier(.2, .8, .2, 1)
}

.pf-card:hover {
    border-color: rgba(250, 115, 30, .5);
    box-shadow: var(--glow-lg);
    transform: translateY(-6px)
}

.pf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.pf-card:hover img {
    transform: scale(1.08)
}

.pf-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(8, 10, 15, .95) 4%, rgba(8, 10, 15, .5) 38%, rgba(8, 10, 15, .04) 68%);
    transition: .45s
}

.pf-card:hover .pf-scrim {
    background: linear-gradient(to top, rgba(8, 10, 15, .97) 10%, rgba(8, 10, 15, .68) 52%, rgba(8, 10, 15, .22) 100%)
}

.pf-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .72rem;
    color: #1a0d03;
    background: var(--grad);
    padding: .38rem .8rem;
    border-radius: 100px;
    box-shadow: var(--glow);
    transform: translateY(-6px);
    opacity: 0;
    transition: .4s
}

.pf-card:hover .pf-badge {
    transform: none;
    opacity: 1
}

.pf-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.6rem
}

.pf-cat {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .14em;
    color: var(--orange);
    margin-bottom: .45rem
}

.pf-title {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2
}

.pf-reveal {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .85rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .45s
}

.pf-reveal i {
    color: var(--orange)
}

.pf-card:hover .pf-reveal {
    max-height: 42px;
    opacity: 1;
    margin-top: .75rem
}

.pf-feature {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: .4s
}

.pf-feature:hover {
    border-color: rgba(250, 115, 30, .4);
    box-shadow: var(--glow)
}

.pf-fimg {
    position: relative;
    overflow: hidden;
    min-height: 340px
}

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

.pf-feature:hover .pf-fimg img {
    transform: scale(1.05)
}

.pf-ftag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: var(--grad);
    color: #1a0d03;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .1em;
    padding: .42rem .95rem;
    border-radius: 100px
}

.pf-fbody {
    padding: 2.8rem
}

.pf-fbody .cat {
    color: var(--orange);
    font-family: var(--ff-display);
    font-weight: 700;
    letter-spacing: .14em;
    font-size: .72rem
}

.pf-fbody h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin: .5rem 0 .9rem
}

.pf-fstats {
    display: flex;
    gap: 2.2rem;
    margin: 1.5rem 0
}

.pf-fstats .n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.7rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.pf-fstats .l {
    color: var(--muted);
    font-size: .8rem
}

.pf-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #12151d;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    transition: .35s;
    pointer-events: none
}

.pf-card:hover .pf-play {
    background: var(--orange);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.12)
}

.pf-vtag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(8, 10, 15, .72);
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .66rem;
    letter-spacing: .1em;
    padding: .32rem .7rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .2)
}

.pf-vtag i {
    color: var(--orange)
}


/* ===================== PORTFOLIO DETAIL ===================== */

.pd-hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 2.2rem;
    line-height: 0
}

.pd-info {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.8rem
}

.pd-info .ri {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line)
}

.pd-info .ri:last-child {
    border-bottom: none
}

.pd-info .k {
    color: var(--muted)
}

.pd-info .v {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    text-align: right
}

.pd-result {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem 1rem;
    text-align: center;
    height: 100%;
    transition: .35s
}

.pd-result:hover {
    border-color: rgba(250, 115, 30, .4);
    transform: translateY(-4px)
}

.pd-result .n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.1rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1
}

.pd-result .l {
    color: var(--muted);
    font-size: .85rem;
    margin-top: .3rem
}

.pd-gitem {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/5;
    display: block
}

.pd-gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.pd-gitem:hover img {
    transform: scale(1.06)
}


/* ===================== BLOG ===================== */


/* ===================== BLOG (featured + list) ===================== */

.blog-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.6rem;
    align-items: stretch
}


/* Shared bits */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    color: var(--muted);
    font-size: .8rem;
    margin-bottom: .7rem
}

.blog-chip {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .04em;
    color: #1a0d03;
    background: var(--grad);
    padding: .34rem .8rem;
    border-radius: 100px;
    box-shadow: 0 6px 18px rgba(250, 115, 30, .35)
}

.blog-more {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .85rem
}

.blog-more i {
    transition: transform .3s ease
}


/* --- Featured card --- */

.blog-feature {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease
}

.blog-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .3)
}

.blog-feature-media {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden
}

.blog-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.blog-feature:hover .blog-feature-media img {
    transform: scale(1.05)
}

.blog-feature-body {
    padding: 1.7rem 1.8rem 1.9rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.blog-feature-body h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: .7rem
}

.blog-feature-body h3 a {
    color: var(--white);
    transition: color .3s
}

.blog-feature-body h3 a:hover {
    color: var(--orange)
}

.blog-feature-body p {
    margin-bottom: 1.2rem
}

.blog-feature .blog-more {
    margin-top: auto
}

.blog-feature:hover .blog-more i {
    transform: translateX(5px)
}


/* --- Side list --- */

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 1.6rem
}

.blog-mini {
    display: grid;
    grid-template-columns: 40% 1fr;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease
}

.blog-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
    border-color: rgba(250, 115, 30, .3)
}

.blog-mini-media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 160px
}

.blog-mini-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.blog-mini:hover .blog-mini-media img {
    transform: scale(1.06)
}

.blog-mini .blog-chip {
    top: .75rem;
    left: .75rem;
    font-size: .66rem;
    padding: .28rem .65rem
}

.blog-mini-body {
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column
}

.blog-mini-body h5 {
    font-size: 1.05rem;
    line-height: 1.32;
    margin-bottom: .8rem
}

.blog-mini-body h5 a {
    color: var(--white);
    transition: color .3s
}

.blog-mini-body h5 a:hover {
    color: var(--orange)
}

.blog-mini .blog-more {
    margin-top: auto;
    font-size: .8rem
}

.blog-mini:hover .blog-more i {
    transform: translateX(5px)
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.side-card h6 {
    color: var(--white);
    font-family: var(--ff-display);
    margin-bottom: 1.1rem
}

.side-search {
    display: flex;
    gap: .5rem
}

.side-input {
    background: var(--bg-800);
    border: 1px solid var(--line);
    color: var(--white);
    border-radius: 8px;
    padding: .6rem .9rem;
    width: 100%
}

.side-input:focus {
    outline: none;
    border-color: var(--orange)
}

.side-list a {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    padding: .55rem 0;
    border-bottom: 1px solid var(--line)
}

.side-list a:last-child {
    border-bottom: none
}

.side-list a:hover {
    color: var(--orange);
    padding-left: 4px
}

.recent-item {
    display: flex;
    gap: .8rem;
    margin-bottom: 1rem
}

.recent-item:last-child {
    margin-bottom: 0
}

.recent-item img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex: none;
    border: 1px solid var(--line)
}

.recent-item .t {
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
    font-family: var(--ff-display);
    line-height: 1.3
}

.recent-item .t a {
    color: var(--white)
}

.recent-item .t a:hover {
    color: var(--orange)
}

.recent-item .d {
    color: var(--muted);
    font-size: .75rem;
    margin-top: .2rem
}

.tag {
    display: inline-block;
    background: var(--bg-800);
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 100px;
    padding: .35rem .85rem;
    font-size: .78rem;
    margin: 0 .35rem .35rem 0
}

.tag:hover {
    color: var(--orange);
    border-color: var(--orange)
}


/* ===================== BLOG DETAILS ===================== */

.post-hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 2rem;
    line-height: 0
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: var(--muted);
    font-size: .9rem;
    margin-top: .7rem
}

.post-meta .cat {
    color: var(--orange);
    font-weight: 600
}

.post-body {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85
}

.post-body h2 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem
}

.post-body h3 {
    font-size: 1.3rem;
    margin: 1.6rem 0 .8rem
}

.post-body p {
    margin-bottom: 1.2rem
}

.post-body ul {
    margin: 0 0 1.2rem 1.1rem;
    padding: 0
}

.post-body li {
    margin-bottom: .5rem
}

.post-quote {
    border-left: 4px solid var(--orange);
    background: var(--bg-card);
    border-radius: 0 14px 14px 0;
    padding: 1.4rem 1.7rem;
    margin: 1.8rem 0;
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--white)
}

.post-figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin: 1.8rem 0;
    line-height: 0
}

.author-box {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2.2rem
}

.author-box .av {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.2rem;
    flex: none
}

.author-box .an {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600
}

.author-box .ar {
    color: var(--orange);
    font-size: .85rem
}


/* ===================== CONTACT ===================== */

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    transition: .35s
}

.contact-info:hover {
    border-color: rgba(250, 115, 30, .35);
    transform: translateY(-4px)
}

.contact-info .ci {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(250, 115, 30, .14);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    flex: none
}

.contact-info h6 {
    color: var(--white);
    font-family: var(--ff-display);
    margin-bottom: .25rem
}

.contact-info p,
.contact-info a {
    color: var(--muted);
    margin: 0;
    font-size: .92rem
}

.contact-info a:hover {
    color: var(--orange)
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.3rem
}

.f-label {
    color: #cfd6e4;
    font-size: .85rem;
    font-family: var(--ff-display);
    font-weight: 600;
    margin-bottom: .4rem;
    display: block
}

.f-ctrl {
    width: 100%;
    background: var(--bg-800);
    border: 1px solid var(--line);
    color: var(--white);
    border-radius: 12px;
    padding: .8rem 1rem;
    transition: .3s;
    font-family: var(--ff-body)
}

.f-ctrl:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 115, 30, .15)
}

.f-ctrl::placeholder {
    color: #6b7488
}

textarea.f-ctrl {
    min-height: 140px;
    resize: vertical
}

.form-note {
    display: none;
    margin-top: 1rem;
    color: #34d399;
    font-weight: 600
}

.form-note.show {
    display: block
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(.4) invert(.92) hue-rotate(175deg) brightness(.9)
}


/* Testimonials carousel (auto-scroll + nav) */

.tcar {
    position: relative
}

.tcar-viewport {
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.tcar-viewport.is-dragging {
    cursor: grabbing
}

.tcar-track {
    display: flex;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1)
}

.tcar-track.no-anim {
    transition: none
}

.tcar-slide img,
.tcar-slide a {
    -webkit-user-drag: none;
    user-drag: none
}

.tcar-slide {
    flex: 0 0 100%;
    padding: 0 .6rem;
    box-sizing: border-box
}

.tcar-slide .tst-card {
    height: 100%
}

.tcar-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    margin-top: 2.2rem
}

.tcar-ctrl>button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: var(--bg-card);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .3s;
    font-size: .9rem
}

.tcar-ctrl>button:hover {
    background: var(--grad);
    color: #1a0d03;
    border-color: transparent
}

.tcar-dots {
    display: flex;
    gap: .5rem
}

.tcar-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--line-2);
    cursor: pointer;
    padding: 0;
    transition: .3s
}

.tcar-dots button.active {
    background: var(--orange);
    width: 28px;
    border-radius: 100px
}


/* ===================== PORTFOLIO / CASE STUDY DETAIL ===================== */

.cs-hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 1.8rem;
    line-height: 0
}

.cs-hero img {
    width: 100%;
    display: block
}

.cs-tags {
    margin-bottom: 1.4rem
}

.cs-tags .chip {
    display: inline-block;
    background: rgba(250, 115, 30, .12);
    color: var(--orange);
    border: 1px solid rgba(250, 115, 30, .3);
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-family: var(--ff-display);
    font-weight: 600;
    margin: 0 .4rem .4rem 0
}

.cs-meta {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.9rem;
    position: sticky;
    top: 100px
}

.cs-meta h6 {
    color: var(--white);
    font-family: var(--ff-display);
    margin-bottom: .8rem
}

.cs-meta .mrow {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line)
}

.cs-meta .mrow:last-of-type {
    border-bottom: none
}

.cs-meta .k {
    color: var(--muted);
    font-size: .85rem
}

.cs-meta .v {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .9rem;
    text-align: right
}

.cs-result {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.7rem 1rem;
    text-align: center;
    height: 100%;
    transition: .35s
}

.cs-result:hover {
    border-color: rgba(250, 115, 30, .35);
    transform: translateY(-4px)
}

.cs-result .n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1
}

.cs-result .l {
    color: var(--muted);
    font-size: .88rem;
    margin-top: .35rem
}

.cs-gallery img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line)
}

.cs-next {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.4rem 1.7rem;
    margin-top: 2.6rem;
    transition: .35s;
    color: var(--text)
}

.cs-next:hover {
    border-color: rgba(250, 115, 30, .4);
    transform: translateX(4px);
    color: var(--text)
}

.cs-next .lbl {
    color: var(--muted);
    font-size: .8rem;
    font-family: var(--ff-display);
    font-weight: 600;
    letter-spacing: .05em
}

.cs-next .ttl {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.15rem
}

.cs-next .arw {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    color: #1a0d03;
    display: grid;
    place-items: center;
    flex: none
}

.cs-quote-who {
    border-top: none;
    padding-top: 0;
    margin: -.4rem 0 1.4rem
}


/* ===================== PORTFOLIO / CASE STUDY DETAIL ===================== */

.cs-info {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.9rem;
    position: sticky;
    top: 90px
}

.cs-info .it {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line)
}

.cs-info .it:last-child {
    border-bottom: none
}

.cs-info .k {
    color: var(--muted);
    font-size: .85rem
}

.cs-info .v {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .9rem;
    text-align: right
}

.cs-info .v a {
    color: var(--orange)
}

.cs-stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.8rem 1rem;
    transition: .35s;
    height: 100%
}

.cs-stat:hover {
    border-color: rgba(250, 115, 30, .4);
    transform: translateY(-4px);
    box-shadow: var(--glow)
}

.cs-stat .n {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.2rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1
}

.cs-stat .l {
    color: var(--muted);
    font-size: .85rem;
    margin-top: .35rem
}

.cs-chip {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .14em;
    color: #1a0d03;
    background: var(--grad);
    padding: .35rem .85rem;
    border-radius: 100px;
    margin-bottom: 1rem
}

.reel-video {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 78vh;
    margin: 0 auto;
    border-radius: 16px;
    background: #000
}

#videoStage .ratio {
    border-radius: 16px;
    overflow: hidden
}


/* Scroll-reveal system (JS adds .js-reveal; falls back to fully visible without JS) */

.js-reveal [data-reveal],
.js-reveal [data-stagger]>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform
}

.js-reveal [data-reveal].is-in,
.js-reveal [data-stagger]>*.is-in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .js-reveal [data-reveal],
    .js-reveal [data-stagger]>* {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}


/* Calendly Meelting Button CSS */

.calendly-float {
    position: fixed;
    right: -72px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.calendly-float i {
    font-size: 14px;
}

.calendly-float:hover {
    color: var(--white);
    right: -65px;
}


/* =========================================================
   INDUSTRIES DROPDOWN
========================================================= */


/* ---------- Split nav item: label navigates, caret toggles submenu ---------- */

.nav-item.dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-item.dropdown>.dropdown-menu {
    flex: 0 0 100%;
    /* menu wraps onto its own full-width row */
}


/* the caret toggle button */

.dd-toggle {
    background: none;
    border: 0;
    padding: 8px 10px;
    margin: 0;
    color: inherit;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.dd-toggle:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 8px;
}

.dd-caret {
    font-size: .62rem;
    transition: transform .3s ease, color .25s ease;
    display: inline-block;
}

.dd-toggle:hover .dd-caret {
    color: var(--orange);
}


/* rotate + highlight when Bootstrap marks the toggle expanded */

.dd-toggle[aria-expanded="true"] .dd-caret {
    transform: rotate(180deg);
    color: var(--orange);
}


/* ---------- Desktop dropdown panel ---------- */

.navbar .nav-item.dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-800);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: .5rem;
    margin-top: .6rem;
    min-width: 230px;
    box-shadow: var(--shadow);
    animation: ddFade .22s ease;
}

@keyframes ddFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, .82);
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: .95rem;
    border-radius: 8px;
    padding: .58rem .85rem;
    transition: background .25s ease, color .25s ease, padding-left .25s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(250, 115, 30, .12);
    color: var(--orange);
    padding-left: 1.1rem;
}


/* ---------- Mobile offcanvas: render inline + animate open on click ---------- */

.offcanvas .dropdown-menu {
    display: block !important;
    position: static !important;
    float: none;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, .03);
    border: none;
    border-left: 2px solid var(--line-2);
    border-radius: 0;
    box-shadow: none;
    animation: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 0 0 .25rem;
    padding: 0 0 0 .75rem;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .28s ease, padding .4s cubic-bezier(.4, 0, .2, 1), margin .4s cubic-bezier(.4, 0, .2, 1);
}


/* expanded state (Bootstrap adds .show on click) */

.offcanvas .dropdown-menu.show {
    max-height: 420px;
    opacity: 1;
    margin: .15rem 0 .6rem .25rem;
    padding: .3rem 0 .3rem .75rem;
}

.offcanvas .dropdown-item {
    color: rgba(255, 255, 255, .78);
    font-family: var(--ff-body);
    font-weight: 500;
    border-radius: 8px;
    padding: .5rem .75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s ease, transform .35s cubic-bezier(.4, 0, .2, 1), background .25s ease, color .25s ease;
}

.offcanvas .dropdown-menu.show .dropdown-item {
    opacity: 1;
    transform: translateX(0);
}


/* gentle stagger so items cascade in on open */

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(1) {
    transition-delay: .08s;
}

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(2) {
    transition-delay: .13s;
}

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(3) {
    transition-delay: .18s;
}

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(4) {
    transition-delay: .23s;
}

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(5) {
    transition-delay: .28s;
}

.offcanvas .dropdown-menu.show .dropdown-item:nth-child(6) {
    transition-delay: .33s;
}

.offcanvas .dropdown-item:hover,
.offcanvas .dropdown-item:focus {
    background: rgba(250, 115, 30, .12);
    color: var(--orange);
}


/* respect users who prefer no motion */

@media (prefers-reduced-motion: reduce) {
    .offcanvas .dropdown-menu,
    .offcanvas .dropdown-item {
        transition: none;
    }
    .offcanvas .dropdown-menu.show .dropdown-item {
        transition-delay: 0s;
    }
}


/* ---------- Offcanvas split row: label (left) + caret toggle (right) ---------- */

.offcanvas .nav-item.dropdown {
    border-bottom: 1px solid var(--line);
}

.offcanvas .nav-item.dropdown>.nav-link-split {
    width: auto;
    flex: 1 1 auto;
    border-bottom: none !important;
}

.offcanvas .nav-item.dropdown>.dd-toggle {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 15px 2px 15px 18px;
    color: var(--text);
}

.offcanvas .nav-item.dropdown>.dd-toggle:hover .dd-caret,
.offcanvas .nav-item.dropdown>.dd-toggle[aria-expanded="true"] .dd-caret {
    color: var(--orange);
}

.tnp-subscription input[type=email] {
    background-color: rgba(255, 255, 255, .06) !important;
    border: 1px solid var(--line) !important;
    color: var(--white) !important;
    border-radius: 100px;
    outline: none;
}

.tnp-field label {
    color: var(--white) !important;
    margin-bottom: 1rem !important;
}

.tnp-subscription input.tnp-submit {
    background-color: var(--orange) !important;
    color: #1a0d03 !important;
    border: none !important;
    box-shadow: var(--glow);
    font-family: var(--ff-display);
    font-weight: 600;
    border-radius: 100px;
    padding: .85rem 1.9rem !important;
    transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.tnp-subscription input.tnp-submit:hover {
    box-shadow: var(--glow-lg);
    color: #1a0d03;
    transform: translateX(5px);
    background: var(--grad);
}


/* =========================================================
   G2C PARTNERS — CURVED ROADMAP
   FULL UPDATED CSS
========================================================= */

.g2c-roadmap {
    --g2c-bg: #080a0f;
    --g2c-bg-soft: #0d1016;
    --g2c-orange: #ff7a21;
    --g2c-orange-light: #ff9347;
    --g2c-orange-dark: #e85f0c;
    --g2c-text: #ffffff;
    --g2c-muted: #9ba3b4;
    --g2c-border: rgba(255, 122, 33, .22);
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, rgba(255, 122, 33, .035), transparent 42%), var(--g2c-bg);
    padding: 90px 0 50px;
}


/* =========================================================
   GLOBAL
========================================================= */

.g2c-roadmap *,
.g2c-roadmap *::before,
.g2c-roadmap *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.roadmap-container {
    /* width: min(1440px, 100%); */
    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================================
   DESKTOP ROADMAP
========================================================= */

.roadmap-desktop {
    position: relative;
    width: 100%;
    height: 610px;
    margin-top: 10px;
}


/* =========================================================
   SVG ROAD
========================================================= */

.road-svg {
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    height: 580px;
    overflow: visible;
    pointer-events: none;
}


/* =========================================================
   ROAD SHADOW / GLOW
========================================================= */

.road-shadow {
    fill: none;
    stroke: rgba(255, 122, 33, .12);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: blur(5px);
    transform: translateY(2px);
}


/* =========================================================
   MAIN ROAD
========================================================= */

.road-line {
    fill: none;
    stroke: url(#roadGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(255, 122, 33, .45)) drop-shadow(0 0 14px rgba(255, 122, 33, .18));
    stroke-dasharray: 2640;
    stroke-dashoffset: 2640;
    transition: stroke-dashoffset 2.8s cubic-bezier(.65, 0, .35, 1);
}

.g2c-roadmap.is-visible .road-line {
    stroke-dashoffset: 0;
}


/* =========================================================
   ROADMAP ITEMS
========================================================= */

.roadmap-item {
    position: absolute;
    width: 300px;
    height: 145px;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px) scale(.98);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

.g2c-roadmap.is-visible .roadmap-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* =========================================================
   DESKTOP MILESTONE LOCATIONS
========================================================= */


/* ---------- 2019 ---------- */

.item-2019 {
    left: 2%;
    top: 50px;
    transition-delay: .35s;
}


/* ---------- 2020 ---------- */

.item-2020 {
    left: 27%;
    top: 82px;
    transition-delay: .65s;
}


/* ---------- 2021 ---------- */

.item-2021 {
    left: 48%;
    top: 155px;
    transition-delay: .95s;
}


/* ---------- 2022 ---------- */

.item-2022 {
    left: 35%;
    top: 315px;
    transition-delay: 1.25s;
}


/* ---------- 2023 ---------- */

.item-2023 {
    left: 55%;
    top: 375px;
    transition-delay: 1.55s;
}


/* ---------- 2024 ---------- */

.item-2024 {
    left: 80%;
    top: 395px;
    transition-delay: 1.85s;
}


/* =========================================================
   YEAR PIN
========================================================= */

.road-pin {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, #17191f 45%, #0b0d12 100%);
    border: 3px solid var(--g2c-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 0 0 2px rgba(255, 122, 33, .08), 0 0 20px rgba(255, 122, 33, .28), 0 7px 25px rgba(0, 0, 0, .5);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}


/* Inner ring */

.road-pin::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 147, 71, .45);
    pointer-events: none;
}


/* Diamond pointer */

.road-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 12px;
    height: 12px;
    background: var(--g2c-orange);
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
    box-shadow: 3px 3px 8px rgba(255, 122, 33, .2);
}


/* =========================================================
   PIN HOVER
========================================================= */

.roadmap-item:hover .road-pin {
    transform: translateY(-6px) scale(1.08);
    background: radial-gradient(circle, #24262d 35%, #111318 100%);
    box-shadow: 0 0 0 5px rgba(255, 122, 33, .08), 0 0 30px rgba(255, 122, 33, .45), 0 12px 35px rgba(0, 0, 0, .6);
}


/* =========================================================
   DASH LINE
========================================================= */

.road-dash {
    position: absolute;
    left: 29px;
    top: 56px;
    width: 2px;
    height: 65px;
    background: repeating-linear-gradient(to bottom, var(--g2c-orange) 0 5px, transparent 5px 10px);
    opacity: .75;
    border-radius: 5px;
}


/* =========================================================
   CONTENT BASE
========================================================= */

.road-content {
    position: absolute;
    top: 1px;
    width: 215px;
    margin: 0;
    z-index: 5;
}

.road-content h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.road-content p {
    margin: 0;
    color: var(--g2c-muted);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   CONTENT POSITIONING
========================================================= */


/* ---------- 2019 ---------- */

.item-2019 .road-content {
    left: 82px;
    right: auto;
    width: 205px;
    text-align: left;
}


/* ---------- 2020 ---------- */

.item-2020 .road-content {
    left: 82px;
    right: auto;
    width: 205px;
    text-align: left;
}


/* ---------- 2021 ---------- */

.item-2021 .road-content {
    left: 82px;
    right: auto;
    width: 205px;
    text-align: left;
}


/* ---------- 2022 ---------- */


/*
    2022 text sits on the LEFT side
    so it doesn't collide with 2023.
*/

.item-2022 .road-content {
    left: auto;
    right: 330px;
    width: 225px;
    text-align: right;
}


/* ---------- 2023 ---------- */

.item-2023 .road-content {
    left: 82px;
    right: auto;
    width: 210px;
    text-align: left;
}


/* ---------- 2024 ---------- */

.item-2024 .road-content {
    left: 82px;
    right: auto;
    width: 215px;
    text-align: left;
}


/* =========================================================
   TEXT ALIGNMENT / READABILITY
========================================================= */

.item-2019 .road-content p,
.item-2020 .road-content p,
.item-2021 .road-content p,
.item-2023 .road-content p,
.item-2024 .road-content p {
    max-width: 210px;
}

.item-2022 .road-content p {
    max-width: 225px;
    margin-left: auto;
}


/* =========================================================
   MOBILE ROADMAP HIDDEN ON DESKTOP
========================================================= */

.roadmap-mobile {
    display: none;
}


/* =========================================================
   GLOBAL MAP (dotted world + animated markers)
========================================================= */

.wmap {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 0;
    aspect-ratio: 1000 / 389;
}

.wmap-dots {
    position: absolute;
    inset: 0;
    background: url(../img/world-dots.svg) center / contain no-repeat;
    opacity: 0;
    transform: scale(.985);
    transition: opacity 1s ease, transform 1.2s ease;
}

.wmap.is-in .wmap-dots {
    opacity: 1;
    transform: none;
}

.wmap-arcs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 0;
    transition: opacity .8s ease .5s;
}

.wmap.is-in .wmap-arcs {
    opacity: 1;
}

.wmap-arcs .arc {
    fill: none;
    stroke: rgba(250, 115, 30, .22);
    stroke-width: .3;
}

.wmap-arcs .arc-flow {
    fill: none;
    stroke: var(--orange);
    stroke-width: .55;
    stroke-linecap: round;
    stroke-dasharray: 3 165;
    filter: drop-shadow(0 0 1.5px var(--orange));
    animation: wmapFlow 4.5s linear infinite;
}

@keyframes wmapFlow {
    from {
        stroke-dashoffset: 168;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.wmap-markers {
    position: absolute;
    inset: 0;
}

.wmap-mk {
    position: absolute;
    width: 0;
    height: 0;
}

.mk-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px 1px rgba(250, 115, 30, .85);
    z-index: 2;
}

.mk-ping {
    position: absolute;
    left: 0;
    top: 0;
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    border-radius: 50%;
    background: rgba(250, 115, 30, .45);
    animation: mkPing 2.8s ease-out infinite;
    animation-delay: var(--d, 0s);
    z-index: 1;
}

@keyframes mkPing {
    0% {
        transform: scale(1);
        opacity: .7;
    }
    70% {
        opacity: 0;
    }
    100% {
        transform: scale(4.6);
        opacity: 0;
    }
}

.mk-label {
    position: absolute;
    left: 0;
    bottom: 12px;
    transform: translateX(-50%) translateY(6px);
    background: var(--bg-800);
    border: 1px solid var(--line-2);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 7px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 5;
}

.wmap-mk:hover .mk-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.js-reveal .wmap .wmap-mk .mk-dot,
.js-reveal .wmap .wmap-mk .mk-ping {
    transform: scale(0);
}

.wmap.is-in .wmap-mk .mk-dot {
    transform: scale(1);
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1) var(--d, 0s);
}

.wmap.is-in .wmap-mk .mk-ping {
    animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
    .wmap-dots,
    .wmap-arcs,
    .mk-dot {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .arc-flow,
    .mk-ping {
        animation: none !important;
    }
}


/* ================================
   GLOBAL TEAM CTA
================================ */

.team-cta-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #080a0f;
}


/* =========================================================
   DESKTOP BACKGROUND
========================================================= */

.desktop-team-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
    z-index: -2;
    transform: scale(1.03);
    animation: teamZoom 14s ease-in-out infinite alternate;
}

@keyframes teamZoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.07);
    }
}


/* =========================================================
   OVERLAY
========================================================= */

.team-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 7, 11, .95) 0%, rgba(5, 7, 11, .84) 34%, rgba(5, 7, 11, .48) 65%, rgba(5, 7, 11, .22) 82%, rgba(250, 115, 30, .20) 100%);
}


/* =========================================================
   ORANGE GLOW
========================================================= */

.team-cta-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(250, 115, 30, .18);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        opacity: .35;
    }
    to {
        opacity: .7;
    }
}


/* =========================================================
   CONTENT
========================================================= */

.team-cta-content {
    position: relative;
    z-index: 5;
    width: min(1200px, calc(100% - 80px));
    min-height: 390px;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.team-cta-text {
    max-width: 650px;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 7px 14px;
    color: var(--orange, #fa731e);
    border: 1px solid rgba(250, 115, 30, .4);
    border-radius: 50px;
    background: rgba(250, 115, 30, .08);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.team-cta-text h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 700;
}

.team-cta-text h2 span {
    color: var(--orange, #fa731e);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.team-cta-text p {
    max-width: 610px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
========================================================= */

.team-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    transition: .3s ease;
}


/* Primary */

.team-cta-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #fa731e, #ff963f);
    box-shadow: 0 10px 25px rgba(250, 115, 30, .25);
}

.team-cta-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(250, 115, 30, .4);
}


/* Outline */

.team-cta-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .04);
}

.team-cta-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    transform: translateY(-3px);
}


/* =========================================================
   MOBILE IMAGE
   Hidden on desktop
========================================================= */

.mobile-team-image {
    display: none;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .desktop-team-bg,
    .team-cta-glow {
        animation: none !important;
    }
    .team-cta-btn {
        transition: none !important;
    }
}


/* =========================================================
   WORLD MAP — marker positions & arc delays (class-based)
========================================================= */


/* --- world map marker positions (no inline styles) --- */

.wmap-mk.mk-1 {
    left: 15.99%;
    top: 33.02%;
    --d: 0.05s;
}

.wmap-mk.mk-2 {
    left: 29.44%;
    top: 30.92%;
    --d: 0.15s;
}

.wmap-mk.mk-3 {
    left: 49.96%;
    top: 23.21%;
    --d: 0.25s;
}

.wmap-mk.mk-4 {
    left: 37.05%;
    top: 76.82%;
    --d: 0.35s;
}

.wmap-mk.mk-5 {
    left: 65.35%;
    top: 42.0%;
    --d: 0.45s;
}

.wmap-mk.mk-6 {
    left: 71.55%;
    top: 50.74%;
    --d: 0.55s;
}

.wmap-mk.mk-7 {
    left: 78.84%;
    top: 59.04%;
    --d: 0.65s;
}

.wmap-mk.mk-8 {
    left: 92.0%;
    top: 84.19%;
    --d: 0.75s;
}


/* --- world map arc flow delays --- */

.wmap-arcs .arc-flow.af-1 {
    animation-delay: 0.0s;
}

.wmap-arcs .arc-flow.af-2 {
    animation-delay: 0.5s;
}

.wmap-arcs .arc-flow.af-3 {
    animation-delay: 1.0s;
}

.wmap-arcs .arc-flow.af-4 {
    animation-delay: 1.5s;
}

.wmap-arcs .arc-flow.af-5 {
    animation-delay: 2.0s;
}

.wmap-arcs .arc-flow.af-6 {
    animation-delay: 2.5s;
}

.wmap-arcs .arc-flow.af-7 {
    animation-delay: 3.0s;
}

.brand-accent {
    color: var(--orange);
}