/* ============================================================
   CargoNXT Delhi Edition — delhi-2026.css  v3
   Palette: Page #F8F9FB · Dark #06090F · Navy #0D1F3C
            Blue #1A4F9C · Red #C0212B · Gold #C4973A · Gold-L #DEB85A
   Fonts: Plus Jakarta Sans + Playfair Display
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --page: #F8F9FB;
    --page-2: #F0F2F5;
    --abyss: #06090F;
    --dark-navy: #0D1F3C;
    --navy: #122B52;
    --blue: #1A4F9C;
    --red: #C0212B;
    --gold: #C4973A;
    --gold-light: #DEB85A;
    --text: #16202E;
    --muted: #5A6B80;
    --border: rgba(0, 0, 0, 0.07);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --r: 3px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    background: var(--page);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ── Typography ── */
.eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-red {
    color: var(--red);
}

.eyebrow-red::before {
    background: var(--red);
}

.eyebrow-blue {
    color: var(--blue);
}

.eyebrow-blue::before {
    background: var(--blue);
}

.sh {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--text);
}

.sh span {
    color: var(--blue);
}

.sh-light {
    color: #fff;
}

.sh-light span {
    color: var(--gold-light);
}

.sh-c {
    text-align: center;
}

.sb {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--r);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--abyss);
    box-shadow: 0 4px 20px rgba(196, 151, 58, 0.25);
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: #a01820;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--dark-navy);
    color: #fff;
}

.btn-dark:hover {
    background: var(--abyss);
    transform: translateY(-1px);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(0, 0, 0, 0.14);
}

.btn-ghost-dark:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal:nth-child(5) {
    transition-delay: 0.08s;
}

.reveal:nth-child(6) {
    transition-delay: 0.16s;
}

.reveal:nth-child(7) {
    transition-delay: 0.24s;
}

.reveal:nth-child(8) {
    transition-delay: 0.32s;
}

/* ============================================================
   NAV
============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 9, 15, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: box-shadow 0.3s;
}

#nav.s {
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(196, 151, 58, 0.08);
}

.nav-w {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo img {
    height: 42px;
    display: block;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 0.2rem;
}

.nav-menu a {
    display: block;
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.58rem 1.4rem;
    border-radius: var(--r);
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #a01820;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}

.nav-burger.o span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.o span:nth-child(2) {
    opacity: 0;
}

.nav-burger.o span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mob {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 9, 15, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    padding: 1.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease;
}

.nav-mob.o {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-ml {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}

.nav-ml:hover {
    color: #fff;
}

.nav-mcta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem;
    border-radius: var(--r);
    text-decoration: none;
    margin-top: 1.2rem;
}

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-poster {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=75') center/cover no-repeat;
    transition: opacity 0.8s ease;
}

.hero-poster.hide {
    opacity: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.6) 0%, rgba(6, 9, 15, 0.2) 40%, rgba(6, 9, 15, 0.75) 100%), linear-gradient(90deg, rgba(6, 9, 15, 0.85) 0%, rgba(6, 9, 15, 0.1) 65%);
    z-index: 1;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero-rule {
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    z-index: 4;
    opacity: 0;
    animation: lineReveal 1s ease 0.3s forwards;
}

@keyframes lineReveal {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top
    }

    to {
        opacity: 1;
        transform: scaleY(1)
    }
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--page));
    z-index: 4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 110px 0 80px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 9, 15, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: hpulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes hpulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(222, 184, 90, 0.4)
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(222, 184, 90, 0)
    }
}

.hero-tag span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-logo-wrap {
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-logo-wrap img {
    height: 110px;
    display: block;
    object-fit: contain;
}

.hero-logo-fallback {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}

.hero-logo-fallback span {
    color: var(--gold-light);
}

.hero-theme {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-theme em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.hero-meta-item svg {
    fill: var(--gold);
    flex-shrink: 0;
}

.hero-kp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-kp span {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
}

.hero-kp img {
    height: 26px;
    object-fit: contain;
    opacity: 0.65;
}

.hero-card {
    background: rgba(6, 9, 15, 0.72);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid var(--gold);
    padding: 2.2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero-card-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-card-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-card-detail-icon {
    width: 28px;
    height: 28px;
    background: rgba(196, 151, 58, 0.1);
    border: 1px solid rgba(196, 151, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

.hero-card-detail-icon svg {
    fill: var(--gold);
}

.hero-card-detail-lbl {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    display: block;
}

.hero-card-detail-val {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gold-light);
    display: block;
}

.hero-card-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ============================================================
   NUMBERS — Gold tinted
============================================================ */
.numbers {
    background: linear-gradient(135deg, #FDF8EE 0%, #FAF3E0 40%, #FDF8EE 100%);
    border-top: 1px solid rgba(196, 151, 58, 0.15);
    border-bottom: 1px solid rgba(196, 151, 58, 0.15);
    position: relative;
    overflow: hidden;
}

.numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196, 151, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.num-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2rem;
    border-right: 1px solid rgba(196, 151, 58, 0.15);
    position: relative;
    transition: background 0.3s;
}

