:root {
    --bg: #080808;
    --bg1: #0F0F0F;
    --bg2: #141414;
    --bg3: #1A1A1A;
    --bg4: #1F1F1F;
    --border: rgba(255, 255, 255, 0.07);
    --borderB: rgba(255, 255, 255, 0.12);
    --borderG: rgba(252, 211, 0, 0.25);
    --gold: #FCD300;
    --goldD: #D4AE00;
    --goldSub: rgba(252, 211, 0, 0.08);
    --goldMid: rgba(252, 211, 0, 0.15);
    --white: #FFFFFF;
    --off: #F5F3EE;
    --muted: rgba(255, 255, 255, 0.42);
    --muted2: rgba(255, 255, 255, 0.20);
    --muted3: rgba(255, 255, 255, 0.10);
    --sans: 'Inter', 'DM Sans', sans-serif;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;
    --sh: 0 1px 3px rgba(0, 0, 0, .5), 0 4px 16px rgba(0, 0, 0, .4);
    --sh2: 0 2px 8px rgba(0, 0, 0, .6), 0 12px 40px rgba(0, 0, 0, .5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px
}

/* ── PROGRESS ── */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 9999;
    width: 0%;
    pointer-events: none;
    border-radius: 1px;
}

/* ── CURSOR ── */
#cur {
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
}

#cur-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(252, 211, 0, 0.35);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9997;
    transition: border-color .2s;
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
    border-color: rgba(252, 211, 0, .7);
}

@media (max-width: 1024px) {
    #cur, #cur-ring { display: none !important; }
    * { cursor: auto !important; }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 4rem;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, box-shadow .3s;
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Mobile Toggle (Renamed to avoid ad-filters) */
.tgl-btn {
    width: 60px; /* Increased hit area */
    height: 48px; /* Increased hit area */
    padding: 15px; /* Comfortable tapping area */
    position: relative;
    cursor: pointer;
    z-index: 100001 !important;
    display: none; /* Default hidden */
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.tgl-btn span {
    width: 32px;
    height: 2.5px;
    background: #FCD300 !important; /* Direct hex for fail-safe color */
    border-radius: 2px;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    display: block;
}

.tgl-btn.active span:nth-child(2) { opacity: 0; }
.tgl-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tgl-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay (Global base styles to prevent leaks) */
.mob-nav {
    position: fixed;
    inset: 0;
    background: #080808;
    z-index: 10000;
    padding: 8rem 2.5rem 3rem;
    display: none; /* Hidden by default globally */
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

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

.mob-top {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.mob-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mob-ul a {
    font-family: var(--sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: -.03em;
    transition: color .3s;
}

.mob-btm {
    margin-top: 3rem;
}

.mob-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #FCD300;
    color: #000;
    padding: 1.2rem;
    border-radius: var(--r-md);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.mob-social {
    display: flex;
    gap: 1.5rem;
}

.mob-social a {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    letter-spacing: .1em;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-name {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
}

.logo-name span {
    color: var(--gold);
}

.nav-ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 500;
    cursor: none;
    transition: color .18s;
    position: relative;
}

.nav-ul a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: width .3s cubic-bezier(.16, 1, .3, 1);
}

.nav-ul a:hover {
    color: var(--white);
}

.nav-ul a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--gold);
    color: #000;
    padding: .58rem 1.4rem;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: none;
    border-radius: var(--r-pill);
    letter-spacing: -.01em;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-btn:hover::before {
    transform: translateX(110%) skewX(-15deg);
}

.nav-btn:hover {
    background: var(--goldD);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(252, 211, 0, .3);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 9rem 4rem 5rem;
    overflow: hidden;
}

#hero-cvs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 0, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid var(--borderB);
    padding: .38rem .95rem;
    margin-bottom: 2rem;
    background: var(--bg2);
    border-radius: var(--r-pill);
    opacity: 0;
    animation: fup .7s ease .1s forwards;
}

.bdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {

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

    50% {
        opacity: .2;
        transform: scale(.6);
    }
}

.blabel {
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .7);
}

h1.hero-title {
    font-family: var(--sans);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 1.6rem;
    color: var(--white);
    opacity: 0;
    animation: fup .7s ease .25s forwards;
}

h1.hero-title .hl2 {
    color: var(--gold);
}

.hero-sub {
    font-size: .96rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.78;
    margin-bottom: 2.6rem;
    font-weight: 400;
    opacity: 0;
    animation: fup .7s ease .4s forwards;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fup .7s ease .55s forwards;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: .9rem 2.2rem;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    cursor: none;
    display: inline-block;
    border-radius: var(--r-pill);
    letter-spacing: -.01em;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .22);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-gold:hover::before {
    transform: translateX(110%) skewX(-15deg);
}

.btn-gold:hover {
    background: var(--goldD);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(252, 211, 0, .28);
}

.btn-line {
    color: var(--white);
    padding: .9rem 2rem;
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--borderB);
    transition: all .22s;
    cursor: none;
    display: inline-block;
    border-radius: var(--r-pill);
    letter-spacing: -.01em;
}

