:root {
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --surface: #F2F1EE;
    --surface2: #EAEAE6;
    --mid: #8A8680;
    --ink: #1A1917;
    --ink2: #2E2C2A;
    --dark: #111010;
    --darker: #0C0B0B;
    --gold: #C8A45A;
    --gold-bg: rgba(200, 164, 90, .10);
    --gold-glow: rgba(200, 164, 90, .22);
    --teal: #3D8B8D;
    --border-l: rgba(26, 25, 23, .09);
    --border-d: rgba(255, 255, 255, .07);
    --shadow-sm: 0 2px 16px rgba(0, 0, 0, .06);
    --shadow: 0 8px 40px rgba(0, 0, 0, .09);
    --shadow-lg: 0 20px 72px rgba(0, 0, 0, .14);
    --container: 1344px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section-wrap {
    padding: 100px 0;
}

/* CURSOR */
#cur,
#cur-r {
    position: fixed;
    z-index: 9999999;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

#cur {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

#cur-r {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold);
    opacity: .4;
    transition: transform .13s ease;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    height: 68px;
    transition: background .35s, box-shadow .35s;
}

nav.stuck {
    background: rgba(248, 247, 244, .95);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border-l), 0 4px 28px rgba(0, 0, 0, .05);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.nav-logo-svg {
    width: 34px;
    height: 30px;
    flex-shrink: 0;
}

.nav-logo-main {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--ink);
    text-transform: uppercase;
    display: block;
}

.nav-logo-sub {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .18em;
    color: #474747;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: .6;
    position: relative;
    cursor: none;
    transition: opacity .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--ink) !important;
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 12px;
    opacity: 1 !important;
    font-size: .7rem !important;
    font-weight: 600 !important;
    letter-spacing: .12em !important;
    transition: background .3s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    display: block;
}

/* SHARED LABELS */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-title-light {
    color: #fff;
}

.section-title-light em {
    color: var(--gold);
}

.section-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.45;
    margin-top: 14px;
}

/* BUTTONS */
.btn-primary {
    background: var(--ink);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 164, 90, .35);
}

.btn-secondary {
    border: 1.5px solid var(--border-l);
    background: var(--white);
    color: var(--ink);
    padding: 14px 34px;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: none;
    transition: border-color .3s, color .3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 11px 28px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: none;
    transition: background .3s, color .3s;
    display: inline-block;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity .7s ease, transform .7s ease;
}

.heading-mvv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.core-left {
    width: 60%;
    flex-shrink: 0;
}

.reveal-r {
    opacity: 0;
    transform: translateX(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible {
    opacity: 1;
    transform: translate(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════ HERO — LIGHT ════ */
#home {
    text-align: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 20%, rgba(200, 164, 90, .13) 0%, transparent 65%), radial-gradient(ellipse 45% 35% at 15% 75%, rgba(61, 139, 141, .07) 0%, transparent 60%), radial-gradient(ellipse 45% 35% at 85% 75%, rgba(200, 164, 90, .07) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(200, 164, 90, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 164, 90, .04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-tri-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: 500px;
    height: 500px;
    opacity: .05;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
    padding-top: 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp .7s ease both;
}

.hero-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 10px;
    animation: fadeUp .7s .1s ease both;
}

.hero-h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--mid);
    letter-spacing: .05em;
    margin-bottom: 22px;
    animation: fadeUp .7s .18s ease both;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink2);
    line-height: 1.4;
    max-width: 580px;
    margin: 0 auto 42px;
    animation: fadeUp .7s .25s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 52px;
    animation: fadeUp .7s .32s ease both;
}

.hero-stats {
    display: flex;
    gap: 44px;
    justify-content: center;
    align-items: center;
    padding: 28px 0;
    border-top: 1px solid var(--border-l);
    animation: fadeUp .7s .4s ease both;
    margin-bottom: 56px;
}

.hero-stat-num {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: .7rem;
    font-weight: 400;
    color: var(--mid);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-divider {
    width: 1px;
    height: 44px;
    background: var(--border-l);
}

/* CAROUSEL */
.carousel-wrap {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .45s ease both;
}

.carousel-tilt {
    transform: perspective(150px) rotateX(1deg) rotateZ(0deg);
    transform-origin: center bottom;
    overflow: hidden;
    position: relative;
}

.carousel-tilt::before,
.carousel-tilt::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 140px;
}

.carousel-tilt::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.carousel-tilt::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

