

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__logo {
    width: 220px;
    height: auto;
    animation: preloader-breathe 3s ease-in-out infinite;
    filter: brightness(1);
}

@keyframes preloader-breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
        filter: brightness(1);
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
        filter: brightness(1.3);
    }
}

.preloader__bar-wrap {
    width: 170px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.preloader__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
    border-radius: 100px;
    transition: width 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background: #050505;
    overflow-x: hidden;
    cursor: none;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, transform 0.1s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

/* Cursor Interactive States */
body.cursor-hover .cursor-follower {
    width: 40px;
    height: 40px;
}

body.cursor-view .cursor-follower {
    width: 65px;
    height: 65px;
    background: #f1f1f1;
    /* Brand Yellow */
    mix-blend-mode: normal;
    border: none;
}

body.cursor-view .cursor-follower::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256' fill='black' viewBox='0 0 256 256'%3E%3Cpath d='M200,64V168a8,8,0,0,1-16,0V83.31L69.66,197.66a8,8,0,0,1-11.32-11.32L172.69,72H88a8,8,0,0,1,0-16H192A8,8,0,0,1,200,64Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 1024px) {
    body {
        cursor: auto;
    }

    .cursor-follower {
        display: none;
    }
}






a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}

/* ---------- VARIABLES ---------- */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #141414;
    --border: rgba(255, 255, 255, 0.07);
    --border-light: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #c9c9c9;
    --text-muted: #696969;
    --accent: #ffffff;
    --primary: #D4FF44;
    --radius: 16px;
    --radius-sm: 10px;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --charcoal: #0a0a0a;
    --white: #ffffff;
    --black: #000000;
    --font-display: 'Inter', sans-serif;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: table;
    margin: 0 auto 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 6px 18px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header--row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.section-header .section-subtitle {
    margin-bottom: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn--primary {
    background: var(--primary);
    color: #000;
}

.btn--primary:hover {
    background: #D4FF44;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 217, 125, 0.3);
}

/* Premium Button Animation: Rolling Text */
.btn--premium {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #000;
    padding: 14px 32px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    border: none;
    text-decoration: none;
    cursor: pointer;
}

/* Premium Button Animation: Rolling Text Utility */
.btn-text-roll {
    position: relative;
    display: inline-block;
    height: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    vertical-align: middle;
    visibility: hidden;
    /* Hide the base text while maintaining color inheritance */
}

.btn-text-roll::before,
.btn-text-roll::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    color: currentColor;
    visibility: visible;
    /* Make pseudo-elements visible */
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-text-roll::before {
    top: 0;
}

.btn-text-roll::after {
    top: 100%;
}

/* Hover Triggers */
.btn:hover .btn-text-roll::before,
a:hover .btn-text-roll::before,
button:hover .btn-text-roll::before {
    transform: translateY(-100%);
}

.btn:hover .btn-text-roll::after,
a:hover .btn-text-roll::after,
button:hover .btn-text-roll::after {
    transform: translateY(-100%);
}


.btn--premium:active {
    transform: scale(0.96);
}

.btn--outline {
    border: 1px solid var(--border-light);
    color: #fff;
    background: transparent;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn--animated {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 48px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--animated span {
    background: linear-gradient(90deg, #D4FF44, #ffffff, #D4FF44);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 3s linear infinite;
    font-weight: 800;
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}

.btn--animated:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 255, 68, 0.2);
}

/* ---------- FINAL CTA SECTION ---------- */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 255, 68, 0.03) 0%, transparent 70%);
}

.final-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.btn--full {
    width: 100%;
}

/* ---------- TAGS ---------- */
.tag {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--border-light);
    color: var(--text-secondary);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s, backdrop-filter 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hide navbar background when menu is open */
.menu-open .navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

@media (max-width: 1024px) {
    .navbar.scrolled .navbar__container {
        max-width: 1700px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0 48px;
        box-shadow: none;
    }
}

@media (max-width: 809px) {
    .navbar__container {
        padding: 0 20px !important;
    }
}

.navbar__container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s ease;
}

@media (max-width: 809px) {
    .navbar__container {
        padding: 0 20px;
    }
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 24px;
    width: auto;
    transform: translateY(-5px);
}

.navbar__nav {
    display: flex;
    gap: 32px;
}

.navbar__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.navbar__link:hover,
.navbar__link.active {
    color: #fff;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/* ---------- NAVBAR DROPDOWN ---------- */
.navbar__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Hide underline on dropdown trigger since it has chevron */
.navbar__dropdown>.navbar__link::after {
    display: none;
}

.navbar__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
}

.navbar__dropdown-trigger:hover,
.navbar__dropdown-trigger.active {
    color: #fff;
    background: none;
    border-color: transparent;
}