.btn-line:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-obj {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.2s ease .9s forwards;
}

#tri-cvs {
    width: 100%;
    height: 100%;
}

.hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hstat {
    text-align: right;
}

.hstat-n {
    font-family: var(--sans);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.04em;
}

.hstat-l {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-top: .2rem;
}

@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ── REEL ── */
.reel {
    padding: 0 4rem 5rem;
}

.reel-wrapper {
    position: relative;
    width: 100%;
}

.reel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.4);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: var(--white);
    padding: 0;
}
.reel-nav:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.reel-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.reel-prev { left: -1rem; }
.reel-next { right: -1rem; }

.reel-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.reel-slider::-webkit-scrollbar {
    display: none;
}
.reel-box {
    flex: 0 0 calc(100vw - 8rem);
    width: calc(100vw - 8rem);
    scroll-snap-align: center;
    position: relative;
    border: 1px solid var(--borderB);
    overflow: hidden;
    aspect-ratio: 16/7;
    background: var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-xl);
    box-shadow: var(--sh2);
}

.reel-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(252, 211, 0, 0.04), transparent);
}

.reel-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}
.video-modal-close:hover {
    color: var(--gold);
}
.video-modal-content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal.active .video-modal-content {
    transform: scale(1);
}
.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.rc {
    position: absolute;
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted2);
}

.rc-tl {
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(252, 211, 0, .55);
}

.rc-tr {
    top: 1.5rem;
    right: 1.5rem;
}

.rc-bl {
    bottom: 1.5rem;
    left: 1.5rem;
}

.rc-br {
    bottom: 1.5rem;
    right: 1.5rem;
    color: rgba(252, 211, 0, .4);
}

.play-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: none;
}

.play-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: rgba(252, 211, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    position: relative;
}

.play-ring::before {
    content: '';
    position: absolute;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 1px solid rgba(252, 211, 0, .18);
    animation: rpl 2.5s ease infinite;
}

.play-ring::after {
    content: '';
    position: absolute;
    width: 136px;
    height: 136px;
    border-radius: 50%;
    border: 1px solid rgba(252, 211, 0, .08);
    animation: rpl 2.5s ease .65s infinite;
}

@keyframes rpl {
    0% {
        transform: scale(1);
        opacity: .6
    }

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

.play-ring:hover {
    background: rgba(252, 211, 0, .12);
    transform: scale(1.08);
    box-shadow: 0 0 48px rgba(252, 211, 0, .12);
}

.play-ring svg {
    width: 26px;
    fill: var(--gold);
    margin-left: 4px;
}

.reel-sub {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-top: 1.3rem;
}

/* ── TICKER ── */
.ticker {
    padding: 1.8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg1);
}

.ticker-lbl {
    padding: 0 3rem;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
    white-space: nowrap;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    background: var(--bg1);
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 3.5rem;
    animation: scrollL 22s linear infinite;
    flex-shrink: 0;
}

.ticker-i {
    font-size: .85rem;
    font-weight: 500;
    color: var(--muted2);
    white-space: nowrap;
    transition: color .3s;
    letter-spacing: -.01em;
    flex-shrink: 0;
}

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

.ticker-track:hover .ticker-i {
    color: var(--muted);
}

@keyframes scrollL {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── SECTION LABEL ── */
.stag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid var(--borderB);
    padding: .34rem .85rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.2rem;
    background: var(--bg2);
}

.stag-line {
    width: 0;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: width .7s cubic-bezier(.16, 1, .3, 1);
}

.stag.vis .stag-line {
    width: 22px;
}