.carousel-track {
    display: flex;
    gap: 16px;
    padding: 8px 0 100px;
    width: max-content;
    animation: carouselScroll 48s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.c-card {
    flex-shrink: 0;
    width: 450px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-l);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .1);
    transition: transform .3s, box-shadow .3s;
}

.c-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .16);
}

.c-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.82);
    transition: filter .4s;
}

.c-card:hover img {
    filter: brightness(.95);
}

.c-card-label {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0C0B0B;
    padding: 20px 14px 11px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

.c-card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--dark);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
}

.scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: .3;
    animation: floatBounce 2s ease-in-out infinite;
}

.scroll-hint span {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transform: rotate(45deg);
}

@keyframes floatBounce {

    0%,
    100% {
        opacity: .2;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: .5;
        transform: translateX(-50%) translateY(5px);
    }
}

/* ════ ABOUT — LIGHT ════ */
#about {
    background: var(--white);
}


.about-lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink2);
    line-height: 1.4;
    margin: 18px 0 0;
}

.about-mvv {
    display: flex;
    gap: 24px;
}

.reveal-1-wwa {
    margin-bottom: 24px;
}

.mvv-item {
    flex: 1;
    gap: 16px;
    padding: 20px 22px;
    background: var(--off-white);
    border-left: 3px solid transparent;
    transition: border-color .3s, background .3s;
    border-radius: 20px;
}

.mvv-item:hover {
    border-color: var(--gold);
    background: var(--surface);
}

.mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 32px;
}

.mvv-icon.mi {
    background: rgba(138, 90, 200, 0.9);
}

.mvv-icon.vi {
    background: rgba(61, 139, 141, 0.9);
}

.mvv-icon.fi {
    background: rgba(200, 138, 80, 0.9);
}

.mvv-lbl {
    font-size: 1.2rem;
    font-weight: 600;
    
    color: var(--ink2);
    margin-bottom: 6px;
}

.mvv-txt {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink2);
    line-height: 1.3;
}

.about-visual {
    position: relative;
    /* height: 520px; */
}

.about-img-main {
    /* position: absolute;
    right: 0;
    top: 0;*/
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.about-img-accent {
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 45%;
    height: 42%;
    border-radius: 8px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 5%;
    left: 2%;
    background: var(--gold);
    color: var(--dark);
    padding: 18px 22px;
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-num {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-lbl {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .85;
}

/* ════ SERVICES — DARK ════ */
#services {
    background: var(--dark);
}

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.services-side-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    max-width: 320px;
    line-height: 1.3;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.srv-card {
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background .4s;
}

.srv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(93 82 59 / 26%), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.srv-card:hover {
    background: rgba(255, 255, 255, .058);
}

.srv-card:hover::after {
    opacity: 1;
}

.srv-num {
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(200, 164, 90, .18);
    line-height: 1;
    margin-bottom: 20px;
    transition: color .4s;
    position: absolute;
    right: 28px;
    top: 56px;
}

.srv-card:hover .srv-num {
    color: rgba(200, 164, 90, .45);
}

.srv-icon {
    width: 72px;
    height: 72px;
    background-color: #292929;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 32px;
}

.srv-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.srv-desc {
    font-size: .95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.4;
}

.srv-arrow {
    position: absolute;
    bottom: 32px;
    right: 32px;
    color: rgba(200, 164, 90, .3);
    font-size: 1.1rem;
    transition: color .3s, transform .3s;
}

.srv-card:hover .srv-arrow {
    color: var(--gold);
    transform: translate(3px, -3px);
}

/* ════ TECHNICAL — LIGHT GREY ════ */
#technical {
    background: var(--surface);
}

.tech-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 36px 0 40px;
}

.tech-tab {
    padding: 10px 22px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1.5px solid var(--border-l);
    background: var(--white);
    color: var(--mid);
    cursor: none;
    transition: all .25s;
}

.tech-tab.active,
.tech-tab:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.tech-panel {
    display: none;
}

.tech-panel.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-item {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 16px;
    border: 1.5px solid var(--border-l);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow .3s, transform .3s;
}

.tech-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.tech-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ti-gold {
    background: rgba(200, 164, 90, .15);
}

.ti-teal {
    background: rgba(61, 139, 141, .12);
}

.ti-blue {
    background: rgba(79, 130, 210, .12);
}

.ti-purple {
    background: rgba(140, 100, 210, .12);
}