.num-item:last-child {
    border-right: none;
}

.num-item:hover {
    background: rgba(196, 151, 58, 0.05);
}

.num-val {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}

.num-plus {
    font-size: 0.55em;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 300;
}

.num-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   ABOUT — Image left, copy right
============================================================ */
#about {
    background: var(--page);
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
}

#about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: var(--page-2);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.about-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 520px;
}

.about-left {
    overflow: hidden;
    position: relative;
}

.about-right {
    padding-left: 5rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.about-heading span {
    color: var(--blue);
}

.about-body {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.about-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 400;
}

.about-check svg {
    fill: var(--gold);
    flex-shrink: 0;
}

/* ============================================================
   TOPICS — Horizontal scroll
============================================================ */
#topics {
    background: var(--page-2);
    padding: 8rem 0;
    overflow: hidden;
}

.topics-header {
    margin-bottom: 3.5rem;
}

.topics-scroll-wrap {
    margin: 0 -4rem;
    padding: 0 4rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.topics-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.topics-scroll-wrap.grabbing {
    cursor: grabbing;
}

.topics-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    width: max-content;
}

.topic-card {
    width: 340px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.topic-card:hover::before {
    transform: scaleX(1);
}

.topic-num {
    font-family: var(--serif);
    font-size: 4.5rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.topic-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(192, 33, 43, 0.07);
    border: 1px solid rgba(192, 33, 43, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.topic-icon-wrap svg {
    fill: var(--red);
}

.topic-card:hover .topic-icon-wrap {
    background: rgba(192, 33, 43, 0.13);
}

.topic-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.topic-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

.topics-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
}

.topics-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
}

.topics-dot.active {
    width: 22px;
    border-radius: 3px;
    background: var(--blue);
}

/* ============================================================
   B2B MEETINGS
============================================================ */
#b2b {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    background: var(--dark-navy);
}

#b2b::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../assets/images/delhi/handshake.jpg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.b2b-watermark {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.04;
    pointer-events: none;
}

.b2b-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.b2b-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(196, 151, 58, 0.12);
    border: 1px solid rgba(196, 151, 58, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.b2b-tag span {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.b2b-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.b2b-heading span {
    color: var(--gold-light);
}

.b2b-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.b2b-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.b2b-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.b2b-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(196, 151, 58, 0.1);
    border: 1px solid rgba(196, 151, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

.b2b-feature-icon svg {
    fill: var(--gold);
}

.b2b-feature-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.b2b-feature-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    line-height: 1.6;
}

.b2b-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 2px solid var(--gold);
    padding: 2.5rem;
    text-align: center;
}

.b2b-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(196, 151, 58, 0.1);
    border: 1px solid rgba(196, 151, 58, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.b2b-card-icon svg {
    fill: var(--gold-light);
}

.b2b-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.6rem;
}

.b2b-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.b2b-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 33, 43, 0.12);
    border: 1px solid rgba(192, 33, 43, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.b2b-soon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: soondot 1.5s ease-in-out infinite;
}