.stag-text {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

h2.sec-title {
    font-family: var(--sans);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.04em;
    margin-bottom: 1.2rem;
}

h2.sec-title em {
    font-style: normal;
    color: var(--gold);
}

.sec-body {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.82;
    font-weight: 400;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .6s ease, transform .6s ease;
    backface-visibility: hidden;
}

.reveal-left.vis {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .6s ease, transform .6s ease;
    backface-visibility: hidden;
}

.reveal-right.vis {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.s1 {
    transition-delay: .08s !important;
}

.s2 {
    transition-delay: .16s !important;
}

.s3 {
    transition-delay: .24s !important;
}

.s4 {
    transition-delay: .32s !important;
}

.s5 {
    transition-delay: .40s !important;
}

.s6 {
    transition-delay: .48s !important;
}

/* ── NICHE ── */
.niche {
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.pain-stack {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 2rem;
}

.pain-card {
    background: var(--bg2);
    padding: 1.5rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.pain-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.pain-card:hover::before {
    transform: scaleY(1);
}

.pain-card:hover {
    border-color: var(--borderG);
    background: var(--bg3);
    transform: translateX(6px);
}

.pain-no {
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: .3rem;
}

.pain-h {
    font-size: .96rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .3rem;
    letter-spacing: -.02em;
}

.pain-p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.72;
}

.prg-wrap {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 2rem;
}

.prg-row {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.3rem 1.6rem;
}

.prg-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
}

.prg-label {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7); /* Increased visibility */
    letter-spacing: -.01em;
    forced-color-adjust: none; /* Prevents browsers from stripping colors */
}

.prg-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -.04em;
}

.prg-bar {
    height: 4px;
    background: var(--bg4);
    border-radius: 4px;
    overflow: hidden;
}

.prg-fill {
    height: 100%;
    width: 0;
    max-width: var(--fill, 100%);
    border-radius: 4px;
    transition: width 1.8s cubic-bezier(.16, 1, .3, 1);
    background: linear-gradient(90deg, var(--gold), rgba(252, 211, 0, .5));
}

.ai-note {
    margin-top: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: var(--goldSub);
    border: 1px solid var(--borderG);
    border-radius: var(--r-lg);
}

.ai-note-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(252, 211, 0, .6);
    margin-bottom: .5rem;
}

.ai-note-body {
    font-size: .86rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.75;
    font-style: italic;
}

.ai-note-body strong {
    font-style: normal;
    color: var(--white);
    font-weight: 700;
}

/* ── SERVICES ── */
.services {
    padding: 7rem 4rem;
    background: var(--bg1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.svc-head {
    text-align: center;
    margin-bottom: 4rem;
}

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

.svc-card {
    background: var(--bg1);
    padding: 2.4rem 2.2rem;
    border-top: 2px solid transparent;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    opacity: 0;
    transform: translateY(22px);
}

.svc-card.vis {
    opacity: 1;
    transform: translateY(0);
}

.svc-card:hover {
    border-top-color: var(--gold);
    background: var(--bg2);
}

.svc-card:hover .svc-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.svc-card:hover .svc-icon svg {
    stroke: #000;
}

.svc-num {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--muted2);
    margin-bottom: 1.5rem;
    display: block;
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all .3s;
}

.svc-icon svg {
    width: 21px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke .3s;
}

.svc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .7rem;
    letter-spacing: -.02em;
}

.svc-desc {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.8;
}

.svc-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: 1.2rem;
}

.svc-plat {
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted2);
    border: 1px solid var(--border);
    padding: .2rem .55rem;
    border-radius: var(--r-pill);
    transition: all .2s;
}

.svc-card:hover .svc-plat {
    border-color: rgba(252, 211, 0, .2);
    color: rgba(252, 211, 0, .6);
}

/* ── PROCESS ── */
.process {
    padding: 7rem 4rem;
}

.proc-head {
    text-align: center;
    margin-bottom: 4rem;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    position: relative;
}

.proc-line-track {
    display: none;
}

.proc-step {
    background: var(--bg1);
    padding: 2.4rem 2rem;
    transition: all .3s;
    position: relative;
}

.proc-step::after {
    content: attr(data-n);
    position: absolute;
    top: 2rem;
    right: 1.6rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(252, 211, 0, .04);
    letter-spacing: -.05em;
    pointer-events: none;
}

.proc-step:hover {
    background: var(--bg2);
}

.proc-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--borderB);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all .3s;
    position: relative;
    z-index: 1;
}

.proc-step:hover .proc-dot {
    background: var(--gold);
    border-color: var(--gold);
}

