/* ── Section wrapper ──────────────────────────────────────── */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #050d1f;
}

/* ── Inner: full viewport height on desktop ───────────────── */
.hero-banner-inner {
    position: relative;
    width: 100%;
    min-height: clamp(340px, 52vw, 500px);
    display: flex;
    align-items: stretch;
}

/* ── Background image ─────────────────────────────────────── */
.hero-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0
}

/* Left-side overlay only — right half stays clear for the robot column */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 10, 26, 0.88) 0%,
            rgba(5, 10, 26, 0.70) 35%,
            rgba(5, 10, 26, 0.25) 52%,
            transparent 65%);
    z-index: 1;
}

/* ── Bootstrap container above overlays ──────────────────── */
.hero-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: stretch;
}

.hero-banner-row {
    min-height: clamp(320px, 50vw, 490px);
    align-items: center;
}

/* ── Left Column ──────────────────────────────────────────── */
.hero-banner-left {
    padding-top: clamp(1.25rem, 5vh, 3rem);
    padding-bottom: clamp(1.25rem, 4vh, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Brand block: logo + date info side-by-side ───────────── */
.hero-banner-brand {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.1rem);
    margin-bottom: clamp(0.9rem, 2.5vh, 1.4rem);
}

.hero-banner-logo {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    display: block;
}

/* Vertical separator between logo and text */
.hero-banner-brand::after {
    display: none;
    /* handled by gap + natural spacing */
}

.hero-banner-event-info {
    border-left: 2px solid rgba(255, 255, 255, 0.30);
    padding-left: clamp(0.65rem, 1.2vw, 1rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.05rem;
}

.hero-banner-city {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 0.1rem;
}

.hero-banner-venue {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

.hero-banner-date {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}


.hero-banner-badge span {
    display: inline-flex;
    align-items: center;
    border: 2px solid #00d4c8;
    border-radius: 6px;
    padding: 0.55rem 1.25rem;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    background: rgba(0, 212, 200, 0.07);
    position: relative;
    /* Figma corner accent effect */
    box-shadow: 0 0 0 1px rgba(0, 212, 200, 0.15), inset 0 0 18px rgba(0, 212, 200, 0.06);
}

/* ── Stats + CTAs Row ─────────────────────────────────────── */
.hero-banner-stats {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: clamp(0.6rem, 1.5vw, 1.25rem);
    margin-bottom: clamp(1.25rem, 2.5vh, 1.25rem);
    width: 100%;
    align-content: space-around;
}

/* Individual stat */
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.hero-stat-number {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 2px;
    margin-bottom: 0.50rem;
}

.hero-stat-label {
    font-size: clamp(0.68rem, 0.88vw, 0.8rem);
    font-weight: 600;
    color: #F5F5F5;
    line-height: 1.3;
}

/* Thin vertical dividers */
.hero-stat-divider {
    width: 1px;
    height: clamp(28px, 3.5vw, 38px);
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

/* CTA buttons pushed to the far right of the stats row */
.hero-banner-ctas {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.65rem);
    margin-left: auto;
    flex-shrink: 0;
}

/* ── CTA Buttons ──────────────────────────────────────────── */
.hero-btn {
    display: inline-flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
    padding: 0.4rem 0.60rem;
    font-size: clamp(0.65rem, 0.88vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none !important;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

/* JOIN AS VISITOR — purple */
.hero-btn--visitor {
    background: #764DF0;
    color: #ffffff !important;
    box-shadow: 0 3px 14px rgba(124, 58, 237, 0.45);
}

/* BECOME AN EXHIBITOR — red */
.hero-btn--exhibitor {
    background: #FE0054;
    color: #ffffff !important;
    box-shadow: 0 3px 14px rgba(232, 16, 42, 0.45);
}

/* ── Expand to know more ──────────────────────────────────── */
.hero-banner-expand {
    margin-top: 0;
}

.hero-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 1.4rem;
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    font-weight: 600;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    background: #ffffff !important;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hero-expand-btn:hover,
.hero-expand-btn:focus {
    background: #eaeaea !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ── Right Column: Robot (background-image, text-free crop) ── */
.hero-banner-right {
    padding: 0 !important;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: clamp(300px, 52vw, 500px);
    /* Soft left edge so robot blends into dark left area */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 14%, black 30%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 14%, black 30%);
}

/* hero-banner-robot not used (background-image approach) */
.hero-banner-robot {
    display: none;
}





/* ── Section override (prevent site-layout.css conflict) ──── */
#section-hero.hero-banner-section {
    overflow: hidden !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ── Desktop: hide mobile-only bg image ─────────────────── */
.hero-mob-bg {
    display: none;
    /* hidden on desktop always */
}

/* ── Mobile / Tablet Responsive (≤991px) ─────────────────── */
@media (max-width: 991.98px) {
    .hero-banner-inner {
        min-height: auto;
    }

    .hero-banner-right {
        display: none;
    }

    .hero-banner-overlay {
        background: rgba(4, 9, 26, 0.80);
    }

    .hero-banner-left {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE-ONLY HERO FIXES  (max-width: 767px)
   Desktop code above this block is NEVER affected
   ══════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {

    /* 1. Replace jarallax desktop image with mobile image ─ */
    #section-hero .jarallax-img {
        display: none !important;
        /* hide desktop bg img on mobile */
    }

    .hero-mob-bg {
        display: block;
        position: absolute !important;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
    }

    /* Ensure content sits above the mobile background */
    #section-hero .gradient-edge-bottom,
    #section-hero>div {
        position: relative;
        z-index: 1;
    }

    /* 2. Re-order elements using CSS Flex and display: contents ─ */
    .hero-banner-left {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        justify-content: flex-start !important;
        /* Push left, we'll gap them */
        align-content: flex-start;
    }

    .hero-banner-stats {
        display: contents !important;
        /* Unwrap so children join .hero-banner-left's flex context */
    }

    .hero-stat {
        order: 1;
        /* First: Stats */
        margin-bottom: 0.5rem;
    }

    /* Make stats share the row perfectly */
    .hero-banner-stats>.hero-stat:nth-child(1),
    .hero-banner-stats>.hero-stat:nth-child(2) {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        width: 45% !important;
    }

    .hero-banner-stats>.hero-stat:nth-child(1) {
        margin-right: 5%;
        /* adds the space between since justify-content space-between can be tricky with wrap */
    }

    .hero-banner-stats>.hero-stat:nth-child(3) {
        display: none !important;
    }

    /* Hide 3rd stat */

    .hero-stat-number {
        font-size: 1.8rem !important;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    /* 3. Expand button: Centered, placed BEFORE the CTAs ───── */
    .hero-banner-expand {
        order: 2;
        /* Second: Expand Link */
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-expand-btn {
        display: inline-flex;
        width: auto;
        font-size: 0.82rem;
        padding: 0.6rem 1.75rem;
    }

    /* 4. CTAs: Placed at the BOTTOM, full width ────────────── */
    .hero-banner-ctas {
        order: 3;
        /* Third: CTA Buttons */
        width: 100% !important;
        margin-left: 0 !important;
        display: flex;
        gap: 0.5rem;
    }

    .hero-btn {
        min-width: 0 !important;
        flex: 1;
        /* split exactly 50/50 */
        padding: 0.75rem 0.5rem;
        font-size: 0.72rem;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════
   About Section — "Why AI TECH 2026 Exists"
   ══════════════════════════════════════════════════════ */

/* Section wrapper: stretch full viewport width, no gap */
.about-section {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #06112a;
    /* dark navy fallback */
}

/* Left column: image fills the full column height */
.about-img-col {
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    min-height: clamp(260px, 36vw, 480px);
    position: relative;
    /* needed for ::after overlay */
}

/* Fade overlay: gradient from transparent → dark background, right edge */
.about-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            transparent 40%,
            rgba(6, 17, 42, 0.55) 68%,
            rgba(6, 17, 42, 0.92) 85%,
            #06112a 100%);
    pointer-events: none;
    z-index: 1;
}

/* Reverse fade for right-aligned images (fades to left) */
.about-img-col--right::after {
    background: linear-gradient(to left,
            transparent 40%,
            rgba(6, 17, 42, 0.55) 68%,
            rgba(6, 17, 42, 0.92) 85%,
            #06112a 100%);
}

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

/* Right column: dark background, vertically centered */
.about-content-col {
    background: #06112a;
    display: flex;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.about-content {
    width: 100%;
}

/* Heading */
.about-title {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* Bold lead paragraph */
.about-lead {
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Bullet list */
.about-bullets {
    padding: 0;
    margin: 0;
}

.about-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 1rem;
    font-size: clamp(0.88rem, 1.1vw, 0.98rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.about-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.85;
}

/* Responsive: stack on mobile */
@media (max-width: 991.98px) {
    .about-img-col {
        min-height: 260px;
    }

    .about-content-col {
        padding: 2.5rem 1.5rem;
    }
}

/* ══════════════════════════════════════════════════════
   Commercial Opportunity Snapshot Section
   ══════════════════════════════════════════════════════ */

.snapshot-section {
    position: relative;
    background: #06112a;
    overflow: visible;
    /* do NOT clip — let image strip show at full natural height */
    color: #ffffff;
}

/* ── Content block (title + stats + CTAs) ───────────── */
.snapshot-content {
    position: relative;
    z-index: 2;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

/* Title */
.snapshot-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Stats row */
.snapshot-stats-row {
    margin-bottom: clamp(1.5rem, 3.5vh, 2.25rem);
}

.snapshot-stat {
    padding: 0 clamp(1rem, 2.5vw, 2rem);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.snapshot-stat:first-child {
    border-left: none;
}

.snapshot-stat-number {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.snapshot-stat-label {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

/* CTA buttons */
.snapshot-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.snapshot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.25rem;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 5px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
    color: #ffffff !important;
}

.snapshot-btn:hover {
    filter: brightness(1.14);
    transform: translateY(-2px);
}

.snapshot-btn--visitor {
    background: #764DF0;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.45);
}

.snapshot-btn--exhibitor {
    background: #FE0054;
    box-shadow: 0 4px 18px rgba(232, 26, 61, 0.45);
}

/* ── Image strip ─────────────────────────────────────── */
.snapshot-img-strip {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
    /* pull strip up behind the CTA buttons */
    margin-top: -1px;
}

/* Dark gradient — solid at top, fades into the image */
.snapshot-img-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(to bottom,
            #06112a 0%,
            rgba(6, 17, 42, 0.75) 45%,
            rgba(6, 17, 42, 0.20) 80%,
            transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Image shows at natural full height — no clipping */
.snapshot-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
    /* ensure no max-height cuts it */
    object-fit: unset;
}

/* Responsive */
@media (max-width: 767.98px) {
    .snapshot-stat {
        border-left: none;
        padding: 0.75rem 1rem;
    }

    .snapshot-stat:nth-child(odd) {
        border-top: none;
    }

    .snapshot-btn {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════
   Visitor Profile Section
   ══════════════════════════════════════════════════════ */

.visitor-section {
    background: #06112a;
    color: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Left copy column */
.visitor-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.visitor-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.visitor-lead {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.visitor-bullets {
    padding: 0;
    margin: 0;
}

.visitor-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.visitor-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Right visual column */
.visitor-visual-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visitor-persona-grid {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.visitor-persona-grid-img-wrap {
    position: relative;
    width: 100%;
}

.visitor-persona-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Expand button */
.visitor-expand-wrap {
    display: flex;
    justify-content: flex-end;
}

.visitor-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 2rem;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
    color: #111111 !important;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
}

.visitor-expand-btn:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   Exhibitor Profile Section
   ══════════════════════════════════════════════════════ */

.exhibitor-section {
    background: #06112a;
    color: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.exhibitor-title {
    font-size: clamp(2rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.exhibitor-subtitle {
    font-size: clamp(1.5rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.exhibitor-bullets-row {
    margin-bottom: clamp(2rem, 4vh, 3rem);
}

.exhibitor-bullets li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.exhibitor-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #6ab0ff;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Five-panel image strip — direct child of section, no breakout needed */
.section-exhibitor-strip {
    position: relative;
    width: 100%;
    margin-top: clamp(1.5rem, 3vh, 2.5rem);
    line-height: 0;
    overflow: hidden;
}

/* Top-fade: lets the strip blend into the dark section above */
.section-exhibitor-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom,
            #06112a 0%,
            rgba(6, 17, 42, 0.75) 35%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.section-exhibitor-strip-img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.p-0 {
    padding: 0px !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .visitor-persona-labels {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitor-persona-labels span:nth-child(1),
    .visitor-persona-labels span:nth-child(3) {
        border-left: none;
    }

    .section-exhibitor-strip-img {
        height: clamp(130px, 18vw, 200px);
    }
}

@media (max-width: 575.98px) {
    .section-exhibitor-strip-img {
        height: 160px;
    }
}

/* ══════════════════════════════════════════════════════
   Footer Section
   ══════════════════════════════════════════════════════ */

.site-footer {
    position: relative;
    background: #020613;
    /* Very dark navy / almost black */
    color: #ffffff;
    padding-bottom: 0rem;
    font-family: inherit;
}

/* Purple Glow Bar */
.footer-glow-bar {
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.85) 0%, rgba(124, 58, 237, 0.2) 30%, transparent 100%);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.footer-brand-logo {
    height: clamp(65px, 8vw, 85px);
    width: auto;
    display: block;
}

/* Small label texts */
.footer-kicker {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    text-transform: none !important;
}

/* Main bold texts */
.footer-venue-line {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: #ffffff;
}

/* Contact Block */
.footer-contact-item {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Right-align contact block on desktop */
@media (min-width: 992px) {
    .footer-col-contact {
        padding-left: 3rem;
    }
}

/* Subfooter */
.site-footer__subfooter {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════
   Introduction to AI TECH — Bootstrap Modal
   ══════════════════════════════════════════════════════ */

/* Backdrop: slightly darker than default */
#aiTechModal .modal-backdrop,
.modal-backdrop {
    --bs-backdrop-opacity: 0.75;
}

/* Modal content box */
.aitech-modal-content {
    background: #06112a;
    border: none;
    border-radius: 4px;
    position: relative;
    color: #ffffff;
}

/* Body padding */
.aitech-modal-body {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

/* Close ✕ button — top-right */
.aitech-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: color 0.2s;
}

.aitech-modal-close:hover {
    color: #ffffff;
}

/* Modal heading */
.aitech-modal-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

/* Intro bold paragraph */
.aitech-modal-intro {
    font-size: clamp(0.9rem, 1.15vw, 1rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.aitech-modal-intro strong {
    color: #ffffff;
    font-weight: 700;
}

/* Divider between intro and columns */
.aitech-modal-cols {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

/* Column sub-heading */
.aitech-modal-col-title {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Column body text */
.aitech-modal-col-text {
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive: stack columns nicely on mobile */
@media (max-width: 767.98px) {
    .aitech-modal-body {
        padding: 1.75rem 1.25rem;
    }

    .aitech-modal-cols .col-md-4+.col-md-4 {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        padding-top: 1.25rem;
    }
}

/* ══════════════════════════════════════════════════════
   Visitor Profile — section-specific overrides
   ══════════════════════════════════════════════════════ */

/* Visitor subtitle */
.visitor-subtitle {
    font-size: clamp(1.5rem, 1.4vw, 1.15rem);
    font-weight: 700;
    color: #ffffff;
}

/* Section needs position:relative so the button can be absolutely placed */
#section-visitor-profile {
    position: relative;
    overflow: hidden;
}

/* Right image column: use Bootstrap's stretch height, clip the image */
#section-visitor-profile .visitor-img-col {
    overflow: hidden !important;
    padding: 0 !important;
}

/* Image wrap fills 100% of the column height */
#section-visitor-profile .visitor-img-col .about-img-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: clamp(260px, 34vw, 420px);
}

/* Image fills the wrap absolutely */
#section-visitor-profile .visitor-img-col .about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ── Expand button — absolutely placed bottom-right of the section ── */
.visitor-expand-container {
    position: absolute;
    bottom: 1.25rem;
    right: 2rem;
    background: transparent;
    padding: 0;
    z-index: 5;
}

.visitor-expand-btn {
    display: inline-block;
    background: #ffffff;
    color: #06112a;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: background 0.2s, color 0.2s;
}

.visitor-expand-btn:hover {
    background: #dce8ff;
    color: #06112a;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    #section-visitor-profile .visitor-img-col .about-img-wrap {
        min-height: 220px;
    }

    .visitor-expand-container {
        right: 1.25rem;
        bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .visitor-expand-container {
        right: 1rem;
        bottom: 0.75rem;
    }
}



/* ══════════════════════════════════════════════════════
   Visitor Profile Modal  (#visitorModal)
   ══════════════════════════════════════════════════════ */

.visitor-modal-content {
    background: #06112a;
    border: none;
    border-radius: 4px;
    position: relative;
    color: #ffffff;
}

.visitor-modal-body {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

.visitor-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: color 0.2s;
}

.visitor-modal-close:hover {
    color: #ffffff;
}

.visitor-modal-title {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    max-width: 92%;
}

.visitor-modal-intro {
    font-size: clamp(0.87rem, 1.05vw, 0.95rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-weight: 600;
    margin-bottom: 2rem;
}

.visitor-modal-cols {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

.visitor-modal-col-title {
    font-size: clamp(0.87rem, 1.05vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.visitor-modal-col-text {
    font-size: clamp(0.78rem, 0.93vw, 0.88rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .visitor-modal-body {
        padding: 1.75rem 1.25rem;
    }

    .visitor-modal-cols [class*="col-"]+[class*="col-"] {
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        padding-top: 1.25rem;
    }

    #section-hero .mh-800,
    .mh-800 {
        min-height: auto !important;
        margin-top: 30px;
    }

    #section-hero .section-hero-subtitle-img {
        max-width: 80%;
    }

    .about-img-col::after {
        background: none;
    }

    .js-marquee .fs-60 {
        font-size: large;
    }

    .snapshot-content {
        padding: clamp(0rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    }

    /* Force snapshot buttons to sit exactly side-by-side 50/50 */
    .snapshot-ctas {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .snapshot-btn {
        width: 50%;
        padding: 0.85rem 1rem;
        font-size: 0.72rem;
        text-align: center;
        min-width: 0;
        /* Ensures it shrinks if needed */
    }

    /* ══════════════════════════════════════════════════════
       VISITOR PROFILE (MOBILE ONLY STACKING)
       ══════════════════════════════════════════════════════ */
    #section-visitor-profile .row {
        display: flex;
        flex-direction: column;
        padding: 0 1.5rem;
        /* Add horizontal padding to the row to replace the col padding */
    }

    #section-visitor-profile .about-content-col,
    #section-visitor-profile .about-content,
    #section-visitor-profile .about-img-col {
        display: contents !important;
        /* Unwrap columns and the about-content wrapper */
    }

    /* Assign explicit order to each immediate child now in the row */
    #section-visitor-profile .about-title {
        order: 1;
        margin-top: 0rem;
        margin-bottom: 0.25rem;
    }

    #section-visitor-profile .visitor-subtitle {
        order: 2;
        margin-bottom: 1.5rem;
    }

    #section-visitor-profile .about-img-wrap {
        order: 3;
        /* Pull the image out of the row padding to make it full bleed */
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-bottom: 2rem;
        width: calc(100% + 3rem);
        /* compensate for negative margins */
    }

    #section-visitor-profile .about-lead {
        order: 4;
        margin-bottom: 1.5rem;
    }

    #section-visitor-profile .about-bullets {
        order: 5;
        margin-bottom: 2rem !important;
    }

    #section-visitor-profile .visitor-expand-container {
        order: 6;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 3.5rem;
        position: static !important;
        /* Fix overlap from absolutely positioned desktop styles */
    }
}

/* ══════════════════════════════════════════════════════
   EXHIBITOR PROFILE
   ══════════════════════════════════════════════════════ */
.exhibitor-bullets {
    padding: 0;
    margin: 0;
}

.exhibitor-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.8rem;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.exhibitor-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.85;
}

@media (max-width: 767.98px) {

    /* Ensure uniform column alignment — no random indents on mobile */
    .exhibitor-bullets-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 0 !important;
    }

    .exhibitor-bullets-row>div[class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        /* Kill any WOW.js animation gap */
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Each list: no margin between lists, bullets flush left */
    .exhibitor-bullets-row .exhibitor-bullets {
        margin-bottom: 0 !important;
        padding-left: 0;
    }

    /* Add a subtle divider between the 3 pavilion groups */
    .exhibitor-bullets-row>div[class*="col-"]+div[class*="col-"] {
        padding-top: 1.25rem !important;
        margin-top: 1.25rem !important;
    }

    /* ══════════════════════════════════════════════════════
       CURATED BUYER PROGRAM (MOBILE ONLY STACKING)
       ══════════════════════════════════════════════════════ */
    #section-curated-buyer .row {
        display: flex;
        flex-direction: column;
        padding: 0 1.5rem;
        /* Add horizontal padding to the row to replace the col padding */
    }

    #section-curated-buyer .about-content-col,
    #section-curated-buyer .about-content,
    #section-curated-buyer .about-img-col {
        display: contents !important;
        /* Unwrap columns and the about-content wrapper */
    }

    /* Assign explicit order to each immediate child now in the row */
    #section-curated-buyer .about-title {
        order: 1;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        /* No subtitle, so larger bottom margin */
    }

    #section-curated-buyer .about-img {
        order: 2;
        /* Pull the image out of the row padding to make it full bleed */
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-bottom: 2rem;
        width: calc(100% + 3rem);
        /* compensate for negative margins */
        height: 280px;
        object-fit: cover;
    }

    #section-curated-buyer .about-lead {
        order: 3;
        margin-bottom: 1.5rem;
    }

    #section-curated-buyer .about-bullets {
        order: 4;
        margin-bottom: 2rem !important;
    }

    /* The div wrapping the "Become an Exhibitor" button */
    #section-curated-buyer .wow.fadeInUp:last-child {
        order: 5;
        width: 100%;
        display: flex;
        margin-bottom: 1rem;
    }

    #section-curated-buyer .btn-sect {
        justify-content: center;
    }

    #section-curated-buyer .snapshot-btn {
        width: fit-content;
    }

    /* ══════════════════════════════════════════════════════
       MEDIA, VISIBILITY & PR REACH (MOBILE ONLY STACKING)
       ══════════════════════════════════════════════════════ */
    #section-media .row {
        display: flex;
        flex-direction: column;
        padding: 0 1.5rem;
        /* Replace column padding */
    }

    /* Unwrap the columns to allow interleaving */
    #section-media .about-content-col,
    #section-media .about-content,
    #section-media .about-img-col {
        display: contents !important;
    }

    /* Override Bootstrap column ordering */
    #section-media .col-lg-6 {
        order: unset !important;
    }

    /* Target specific children */
    #section-media .about-title {
        order: 1;
        margin-top: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    #section-media .about-img {
        order: 2;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-bottom: 2rem;
        width: calc(100% + 3rem);
        height: auto;
    }

    #section-media .about-lead {
        order: 3;
        margin-bottom: 1.5rem;
    }

    #section-media .about-bullets {
        order: 4;
        margin-bottom: 2.5rem !important;
        /* Space at bottom of section */
    }

    .about-bullets li {
        font-size: clamp(1rem, 1.1vw, 0.98rem);
    }

    .snapshot-title,
    .about-title {
        font-size: clamp(2rem, 3vw, 2.4rem);
    }

    .snapshot-stat-label {
        line-height: 1.6;
        display: block;
    }

    #section-visitor-profile {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .exhibitor-section .section-media-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .exhibitor-section h2,
    .exhibitor-section h3,
    .exhibitor-section .exhibitor-bullets {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .exhibitor-section .col-md-4:nth-child(2) {
        background: #010211;
        padding-left: 2rem !important;
    }

}