@keyframes soondot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7)
    }
}

.b2b-soon span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.b2b-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
}

.b2b-stat {
    padding: 1.2rem 0.8rem;
    text-align: center;
}

.b2b-stat span {
    display: block;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.b2b-stat p {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   RECOGNITIONS
============================================================ */
#recognitions {
    background: linear-gradient(135deg, var(--abyss) 0%, var(--dark-navy) 50%, var(--abyss) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

#recognitions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192, 33, 43, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.reco-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 6rem;
    align-items: center;
}

.reco-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0 2.5rem;
}

.reco-stat span {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.reco-stat p {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.reco-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reco-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reco-trophy {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 50px rgba(196, 151, 58, 0.25));
    animation: trophyFloat 4s ease-in-out infinite;
}

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.reco-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(196, 151, 58, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

/* ============================================================
   PEOPLE
============================================================ */
.people-section {
    padding: 7rem 0;
}

.people-adv {
    background: var(--page-2);
}

.people-spk {
    background: var(--page);
}

.people-header {
    margin-bottom: 3.5rem;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 2.5rem;
}

.person-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--page-2);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.person-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

.person-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.person-card:hover::before {
    transform: scaleX(1);
}

.person-img-wrap {
    position: relative;
    overflow: hidden;
}

.person-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.person-card:hover .person-img {
    transform: scale(1.03);
}

.people-va-wrap {
    text-align: center;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.section-label-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-label-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ============================================================
   AGENDA
============================================================ */
#agenda {
    background: var(--abyss);
    padding: 8rem 0;
}

.agenda-header {
    text-align: center;
    margin-bottom: 4rem;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.agenda-table thead th {
    background: var(--dark-navy);
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agenda-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.agenda-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.agenda-table tbody td {
    padding: 1.2rem 1.5rem;
    vertical-align: top;
}

.ag-time {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold-light);
    white-space: nowrap;
    font-style: italic;
}

.ag-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.ag-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    font-weight: 300;
}

.ag-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 2px;
    white-space: nowrap;
}

.b-s {
    background: rgba(26, 79, 156, 0.2);
    color: #7BA7E0;
    border: 1px solid rgba(26, 79, 156, 0.25);
}

.b-b {
    background: rgba(12, 143, 116, 0.15);
    color: #5BBFA8;
    border: 1px solid rgba(12, 143, 116, 0.2);
}

.b-e {
    background: rgba(196, 151, 58, 0.15);
    color: #DEB85A;
    border: 1px solid rgba(196, 151, 58, 0.2);
}

.b-c {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.b-g {
    background: linear-gradient(135deg, rgba(196, 151, 58, 0.2), rgba(222, 184, 90, 0.15));
    color: #DEB85A;
    border: 1px solid rgba(196, 151, 58, 0.25);
}

/* ============================================================
   ATTEND + INDUSTRIES
============================================================ */
#attend {
    background: var(--page);
    padding: 8rem 0;
}

.attend-hdr {
    text-align: center;
    margin-bottom: 4rem;
}

.attend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.attend-sec-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: block;
}

.attend-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--page-2);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
    transition: all 0.2s;
    cursor: default;
}

.sector-pill:hover {
    background: #fff;
    border-color: var(--blue);
    color: var(--blue);
}

.attend-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attend-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.attend-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.attend-lbl {
    font-size: 0.8rem;
    color: var(--muted);
    flex: 1;
    font-weight: 300;
}

.attend-pct {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    min-width: 36px;
    text-align: right;
}

#industries {
    background: var(--page-2);
    padding: 7rem 0;
}

.ind-hdr {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.ind-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 1.4rem;
    background: var(--page-2);
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
    transition: all 0.2s;
}

.ind-item:hover {
    background: #fff;
    color: var(--text);
}

.ind-item span {
    font-size: 1rem;
}