.proc-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -.04em;
    transition: color .3s;
}

.proc-step:hover .proc-num {
    color: #000;
}

.proc-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .6rem;
}

.proc-desc {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.78;
}

/* ── PORTFOLIO ── */
.portfolio {
    padding: 7rem 4rem;
    background: var(--bg1);
    border-top: 1px solid var(--border);
}

.port-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.port-note {
    max-width: 200px;
    font-size: .72rem;
    color: var(--muted2);
    line-height: 1.7;
    text-align: right;
    font-style: italic;
    border-right: 1px solid rgba(252, 211, 0, .3);
    padding-right: .9rem;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.port-btm {
    padding: 0 4rem;
}

.port-item {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--bg);
    opacity: 0;
    transform: scale(.96);
    transition: opacity .55s ease, transform .55s ease;
}

.port-item.vis {
    opacity: 1;
    transform: scale(1);
}

.port-item.big {
    grid-column: span 2;
}

.p-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .65s cubic-bezier(.16, 1, .3, 1);
    position: relative;
}

.port-item.big .p-thumb {
    aspect-ratio: 8/3;
}

@media (max-width: 900px) {
    .port-item.big { grid-column: span 1; }
    .port-item.big .p-thumb { aspect-ratio: 4/3; }
}

.p-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 211, 0, .05), rgba(0, 0, 0, .5));
    transition: opacity .35s;
    opacity: 0;
}

.port-item:hover .p-bg {
    opacity: 1;
}

.p-ph {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .12);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: -.01em;
}

.port-item:hover .p-thumb {
    transform: scale(1.04);
}

.p-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
}

.port-item:hover .p-ov {
    opacity: 1;
}

.p-cat {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
}

.p-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
}

.p-arr {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #000;
    font-weight: 700;
    opacity: 0;
    transform: scale(.6);
    transition: all .3s;
}

.port-item:hover .p-arr {
    opacity: 1;
    transform: scale(1);
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 7rem 4rem;
    border-top: 1px solid var(--border);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 4rem;
}

.test-card {
    background: var(--bg1);
    padding: 2.4rem;
    border-top: 2px solid transparent;
    transition: all .3s;
}

.test-card:hover {
    border-top-color: var(--gold);
    background: var(--bg2);
}

.test-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
    gap: 1rem;
    border: 1px dashed rgba(252, 211, 0, .12);
    background: var(--bg3);
    padding: 2rem;
}

.test-ph-star {
    font-size: .95rem;
    letter-spacing: .32rem;
    color: rgba(252, 211, 0, .2);
}

.test-ph-title {
    font-size: .95rem;
    font-style: italic;
    color: rgba(252, 211, 0, .3);
}

.test-ph-sub {
    font-size: .65rem;
    color: var(--muted2);
    line-height: 1.65;
}

.test-honest {
    margin-top: 2.5rem;
    text-align: center;
}

.test-honest p {
    font-size: .9rem;
    font-style: italic;
    color: var(--muted2);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ── PRICING ── */
.pricing {
    padding: 7rem 4rem;
    background: var(--bg1);
    border-top: 1px solid var(--border);
}

.pricing-hd {
    text-align: center;
    margin-bottom: 3.5rem;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.t-lbl {
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    transition: color .25s;
    letter-spacing: -.01em;
}

.t-lbl.on {
    color: var(--white);
}

.t-sw {
    width: 50px;
    height: 26px;
    background: var(--bg3);
    border: 1px solid var(--borderB);
    border-radius: var(--r-pill);
    position: relative;
    cursor: none;
    transition: all .25s;
}

.t-sw.active {
    background: var(--goldSub);
    border-color: var(--borderG);
}

.t-knob {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 2px 8px rgba(252, 211, 0, .3);
}

.t-sw.active .t-knob {
    transform: translateX(24px);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.price-card {
    background: var(--bg1);
    padding: 2.4rem 2rem;
    position: relative;
    transition: background .25s, transform .25s;
}

.price-card:hover {
    background: var(--bg2);
}

.price-card.hot {
    background: var(--bg2);
    border: 1px solid var(--borderG);
    margin: -1px;
    z-index: 2;
    position: relative;
}

.price-card.hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.hot-tag {
    position: absolute;
    top: 0;
    right: 1.2rem;
    background: var(--gold);
    color: #000;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .24rem .65rem;
    border-radius: 0 0 6px 6px;
}

.pc-tier {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: .55rem;
}

.pc-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .55rem;
    letter-spacing: -.04em;
}

.pc-desc {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.68;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.pc-price {
    margin-bottom: 1.6rem;
}

.pc-curr {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: top;
    margin-top: .45rem;
    display: inline-block;
}

.pc-amt {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.06em;
}

.pc-per {
    font-size: .66rem;
    color: var(--muted);
    display: block;
    margin-top: .12rem;
}

.pc-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.8rem;
}

.pc-feats li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.5;
}

.pf-d {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .05rem;
}

.pf-d::after {
    content: '✓';
    font-size: .55rem;
    color: var(--gold);
    font-weight: 700;
}

.price-card.hot .pf-d {
    background: var(--goldSub);
    border-color: var(--borderG);
}

.pc-cta {
    display: block;
    text-align: center;
    padding: .84rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: all .22s;
    cursor: none;
    border-radius: var(--r);
}

.pc-cta.outline {
    border: 1px solid var(--borderB);
    color: var(--white);
}

.pc-cta.outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.pc-cta.solid {
    background: var(--gold);
    color: #000;
    position: relative;
    overflow: hidden;
}

.pc-cta.solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .2);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.pc-cta.solid:hover::before {
    transform: translateX(110%) skewX(-15deg);
}