.ti-green {
    background: rgba(80, 180, 100, .12);
}

.ti-orange {
    background: rgba(230, 140, 60, .12);
}

.ti-red {
    background: rgba(210, 80, 80, .12);
}

.ti-indigo {
    background: rgba(80, 100, 220, .12);
}

.tech-item-cat {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.tech-item-name {
    font-size: .98rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}

/* ════ GALLERY — DARK ════ */
#gallery {
    background: var(--darker);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.g-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    cursor: none;
    aspect-ratio: 4/3;
}

.g-item.tall {
    aspect-ratio: 3/4;
    grid-row: span 2;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.8);
    transition: transform .6s ease, filter .4s;
}

.g-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 9, 9, .78) 35%, transparent);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-name {
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
}

.g-loc {
    font-size: .75rem;
    font-weight: 300;
    color: var(--gold);
    margin-top: 3px;
}

.g-item.hidden {
    display: none;
}

.gallery-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
    padding: 13px 38px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    transition: border-color .3s, color .3s;
}

.btn-load-more:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ════ CLIENTS MARQUEE — LIGHT ════ */
#clients {
    background: var(--off-white);
    padding: 80px 0;
}

.clients-head {
    text-align: center;
    margin-bottom: 44px;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-l);
    border-bottom: 1px solid var(--border-l);
    background: var(--white);
    padding: 26px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 120px;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-client {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    border-right: 1px solid var(--border-l);
}

.marquee-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mc-gold {
    background: rgba(200, 164, 90, .13);
}

.mc-teal {
    background: rgba(61, 139, 141, .1);
}

.mc-blue {
    background: rgba(79, 130, 210, .1);
}

.mc-purple {
    background: rgba(140, 100, 210, .1);
}

.mc-green {
    background: rgba(80, 180, 100, .1);
}

.mc-orange {
    background: rgba(230, 140, 60, .1);
}

.marquee-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink2);
    white-space: nowrap;
}

/* ════ TESTIMONIALS — DARK ════ */
#testimonials {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '"';
    font-size: 26rem;
    color: rgba(200, 164, 90, .04);
    position: absolute;
    top: -60px;
    left: 10px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testi-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testi-head .section-label {
    justify-content: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}

.t-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 36px;
    border-radius: 20px;
    transition: transform .3s, box-shadow .3s, background .3s;
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, .055);
}

.t-card.feat {
    background: rgba(200, 164, 90, .09);
    border-color: rgba(200, 164, 90, .2);
}

.t-stars {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.t-text {
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .72);
    line-height: 1.85;
    margin-bottom: 26px;
}

.t-line {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    margin-bottom: 18px;
}

.t-name {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
}

.t-role {
    font-size: .78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    margin-top: 3px;
}

/* ════ FAQ — LIGHT ════ */
#faq {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.fq {
    border-top: 1px solid var(--border-l);
}

.fq:last-child {
    border-bottom: 1px solid var(--border-l);
}

.fq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: none;
    font-size: .98rem;
    font-weight: 500;
    color: var(--ink);
    transition: color .2s;
}

.fq-q:hover {
    color: var(--gold);
}

.fq-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--border-l);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform .3s;
}

.fq.open .fq-icon {
    transform: rotate(45deg);
}

.fq-a {
    font-size: .95rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s;
}

.fq.open .fq-a {
    max-height: 220px;
    padding-bottom: 22px;
}

/* ════ CONTACT — DARK ════ */
#contact {
    background: var(--darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: .98rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
    margin: 18px 0 44px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 36px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.c-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(200, 164, 90, .1);
    border: 1px solid rgba(200, 164, 90, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.c-lbl {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.c-val {
    font-size: .98rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    transition: border-color .3s, color .3s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fg label {
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.fg input,
.fg select,
.fg textarea {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 13px 16px;
    font-size: .95rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, .82);
    outline: none;
    transition: border-color .25s, background .25s;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--gold);
    background: rgba(200, 164, 90, .05);
}

.fg select option {
    background: var(--dark);
    color: #fff;
}

.fg textarea {
    resize: vertical;
    min-height: 115px;
}

.btn-submit {
    background: var(--gold);
    color: var(--dark);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: none;
    transition: transform .2s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(200, 164, 90, .25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 164, 90, .38);
}

/* ════ FOOTER — GRAND ════ */
footer {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(200, 164, 90, .07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Stats bar */
.footer-stats-bar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-stats-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-stat {
    padding: 38px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
}

.footer-stat:last-child {
    border-right: none;
}

.footer-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.footer-stat-lbl {
    font-size: .74rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Main columns */
.footer-top-bar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 64px 0 56px;
}

.footer-top-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

.footer-brand-sub {
    font-size: .7rem;
    font-weight: 300;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

.footer-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.3;
    margin-bottom: 32px;
    max-width: 280px;
}

.footer-tagline strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-contact-quick a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.footer-contact-quick a:hover {
    color: var(--gold);
}

.fci {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(200, 164, 90, .1);
    border: 1px solid rgba(200, 164, 90, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    transition: border-color .3s, color .3s, background .3s;
}

.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 164, 90, .08);
}

.footer-col h4 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 164, 90, .18);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
    transition: color .2s, padding-left .2s;
    display: block;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, .85);
    padding-left: 4px;
}

/* Bottom bar */
.footer-bottom-bar {
    position: relative;
    z-index: 2;
    padding: 24px 0;
}

.footer-bottom-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: .78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .22);
}