/* ============================================================
   WHY PARTNER
============================================================ */
#why-partner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--abyss) 50%, var(--dark-navy) 100%);
    padding: 8rem 0;
}

.wp-hdr {
    text-align: center;
    margin-bottom: 4.5rem;
}

/* Stat strip — always 4 col on desktop */
.wp-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1px;
}

/* CTA strip — always 2 col on desktop */
.wp-cta-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1px;
    margin-bottom: 3rem;
}

.wp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.wp-card {
    padding: 2.5rem;
    background: var(--dark-navy);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.wp-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.wp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wp-card:hover::after {
    transform: scaleX(1);
}

.wp-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 33, 43, 0.1);
    border: 1px solid rgba(192, 33, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.wp-icon svg {
    fill: var(--red);
}

.wp-card:hover .wp-icon {
    background: rgba(192, 33, 43, 0.18);
}

.wp-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.8rem;
}

.wp-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    font-weight: 300;
}

.wp-cta {
    text-align: center;
}

/* ============================================================
   CONTACT + FOOTER
============================================================ */
#contact {
    background: var(--abyss);
    padding: 8rem 0;
}

.contact-card {
    background: #0A1020;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--gold);
    display: grid;
    grid-template-columns: 1fr 360px;
    overflow: hidden;
}

.contact-left {
    padding: 3.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-title span {
    color: var(--gold-light);
}

.contact-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 460px;
    font-weight: 300;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link svg {
    fill: var(--gold);
    flex-shrink: 0;
}

.contact-link:hover {
    color: #fff;
}

.contact-right {
    padding: 3.5rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(196, 151, 58, 0.3);
    flex-shrink: 0;
}

.contact-p-role {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.2rem;
}

.contact-p-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
}

.contact-p-org {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 0.1rem;
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

footer {
    background: #02040A;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.foot-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foot-brand p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.6;
}

.foot-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.foot-links a {
    display: block;
    padding: 0.3rem 0.8rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.2s;
}

.foot-links a:hover {
    color: rgba(255, 255, 255, 0.55);
}

.foot-copy p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.12);
}

.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s;
}

.wa-float svg {
    fill: #fff;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-left {
        min-height: 320px;
    }

    .about-right {
        padding-left: 0;
        padding-top: 3rem;
    }

    #about::after {
        display: none;
    }

    .b2b-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reco-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .people-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .wrap {
        padding: 0 1.5rem;
    }

    .nav-w {
        padding: 0 1.5rem;
    }

    .topics-scroll-wrap {
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
    }

    .people-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-grid {
        grid-template-columns: 1fr;
    }

    .attend-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-checks {
        grid-template-columns: 1fr;
    }

    .foot-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .foot-links {
        justify-content: center;
    }

    .contact-left,
    .contact-right {
        padding: 2rem 1.5rem;
    }

    .b2b-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .reco-btns {
        flex-direction: column;
    }

    /* Why partner grids */
    .wp-stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-cta-strip {
        grid-template-columns: 1fr;
    }

    .wp-cta-strip .btn {
        width: 100%;
    }

    /* Agenda stacked */
    .agenda-table,
    .agenda-table thead,
    .agenda-table tbody,
    .agenda-table tr,
    .agenda-table td,
    .agenda-table th {
        display: block;
        width: 100%;
    }

    .agenda-table thead {
        display: none;
    }

    .agenda-table tbody tr {
        padding: 1.2rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
    }

    .agenda-table tbody td {
        padding: 0;
        border: none;
        min-width: unset;
    }

    .ag-time {
        display: block;
        margin-bottom: 0.4rem;
    }

    .agenda-table tbody td:last-child {
        position: absolute;
        top: 1.2rem;
        right: 1rem;
        width: auto;
    }
}

@media (max-width:480px) {
    .wrap {
        padding: 0 1.2rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topic-card {
        width: 290px;
    }

    .wp-stat-strip>div {
        padding: 1.2rem 0.8rem;
    }
}