.pc-cta.solid:hover {
    background: var(--goldD);
    transform: translateY(-2px);
}

/* ── CONTENT / BLOG ── */
.content {
    padding: 7rem 4rem;
    border-top: 1px solid var(--border);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 4.5rem;
    align-items: start;
}

.blog-hd {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1.4rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
}

.blog-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all .22s;
    cursor: none;
}

.blog-row:hover {
    padding-left: .5rem;
    border-color: rgba(252, 211, 0, .2);
}

.blog-row:hover .blog-t {
    color: var(--gold);
}

.blog-no {
    font-size: 1rem;
    font-weight: 800;
    color: rgba(252, 211, 0, .3);
    flex-shrink: 0;
    min-width: 1.5rem;
    margin-top: .1rem;
    letter-spacing: -.03em;
}

.blog-t {
    font-size: .94rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.38;
    margin-bottom: .28rem;
    transition: color .2s;
    letter-spacing: -.02em;
}

.blog-d {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--muted2);
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.8rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    cursor: none;
    transition: gap .2s;
}

.blog-more:hover {
    gap: .8rem;
}

.li-box {
    background: var(--bg2);
    border: 1px solid var(--borderB);
    padding: 2.8rem;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

.li-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 0, .05), transparent 70%);
}

.li-icon {
    width: 42px;
    height: 42px;
    background: var(--goldSub);
    border: 1px solid var(--borderG);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.li-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .9rem;
    letter-spacing: -.04em;
}

.li-title em {
    font-style: normal;
    color: var(--gold);
}

.li-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.li-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: 1.4rem;
}

.li-tag {
    padding: .24rem .65rem;
    font-size: .57rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted2);
    border-radius: var(--r-pill);
    transition: all .2s;
}

.li-tag.on {
    border-color: var(--borderG);
    color: var(--gold);
    background: var(--goldSub);
}

.li-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: .9rem;
}

.li-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.4rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: all .22s;
    cursor: none;
    border-radius: var(--r-pill);
    position: relative;
    overflow: hidden;
}

.li-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .18);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.li-btn:hover::before {
    transform: translateX(110%) skewX(-15deg);
}

.li-btn-company {
    background: var(--gold);
    color: #000;
}

.li-btn-company:hover {
    background: var(--goldD);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 211, 0, .2);
}

.li-btn-personal {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--borderB);
}

.li-btn-personal:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.li-btn svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}

.li-note {
    font-size: .78rem;
    font-style: italic;
    color: var(--muted2);
}

/* ── CTA ── */
.cta {
    padding: 9rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg1);
    border-top: 1px solid var(--border);
}

#cta-cvs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(252, 211, 0, .04), transparent 65%);
}

.cta-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: .96;
    margin-bottom: 1.4rem;
    position: relative;
    letter-spacing: -.06em;
}

.cta-title .c1 {
    display: block;
    color: var(--white);
}

.cta-title .c2 {
    display: block;
    color: var(--gold);
}

.cta-sub {
    font-size: .9rem;
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 2.8rem;
    line-height: 1.82;
    position: relative;
}