.navbar__dropdown-text {
    position: relative;
}

.navbar__dropdown-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.navbar__dropdown-trigger:hover .navbar__dropdown-text::after,
.navbar__dropdown-trigger.active .navbar__dropdown-text::after {
    width: 100%;
}

.navbar__dropdown-chevron {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.navbar__dropdown:hover .navbar__dropdown-chevron,
.navbar__dropdown.open .navbar__dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 200px;
    padding-top: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
}

.navbar__dropdown-menu-inner {
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Small arrow/caret pointing up */
.navbar__dropdown-menu-inner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(12, 12, 12, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.navbar__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.navbar__dropdown-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.navbar__dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 6px 8px;
}

.navbar__mobile-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.navbar__mobile-dropdown-trigger {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.navbar__mobile-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active,
.navbar__mobile-dropdown-trigger.open,
.navbar__mobile-dropdown-trigger.active {
    color: #fff;
}

.navbar__mobile-dropdown-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar__mobile-dropdown-list.open {
    max-height: 400px;
    opacity: 1;
    margin-top: 24px;
    margin-bottom: 12px;
}

.navbar__mobile-dropdown-list a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.navbar__mobile-dropdown-list a:hover {
    color: #fff;
}

/* Condensed Navbar on Scroll (Desktop Only) */
@media (min-width: 1025px) {
    .navbar {
        transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Base state: always has transition so expanding is also smooth */
    .navbar__container {
        transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            border 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.condensed {
        padding: 8px 0;
    }

    .navbar.condensed .navbar__container {
        max-width: 820px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 10px 28px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .navbar.condensed .navbar__logo-img {
        height: 20px;
        transform: translateY(0);
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar__logo-img {
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.condensed .navbar__nav {
        gap: 20px;
    }

    .navbar__nav {
        transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Remove the default scroll background when condensed container is used */
    .navbar.scrolled.condensed {
        background: transparent;
        backdrop-filter: none;
    }
}

/* Hamburger */
.navbar__hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1100;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
}

.navbar.scrolled .navbar__hamburger,
.navbar__hamburger.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 11px;
}

.navbar__hamburger span:nth-child(1) {
    top: 14px;
}

.navbar__hamburger span:nth-child(2) {
    top: 21px;
}

.navbar__hamburger span:nth-child(3) {
    top: 28px;
}

.navbar__hamburger.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.navbar__hamburger.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* Mobile Menu Sidebar & Overlay */
.navbar__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1090;
}

.navbar__mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.navbar__mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    padding: 120px 40px 40px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1095;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__mobile-menu.open {
    transform: translateX(0);
}

.navbar__mobile-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.navbar__mobile-link:hover {
    color: #fff;
}

/* Responsive helpers */
.hidden-mobile {
    display: flex;
}

.hidden-desktop {
    display: none;
}

@media (max-width: 809px) {
    .hidden-mobile {
        display: none !important;
    }

    .hidden-desktop {
        display: flex !important;
    }
}

/* ---------- SUB-PAGE SPECIFIC ---------- */
.navbar--sub {
    border-bottom: 1px solid var(--border);
    background: #050505 !important;
}

.navbar--sub.scrolled {
    background: #050505 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar--sub.condensed .navbar__container {
    background: #050505 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar--sub .navbar__container {
    justify-content: center;
}

.sub-page-main {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 60vh;
}

.back-home-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.back-home-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.back-home-link i {
    font-size: 16px;
}

.sub-page-title {
    margin-bottom: 60px;
    text-align: center;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('https://i.pinimg.com/1200x/43/f6/05/43f6059a377653afb985ab429cbf38c0.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 40px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #48ff00;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero__title {
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}

.hero__subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__proof-icon {
    width: 20px;
    height: 20px;
    opacity: 0.85;
    border-radius: 4px;
    object-fit: contain;
}

.hero__proof-stars {
    font-size: 16px;
    color: #facc15;
    letter-spacing: 2px;
    line-height: 1;
}

.hero__proof-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__proof-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

/* ---------- HERO SCROLL ---------- */
.hero__scroll {
    position: relative;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.hero__scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__scroll-dot {
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 100px;
    position: absolute;
    top: 8px;
    animation: scroll-dot 2s infinite ease-in-out;
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero__scroll-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .hero__scroll {
        display: none;
    }
}

/* ---------- FEATURE SHOWCASE (DASHBOARD) ---------- */
.feature-showcase {
    padding: 100px 0 160px;
    /* Increased bottom padding for mask */
    position: relative;
    background: #050505;
    overflow: hidden;
    perspective: 1500px;
}

.feature-showcase__bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 217, 125, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-wrap {
    background: rgba(4, 4, 4, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 700px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.reveal-3d {
    transform: translateY(80px) rotateX(16deg) scale(0.92);
    opacity: 0;
    filter: blur(10px);
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center top;
}

.reveal-3d.visible {
    transform: translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
}

.feature-showcase__mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, transparent, #050505 70%);
    pointer-events: none;
    z-index: 2;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black);
}

/* Sidebar */
.dashboard-sidebar {
    padding: 40px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dashboard-sidebar__logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 10px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-nav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dashboard-nav__item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.dashboard-nav__item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-nav__item.active i {
    color: #f6f6f6;
    /* Using our accent yellow for active icon */
}

/* Content Area */
.dashboard-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Stats Grid */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.stat-card__value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-card__growth {
    font-size: 12px;
    font-weight: 600;
    color: #4ade80;
}

/* Main Showcase Grid */
.dashboard-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    flex-grow: 1;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.showcase-card__header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.showcase-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.showcase-card__visual {
    flex-grow: 1;
    position: relative;
    background: #000;
    margin: 0 24px 24px;
    border-radius: 16px;
    overflow: hidden;
}

.showcase-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-card__img {
    transform: scale(1.05);
    opacity: 1;
}

/* Live Partners List */
.partners-card {
    padding: 24px;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.partner-info {
    flex-grow: 1;
}

.partner-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.partner-status {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.partner-status__bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #48ff00;
    border-radius: 100px;
}

/* Responsive Dashboard */
@media (max-width: 1100px) {
    .dashboard-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .dashboard-sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 20px 30px;
        align-items: center;
        gap: 20px;
    }

    .dashboard-nav {
        flex-direction: row;
        margin-left: auto;
        gap: 8px;
    }

    .dashboard-content {
        padding: 24px;
    }
}

@media (max-width: 850px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .dashboard-sidebar {
        padding: 16px;
        justify-content: space-between;
    }

    .dashboard-sidebar__logo {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .dashboard-nav__item span {
        display: none;
    }

    .dashboard-nav__item {
        padding: 10px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card__value {
        font-size: 24px;
    }
}

/* ---------- LOGO ROLL SECTION ---------- */
.logo-roll-section {
    padding: 60px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-roll-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.logo-roll-item {
    width: 140px;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.logo-roll-inner {
    display: flex;
    flex-direction: column;
    height: 200%;
    animation: logoSnapRoll 20s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

.logo-roll-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-roll-item:hover .logo-roll-img {
    opacity: 1;
}

/* Sequential Delays — 2.5s gap between each */
.seq-1 {
    animation-delay: 0s;
}

.seq-2 {
    animation-delay: 2.5s;
}

.seq-3 {
    animation-delay: 5s;
}

.seq-4 {
    animation-delay: 7.5s;
}

.seq-5 {
    animation-delay: 10s;
}

.seq-6 {
    animation-delay: 12.5s;
}

.seq-7 {
    animation-delay: 15s;
}

.seq-8 {
    animation-delay: 17.5s;
}

/* For extra logos if any */

@keyframes logoSnapRoll {

    0%,
    30% {
        transform: translateY(0);
    }

    40%,
    80% {
        transform: translateY(-50%);
    }

    90%,
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-roll-container {
        flex-wrap: wrap;
        gap: 40px 30px;
        justify-content: center;
    }

    .logo-roll-item {
        width: calc(33.33% - 20px);
        min-width: 90px;
        height: 45px;
    }

    .logo-roll-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-roll-container {
        gap: 30px 15px;
    }

    .logo-roll-item {
        width: calc(33.33% - 10px);
        min-width: 80px;
        height: 40px;
    }

    .logo-roll-img {
        height: 40px;
    }
}

/* ---------- PROCESS ---------- */
.process {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process__bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.process .section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin: 0 auto 16px;
    text-align: center;
    width: fit-content;
}

.process__lines {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-20%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.process__line-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 1.5;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process.visible .process__line-path {
    stroke-dashoffset: 0;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.process__card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 2;
}

.process__card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.6);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process__card:hover::before {
    transform: translateX(100%);
}

.process__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.process__card:hover::after {
    opacity: 1;
}

.process__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.process__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.process__card:hover .process__icon {
    background: rgba(255, 255, 255, 1);
    color: #000;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.process__number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.4s ease;
}

.process__card:hover .process__number {
    color: rgba(255, 255, 255, 0.08);
}

.process__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 809px) {
    .process__grid {
        grid-template-columns: 1fr;
    }

    .process__lines {
        display: none;
    }
}

/* ---------- STATS ---------- */
.stats {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #050505;
}

.stats__bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stats__item {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.stats__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.stats__item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stats__item:hover::before {
    transform: translateX(100%);
}

.stats__number {
    display: block;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1;
    transition: all 0.5s ease;
}

.stats__item:hover .stats__number {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.stats__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 60px 0;
    }
}

.services__card {
    position: sticky;
    height: 500px;
    width: 100%;
    margin-bottom: 100px;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 0;
    display: flex;
    overflow: hidden;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease,
        opacity 0.4s ease;
    transform-origin: center top;
}

.services__card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Card Depth Effect State */
.services__card.past {
    transform: scale(0.96) translateY(-10px);
    filter: brightness(0.4);
    opacity: 0.8;
    pointer-events: none;
}

/* Incremental Top Offsets for Stacking - Increased for Title Visibility */
#service-1 {
    top: 80px;
    z-index: 1;
}

#service-2 {
    top: 160px;
    z-index: 2;
}

#service-3 {
    top: 240px;
    z-index: 3;
}

#service-4 {
    top: 320px;
    z-index: 4;
    margin-bottom: 0;
}

.services__card-content {
    flex: 1.2;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services__card-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.services__card-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.services__card-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.services__card-list {
    display: grid;
    gap: 16px;
}

.services__card-list li {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.services__card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.3;
}

.services__card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--border);
}

.services__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__card:hover .services__card-image img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .services__card {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }

    .services__card-image {
        height: 300px;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .services__card-content {
        padding: 40px;
    }

    /* Adjust responsive stacking */
    #service-1 {
        top: 80px;
    }

    #service-2 {
        top: 110px;
    }

    #service-3 {
        top: 140px;
    }

    #service-4 {
        top: 170px;
    }
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
    padding: 100px 0;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio__card {
    display: block;
    text-decoration: none;
}

.portfolio__img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-card);
}

.portfolio__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio__card:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__card:hover .portfolio__img {
    transform: scale(1.05);
}

.portfolio__view {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 100px;
}

.portfolio__info {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.portfolio__tag {
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
}

.portfolio__name {
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 809px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
    padding: 100px 0;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio__card {
    display: block;
    text-decoration: none;
}

.portfolio__img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-card);
}

.portfolio__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio__card:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__card:hover .portfolio__img {
    transform: scale(1.05);
}

.portfolio__view {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 100px;
}

.portfolio__info {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.portfolio__tag {
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
}

.portfolio__name {
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 809px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- BENTO SHOWCASE ---------- */
.bento-showcase {
    padding: 120px 0;
    background: #050505;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 60px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item--medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-item:hover .bento-img {
    transform: scale(1.05);
    opacity: 1;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.bento-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .bento-item--large,
    .bento-item--medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ---------- MARQUEE SHOWCASE ---------- */
.marquee-showcase {
    padding: 60px 0;
    overflow: hidden;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-showcase__wrapper {
    display: flex;
    white-space: nowrap;
}

.marquee-showcase__track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll-full 40s linear infinite;
    width: max-content;
}

@keyframes marquee-scroll-full {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-showcase__item {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-showcase__item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.marquee-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.marquee-showcase__item:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .marquee-showcase__item {
        width: 300px;
        height: 200px;
    }
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
    height: 400vh;
    /* Increased from 300vh for longer scroll duration */
    position: relative;
    background: #000;
}

.philosophy__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.philosophy__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.philosophy__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.philosophy__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.philosophy__title {
    font-size: 15vw;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    transition: transform 0.1s linear, opacity 0.3s ease;
    will-change: transform, opacity;
}

.philosophy__text {
    position: absolute;
    bottom: 22vh;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 860px;
    width: 90%;
    z-index: 10;
    text-align: center;
}

/* Premium quote font + layout */
.philosophy__quote {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

/* Per-word clip reveal */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--wi) * 0.07s);
    margin: 0 0.18em;
}



/* Triggered when section is "zoomed" */
.philosophy__sticky.zoomed .word-reveal {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Navbar hide animation class */
.navbar.hide-philosophy {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* ---------- GLOBAL IMPACT (CINEMATIC GLOBE) ---------- */

/* ---------- ABOUT US ---------- */
.about-us {
    padding: 120px 0;
}

.about-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-us__content .section-label {
    margin-left: 0;
}

.about-us__content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-us__content .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-bottom: 32px;
}

.about-us__features {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.about-us__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-us__feature i {
    font-size: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
}

.about-us__feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-us__feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-us__image {
    position: relative;
}

.about-us__image-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
}

.about-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-us__image:hover img {
    transform: scale(1.05);
}

.about-us__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent);
}

@media (max-width: 991px) {
    .about-us__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-us__content {
        order: 2;
    }

    .about-us__image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonials__desc {
    max-width: 700px;
    text-align: center;
}

.testimonials__sub-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.testimonials__stats {
    padding: 60px 0;
    text-align: center;
}

.testimonials__cta {
    margin-top: 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonials__stat-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.testimonials__stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 6px;
}

/* Testimonial Marquee */
.testimonial-marquee {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

.marquee-track--left {
    animation-direction: normal;
}

.marquee-track--right {
    animation-direction: reverse;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: var(--text-primary);
}

.testimonial-card__handle {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---------- PROVEN RESULTS ---------- */
.results {
    padding: 100px 0;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.results__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.results__card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.results__company {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.results__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.results__stat-num {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.results__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results__quote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: normal;
    border: none;
}

.results__author {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    font-style: normal;
}

@media (max-width: 809px) {
    .results__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- WHY US ---------- */
.why-us {
    padding: 100px 0;
}

.marquee-banner {
    overflow: hidden;
    padding: 32px 0;
    margin: 40px 0;
}

.marquee-banner__track {
    display: flex;
    gap: 60px;
    animation: banner-scroll 20s linear infinite;
    width: max-content;
    white-space: nowrap;
}

@keyframes banner-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-banner__track span {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.why-us__content {
    padding-top: 40px;
}

.why-us__badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.why-us__badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 22px;
}

.why-us__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-us__feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.why-us__feature:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.why-us__feature i {
    font-size: 28px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: block;
}

.why-us__feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-us__feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 809px) {
    .why-us__features {
        grid-template-columns: 1fr;
    }
}

/* ---------- WHY BETTER ---------- */
.why-better {
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.why-better__table-wrap {
    overflow-x: auto;
}

.why-better__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.why-better__table th,
.why-better__table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-better__table th {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.why-better__table td {
    font-size: 15px;
    color: var(--text-secondary);
}

.why-better__table th.active-col,
.why-better__table td.active-col {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.why-better__table i {
    font-size: 20px;
}

.why-better__table i.ph-check-circle {
    color: #4ade80;
}

.why-better__table i.ph-x-circle {
    color: #f87171;
}

@media (max-width: 768px) {
    .why-better {
        padding: 40px 24px;
    }
}


/* ---------- PRICING ---------- */
/* ---------- PRICING ---------- */
.pricing {
    padding: 100px 0;
    background: #000;
}

.pricing-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-filter .filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-filter .filter-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-filter .filter-btn.active {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ---------- UPDATED PRICING DESIGN ---------- */
.pricing-intro {
    margin-bottom: 50px;
}

.pricing-label-top {
    display: inline-block;
    background: #D4FF44;
    color: #000;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: flex-start;
}

.pricing-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    position: relative;
    overflow: visible;
    /* Show arrow overflow if needed */
}

.pricing-card:hover {
    border-color: #d3ff44cb;
    transform: translateY(-8px);
}

.pricing-popular {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Staggered Heights */
.pricing-card {
    min-height: 580px;
}

/* Middle cards (Growth) */
.pricing-card.pricing-popular {
    min-height: 700px;
}

/* Right cards (Enterprise) */
.pricing-card:nth-child(3),
.pricing-card:nth-child(6),
.pricing-card:nth-child(9),
.pricing-card:nth-child(12) {
    min-height: 820px;
}

.pricing-card-header {
    margin-bottom: 35px;
}

.pricing-plan {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 0;
}

.pricing-price .currency {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-price .amount {
    font-size: 68px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.pricing-desc {
    display: none;
    /* Removed based on screenshot design */
}

.pricing-divider {
    display: none;
    /* Clean look without dividers */
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
}

.pricing-features li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Feature Icon Styles */
.pricing-features li.included i {
    background: #D4FF44;
    color: #000;
}

.pricing-features li.excluded {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.excluded i {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.pricing__cta-footer {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

/* Redesigned Button */
.pricing-card .btn {
    background: #D4FF44 !important;
    color: #000 !important;
    padding: 6px 6px 6px 28px !important;
    /* Asymmetric for arrow */
    height: 60px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.pricing-card .btn .btn-text-roll {
    flex-grow: 1;
    text-align: left;
}

.pricing-card .btn .btn-text-roll::before,
.pricing-card .btn .btn-text-roll::after {
    text-align: left;
}

.pricing-card .btn:hover {
    background: #D4FF44 !important;
    transform: none;
    /* Reset individual button hover for new design */
}

.pricing-card .btn span {
    margin-right: auto;
}

.pricing-card .btn .btn-arrow {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.pricing-card .btn:hover .btn-arrow {
    transform: rotate(-45deg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4FF44;
    color: #000;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-popular {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 32px;
    }

    .pricing-price .amount {
        font-size: 64px;
    }
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq__item:hover {
    border-color: var(--border-light);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
}

.faq__question i {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- BLOG ---------- */
.blog {
    padding: 100px 0;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.blog__card {
    display: block;
}

.blog__img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-card);
    margin-bottom: 16px;
}

.blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog__card:hover .blog__img {
    transform: scale(1.05);
}

.blog__date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.blog__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    transition: color 0.3s;
}

.blog__card:hover .blog__title {
    color: var(--text-secondary);
}

/* ---------- CONTACT CTA ---------- */
.contact-cta {
    padding: 120px 0;
    text-align: center;
}

.contact-cta__label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
}

.contact-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.contact-cta__email {
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: var(--transition);
}

.contact-cta__email:hover {
    color: #fff;
    border-color: #fff;
}



/* ---------- STATS ---------- */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stats__item {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats__item:last-child {
    border-right: none;
}

.stats__number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.stats__label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__item:nth-child(2) {
        border-right: none;
    }

    .stats__item:nth-child(3),
    .stats__item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .stats__item:nth-child(4) {
        border-right: none;
    }

    .stats__item:nth-child(3) {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 480px) {
    .stats__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- TEAM ---------- */
.team {
    padding: 100px 0;
}

.team__coming-soon {
    text-align: center;
    padding: 80px 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    margin-top: 48px;
}

.team__coming-soon p {
    color: var(--text-muted);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__title {
    text-align: left;
    margin-bottom: 16px;
}

.contact__desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact__detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-item>i {
    font-size: 22px;
    color: var(--text-muted);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

a.contact__detail-value:hover {
    color: #fff;
}

.contact__socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.contact__social-link:hover {
    border-color: var(--border-light);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.contact__social-link i {
    font-size: 16px;
}

/* Form */
.contact__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
    outline: none;
    resize: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: var(--text-muted);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.contact__field select option {
    background: #111;
    color: #fff;
}

/* Form Status Messages */
.form-status {
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    margin-top: 15px;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-status.success {
    display: block;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ANIMATION SYSTEM
   ======================================== */

/* ---------- BASE REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- REVEAL VARIANTS ---------- */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-fade.visible {
    opacity: 1;
}

/* ---------- HERO ENTRANCE SEQUENCE ---------- */
.hero .hero__badge {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero .hero__title {
    opacity: 0;
    transform: translateY(50px);
    animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero .hero__subtitle {
    opacity: 0;
    transform: translateY(40px);
    animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero .hero__ctas {
    opacity: 0;
    transform: translateY(30px);
    animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.hero .hero__social-proof {
    opacity: 0;
    transform: translateY(20px);
    animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

@keyframes heroEntrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- SPLIT TEXT REVEAL ---------- */
.split-text .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.25em;
}

.split-text .word-inner {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--word-delay, 0s);
}

.split-text.visible .word-inner {
    transform: translateY(0);
}

/* Keep italic styling on split words inside em */
.split-text em .word {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}

/* ---------- SECTION LABEL REVEAL ---------- */
.section-label.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.section-label.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---------- COMPARISON ROW STAGGER ---------- */
.comparison__row.reveal {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.comparison__row.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- TAG STAGGER ---------- */
.services__tags .tag.reveal {
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.services__tags .tag.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---------- COUNTER GLOW ---------- */
.results__stat-num {
    transition: color 0.5s, text-shadow 0.5s;
}

.results__stat-num.counted {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* ---------- WHY-US BADGE REVEAL ---------- */
.why-us__badge.reveal {
    opacity: 0;
    transform: translateY(15px) scale(0.92);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.why-us__badge.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---------- CARD 3D TILT HOVER ---------- */
.process__card,
.services__card,
.results__card,
.why-us__feature {
    transform-style: preserve-3d;
    perspective: 800px;
}

.process__card:hover,
.services__card:hover,
.results__card:hover,
.why-us__feature:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- BUTTON HOVER PULSE ---------- */
.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s, transform 0.4s;
    border-radius: inherit;
}

.btn--primary:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

/* ---------- PRICING CARD ENTRANCE ---------- */
.pricing__card {
    animation: pricingPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pricingPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color .3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-light);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: .95rem;
    line-height: 1.8;
    margin: 0;
}

/* ---------- BLOG CARD IMAGE PARALLAX ---------- */
.blog__img-wrap {
    overflow: hidden;
}

.blog__img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__img {
    transform: scale(1.08) translateY(-4px);
}

/* ---------- CONTACT CTA ENTRANCE ---------- */
.contact-cta .section-title.split-text .word-inner {
    transition-duration: 0.9s;
}

.contact-cta__label.reveal {
    opacity: 0;
    transform: translateY(20px);
}

/* ============================================
   TEAM & CAREERS (UNIFIED SPLIT)
   ============================================ */
.section-team-careers {
    background: var(--bg-primary);
    padding: 100px 0;
}

.team-careers-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

/* Careers Left Side */
.careers-info {
    position: sticky;
    top: 120px;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.split-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.split-title .gray-text {
    color: rgba(255, 255, 255, 0.3);
}

.careers-cta-block {
    max-width: 450px;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    background: var(--bg-card);
}

.cta-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.cta-content {
    margin-bottom: 4rem;
}

.cta-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    width: fit-content;
}

.apply-btn:hover {
    border-color: #D4FF44;
}

.apply-btn span {
    position: relative;
    z-index: 2;
}

.apply-btn .dot {
    width: 8px;
    height: 8px;
    background: #D4FF44;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.4s ease;
    box-shadow: 0 0 8px #d3ff449a;
}

.apply-btn:hover .dot {
    transform: scale(1.2);
}

.apply-btn i {
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.4s ease;
}

.apply-btn:hover i {
    transform: translateX(4px);
    color: #D4FF44;
}

.cta-quote {
    font-size: 1.5rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.cta-quote strong {
    color: var(--white);
    font-weight: 600;
}

/* Team Grid Right Side */
.team-reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.team-reveal-card {
    position: relative;
    aspect-ratio: 0.8;
    overflow: hidden;
    border-radius: var(--radius);
}

.team-reveal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-reveal-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.team-reveal-info {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
}

.plus-icon-small {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.5;
}

.team-reveal-meta {
    margin-top: auto;
    text-align: right;
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.member-at {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .team-careers-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .careers-info {
        position: static;
    }

    .split-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .split-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-reveal-grid {
        grid-template-columns: 1fr;
    }

    .cta-header {
        gap: 10rem;
    }
}

/* ---------- BLOG ---------- */
.blog {
    padding: 120px 0;
    background: #050505;
}

.blog .section-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: 800px;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover {
    transform: translateY(-8px);
}

.blog__img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 24px;
    overflow: hidden;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__img {
    transform: scale(1.08);
}

.blog__date {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.blog__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    transition: color 0.3s;
}

.blog__card:hover .blog__title {
    color: #D4FF44;
}

@media (max-width: 768px) {
    .blog {
        padding: 80px 0;
    }

    .blog__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog__title {
        font-size: 18px;
    }
}


/* ---------- NEWSLETTER ---------- */
.newsletter {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter__card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.newsletter__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.newsletter__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter__form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__input-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter__input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 24px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.newsletter__input::placeholder {
    color: var(--text-muted);
}

.newsletter__btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter__btn:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 217, 125, 0.2);
}

.newsletter__btn:active {
    transform: scale(0.98);
}

/* Button States */
.newsletter__btn.loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.newsletter__btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

.newsletter__btn.success {
    background: #ffffff !important;
    color: #000 !important;
    pointer-events: none;
}

.newsletter__btn.success span {
    display: none;
}

.newsletter__btn.success::after {
    content: 'Check Your Inbox!';
    font-size: 14px;
    font-weight: 700;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Decorative Shapes */
.newsletter__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.newsletter__shape--1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border: 40px solid var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.newsletter__shape--2 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 30px solid var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.newsletter__icon {
    position: absolute;
    font-size: 80px;
    color: var(--text-primary);
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.newsletter__icon--left {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.newsletter__icon--right {
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rot, 0));
    }
}

.newsletter__icon--left {
    --rot: -15deg;
}

.newsletter__icon--right {
    --rot: 15deg;
}

@media (max-width: 768px) {
    .newsletter {
        padding: 60px 0;
    }

    .newsletter__card {
        padding: 60px 24px;
        border-radius: 30px;
    }

    .newsletter__input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 16px;
    }

    .newsletter__input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 24px;
        border-radius: 100px;
    }

    .newsletter__btn {
        width: 100%;
        padding: 16px;
    }

    .newsletter__icon {
        display: none;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 60px 0 40px;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
}

/* Frosty Glow Effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    margin-bottom: 30px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logo img {
    height: 22px;
    width: auto;
}

.footer__tagline {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 320px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.footer__social-link:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer__nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__nav-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav-list a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__nav-list a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--text-primary);
}



@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer__nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer__top {
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer__nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        padding-top: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer__legal {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
}

/* ---------- PRICE NUMBER REVEAL ---------- */
.price-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.price-reveal .amount {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal when the parent pricing-card becomes visible */
.pricing-card.visible .price-reveal .amount,
.pricing-card.reveal-up.visible .price-reveal .amount,
.pricing-card.fade-up.visible .price-reveal .amount {
    transform: translateY(0);
}

/* ---------- SCROLL TYPOGRAPHY SECTION ---------- */
.scroll-type-section {
    background: #000000 !important;
    padding: 220px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.container--wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.scroll-reveal-text {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
    /* Very muted initial state */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: var(--font-primary);
}

.scroll-reveal-line {
    position: relative;
    display: block;
    white-space: nowrap;
}

.scroll-reveal-line::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: var(--reveal-width, 0%);
    /* Fills on scroll */
    height: 100%;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.15s ease-out;
    border-right: 2px solid transparent;
}

/* ---------- CAREERS & CONTACT MOBILE OVERRIDES ---------- */
@media (max-width: 991px) {
    .contact__grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .careers-info {
        position: static !important;
        margin-bottom: 40px;
    }

    .split-title {
        font-size: 2.5rem !important;
        margin-bottom: 24px !important;
    }

    .careers-cta-block,
    .contact__form-wrap {
        padding: 24px !important;
        margin-top: 0 !important;
    }

    .cta-header {
        gap: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .contact__form-row {
        grid-template-columns: 1fr !important;
    }
}

/* ============ TEAM CARD GRID ============ */
.team-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.team-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(30%);
}

.team-card:hover .team-card__img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__socials {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card__socials {
    transform: translateY(0);
}

.team-card__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.team-card__social:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.team-card__info {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--border);
}

.team-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.team-card__role {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Responsive team grid */
@media (max-width: 1024px) {
    .team-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card__info {
        padding: 12px 14px 14px;
    }

    .team-card__name {
        font-size: 13px;
    }
}

/* Pulse animation for "We're Hiring" dot */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ============ TM SLIDER (Team Cinematic) ============ */
.tm-slider {
    width: 100%;
    max-width: 1134px;
    margin: 0 auto;
}

.tm-card {
    display: grid;
    grid-template-columns: 240px 1fr 60px;
    align-items: stretch;
    background: #111111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 300px;
    transition: box-shadow 0.4s ease;
}

.tm-card:hover {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

.tm-card__portrait {
    width: 240px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0a0a0a;
}

.tm-card__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: grayscale(15%);
}

.tm-card:hover .tm-card__portrait-img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.tm-card__body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.tm-card__quote-icon {
    font-size: 52px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Instrument Serif', serif;
    margin-bottom: 16px;
}

.tm-card__quote {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tm-card__quote.fading,
.tm-card__name.fading,
.tm-card__portrait-img.fading {
    opacity: 0;
    transform: translateY(6px);
}

.tm-card__identity {
    margin-bottom: 4px;
}

.tm-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tm-card__role {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.tm-card__agency {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: absolute;
    bottom: 24px;
    right: 32px;
}

.tm-card__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.tm-arrow:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Thumbnail Strip */
.tm-strip {
    display: flex;
    align-items: center;
    margin-top: 14px;
    background: #0d0d0d;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
}

.tm-strip__left {
    display: flex;
    align-items: center;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.tm-strip__scroll-up {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 0, 0.4);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #ff4d00;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.tm-strip__scroll-up:hover {
    background: rgba(255, 77, 0, 0.1);
    transform: translateY(-2px);
}

.tm-strip__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.2);
    margin-right: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tm-strip__track {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.tm-strip__track::-webkit-scrollbar {
    display: none;
}

.tm-thumb {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.tm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%) brightness(0.75);
    transition: filter 0.4s ease;
}

.tm-thumb:hover img {
    filter: grayscale(30%) brightness(0.9);
}

.tm-thumb.active img {
    filter: grayscale(0%) brightness(1);
}

.tm-thumb.active {
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Careers CTA */
.tm-careers {
    max-width: 1134px;
    margin-left: auto;
    margin-right: auto;
}

.tm-careers__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.tm-hiring-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.tm-hiring-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.tm-careers__title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.tm-careers__desc,
.tm-careers__quote {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 860px) {
    .tm-card {
        grid-template-columns: 180px 1fr 52px;
        min-height: 260px;
    }

    .tm-card__portrait {
        width: 180px;
    }

    .tm-card__body {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .tm-card {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto auto;
    }

    .tm-card__portrait {
        width: 100%;
        height: 200px;
    }

    .tm-card__controls {
        flex-direction: row;
        justify-content: flex-end;
        padding: 10px 16px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tm-careers__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .tm-thumb {
        width: 60px;
        height: 60px;
    }

}