.footer-motto {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(200, 164, 90, .5);
    letter-spacing: .08em;
}

.footer-back-top {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    cursor: none;
    transition: border-color .3s, color .3s;
}

.footer-back-top:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .container {
        padding: 0 28px;
    }

    .nav-inner {
        padding: 0 28px;
    }

    .about-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 340px;
    }

    .srv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-panel.active {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .services-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media(max-width:700px) {
    .container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-wrap {
        padding: 64px 0;
    }

    .srv-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .tech-panel.active {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .g-item.tall {
        aspect-ratio: 4/3;
        grid-row: auto;
    }

    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-divider {
        display: none;
    }
}

/* ══════════════════════════════════════════
   VIDEO SHOWCASE SECTION
══════════════════════════════════════════ */

/* Slide toggle controls */
.video-slide-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.vsc-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    color: rgb(0 0 0 / 45%);
    cursor: none;
    transition: all .3s;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.vsc-btn:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(200, 164, 90, .7);
    color: var(--ink);
}

.vsc-btn.active {
    background: rgba(200, 164, 90, .12);
    border-color: var(--gold);
    color: var(--ink);
}

.vsc-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.vsc-lbl {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-align: left;
}

/* Slides */
.video-slide {
    display: none;
}

.video-slide.active {
    display: block;
    animation: fadeSlide .4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2-column video grid */
.video-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Individual video card */
.video-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.video-card:hover {
    border-color: rgba(200, 164, 90, .25);
    box-shadow: 0 16px 56px rgba(0, 0, 0, .2);
}

/* Card header */
.video-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.video-card-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(200, 164, 90, .3);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.video-card-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
}

.video-card-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--mid);
    margin-top: 2px;
}

/* Video wrapper */
.video-wrapper {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.asq-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Big play overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    transition: opacity .3s;
}

.play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200, 164, 90, .45);
}

.play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(200, 164, 90, .6);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
    fill: var(--dark);
    margin-left: 4px;
}

/* Bottom controls bar */
.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .3s;
}

.video-wrapper:hover .video-controls-bar {
    opacity: 1;
}

.vcb-play,
.vcb-mute,
.vcb-fs {
    background: none;
    border: none;
    cursor: none;
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}

.vcb-play:hover,
.vcb-mute:hover,
.vcb-fs:hover {
    color: var(--gold);
    transform: scale(1.15);
}

.vcb-play svg,
.vcb-mute svg,
.vcb-fs svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Progress bar */
.vcb-progress-wrap {
    flex: 1;
    cursor: none;
    padding: 8px 0;
}

.vcb-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.vcb-progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width .1s linear;
}

.vcb-progress-wrap:hover .vcb-progress-track {
    height: 5px;
}

/* Time display */
.vcb-time {
    font-size: .68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    min-width: 34px;
    text-align: right;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
    .video-grid-row {
        grid-template-columns: 1fr;
    }

    .video-slide-controls {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .video-card-header {
        padding: 12px 14px;
    }

    .play-btn {
        width: 52px;
        height: 52px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }
}
/* ════ IVA — IN ACTION VIDEO SECTION ════ */
#videos { background: var(--off-white); }

.iva-wrap { width: 100%; }

.iva-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}

.iva-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: var(--white);
    border: 1.5px solid var(--border-l);
    border-radius: 14px;
    color: var(--mid);
    cursor: none;
    transition: all .3s;
    font-family: 'Poppins', sans-serif;
}