.cal-btn {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    background: var(--gold);
    color: #000;
    padding: 1.1rem 2.8rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: all .3s;
    cursor: none;
    position: relative;
    border-radius: var(--r-pill);
    overflow: hidden;
}

.cal-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .22);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.cal-btn:hover::before {
    transform: translateX(110%) skewX(-15deg);
}

.cal-btn:hover {
    background: var(--goldD);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(252, 211, 0, .22);
}

.cta-or {
    font-size: .84rem;
    font-style: italic;
    color: var(--muted2);
    margin: 2.2rem 0;
    position: relative;
}

.email-row {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--borderB);
    border-radius: var(--r-pill);
    overflow: hidden;
    background: var(--bg2);
}

.email-inp {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    padding: .9rem 1.4rem;
    font-size: .83rem;
    outline: none;
}

.email-inp::placeholder {
    color: var(--muted2);
}

.email-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: .9rem 1.5rem;
    font-size: .7rem;
    font-weight: 700;
    cursor: none;
    transition: background .2s;
    white-space: nowrap;
    border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

.email-btn:hover {
    background: var(--goldD);
}

.email-note {
    font-size: .62rem;
    color: var(--muted2);
    margin-top: .6rem;
    font-style: italic;
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem 5rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 211, 0, .4), transparent);
}

#foot-cvs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.foot-logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: .4rem;
}

.foot-logo-name span {
    color: var(--gold);
}

.foot-logo-img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: .6rem;
    display: block;
}

.foot-tagline {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(252, 211, 0, .35);
    margin-bottom: .85rem;
}

.foot-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 240px;
    margin-bottom: 1.3rem;
}

.foot-social {
    display: flex;
    gap: .5rem;
}

.foot-soc {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 700;
    color: var(--muted2);
    text-decoration: none;
    transition: all .22s;
    cursor: none;
}

.foot-soc:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.foot-col-h {
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1.2rem;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.foot-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .78rem;
    transition: all .2s;
    cursor: none;
    font-weight: 400;
}

.foot-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
    display: inline-block;
}

.foot-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.foot-copy {
    font-size: .6rem;
    color: var(--muted2);
}

.foot-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .6rem;
    color: var(--muted2);
}

.f-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s infinite;
}

/* MOBILE */
@media(max-width:1024px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-ul,
    .nav-btn {
        display: none;
    }

    .tgl-btn {
        display: flex !important;
        position: fixed;
        right: 1.5rem;
        top: 1rem;
        width: 48px;
        height: 48px;
        padding: 13px;
        background: rgba(8, 8, 8, 0.4);
        backdrop-filter: blur(8px);
        border-radius: 50%;
    }

    /* Mobile Nav Activation */
    .mob-nav {
        display: flex;
    }

    .mob-social {
        display: flex;
        gap: 1.5rem;
    }

    .mob-social a {
        font-size: .8rem;
        font-weight: 700;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: .1em;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-obj,
    .hero-stats {
        display: none;
    }

    .reel {
        padding: 0 0 4rem;
    }

    .niche,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .reel-box {
        width: 100%;
        flex: 0 0 100%;
        border-radius: 0;
        aspect-ratio: 16/9;
    }

    .rc { font-size: 0.65rem; }
    .rc-tl { top: 1.5rem; left: 1.5rem; }
    .rc-tr { top: 1.5rem; right: 1.5rem; }
    .rc-bl { bottom: 1.5rem; left: 1.5rem; }
    .rc-br { bottom: 1.5rem; right: 1.5rem; }

    .services,
    .process,
    .testimonials,
    .pricing,
    .content,
    .cta {
        padding: 4rem 1.5rem;
    }

    .portfolio {
        padding: 4rem 0;
    }

    .svc-grid,
    .port-grid,
    .test-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

/* .port-item.big {
        grid-column: span 1;
    } */

    .proc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .port-hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 0 1.5rem;
    }

    .port-btm {
        padding: 0 1.5rem;
    }

    .port-note {
        text-align: left;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .foot-btm {
        flex-direction: column;
        gap: .7rem;
        text-align: center;
    }

    .email-row {
        flex-direction: column;
        border-radius: var(--r);
    }

    .email-inp {
        border-radius: var(--r) var(--r) 0 0;
    }

    .email-btn {
        border-radius: 0 0 var(--r) var(--r);
    }

    .li-btns {
        flex-direction: column;
    }
}