.iva-tab:hover {
    border-color: var(--gold);
    color: var(--ink);
}

.iva-tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,.14);
}

.iva-tab-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.iva-tab.active .iva-tab-num { color: var(--gold); }

.iva-tab-lbl {
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .06em;
}

/* Panels */
.iva-panel { display: none; }
.iva-panel.active { display: block; animation: ivaFadeIn .35s ease; }
@keyframes ivaFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* Video grid */
.iva-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.iva-video-grid.iva-single {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
}

/* Video card */
.iva-vcard {
    background: var(--white);
    border: 1.5px solid var(--border-l);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}

.iva-vcard:hover {
    border-color: rgba(200,164,90,.35);
    box-shadow: 0 12px 48px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

/* Video wrapper */
.iva-video-wrapper {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.iva-video {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

/* Big play overlay */
.iva-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.32);
    transition: opacity .3s;
    cursor: none;
}

.iva-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,164,90,.45);
}

.iva-play-btn:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(200,164,90,.6); }

.iva-play-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--dark);
    margin-left: 3px;
}

/* Controls bar */
.iva-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .3s;
}

.iva-video-wrapper:hover .iva-controls { opacity: 1; }

.iva-ctrl {
    background: none;
    border: none;
    cursor: none;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}

.iva-ctrl:hover { color: var(--gold); transform: scale(1.15); }
.iva-ctrl svg { width: 17px; height: 17px; fill: currentColor; }

.iva-progress-wrap { flex: 1; cursor: none; padding: 8px 0; }
.iva-progress-track { width:100%; height:3px; background:rgba(255,255,255,.2); border-radius:2px; overflow:hidden; }
.iva-progress-fill { height:100%; background:var(--gold); border-radius:2px; width:0%; transition:width .1s linear; }
.iva-progress-wrap:hover .iva-progress-track { height: 5px; }

.iva-time { font-size:.67rem; font-weight:500; color:rgba(255,255,255,.6); min-width:32px; text-align:right; flex-shrink:0; font-family:'Poppins',sans-serif; }

/* Card info */
.iva-vcard-info {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border-l);
}

.iva-vcard-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.iva-vcard-sub {
    font-size: .88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 860px) {
    .iva-video-grid { grid-template-columns: 1fr; }
    .iva-tabs { justify-content: flex-start; }
}

@media (max-width: 600px) {
    .iva-tab { padding: 14px 18px; }
    .iva-tab-num { font-size: 1.1rem; }
    .iva-play-btn { width: 50px; height: 50px; }
    .iva-play-btn svg { width: 20px; height: 20px; }
}


/* ════ CONTACT V2 — TWO-COLUMN LAYOUT ════ */
.contact-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 0;
}

.contact-v2-left{
    margin-top: 30px;
}

.contact-v2-desc {
    font-size: .98rem;
    font-weight: 300;
    color: rgba(255,255,255,.58);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 420px;
}

.contact-v2-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.contact-v2-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255,255,255,.55);
}

.contact-v2-meta-item svg { flex-shrink: 0; }

.contact-v2-social {
    display: flex;
    gap: 10px;
}

.cv2-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    transition: border-color .3s, color .3s, background .3s;
}

.cv2-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,164,90,.08);
}

/* Right side: stacked call cards */
.contact-v2-card-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cv2-call-card {
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform .25s, box-shadow .3s;
}

.cv2-call-card:hover { transform: translateY(-3px); }

.cv2-call-card--primary {
    background: rgba(200,164,90,.1);
    border: 1px solid rgba(200,164,90,.25);
}

.cv2-call-card--alt {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.cv2-call-card--primary:hover { box-shadow: 0 12px 40px rgba(200,164,90,.18); }
.cv2-call-card--alt:hover { box-shadow: 0 12px 40px rgba(0,0,0,.25); }

.cv2-call-card-top { display: flex; flex-direction: column; gap: 5px; }

.cv2-call-badge {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

.cv2-call-num {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
}

.cv2-call-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 18px rgba(200,164,90,.25);
}

.cv2-call-cta:hover { transform: scale(1.04); box-shadow: 0 6px 28px rgba(200,164,90,.4); }

.cv2-call-cta svg { fill: var(--dark); flex-shrink: 0; }

.cv2-call-cta--dark {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.1);
}

.cv2-call-cta--dark svg { fill: rgba(255,255,255,.8); }
.cv2-call-cta--dark:hover { background: rgba(255,255,255,.16); box-shadow: 0 4px 18px rgba(0,0,0,.2); }

/* Instagram row card */
.cv2-ig-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    font-weight: 400;
    transition: border-color .3s, color .3s, background .3s;
    text-decoration: none;
}

.cv2-ig-card:hover {
    border-color: rgba(200,164,90,.4);
    color: rgba(255,255,255,.9);
    background: rgba(200,164,90,.07);
}

.cv2-ig-card svg { fill: var(--gold); flex-shrink: 0; }

/* Contact V2 responsive */
@media (max-width: 1000px) {
    .contact-v2 {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .contact-v2-desc { max-width: 100%; }
}

@media (max-width: 600px) {
    .cv2-call-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cv2-call-num { font-size: 1.1rem; }
    .cv2-call-cta { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE AUDIT FIXES
   All breakpoints: portrait phone → landscape phone → tablet → desktop
════════════════════════════════════════ */

/* ── 1280px: Large tablet / small laptop ── */
@media (max-width: 1280px) {
    .contact-v2 { gap: 56px; }
    .about-mvv { flex-wrap: wrap; }
    .about-mvv .mvv-item { flex: 1 1 calc(50% - 12px); }
}

/* ── 1100px: existing breakpoint — add missing items ── */
@media (max-width: 1100px) {
    /* Hero carousel cards smaller */
    .c-card { width: 340px; height: 300px; }

    /* About grid already handled, fix image height */
    .about-img-main { height: 460px; }

    /* Tech panel already 3-col — fine */

    /* Contact v2 */
    .contact-v2 { grid-template-columns: 1fr; gap: 52px; }
    .contact-v2-desc { max-width: 100%; }
}

/* ── 860px: mid-tablet ── */
@media (max-width: 860px) {
    /* IVA video grid already goes 1-col at 860 */
    .iva-tabs { justify-content: flex-start; }

    /* Gallery masonry already 2-col at 900 */
    /* FAQ grid */
    .faq-grid { grid-template-columns: 1fr; gap: 36px; }

    /* About mvv single column */
    .about-mvv { flex-direction: column; gap: 14px; }
    .about-mvv .mvv-item { flex: none; width: 100%; }

    /* Services grid */
    .srv-grid { grid-template-columns: 1fr 1fr; }

    /* footer stats */
    .footer-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── 700px: existing breakpoint — fill gaps ── */
@media (max-width: 700px) {
    /* Hero */
    .hero-h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary { width: 100%; max-width: 300px; text-align: center; }

    /* Carousel cards */
    .c-card { width: 260px; height: 230px; }
    .carousel-tilt::before,
    .carousel-tilt::after { width: 60px; }

    /* Section titles */
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* About */
    .about-img-main { height: 300px; }
    .about-badge { display: none; }
    .heading-mvv { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Services */
    .srv-grid { grid-template-columns: 1fr; }
    .srv-card { padding: 32px 24px; }

    /* Tech */
    .tech-tabs { gap: 6px; }
    .tech-tab { padding: 8px 14px; font-size: .7rem; }
    .tech-panel.active { grid-template-columns: 1fr 1fr; }

    /* Gallery city tabs */
    .city-tabs { gap: 6px; }
    .city-tab { padding: 6px 14px; font-size: 12px; }

    /* IVA */
    .iva-tab { padding: 12px 16px; }
    .iva-tab-lbl { font-size: .8rem; }
    .iva-tab-num { font-size: 1.1rem; }
    .iva-play-btn { width: 50px; height: 50px; }
    .iva-play-btn svg { width: 20px; height: 20px; }
    .iva-vcard-title { font-size: .92rem; }

    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; }
    .t-card { padding: 28px 22px; }

    /* FAQ */
    .faq-grid { gap: 28px; }
    .fq-q { font-size: .92rem; }

    /* Contact v2 */
    .contact-v2 { gap: 40px; padding-bottom: 60px; }
    .cv2-call-card { flex-direction: column; align-items: flex-start; gap: 14px; }
    .cv2-call-num { font-size: 1.1rem; }
    .cv2-call-cta { width: 100%; justify-content: center; }
    .cv2-call-cta--dark { width: 100%; justify-content: center; }
    .contact-v2-social { gap: 8px; }

    /* Footer stats */
    .footer-stats-inner { grid-template-columns: 1fr 1fr; }
    .footer-stat { padding: 24px 16px; }
    .footer-stat-num { font-size: 1.9rem; }
}

/* ── 480px: portrait phone ── */
@media (max-width: 480px) {
    /* Container tighter */
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }

    /* Section spacing */
    .section-wrap { padding: 52px 0; }

    /* Hero */
    .hero-content { padding: 0 16px; }
    .hero-eyebrow { font-size: .6rem; }
    .hero-h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
    .hero-tagline { font-size: .95rem; }
    .hero-desc { font-size: .9rem; }
    .hero-stats { gap: 16px; padding: 20px 0; flex-wrap: wrap; justify-content: space-around; }
    .hero-stat-num { font-size: 1.5rem; }

    /* Carousel */
    .c-card { width: 220px; height: 195px; }
    .carousel-tilt { transform: none; }

    /* Section title */
    .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
    .section-sub { font-size: .92rem; }

    /* Services */
    .services-top h2 { font-size: 1.5rem; }
    .srv-card { padding: 28px 20px; }
    .srv-num { font-size: 2rem; }

    /* Tech */
    .tech-panel.active { grid-template-columns: 1fr; }
    .tech-item { padding: 18px 16px; }

    /* Gallery */
    .masonry-grid { columns: 1 !important; }

    /* IVA */
    .iva-tabs { gap: 8px; }
    .iva-tab { padding: 10px 14px; width: 100%; justify-content: flex-start; }
    .iva-vcard-info { padding: 14px 16px 16px; }

    /* Testimonials */
    .t-card { padding: 24px 18px; }
    .t-text { font-size: .9rem; }

    /* Contact v2 */
    .cv2-call-card { padding: 18px 20px; }
    .cv2-call-num { font-size: 1rem; }
    .cv2-ig-card { font-size: .82rem; padding: 14px 16px; }
    .contact-v2-meta-item { font-size: .82rem; }

    /* Footer */
    .footer-stats-inner { grid-template-columns: 1fr 1fr; }
    .footer-stat { padding: 18px 10px; }
    .footer-stat-num { font-size: 1.6rem; }
    .footer-top-inner { gap: 28px; }

    /* Phone modal */
    .phone-modal-box { padding: 32px 22px 24px; }

    /* Service modal */
    .svc-modal-box { border-radius: 12px; }
    .svc-carousel-track { min-height: 220px; max-height: 260px; }
}

/* ── 380px: very small phones (SE, Galaxy A) ── */
@media (max-width: 380px) {
    .hero-h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .nav-brand img { width: 56px; }
    .nav-logo-main { font-size: .78rem; }
    .nav-logo-sub { font-size: .6rem; }
    .btn-primary, .btn-secondary { padding: 12px 22px; font-size: .76rem; }
    .iva-tab-num { font-size: 1rem; }
    .cv2-call-num { font-size: .95rem; }
    .footer-stat-num { font-size: 1.4rem; }
}

/* ── Landscape phone (height < 500px, wider than tall) ── */
@media (max-height: 500px) and (orientation: landscape) {
    .section-wrap { padding: 40px 0; }
    .hero-content { padding-top: 8px; }
    .hero-stats { margin-bottom: 24px; padding: 16px 0; }
    .hero-btns { margin-bottom: 28px; }
    .c-card { height: 160px; }
    .carousel-track { padding-bottom: 40px; }
    .iva-video-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-carousel-track { min-height: 180px; max-height: 200px; }
    .phone-modal-box { padding: 20px 22px 16px; }
    .cv2-call-card { flex-direction: row; align-items: center; }
}

/* ── Touch devices: remove hover-only states that look broken on tap ── */
@media (hover: none) {
    .iva-controls { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
    .video-controls-bar { opacity: 1; }
    .g-overlay { opacity: 1; }
    .srv-card::after { opacity: 0.5; }
    body { cursor: auto; }
    #cur, #cur-r { display: none; }
    .nav-links a, .tech-tab, .btn-primary, .btn-secondary,
    .hamburger, .city-tab, .iva-tab, .fq-q,
    .vcb-play, .vcb-mute, .vcb-fs, .iva-ctrl,
    .iva-play-btn, .play-btn, .btn-load-more,
    .cta-call-btn, .cv2-call-cta, .cv2-ig-card,
    .footer-back-top, .social-btn, .footer-social-btn { cursor: pointer; }
    .iva-progress-wrap, .vcb-progress-wrap { cursor: pointer; }
}
