/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide all background watermarks as requested */
.section-bg-icon,
.industrial-watermark,
.why-watermark,
.program-watermark,
.form-watermark {
    display: none !important;
}

.different-watermark {
    display: block !important;
}

@font-face {
    font-family: 'Canela';
    src: local('Canela'), url('./font/canela.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halfre';
    src: local('Halfre'), url('./font/halfre.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Syne', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

:root {
    --primary-black: #000000;
    --primary-white: #fff;
    --text-grey: #666666;
    --bg-light: #F2F2F2;
    --red-color:#B72F2F;
    /* Lighter grey to be closer to white */
    --gold-accent: #BCAC93;
    --bg-screen: #E6E6E6;
    --nav-height: 60px;
    /* fixed nav height */
}

@media (min-width: 1200px) {
    :root {
        --nav-height: 92px;
    }
}

@media (min-width: 1400px) {
    :root {
        --nav-height: 104px;
    }
}

@media (min-width: 769px) and (max-width: 1180px) {
    :root {
        --nav-height: 128px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 132px;
    }
}

@media (max-width: 420px) {
    :root {
        --nav-height: 140px;
    }
}

.daily-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: var(--primary-black);
    display: none;
}

.daily-video-overlay.is-visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-video-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.daily-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .daily-video-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vh;
        height: 100vw;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .daily-video {
        width: 100%;
        height: 100%;
        position: static;
        transform: none;
    }
}

.daily-video-continue {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60%;
    /* Positioned below "COMING SOON" in the video */
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 18px 44px;
    border: 1px solid var(--primary-black);
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.daily-video-continue.is-visible {
    opacity: 1;
    pointer-events: auto;
    animation: shake 0.8s cubic-bezier(.36, .07, .19, .97) both;
    /* Increased duration from 0.5s to 0.8s */
}

.daily-video-continue:hover {
    background-color: #333;
    transform: translateX(-50%) scale(1.05);
}

@keyframes shake {

    10%,
    90% {
        transform: translateX(-50%) translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translateX(-50%) translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translateX(-50%) translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translateX(-50%) translate3d(4px, 0, 0);
    }
}

.daily-video-mute {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background-color: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.daily-video-mute:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* ────────────────────────────────────────────
   BASE SECTION STYLES
   ──────────────────────────────────────────── */

/* Red color span */
:is(.hero-content,.strategic-header, .event-left, .hero-content, .why-header-left, .ecosystem-header-left,.sponsors-header-left ,.buyers-header-left,.program-header, .industrial-title-group, .why-header-left,.partners-header) span {
    color: var(--red-color);
}


/* ── Slider Container ── */
#slider-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    overflow: visible;
}

/* ── Sections: always 100vw × full remaining height, no scroll ── */
section {
    min-width: 100vw;
    width: 100vw;
    height: calc(100vh - var(--nav-height));
    flex-shrink: 0;
    overflow: hidden;
    /* NO scroll whatsoever */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* When nav is hidden on CTA, use full viewport height to remove white gap */
body.hide-nav .fixed-nav {
    display: none !important;
}

body.hide-nav #slider-container {
    height: 100vh;
}

body.hide-nav section {
    height: 100vh;
}

/* ── Background Icon ── */
.section-bg-icon {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 600px;
    height: auto;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    display: none;
}

#slider-container>section:not(#hero):not(#something-different):not(.cta-section):not(.form-section) {
    isolation: isolate;
}

#slider-container>section:not(#hero):not(#something-different):not(.cta-section):not(.form-section)::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: url("assets/background-icon_converted.avif") no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

/* ────────────────────────────────────────────
   ARROWS — always top-right of their section
   ──────────────────────────────────────────── */
.standard-arrows,
.standard-arrows-inline {
    position: absolute;
    top: 24px;
    right: 48px;
    bottom: auto;
    left: auto;
    z-index: 20;
    display: flex;
    gap: 12px;
}

/* override any inline styles that were bottom-left */
.standard-arrows-inline {
    /* already covered above */
}

/* In section 2 the arrows live inside .strategic-header — pull them out visually */
.strategic-header .standard-arrows-inline {
    position: absolute;
    top: 24px;
    right: 48px;
}

/* Section 6 Navigation (Removed) */

/* Program / Partners / CTA inner nav-arrows blocks */
.program-header .nav-arrows,
.partners-header .nav-arrows,
.different-nav .nav-arrows,
.different-nav {
    position: absolute;
    top: 24px;
    right: 48px;
    z-index: 20;
}

/* ── Container ── */
/* .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
} */

h1,
h2,
h3 {
    font-family: Canela, serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.05;
}

h1 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    font-family: 'Halfre', serif;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
@media (max-width: 720px) {
    h2 {
    font-size: 1.5rem !important;
    font-family: 'Halfre', serif;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.65;
}

.section-padding {
    padding: 40px 0 20px;
}

.bg-light {
    background-color: var(--bg-screen);
}

/* ── Navigation ── */
.fixed-nav {
    position: relative;
    width: 100%;
    background-color: var(--primary-white);
    z-index: 9000;
    /* Extremely high to stay above everything */
    height: var(--nav-height);
    padding: 0;
    border-bottom: none;
    flex-shrink: 0;
    transition: background-color 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Nav grey mode: when not on section 1 */
.fixed-nav.nav-dark {
    background-color: var(--bg-screen);
    border-bottom: none;
}

.nav-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* Center stays perfectly centered */
    align-items: center;
    height: 100%;
    position: relative;
    gap: 20px;
    /* Gap between grid columns */
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: start;
    text-decoration: none;
}

.logo-icon {
    height: 80px;
    /* Matches target design */
    width: auto;
    display: block;
}

.nav-right-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-left: 10px;
    flex-shrink: 0;
}

.nav-countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 999px;
    padding: 6px 18px;
    background-color: var(--primary-black);
    justify-self: center;
    z-index: 10;
}

.nav-countdown-label {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

.nav-countdown-units {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-countdown-num {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: 0.02em;
    min-width: 2ch;
    text-align: center;
}

.nav-countdown-text {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    /* Reduced gap between links for a tighter look */
    border-radius: 100px;
    padding: 12px 32px;
    /* Tighter padding */
    background-color: var(--primary-black);
    z-index: 10;
    justify-self: center;
    /* Horizontally center this element in the grid cell */
}

.nav-links>a {
    text-decoration: none;
    color: var(--primary-white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
    white-space: nowrap;
    text-transform: capitalize;
    font-family: "DM Sans", sans-serif;
}

.nav-links>a:hover {
    opacity: 0.7;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced gap between buttons */
    justify-self: end;
    /* Push to the right */
}

@media (max-width: 1180px) {
    .nav-cta a {
        display: none;
    }
}

.nav-cta a.btn-primary,
.nav-cta a.btn-outline {
    padding: 12px 32px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0%;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.nav-cta a.btn-primary {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: 1px solid var(--primary-black);
}

.nav-cta a.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.nav-cta a.btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    border: 1px solid rgba(0, 0, 0, 0.15);
    /* Subtle border */
}

.nav-cta a.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-cta--mobile {
    display: none;
}

/* ── Mobile Menu Toggle ── */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-black);
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    transition: color 0.3s ease;
}

.hamburger-menu:hover {
    color: var(--gold-accent);
}

.fixed-nav.menu-open .hamburger-menu {
    /* position: fixed; */
    /* top: 20px;
    right: 20px; */
    z-index: 1005;
    margin: 0 !important;
}

@media (max-width: 1180px) {
    .fixed-nav {
        align-items: stretch;
    }

    .nav-container {
        display: flex;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        gap: 12px;
        justify-content: space-between;
        position: relative;
        flex-wrap: wrap;
    }

    .nav-countdown {
        display: flex;
        position: static;
        order: -1;
        width: 100%;
        border-radius: 0;
        padding: 8px 12px;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
    }

    .fixed-nav.nav-black .nav-countdown {
        background-color: transparent;
    }

    .logo {
        flex: 0 1 auto;
        min-width: 0;
        margin-right: auto;
        margin-left: 16px;
        margin-bottom: 8px;
    }

    .logo-icon {
        height: 52px;
    }

    .hamburger-menu {
        display: block;
        margin-left: 12px;
        margin-right: 16px;
        margin-bottom: 8px;
    }

    .nav-cta--desktop {
        display: flex;
        position: absolute;
        left: 50%;
        top: calc(58px + (var(--nav-height) - 58px) / 2);
        transform: translate(-50%, -50%);
        justify-self: unset;
        gap: 0;
        pointer-events: auto;
    }

    .nav-cta--desktop a.btn-primary,
    .nav-cta--desktop a.btn-outline {
        display: none;
    }

    .nav-right-logo {
        height: 50px;
        margin-left: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-white);
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        transition: right 0.3s ease-in-out;
        z-index: 1001;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: none;
        /* Already has transform: none */
        left: auto;
        /* Already has left: auto */
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links>a {
        margin: 10px 0;
        /* Slightly tighter spacing */
        font-size: 1rem;
        /* Slightly smaller font */
        font-weight: 700;
        /* Bolder weight for luxury feel */
        color: var(--primary-black);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-links.nav-active>a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation delay for links */
    .nav-links.nav-active>a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.nav-active>a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.nav-active>a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.nav-active>a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.nav-active>a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.nav-active>a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links>a:hover {
        color: var(--gold-accent);
        opacity: 1;
    }

    .nav-cta--mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: min(320px, 82vw);
        margin-top: 28px;
    }

    .nav-cta--mobile a.btn-primary,
    .nav-cta--mobile a.btn-outline {
        width: 100%;
        border-radius: 100px;
        padding: 16px 20px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    .nav-countdown {
        position: static;
        width: 100%;
        height: 48px;
        padding: 0 20px;
        justify-content: space-between;
        border-radius: 0;
        gap: 14px;
        margin: 0;
        order: -1;
    }

    .nav-countdown-label {
        display: block;
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 13px;
    }

    .nav-countdown-units {
        width: auto;
        gap: 12px;
        justify-content: flex-end;
    }

    .logo {
        margin: 0 0 0 16px;
        flex: 1;
        display: flex;
        align-items: center;
        order: 1;
    }

    .nav-cta--desktop {
        position: static;
        transform: none;
        top: auto;
        left: auto;
        display: flex;
        justify-content: center;
        pointer-events: auto;
        flex: 0 0 auto;
        order: 2;
        margin: 0 auto;
    }
      .nav-cta--desktop a.btn-primary,
    .nav-cta--desktop a.btn-outline {
        display: none !important;
    }

    .nav-cta--desktop > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-right-logo {
        height: 50px;
        margin: 0;
    }

    .hamburger-menu {
        display: block;
        margin: 0 16px 0 0;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        order: 3;
    }

  
}

@media (max-width: 768px) {
    .logo-icon {
        height: 56px;
    }
}

@media (max-width: 420px) {
    .nav-container {
        padding: 0;
    }

    .logo-icon {
        height: 62px;
    }
}

/* ── Pills / Buttons ── */
.pill {
    background-color: #efefef;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.pill-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 12px 32px;
    border: 1px solid var(--primary-black);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    padding: 12px 32px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.btn-primary-light {
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 13px 28px;
    border: 1px solid var(--primary-white);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-light:hover {
    background-color: transparent;
    color: var(--primary-white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--primary-white);
    padding: 13px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ── Pill Buttons ── */
.btn-pill-dark {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: clamp(6px, 1.2vh, 10px) clamp(16px, 2vw, 24px);
    border: none;
    border-radius: 30px;
    text-transform: capitalize;
    font-size: clamp(12px, 1.8vh, 18px);
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.btn-pill-dark:hover {
    background-color: #2a2a2a;
}

/* ── Arrow Buttons ── */
.arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--primary-black);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--primary-black);
}

.arrow-btn:hover {
    border-color: var(--primary-black);
    background: var(--primary-black);
    color: var(--primary-white);
}

.arrow-btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: var(--primary-white) !important;
    backdrop-filter: blur(4px);
}

.arrow-btn-light:hover {
    background: var(--primary-white) !important;
    border-color: var(--primary-white) !important;
    color: var(--primary-black) !important;
}

@media (max-width: 768px) {
    .arrow-btn-light {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid #d0d0d0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        color: inherit;
    }

    .arrow-btn-light:hover {
        border-color: var(--primary-black);
        background: var(--primary-black);
        color: var(--primary-white);
    }
}

/* nav-arrows used in program/partners headers — kill their relative layout */
.nav-arrows {
    display: flex;
    gap: 12px;
}

.program-header .nav-arrows,
.partners-header .nav-arrows {
    position: static;
}


/* ════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════ */
.hero-mobile-arrows {
    display: none;
}

.hero-mobile-arrows a {
    text-decoration: none;
}

@media (max-width: 1180px) {
    .standard-arrows,
    .standard-arrows-inline,
    .nav-arrows,
    .ecosystem-arrows,
    .industrial-arrows {
        top: 72px !important;
        right: 20px !important;
    }
}

@media (max-width: 768px) {
    .standard-arrows,
    .standard-arrows-inline,
    .nav-arrows,
    .ecosystem-arrows,
    .industrial-arrows {
        position: absolute !important;
        top: calc(10px + env(safe-area-inset-top, 0px)) !important;
        right: 12px !important;
        bottom: auto !important;
        left: auto !important;
        margin: 20px 0 0 0 !important;
    }
}

@media (max-width: 768px) {
    .arrow-btn,
    .arrow-btn-light {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.8rem !important;
    }

    /* .strategic-header h2,
    .event-left h2,
    .ecosystem-header-left h2,
    .industrial-col-left h2,
    .why-header-left h2,
    .sponsors-header-left h2,
    .buyers-header-left h2,
    .program-header h2,
    .different-title {
        padding-right: 96px !important;
    } */
}

.hero-section {
    display: flex;
    background-color: var(--primary-white);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.hero-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 3.125rem 0 1.25rem 0;
    /* Restored original max padding */
    height: 100%;
    justify-content: center;
    /* Keep this to ensure vertical centering for better height adaptation */
}

.hero-content {
    position: relative;
    z-index: 15;
    /* max-width: 38%; */
    flex: 0 0 auto;
    /* Back to original auto flex */
    display: flex;
    flex-direction: column;
    gap: 0;
}


.hero-meta {
    margin-bottom: 28px;
    /* Restored original max margin */
}

.hero-section .pill {
    background-color: transparent;
    border: 1px solid #0000001F;
    font-family: "Halfre", serif;
    font-size: 36px;
    /* Restored original max size */
    font-weight: 400;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    color: var(--red-color);
    text-transform: capitalize;
    line-height: 100%;
}

.hero-section h1 {
    font-family: "Halfre", serif;
    font-size: 4rem;
    /* Restored original max size */
    font-weight: 400;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--primary-black);
    margin: 1.25rem 0 5rem 0;
    /* Restored original max margins */
    letter-spacing: 0;
    max-width: 730px;
    position: relative;
    z-index: 20;
}

.hero-subtext {
    margin-bottom: 0;
    margin-top: 20px;
    /* Restored original margin */
}

.subtext-bold {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    /* Restored original max size */
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 10px 0;
    color: var(--primary-black);
    letter-spacing: 0;
}

.subtext-regular {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    /* Restored original max size */
    font-weight: 400;
    line-height: 33px;
    margin: 0;
    color: var(--primary-black);
    max-width: 700px;
    letter-spacing: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 1.75rem;
    /* Restored original margin */
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    padding: 12px 30px;
    /* Restored original padding */
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    /* Restored original size */
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.0;
}

.hero-footer {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 50px;
    /* Restored original margin */
    position: relative;
    z-index: 15;
}

.large-number {
    font-family: 'Canela', serif;
    font-size: 78px;
    /* Restored original max size */
    font-weight: 400;
    color: var(--primary-black);
    line-height: 1.0;
}

.small-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    /* Restored original max size */
    line-height: 1.08;
    color: var(--primary-black);
    font-weight: 400;
    margin-top: 6px;
}

/*
  KEY: img is height:100%, width:auto — natural proportions, fills full section height.
  Anchored bottom-right. overflow:hidden on section clips anything outside.
*/
.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110%;
    /* Restored to original 110% height */
    width: auto;
    max-width: 56vw;
    z-index: 30;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1400px) {
    .hero-image {
        left: auto;
        right: 0;
    }
}

.hero-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom left;
}

/* Overlay positioned ON the dog's body/chest area */
.image-overlay {
    position: absolute;
    bottom: 40%;
    right: 0;
    left: auto;
    z-index: 25;
    width: min(460px, calc(100vw - 80px));
}

.overlay-content {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.image-overlay p {
    font-family: 'Halfre', serif;
    font-size: 41px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-black);
    margin: 0;
    flex: 0 0 auto;
    max-width: 400px;
    text-align: left;
}

.hero-next-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: var(--primary-black);
    text-decoration: none;
    margin-bottom: 6px;
    /* Align with bottom of last line */
    /* Override arrow-btn styles */
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}

.hero-next-arrow:hover {
    transform: translateX(5px);
    background: transparent !important;
    color: var(--primary-black) !important;
}

.hero-next-arrow i {
    font-size: 38px;
}

/* ── Why Responsive ── */
@media (max-height: 650px) {
    .why-section .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* .why-header h2 {
        font-size: clamp(1.5rem, 8vh, 2.2rem);
    } */

    .why-activation-bar {
        padding: 6px 16px;
        margin-bottom: 10px;
    }

    .why-activation-bar span {
        font-size: 14px;
    }

    .why-card-img {
        height: clamp(80px, 20vh, 140px);
    }

    .why-card-overlay span {
        font-size: 12px;
    }
}

/* ── Sponsors Responsive ── */
@media (max-height: 650px) {
    .sponsors-header {
        padding-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* .sponsors-header h2 {
        font-size: clamp(1.5rem, 8vh, 2.2rem);
    } */

    .sponsors-main-text,
    .sponsors-secondary-text {
        font-size: 13px;
        line-height: 1.1;
    }

    .sponsors-image-grid img {
        min-height: clamp(60px, 20vh, 140px);
        border-radius: 12px;
    }

    .sponsors-col-right {
        gap: 8px;
    }
}

/* ── Industrial Scope Responsive ── */
@media (max-height: 850px) {
    .industrial-grid-layout {
        padding-top: 1rem;
        padding-bottom: 1rem;
        gap: 2rem;
    }

    /* .industrial-col-left h2 {
        font-size: clamp(1.8rem, 6vh, 3.5rem);
    } */

    .industrial-item-title {
        font-size: clamp(16px, 2.5vh, 22px);
    }

    .industrial-main-text,
    .industrial-secondary-text {
        font-size: clamp(13px, 2vh, 18px);
    }

    .industrial-img-box.main-img {
        height: clamp(120px, 25vh, 300px);
    }

    .industrial-img-box.secondary-img {
        height: clamp(100px, 20vh, 250px);
    }
}

@media (max-height: 650px) {
    .industrial-grid-layout {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        gap: 1.5rem;
    }

    /* .industrial-col-left h2 {
        font-size: clamp(1.5rem, 8vh, 2.2rem);
    } */

    .industrial-item-title {
        font-size: 15px;
        margin-top: 2px;
    }

    .industrial-main-text,
    .industrial-secondary-text {
        font-size: 12px;
        line-height: 1.1;
    }

    .industrial-img-box.main-img {
        height: clamp(100px, 22vh, 200px);
    }

    .industrial-img-box.secondary-img {
        height: clamp(80px, 18vh, 160px);
    }

    .industrial-col-left,
    .industrial-col-right {
        gap: 10px;
    }
}

/* ── Ecosystem Responsive ── */
@media (max-height: 700px) {
    .ecosystem-section .container {
        padding-top: 2vh !important;
        padding-bottom: 2vh !important;
        justify-content: center;
    }

    .ecosystem-header-left h2 {
        /* font-size: 2.5rem !important; */
        /* Restored size */
        margin-bottom: 10px !important;
    }

    .ecosystem-sub-desc {
        font-size: 14px !important;
        /* Restored size */
        max-width: 350px !important;
        margin-top: 5px !important;
        line-height: 1.2 !important;
    }

    .ecosystem-header-row {
        margin-bottom: 15px !important;
    }

    .ecosystem-badges {
        margin-bottom: 20px !important;
    }

    .badge-black-pill {
        font-size: 1.5rem !important;
        /* Restored size */
        padding: 6px 20px !important;
    }

    .ecosystem-grid {
        height: 140px !important;
        /* Increased height */
        margin-bottom: 15px !important;
        gap: 12px !important;
    }

    .ecosystem-card {
        border-radius: 12px !important;
    }

    .ecosystem-card span {
        font-size: 14px !important;
        /* Restored size */
        padding: 8px !important;
    }

    .ecosystem-bottom-layout {
        gap: 20px !important;
    }

    .ecosystem-text-col {
        padding-left: 15px !important;
    }

    .ecosystem-text-col p,
    .right-col p {
        font-size: 14px !important;
        /* Restored size */
        line-height: 1.3 !important;
    }

    .ecosystem-text-col .highlight-title {
        font-size: 18px !important;
        /* Restored size */
        margin-bottom: 8px !important;
    }
}

@media (max-height: 850px) {
    .ecosystem-section .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
        justify-content: center;
    }

    /* .ecosystem-header-left h2 {
        font-size: clamp(2rem, 6vh, 3.5rem);
    } */

    .ecosystem-sub-desc {
        font-size: clamp(14px, 2vh, 18px);
        line-height: 1.2;
        margin-top: 5px;
        max-width: 400px;
    }

    .ecosystem-header-row {
        margin-bottom: clamp(10px, 2vh, 20px);
    }

    .ecosystem-badges {
        margin-bottom: clamp(15px, 3vh, 30px);
    }

    .badge-black-pill {
        font-size: clamp(1.2rem, 3.5vh, 1.8rem);
        padding: 6px 24px;
    }

    .ecosystem-grid {
        height: clamp(100px, 18vh, 200px);
        margin-bottom: clamp(15px, 3vh, 25px);
        gap: 12px;
    }

    .ecosystem-card span {
        font-size: clamp(12px, 1.8vh, 16px);
        padding: 8px;
    }

    .ecosystem-text-col p,
    .right-col p {
        font-size: clamp(14px, 2.2vh, 18px);
        line-height: 1.3;
    }

    .ecosystem-bottom-layout {
        gap: 20px;
    }
}

@media (max-height: 650px) {
    .ecosystem-section .container {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .ecosystem-header-row {
        margin-bottom: 5px;
    }

    /* .ecosystem-header-left h2 {
        font-size: clamp(1.4rem, 7vh, 2rem);
    } */

    .ecosystem-sub-desc {
        font-size: 12px;
        max-width: 280px;
        margin-top: 0;
        line-height: 1.1;
    }

    .ecosystem-badges {
        margin-bottom: 5px;
    }

    .badge-black-pill {
        font-size: 1rem;
        padding: 4px 12px;
    }

    .ecosystem-grid {
        height: clamp(70px, 18vh, 120px);
        margin-bottom: 5px;
        gap: 6px;
    }

    .ecosystem-card {
        border-radius: 8px;
    }

    .ecosystem-card span {
        font-size: 11px;
        padding: 4px;
    }

    .ecosystem-bottom-layout {
        gap: 10px;
    }

    .ecosystem-text-col {
        padding-left: 10px;
    }

    .ecosystem-text-col p,
    .right-col p {
        font-size: 12px;
        line-height: 1.1;
    }

    .ecosystem-text-col .highlight-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

/* ── Hero Responsive ── */
@media (max-height: 850px) {
    .hero-container {
        padding: 2rem 0 1rem 0;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 8vh, 4rem);
        margin: 1rem 0 2rem 0;
    }

    .subtext-bold {
        font-size: clamp(1.5rem, 5vh, 2.5rem);
    }

    .subtext-regular {
        font-size: clamp(1.2rem, 4vh, 2.25rem);
    }

    .hero-footer {
        margin-top: 2rem;
    }

    .large-number {
        font-size: clamp(3rem, 10vh, 78px);
    }

    .hero-image {
        right: 0;
        height: 100%;
        /* Fit exactly to avoid drifting */
    }

    .image-overlay {
        left: 47%;
        bottom: 35%;
        width: 320px;
    }

    .image-overlay p {
        font-size: 28px;
        max-width: 220px;
    }
}

@media (max-height: 650px) {
    .hero-container {
        padding: 1rem 0 0.5rem 0;
    }

    .hero-meta {
        margin-bottom: 10px;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 10vh, 3rem);
        margin: 0.5rem 0 1rem 0;
    }

    .hero-subtext {
        margin-top: 10px;
    }

    .subtext-bold {
        font-size: 1.25rem;
    }

    .subtext-regular {
        font-size: 1.1rem;
    }

    .hero-buttons {
        margin-top: 1rem;
    }

    .hero-footer {
        margin-top: 1rem;
    }

    .large-number {
        font-size: 48px;
    }

    .small-desc {
        font-size: 14px;
    }

    .image-overlay {
        left: 44%;
        bottom: 30%;
        width: 280px;
    }

    .image-overlay p {
        font-size: 22px;
        max-width: 200px;
    }
}

@media (max-width: 1200px) {}

/* Tablet & Short Viewport Overrides (1024px and below) */
@media (max-width: 1024px) {
    .timeline-tooltip-global {
        display: none !important;
    }

    .hero-section {
        height: 100%;
        min-height: 0;
        flex-direction: column;
    }

    .hero-container {
        width: 100%;
        max-width: none;
        padding: clamp(20px, 4vh, 40px) 5%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 0;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-image,
    .hero-next-arrow,
    .hero-image-text {
        display: none !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 24px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 320px;
    }

    .hero-footer {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Section 10 - Program Overview (Tablet) */
    .program-section {
        justify-content: center !important;
    }

    .program-section .container {
        padding: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: center !important;
    }

    .program-header h2 {
        /* font-size: 2.2rem !important; */
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .timeline-container {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        gap: 20px !important;
    }

    .timeline-item {
        padding: 15px !important;
    }

    .timeline-title {
        font-size: 1.2rem !important;
    }

    .timeline-text {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* Section 11 - Strategic Partners (Tablet) */
    .partners-section {
        justify-content: center !important;
    }

    .partners-section .container {
        padding: 40px !important;
        height: 100% !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    /* .partners-header h2 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    } */

    .partners-grid-layout {
        gap: 25px !important;
    }

    .col-header {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .partner-btn {
        padding: 12px 24px !important;
        min-height: 44px !important;
        font-size: 0.9rem !important;
    }

    /* Specific overrides for short viewports (like 1024x600 and modern mobile devices) */
    @media (max-height: 700px) {
        :root {
            --nav-height: 60px !important;
        }

        .nav-container {
            height: 60px !important;
            padding: 0  !important;
        }

        .logo img {
            height: 50px !important;
        }

        .hero-container {
            padding: 15px 5%;
        }

        .hero-meta {
            margin-bottom: 8px;
        }

        .hero-section .pill {
            font-size: 0.85rem;
            padding: 5px 14px;
        }

        .hero-section h1 {
            font-size: clamp(1.5rem, 6vh, 2rem);
            margin: 10px 0;
            line-height: 1.1;
        }

        .hero-subtext {
            margin-top: 5px;
        }

        .subtext-bold {
            font-size: 1.1rem;
            margin-bottom: 2px;
        }

        .subtext-regular {
            font-size: 0.85rem;
        }

        .hero-buttons {
            margin-top: 15px;
            gap: 8px;
        }

        .hero-buttons .btn-primary,
        .hero-buttons .btn-outline {
            padding: 10px 20px;
            font-size: 13px;
        }

        .hero-footer {
            padding-top: 12px;
            gap: 12px;
            margin-top: auto;
        }

        .large-number {
            font-size: 32px;
        }

        .small-desc {
            font-size: 12px;
            line-height: 1.2;
        }

        /* Section 2 - Strategic Shift (Short Viewport) */
        .strategic-shift-section {
            padding-top: 15px !important;
            padding-bottom: 0 !important;
        }

        .strategic-container {
            padding: 15px 5% 5px !important;
            gap: 8px !important;
        }

        .strategic-header h2 {
            /* font-size: clamp(1.4rem, 5vh, 1.8rem) !important; */
            padding-bottom: 6px !important;
        }

        .strategic-header h2::after {
            width: 30px !important;
        }

        .strategic-main-grid {
            margin-bottom: 10px !important;
            gap: 10px !important;
        }

        .strategic-list-col .shift-list li,
        .strategic-text-col p {
            font-size: 0.85rem !important;
            line-height: 1.2 !important;
            margin-bottom: 2px !important;
        }

        .strategic-bottom-layout {
            min-height: 50px !important;
        }

        .activation-bar {
            min-height: 50px !important;
            font-size: 1.1rem !important;
        }

        .strategic-image-wrapper {
            height: 100px !important;
        }

        /* Section 3 - More Than An Event (Short Viewport) */
        .section-padding {
            padding-top: 10px !important;
            padding-bottom: 0 !important;
        }

        .event-inner {
            padding: 52px 5% 10px 5% !important;
            /* Increased top padding to clear arrows */
            gap: 8px !important;
            /* Reduced gap between main blocks */
            align-items: center !important;
            justify-content: flex-start !important;
            text-align: center !important;
        }

        .event-left {
            max-width: 100% !important;
            flex-grow: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        .event-left .section-header {
            margin-bottom: 5px !important;
        }

        .event-left h2 {
            /* font-size: clamp(1.2rem, 3.5vh, 1.6rem) !important; */
            /* Reduced size */
            line-height: 1 !important;
            text-align: center !important;
        }

        .event-main-img {
            max-height: 110px !important;
            /* Reduced height to save space */
            border-radius: 12px !important;
            flex: 0 0 auto !important;
            margin: 0 auto !important;
        }

        .event-right {
            max-width: 100% !important;
            gap: 5px !important;
            /* Reduced gap */
            flex-grow: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        .section-subtext {
            font-size: 0.75rem !important;
            /* Reduced size */
            line-height: 1.2 !important;
            margin-top: 0 !important;
            text-align: center !important;
        }

        .format-intentional {
            gap: 2px !important;
            /* Reduced gap */
            align-items: center !important;
        }

        .format-intentional h3 {
            font-size: 0.9rem !important;
            /* Reduced size */
            margin-bottom: 2px !important;
        }

        .format-intentional p {
            font-size: 0.7rem !important;
            /* Reduced size */
        }

        .format-list {
            gap: 4px !important;
            /* Reduced gap */
            margin-top: 5px !important;
            width: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        .format-num {
            font-size: 1.4rem !important;
            /* Reduced size */
        }

        .format-text {
            font-size: 0.8rem !important;
            /* Reduced size */
        }

        .event-desc-bottom {
            padding: 10px 5% !important;
            /* Reduced padding */
            margin-top: auto !important;
            background-color: var(--primary-black) !important;
            width: 100% !important;
        }

        .event-desc-bottom p {
            font-size: 0.7rem !important;
            /* Reduced size */
            line-height: 1.2 !important;
            color: var(--primary-white) !important;
        }

        /* Section 4 - Ecosystem (Short Viewport) */
        .ecosystem-section .container {
            padding-top: 10px !important;
            padding-bottom: 5px !important;
            gap: 2px !important;
            /* Extremely tight gap */
            justify-content: flex-start !important;
        }

        .ecosystem-header-row {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            margin-bottom: 2px !important;
        }

        .ecosystem-header-left {
            margin-bottom: 2px !important;
        }

        .ecosystem-header-left h2 {
            /* font-size: 1.3rem !important; */
            /* Slightly smaller */
            line-height: 1 !important;
        }

        .ecosystem-sub-desc {
            font-size: 0.75rem !important;
            max-width: 80% !important;
            margin: 0 auto !important;
            text-align: center !important;
        }

        .ecosystem-badges {
            margin: 2px 0 !important;
            transform: scale(0.85);
            /* Scale down slightly to save vertical space */
        }

        .badge-black-pill {
            font-size: 0.9rem !important;
            padding: 4px 12px !important;
        }

        .ecosystem-grid {
            gap: 8px !important;
            height: 180px !important;
            /* Taller as requested */
            margin-bottom: 10px !important;
            /* Remove margin below grid */
            margin-top: 2px !important;
        }

        .ecosystem-card span {
            font-size: 0.7rem !important;
            padding: 6px !important;
        }

        .ecosystem-bottom-layout {
            padding-bottom: 2px !important;
            gap: 10px !important;
            margin-top: 0 !important;
            /* Remove margin-top: auto to close gap */
            flex-direction: row !important;
            justify-content: center !important;
            text-align: left !important;
        }

        .ecosystem-text-col {
            padding-left: 12px !important;
            max-width: 48% !important;
        }

        .ecosystem-text-col p {
            font-size: 0.75rem !important;
            line-height: 1.1 !important;
            margin: 0 !important;
        }

        .ecosystem-text-col::before {
            height: 40% !important;
        }

        /* Section 5 - Industrial Scope (Short Viewport) */
        .industrial-section {
            justify-content: center !important;
        }

        .industrial-section .container {
            padding-top: 10px !important;
            padding-bottom: 10px !important;
            gap: 8px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            margin: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        .industrial-col-left,
        .industrial-col-right {
            display: contents !important;
            /* Stacks everything in one column */
        }

        .industrial-col-left h2 {
            /* font-size: 1.2rem !important; */
            line-height: 1 !important;
            margin-bottom: 2px !important;
        }

        .industrial-img-box.main-img,
        .industrial-img-box.secondary-img {
            height: 120px !important;
            /* Adjusted to fit the stack */
            width: 100% !important;
            max-width: 400px !important;
            border-radius: 12px !important;
        }

        .industrial-item-title {
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            text-transform: none !important;
            margin-top: 5px !important;
            margin-bottom: 2px !important;
        }

        .industrial-main-text,
        .industrial-secondary-text {
            font-size: 0.7rem !important;
            line-height: 1.2 !important;
            margin-bottom: 5px !important;
            max-width: 500px !important;
        }

        /* Section 6 - Why This Matters (Short Viewport) */
        .why-matters-section {
            justify-content: flex-start !important;
            padding-top: 0 !important;
            overflow: hidden !important;
            height: 100% !important;
        }

        .why-matters-section .container {
            padding-top: clamp(70px, 12vh, 90px) !important;
            /* Pushed content lower to clear arrows */
            padding-bottom: 20px !important;
            gap: clamp(8px, 1.5vh, 12px) !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            justify-content: center !important;
            height: 100% !important;
            min-height: 0 !important;
        }

        .why-header-layout {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 12px !important;
            /* Slightly tighter gap */
            width: 100% !important;
            margin-bottom: 10px !important;
        }

        .why-header-left {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            width: 100% !important;
            margin-bottom: 5px !important;
        }

        .why-header-left h2 {
            /* font-size: 1.4rem !important; */
            /* Slightly larger for readability if centered */
            line-height: 1.1 !important;
            text-align: center !important;
            margin: 0 !important;
            width: 100% !important;
        }

        .why-title-underline {
            margin: 8px auto !important;
            width: 60px !important;
            height: 2px !important;
        }

        .why-sub-headline {
            width: 100% !important;
            text-align: center !important;
            margin-bottom: 5px !important;
        }

        .why-sub-headline p {
            font-size: 0.8rem !important;
            line-height: 1.3 !important;
            max-width: 95% !important;
            margin: 0 auto !important;
            color: var(--primary-black);
        }

        .why-header-right-box {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 12px 15px !important;
            border-radius: 12px !important;
            width: 100% !important;
            max-width: 340px !important;
            /* iPhone SE safe width */
            min-height: auto !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            margin: 5px auto !important;
            position: relative !important;
            z-index: 2 !important;
        }

        .why-header-right-box p {
            font-size: 0.75rem !important;
            line-height: 1.3 !important;
            margin: 0 !important;
            text-align: center !important;
        }

        .why-activation-bar {
            padding: 8px 15px !important;
            margin: 15px auto !important;
            width: auto !important;
            max-width: 90% !important;
            display: flex !important;
            justify-content: center !important;
            border-radius: 50px !important;
            background-color: var(--gold-accent) !important;
            color: var(--primary-white) !important;
        }

        .why-activation-bar span {
            font-size: 0.8rem !important;
            line-height: 1.2 !important;
            text-align: center !important;
        }

        .why-grid {
            width: 100% !important;
            max-width: 100% !important;
            gap: 12px !important;
            margin: 10px auto 0 !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .why-card {
            width: 100% !important;
        }

        .why-card-img {
            height: 110px !important;
            /* Reduced height to fit on SE screen */
            border-radius: 12px !important;
        }

        .why-card-overlay span {
            font-size: 0.85rem !important;
            padding: 10px !important;
        }
    }

    /* Section 7 - For Strategic Sponsors (Short Viewport) */
    .sponsors-section {
        justify-content: center !important;
    }

    .sponsors-section .container {
        padding-top: 50px !important;
        /* Increased padding to push content lower */
        padding-bottom: 10px !important;
        gap: 5px !important;
        /* Tightened gap to group images and text */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: flex-start !important;
        /* group content together */
    }

    .sponsors-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin-bottom: 2px !important;
    }

    .sponsors-header-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .sponsors-header h2 {
        /* font-size: 1.3rem !important; */
        margin: 0 !important;
        text-align: center !important;
    }

    .why-title-underline {
        margin: 5px auto !important;
        /* Center the underline */
    }

    .sponsors-header-right {
        padding-bottom: 0 !important;
    }

    .sponsors-header-right .btn-pill-dark {
        font-size: 0.8rem !important;
        padding: 8px 20px !important;
    }

    .sponsors-layout {
        display: contents !important;
        /* Stack columns */
    }

    .sponsors-col-left,
    .sponsors-col-right {
        width: 100% !important;
        max-width: 500px !important;
        gap: 5px !important;
        /* Tightened gap */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .sponsors-main-text,
    .sponsors-secondary-text {
        font-size: 0.75rem !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        max-width: 90% !important;
    }

    .sponsors-image-grid {
        margin: 5px 0 !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .sponsors-image-grid img {
        height: 140px !important;
        /* Slightly taller */
        border-radius: 12px !important;
    }

    /* Section 8 - Buyers (Short Viewport) */
    .buyers-section {
        justify-content: center !important;
    }

    .buyers-section .container {
        padding-top: 10px !important;
        padding-bottom: 5px !important;
        gap: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .buyers-header {
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 5px !important;
        padding-top: 0 !important;
        width: 100% !important;
    }

    .buyers-header-left {
        margin-bottom: 2px !important;
    }

    .section-title-syne {
        font-size: 1.4rem !important;
        text-align: center !important;
    }

    .section-title-syne::after {
        margin: 15px auto 0 !important;
        width: 40px !important;
    }

    .buyers-header-right {
        margin-top: 5px !important;
        align-items: center !important;
    }

    .buyers-invite-only {
        font-size: 0.75rem !important;
    }

    .buyer-grid {
        gap: 8px !important;
        margin-bottom: 5px !important;
    }

    .buyer-card {
        height: 110px !important;
        /* Adjusted for centering balance */
    }

    .buyer-card-overlay span {
        font-size: 0.75rem !important;
    }

    .buyers-footer {
        margin-top: 5px !important;
    }

    .footer-tagline-syne {
        font-size: 1rem !important;
    }

    /* Section 10 - Program Overview (Short Viewport) */
    .program-section {
        justify-content: center !important;
    }

    .program-section .container {
        padding-top: 50px !important;
        /* space for arrows */
        padding-bottom: 5px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .program-header {
        margin-bottom: 5px !important;
        width: 100% !important;
    }

    .program-header h2 {
        /* font-size: 1.4rem !important; */
        text-align: center !important;
        width: 100% !important;
    }

    .gold-underline-header {
        margin: 5px auto !important;
        width: 50px !important;
    }

    .timeline-container {
        width: 100% !important;
        height: 220px !important;
        /* Reduced from 400px */
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .timeline-content {
        width: 200px !important;
        /* Narrower for short viewport */
    }

    .timeline-item.top .timeline-content {
        bottom: calc(50% + 10px) !important;
    }

    .timeline-item.bottom .timeline-content {
        top: calc(50% + 10px) !important;
    }

    .timeline-item {
        padding: 4px !important;
    }

    .timeline-title {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }

    .timeline-text {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }

    .timeline-day-label {
        font-size: 0.7rem !important;
    }

    /* Section 11 - Partners (Short Viewport) */
    .partners-section {
        justify-content: center !important;
    }

    .partners-section .container {
        padding-top: 50px !important;
        /* space for arrows */
        padding-bottom: 5px !important;
        gap: 5px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .partners-header {
        margin-bottom: 5px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .partners-header h2 {
        /* font-size: 1.4rem !important; */
        margin-bottom: 2px !important;
    }

    .partners-grid-layout {
        margin-top: 2px !important;
        gap: 5px !important;
        width: 100% !important;
    }

    .col-header {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }

    .partner-btn {
        padding: 4px 8px !important;
        min-height: 28px !important;
        font-size: 0.6rem !important;
    }

    /* Section 9 - Something Different (Short Viewport) */
    .something-different-section {
        padding: 15px !important;
    }

    .different-bg-img,
    .different-overlay {
        top: 15px !important;
        left: 15px !important;
        right: 15px !important;
        bottom: 15px !important;
    }

    .different-content {
        padding: 20px !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .different-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    /* Section 12 - CTA Footer (Short Viewport) */
    .cta-section {
        justify-content: center !important;
        height: 100% !important;
    }

    .cta-content {
        padding: 15px !important;
        gap: 5px !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .cta-center-logo {
        width: 120px !important;
        height: 120px !important;
        margin: 5px 0 !important;
    }

    .pill-transparent {
        font-size: 14px !important;
        padding: 4px 16px !important;
    }

    .cta-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin: 5px 0 !important;
    }

    .cta-sub {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
        max-width: 90% !important;
    }

    .cta-buttons {
        gap: 10px !important;
        transform: scale(0.9);
    }

    .cta-buttons .btn-gold,
    .cta-buttons .btn-outline-light {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    /* Forms (Short Viewport) */
    .form-section {
        height: 100% !important;
        min-height: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
    }

    .form-section-inner {
        padding: 0 !important;
        height: auto !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        position: static !important;
        /* Ensure it doesn't catch absolute positioning */
    }

    .form-image-wrapper {
        display: block !important;
        position: static !important;
        /* Ensure it doesn't catch absolute positioning */
        flex: 0 0 0 !important;
        width: 0 !important;
        margin: 0 !important;
    }

    .form-image-col {
        display: none !important;
    }

    .form-content-col {
        flex: 1 !important;
        width: 100% !important;
        margin-top: 30px !important;
        /* Reduced margin */
        align-items: center !important;
        padding: 20px 15px !important;
        border-radius: 20px !important;
        overflow-y: auto !important;
        max-height: calc(100vh - 80px) !important;
    }

    .form-header {
        margin-bottom: 10px !important;
    }

    .form-title {
        font-size: 1.1rem !important;
        margin-bottom: 4px !important;
    }

    .form-subtitle {
        font-size: 0.75rem !important;
        max-width: 100% !important;
    }

    .form-fields {
        gap: 10px !important;
        width: 100% !important;
    }

    .form-row {
        gap: 10px !important;
    }

    .form-field label {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
    }

    .form-field input,
    .form-field select {
        padding: 4px 0 !important;
        font-size: 0.85rem !important;
    }

    .form-submit {
        padding: 10px !important;
        font-size: 0.85rem !important;
        margin-top: 10px !important;
    }

    /* Reposition back button to the far left of the screen */
    .form-back-btn {
        position: absolute !important;
        left: 20px !important;
        /* Far left of the screen */
        top: 20px !important;
        /* Top of the section */
        width: 40px !important;
        height: 40px !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        z-index: 2000 !important;
        align-items: center !important;
        justify-content: center !important;
    }

}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
    }

    .hero-meta {
        margin-bottom: 18px;
    }

    .hero-section h1 {
        margin-bottom: 32px;
    }
}

/* ════════════════════════════════════
   SECTION 2 — STRATEGIC SHIFT
   ════════════════════════════════════ */
.strategic-shift-section {
    background-color: var(--bg-screen) !important;
    padding-top: clamp(40px, 6vh, 80px) !important;
    padding-bottom: clamp(40px, 6vh, 80px) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.strategic-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 85%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 10px;
    /* Reduced to prevent overlap */
}

.strategic-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(20px, 4vh, 40px);
    position: relative;
}

.strategic-header h2 {
    font-family: 'Halfre', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Scales to 72px (4.5rem) on desktops and laptops */
    line-height: 1;
    color: var(--primary-black);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    position: relative;
    padding-bottom: 24px;
}

.strategic-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold-accent);
}

.strategic-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(20px, 4vw, 60px);
    /* Reduced gap to allow wrapping */
    margin-bottom: clamp(40px, 8vh, 80px);
    /* Add space before bottom layout */
    align-items: start;
    min-height: 0;
}

.strategic-left-col,
.strategic-right-col {
    min-width: 0;
    /* Ensures columns can shrink and wrap */
}

.strategic-left-col .shift-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategic-left-col .shift-list li {
    position: relative;
    font-family: 'DM Sans', sans-serif;
    padding-left: 20px;
    font-weight: 400;
    margin-bottom: clamp(8px, 1.5vh, 14px);
    font-size: clamp(0.9rem, 1.8vmin, 20px);
    color: var(--primary-black);
    border-left: 3px solid #BCAC93;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 450px;
}

.strategic-left-col .shift-list li:last-child {
    margin-bottom: clamp(24px, 4vh, 48px);
}

.strategic-text-col p {
    padding-left: 20px;
    /* Aligned with li */
    margin: 0 0 clamp(8px, 1.5vh, 15px) 0;
    font-size: clamp(0.9rem, 1.8vmin, 1.15rem);
    color: var(--primary-black);
    border-left: 3px solid #BCAC93;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.strategic-bottom-layout {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: auto;
    position: relative;
    padding-top: 20px;
    /* Add space above the activation bar */
    flex-shrink: 0;
    /* Prevents upward overlap */
}

.activation-bar {
    background-color: #000000;
    color: var(--primary-white);
    font-family: Canela, serif;
    font-size: clamp(1.5rem, 3vw, 64px);
    line-height: 1.1;
    display: flex;
    align-items: center;
    padding: 0 40px 0 7.5%;
    width: 40%;
    height: clamp(80px, 12vh, 120px);
    z-index: 2;
    font-weight: 400;
}

.strategic-image-wrapper {
    width: 60%;
    padding-right: 2%;
    display: flex;
    height: clamp(200px, 45vh, 400px);
    /* Restored to safe taller height */
    overflow: hidden;
}

.strategic-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ── Specific Overrides for Viewports Between 721px and 850px Height ── */
@media (min-height: 721px) and (max-height: 850px) {
    .strategic-shift-section {
        padding-top: clamp(30px, 5vh, 50px) !important;
        padding-bottom: clamp(30px, 5vh, 50px) !important;
    }

    .strategic-container {
        margin-bottom: 20px;
        gap: 15px;
    }

    .strategic-header-row {
        margin-bottom: clamp(20px, 4vh, 30px);
    }

    /* .strategic-header h2 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        padding-bottom: 15px;
    } */

    .strategic-header h2::after {
        height: 3px;
        width: 70px;
    }

    .strategic-main-grid {
        margin-bottom: clamp(30px, 6vh, 60px) !important;
        /* Larger gap to fill space */
        gap: 30px;
    }

    .strategic-left-col .shift-list li {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .strategic-text-col p {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .strategic-bottom-layout {
        padding-top: 20px;
        margin-top: auto;
        /* Pushes it to the bottom */
    }

    .activation-bar {
        height: clamp(80px, 12vh, 100px);
        /* Larger */
        font-size: 1.8rem;
        padding-left: 7.5%;
    }

    .strategic-image-wrapper {
        height: clamp(220px, 35vh, 320px);
        /* Taller image */
    }
}

/* ── Mobile Responsive Logic (Original Style) ── */
@media (max-width: 980px),
(max-height: 720px) {
    .strategic-shift-section {
        height: 100% !important;
        padding-top: clamp(40px, 6vh, 60px) !important;
        padding-bottom: 0 !important;
    }

    .strategic-container {
        padding: 52px 5% 16px;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 15px;
        /* Increased gap */
        flex: 1;
        overflow: hidden;
        margin-bottom: 0;
    }

    .strategic-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    /* Keep header left on tablet/desktop short viewports, center on mobile */
    @media (max-width: 768px) {
        .strategic-header-row {
            flex-direction: column;
            text-align: center;
        }

        .strategic-header h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    /* .strategic-header h2 {
        font-size: clamp(1.6rem, 4vmin, 2.2rem);
        padding-bottom: 12px;
    } */

    .strategic-main-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        flex: 1;
        display: grid;
    }

    /* Short viewport specific font reduction */
    .strategic-list-col .shift-list li,
    .strategic-text-col p {
        font-size: clamp(0.85rem, 1.8vmin, 1rem);
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .strategic-bottom-layout {
        height: auto;
        min-height: clamp(80px, 12vh, 100px);
        margin-top: auto;
        padding-bottom: 0;
        width: 100%;
        display: flex;
        align-items: stretch;
    }

    .activation-bar {
        width: 100%;
        height: 100%;
        min-height: 80px;
        padding: 0 20px;
        font-size: clamp(1.2rem, 3.5vmin, 1.8rem);
        justify-content: center;
        /* ALWAYS center on small/short screens as requested */
        text-align: center;
        align-items: center;
    }

    .strategic-image-wrapper {
        display: none !important;
        /* HIDE IMAGE on mobile and short viewports */
    }
}

@media (max-width: 480px) {
    /* .strategic-header h2 {
        font-size: 1.6rem;
    } */

    .activation-bar {
        font-size: 1.1rem;
        height: 70px;
    }
}



/* ════════════════════════════════════
   SECTION 3 — MORE THAN AN EVENT
   ════════════════════════════════════ */
#more-than-event {
    position: relative;
    background-color: var(--bg-screen);
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Scrolling not allowed, must fit */
}

.event-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Changed from flex-start to allow columns to fill height and images to adapt */
    padding: clamp(40px, 8vh, 140px) 5% clamp(10px, 2vh, 50px) 72px;
    /* Reduced top padding min/pref for better adaptation */
    max-width: 1600px;
    margin: 0;
    width: 100%;
    gap: clamp(30px, 5vw, 100px);
    flex: 1;
    min-height: 0;
}

.event-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    flex-grow: 1.5;
    flex-shrink: 1;
}

.event-left .section-header {
    margin-bottom: clamp(10px, 2vh, 30px);
    display: block;
    flex-shrink: 0;
}


.event-left h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 100%;
    margin: 0;
    font-family: "Halfre", serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0%;
}

.event-main-img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex: 1;
    min-height: 0;
    max-height: clamp(150px, 50vh, 900px);
    /* Reduced min and pref to let it shrink more on short viewports */
    margin-bottom: 0;
}

.event-main-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.event-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    gap: clamp(10px, 2.5vh, 45px);
    /* Tighter gap */
    padding-top: clamp(20px, 5vh, 80px);
    /* Reduced padding to clear arrows */
}

.section-subtext {
    font-size: clamp(0.75rem, 1.8vh, 24px);
    /* Slightly smaller text */
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 0;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0%;
}

.format-intentional {
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(5px, 1vh, 12px);
    /* Tighter inner gap */
}

.format-intentional h3 {
    color: var(--gold-accent);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 48px);
    font-weight: 400;
    margin: 0;
    text-transform: none;
    letter-spacing: 0%;
    line-height: 100%;
}

.format-intentional p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.6vh, 20px);
    letter-spacing: 0%;
    line-height: 100%;
    color: var(--primary-black);
    margin: 0;
}

.format-list {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 3vh, 50px);
    /* Much more aggressive gap reduction */
    flex-shrink: 1;
}

.format-list li {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 32px);
}

.format-num {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(20px, 4.5vh, 48px);
    /* Fluid size */
    font-weight: 400;
    color: var(--primary-black);
    line-height: 100%;
}

.format-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(14px, 2vh, 24px);
    /* Fluid size */
    font-weight: 400;
    color: var(--primary-black);
    line-height: 100%;
}

/* Footer black bar */
.event-desc-bottom {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: clamp(8px, 1.5vh, 24px) 5%;
    /* Tighter padding */
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
}

.event-desc-bottom p {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.8vh, 33px);
    /* Fluid size */
    font-weight: 700;
    margin: 0;
    letter-spacing: 0%;
    line-height: 100%;
}

/* Custom background icon position */
#more-than-event .section-bg-icon {
    width: 600px;
    opacity: 0.12;
    bottom: 100px;
    left: -100px;
    z-index: 0;
}

@media (max-width: 1024px) {
    .event-inner {
        flex-direction: column;
        gap: clamp(10px, 2vh, 40px);
        /* Changed from fixed 40px */
        padding-top: clamp(15px, 3vh, 60px);
        /* Changed from fixed 60px */
    }

    .event-left,
    .event-right {
        max-width: 100%;
        width: 100%;
        flex: 0 1 auto;
        /* padding: 0; */
    }

    .event-main-img {
        max-height: clamp(100px, 25vh, 400px);
        /* Compresses much more on mobile */
    }

    .event-main-img img {
        max-height: clamp(100px, 25vh, 400px);
    }
}

@media (max-width: 768px) {
    .event-inner {
        padding: clamp(55px, 10vh, 80px) 5% clamp(10px, 2.5vh, 40px);
        /* Top padding clears the arrows */
    }

    .event-desc-bottom p {
        font-size: clamp(0.75rem, 1.2vh, 1rem);
    }

    .format-list {
        gap: clamp(5px, 1.5vh, 15px);
        /* Tighter list gap */
    }

    .format-list li {
        gap: clamp(8px, 2vw, 15px);
    }

    .format-num {
        font-size: clamp(1.2rem, 3vh, 1.6rem);
        /* Smaller numbers */
    }

    .format-text {
        font-size: clamp(0.75rem, 1.3vh, 0.95rem);
        /* Smaller text */
    }

    .format-intentional h3 {
        font-size: clamp(1.1rem, 2.5vh, 1.5rem);
    }

    .format-intentional p {
        font-size: clamp(0.6rem, 1.2vh, 0.75rem);
    }

    /* .event-left h2 {
        font-size: clamp(1.6rem, 4vh, 2.2rem);
    } */

    .event-left .section-header {
        margin-bottom: clamp(5px, 1.5vh, 20px);
        text-align: center;
    }

    .event-main-img {
        max-height: 25vh;
        /* Reduced slightly for short screens */
        min-height: 0;
        /* Let it squish completely if needed */
        flex-shrink: 1;
        /* Force image to absorb shrinking */
    }

    .event-main-img img {
        max-height: 25vh;
        min-height: 0;
    }

    .section-subtext {
        margin-top: 5px;
        margin-bottom: clamp(10px, 1.5vh, 20px);
        padding-bottom: clamp(5px, 1vh, 10px);
        font-size: clamp(0.65rem, 1.3vh, 0.85rem);
        /* Tighter subtext */
        flex-shrink: 0;
    }
}

/* ════════════════════════════════════
   SECTION 4 — ECOSYSTEM
   ════════════════════════════════════ */
.ecosystem-section {
    background-color: var(--bg-screen);
    color: var(--primary-black);
    height: calc(100vh - var(--nav-height));
    max-height: calc(100vh - var(--nav-height));
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ecosystem-section .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically for better height adaptation */
    padding-top: clamp(20px, 4vh, 60px);
    padding-bottom: clamp(15px, 3vh, 40px);
}

.ecosystem-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: clamp(20px, 4.5vh, 45px);
    /* Increased space after header */
}

.ecosystem-header-left h2 {
    font-family: 'Halfre', serif;
    color: var(--primary-black);
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Increased to 72px (4.5rem) for consistency */
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 10px;
}




.underline-gold {
    position: relative;
    display: inline-block;
}

.underline-gold::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold-accent);
    z-index: 1;
}

.ecosystem-sub-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #0000007A;
    line-height: 25px;
    max-width: 500px;
    /* text-align: right; */
    margin: 20px 0 0 0;
    text-transform: none;
    letter-spacing: 0%;
}


.highlight-title {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.ecosystem-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.ecosystem-arrows {
    position: absolute;
    top: 24px;
    right: 48px;
    z-index: 20;
    display: flex;
    gap: 12px;
}


.ecosystem-badges {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: clamp(30px, 6vh, 60px);
}

.badge-black-pill {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 40px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 100%;
    text-transform: uppercase;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 25px);
    width: 100%;
    height: clamp(30px, 20vh, 300px);
    /* Healthier size on large screens */
    flex-shrink: 1;
    min-height: 0;
    margin-bottom: clamp(25px, 10vh, 45px);
}

.ecosystem-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
}

.ecosystem-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ecosystem-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.ecosystem-card span {
    position: relative;
    z-index: 3;
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0%;
    text-transform: uppercase;
    line-height: 100%;
    color: var(--primary-white);
    padding: clamp(10px, 2vh, 20px);
    font-family: 'Syne', sans-serif;
}

.ecosystem-bottom-layout {
    display: flex;
    gap: clamp(15px, 3vw, 40px);
    flex-shrink: 1;
    /* Allow shrinking to prevent clipping */
    padding-bottom: clamp(10px, 2vh, 25px);
    margin-top: 0;
    /* Removed auto to allow vertical centering of entire block */
    min-height: 0;
}

.ecosystem-text-col {
    position: relative;
    flex: 1;

    padding-left: 20px;
    max-width: 50%;
}

.ecosystem-text-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 25%;
    background-color: var(--gold-accent);
}


.ecosystem-text-col p {
    font-size: 24px;
    color: var(--primary-black);
    line-height: 22px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0%;
}

.right-col p {
    font-size: 24px;
    color: #444444;
    line-height: 100%;
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    letter-spacing: 0%;
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ecosystem-text-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        height: calc(100vh - var(--nav-height)) !important;
        max-height: calc(100vh - var(--nav-height)) !important;
        padding: 20px 0 18px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: stretch;
        justify-content: flex-start;
    }

    .ecosystem-section .container {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
        /* Tighter gap */
        padding: 56px 16px 0;
        width: 100%;
        max-width: 100%;
    }

    .ecosystem-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 8px;
        width: 100%;
    }

    .ecosystem-header-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ecosystem-header-left h2 {
        /* font-size: clamp(1.4rem, 7vw, 2rem); */
        /* Smaller font for better fit */
        text-align: center;
        width: 100%;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .gold-underline-header {
        margin: 0 auto;
        width: 60px;
        height: 2px;
    }

    .ecosystem-sub-desc {
        font-size: 0.8rem;
        text-align: center;
        max-width: 95%;
        line-height: 1.3;
        margin: 6px auto 0;
        color: rgba(0, 0, 0, 0.6);
    }

    .ecosystem-header-right {
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .ecosystem-arrows {
        position: absolute;
        top: calc(10px + env(safe-area-inset-top, 0px));
        right: 12px;
        gap: 10px;
        z-index: 25;
        display: flex;
        justify-content: flex-end;
        width: auto;
    }


    .ecosystem-badges {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .badge-black-pill {
        padding: 8px 20px;
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        max-width: 90%;
        line-height: 1.2;
        border-radius: 40px;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        flex-shrink: 0;
        min-height: 0;
        overflow: visible;
    }

    .ecosystem-card {
        border-radius: 12px;
        height: 84px;
    }

    .ecosystem-card span {
        font-size: 0.7rem;
        padding: 8px;
        line-height: 1.1;
    }

    .ecosystem-bottom-layout {
        flex-direction: row;
        gap: 10px;
        margin-top: 5px;
        width: 100%;
    }

    .ecosystem-text-col {
        border-left: 2px solid var(--gold-accent);
        padding-left: 12px;
        max-width: 50%;
        text-align: left;
    }

    .ecosystem-text-col p {
        font-size: 0.72rem;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .highlight-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .ecosystem-text-col .highlight-title {
        margin-bottom: 8px;
    }
}

@media (max-width: 375px),
(max-height: 667px) {

    /* iPhone SE (375x667) and smaller */
    .ecosystem-section {
        padding-top: 16px !important;
        padding-bottom: 12px !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .ecosystem-section .container {
        gap: 6px !important;
        /* Tighter gap for better vertical fit */
        justify-content: flex-start !important;
        height: auto !important;
        padding-top: 52px !important;
    }

    .ecosystem-header-row {
        margin-bottom: 5px !important;
    }

    .ecosystem-header-left h2 {
        /* font-size: 1.15rem !important; */
        /* Slightly smaller for SE */
        margin-bottom: 3px !important;
    }

    .gold-underline-header {
        width: 35px !important;
        height: 2px !important;
        margin-bottom: 3px !important;
    }

    .ecosystem-sub-desc {
        font-size: 0.65rem !important;
        margin: 3px auto 0 !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
    }

    .badge-black-pill {
        padding: 4px 12px !important;
        font-size: 0.5rem !important;
        margin-top: 3px !important;
        letter-spacing: 0.01em !important;
    }

    .ecosystem-badges {
        margin-bottom: 8px !important;
    }

    .ecosystem-grid {
        gap: 6px !important;
        margin-bottom: 12px !important;
        /* Slightly tighter grid margin */
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .ecosystem-card {
        height: 65px !important;
        /* Shorter cards to save more space */
    }

    .ecosystem-card span {
        font-size: 0.52rem !important;
        padding: 3px !important;
        line-height: 1.1 !important;
    }

    .ecosystem-bottom-layout {
        gap: 8px !important;
        margin-top: 5px !important;
        /* Reduced space above bottom text */
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
    }

    .ecosystem-text-col {
        padding-left: 10px !important;
        margin-bottom: 3px !important;
        border-left-width: 2px !important;
        max-width: 50% !important;
    }

    .ecosystem-text-col p {
        font-size: 0.65rem !important;
        /* Slightly smaller text for SE */
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
    }

    .highlight-title {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }

    .ecosystem-text-col .highlight-title {
        margin-bottom: 4px !important;
    }
}

.ecosystem-text-col .highlight-title {
    font-family: 'Halfre', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--primary-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ════════════════════════════════════
   SECTION 5 — INDUSTRIAL SCOPE
   ════════════════════════════════════ */
.industrial-section {
    background-color: var(--bg-screen);
    position: relative;
    /* padding-top: 80px; */

}

/* Arrows specific to Section 5 */
.industrial-arrows {
    position: absolute;
    top: 24px;
    right: 48px;
    z-index: 20;
    display: flex;
    gap: 12px;
}

.industrial-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 80px);
    /* Tighter minimum gap */
    height: auto;
    padding-top: clamp(15px, 3vh, 60px);
    /* More height-responsive padding */
    padding-bottom: clamp(10px, 2vh, 60px);
    align-items: flex-start;
}

/* Column 1: Left */
.industrial-col-left {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 30px);
    /* Tighter gap */
}

.industrial-title-group {
    margin-bottom: 5px;
}


.industrial-col-left h2 {
    font-family: "Halfre", serif;
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    /* More fluid heading */
    line-height: 100%;
    margin-bottom: 0;
    color: var(--primary-black);
    text-transform: uppercase;
    font-weight: 400;
}

/* Column 2: Right */
.industrial-col-right {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 30px);
    /* Tighter gap */
    padding-top: clamp(10px, 3vh, 40px);
    /* More height-responsive padding */
}

.industrial-item-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    /* Slightly larger than paragraph text */
    line-height: 30px;
    letter-spacing: 0%;
    color: #000000CC;
    font-weight: 700;
    text-transform: none;
    /* Override global h3 uppercase */
    margin-top: clamp(4px, 1vh, 12px);
    margin-bottom: 0;
}

.industrial-main-text {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 2.5vh, 26px);
    /* More fluid text */
    line-height: 30px;
    color: #000000CC;
    max-width: 95%;
    font-weight: 400;
    letter-spacing: 0%;
}

.industrial-secondary-text {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 2.5vh, 26px);
    /* More fluid text */
    line-height: 30px;
    color: #000000CC;
    max-width: 95%;
    font-weight: 400;
    letter-spacing: 0%;
}

.industrial-img-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 1;
}

.industrial-img-box.main-img {
    height: clamp(150px, 32vh, 380px);
    /* More responsive image height */
}

.industrial-img-box.secondary-img {
    height: clamp(220px, 42vh, 560px);
    /* More responsive image height */
}

.industrial-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Watermark */
.industrial-watermark {
    position: absolute;
    bottom: -50px;
    left: -50px;
    opacity: 0.12;
    width: 600px;
    pointer-events: none;
    z-index: 0;
}

/* Responsive adjustments for Section 4 & 5 */
@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ecosystem-bottom-layout {
        flex-direction: row;
        gap: 30px;
    }

    .industrial-grid-layout {
        grid-template-columns: 1fr 1fr;
        /* Keep 2-column on tablet */
        gap: 30px;
        padding-top: 60px;
    }

    /* .industrial-col-left h2 {
        font-size: 3rem;
    } */

    .industrial-img-box.main-img {
        height: 30vh;
    }

    .industrial-img-box.secondary-img {
        height: 35vh;
    }

    .industrial-col-right {
        padding-top: 30px;
    }
}


@media (max-width: 768px) {
    .industrial-section {
        padding-top: 60px !important;
        /* Reduced padding */
        height: 100% !important;
        min-height: 100% !important;
        overflow: hidden !important;
        /* No scrolling */
        display: flex !important;
        flex-direction: column;
    }

    .industrial-arrows,
    .ecosystem-arrows,
    .standard-arrows {
        display: flex;
        position: absolute;
        top: calc(10px + env(safe-area-inset-top, 0px));
        right: 12px;
        justify-content: flex-end;
        width: auto;
        margin-bottom: 0;
        gap: 10px;
        z-index: 20;
    }

    .industrial-grid-layout {
        display: flex;
        flex-direction: column;
        gap: clamp(8px, 1.2vh, 12px);
        padding: clamp(10px, 2vh, 25px) 20px 10px;
        height: 100%;
        overflow: hidden !important;
        /* NO scroll */
        align-items: center;
        justify-content: flex-start;
    }

    .industrial-col-left,
    .industrial-col-right {
        width: 100%;
        gap: 15px;
        padding-top: 0;
        align-items: center;
        text-align: center;
    }

    .industrial-col-left h2 {
        /* font-size: clamp(1.5rem, 4vh, 2rem); */
        margin-bottom: 5px;
        line-height: 0.9;
        text-align: center;
    }

    .gold-underline {
        margin: 0 auto;
        height: 3px;
        width: 60px;
    }
    
    .industrial-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    }

    .industrial-item-title {
        font-size: clamp(0.9rem, 1.8vh, 1.1rem);
        font-weight: 700;
        text-transform: none;
        margin: 4px 0 0;
        line-height: 1.1;
    }

    .industrial-main-text,
    .industrial-secondary-text {
        font-size: clamp(0.7rem, 1.25vh, 0.85rem);
        line-height: 1.3;
        max-width: 100%;
        margin: 0;
    }

    .industrial-img-box {
        border-radius: 12px;
        width: 100%;
        flex-shrink: 1;
        min-height: 0;
    }

    .industrial-img-box.main-img {
        max-height: 14vh;
    }

    .industrial-img-box.secondary-img {
        max-height: 16vh;
    }
}

/* ════════════════════════════════════
   SECTION 6 — WHY THIS MATTERS
   ════════════════════════════════════ */
.why-matters-section {
    background-color: var(--bg-screen);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-matters-section .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding-top: clamp(70px, 11vh, 100px);
    /* space below arrows */
    /* padding-bottom: clamp(16px, 3vh, 32px); */
    gap: clamp(8px, 1.5vh, 20px);
}

/* Top row: title left + black box right — same grid row, below arrows */
.why-header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 48px);
    flex: 1 1 1;
    min-height: 0;
}

.why-header-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    max-width: 100%;
}


.why-header-left h2 {
    font-family: "Halfre", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Responsive font size */
    line-height: 99%;
    letter-spacing: 2%;
    color: var(--primary-black);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: clamp(6px, 1vh, 12px);
}

.why-title-underline {
    width: clamp(50px, 20vw, 250px);
    height: 3px;
    background-color: var(--gold-accent);
    margin-bottom: clamp(6px, 1vh, 12px);
    flex-shrink: 0;
}

.why-sub-headline p {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    /* Responsive font size */
    font-weight: 400;
    line-height: 170%;
    /* Tighter line height */
    letter-spacing: 0;
    color: var(--primary-black);
    margin: 0;
    text-transform: capitalize;
}

/* Black box — right column, stretches to fill header height */
.why-header-right-box {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
        url('./assets/why-matter_converted.avif') no-repeat center center / cover !important;
    
    border-radius: 16px;
    padding: clamp(12px, 2vh, 28px) clamp(15px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: stretch;
    min-height: clamp(250px, 36vh, 560px);
}

.why-header-right-box p {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 2.5vh, 28px);
    /* Responsive font size */
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--primary-white);
    margin: 0;
    text-transform: lowercase;
}

/* Gold pill bar */
.why-activation-bar {
    background-color: var(--gold-accent);
    padding: clamp(2px, 0.8vh, 8px) clamp(12px, 2vw, 20px);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    align-self: flex-start;
    border: none;
    flex-shrink: 1;
    overflow: hidden;
}

.why-activation-bar span {
    font-family: 'Halfre', serif;
    font-size: clamp(14px, 2.4vw, 36px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--primary-white);
    text-transform: lowercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.why-activation-bar .pill-num {
    font-family: 'Halfre', serif;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.35;
    color: var(--primary-white);
    text-transform: lowercase;
}

.pill-num {
    color: var(--primary-white) !important;
    font-weight: 700;
}

/* 2-col image grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 1.2vw, 18px);
    width: 100%;
    flex-shrink: 0;
    min-height: 0;
}

.why-card {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.why-card-img {
    width: 100%;
    height: clamp(140px, 24vh, 320px);
    /* Responsive image height */
    border-radius: clamp(10px, 1.2vw, 20px);
    overflow: hidden;
    position: relative;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 28px);
}

.why-card-overlay span {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.95rem, min(1.8vw, 2.5vh), 1.7rem);
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    letter-spacing: 2%;
}

/* Watermark */
.why-watermark {
    position: absolute;
    top: 50px;
    left: -180px;
    opacity: 0.12;
    width: 650px;
    pointer-events: none;
    z-index: 0;
}

.why-watermark.bottom-left {
    top: auto;
    bottom: -150px;
    left: -150px;
}

/* Specifically larger watermark for Strategic Partners section */
#partners .why-watermark {
    width: 1000px !important;
    bottom: -80px !important;
    left: -120px !important;
    opacity: 0.12 !important;
    z-index: 0 !important;
    display: block !important;
}

/* Arrows */
#why-matters .standard-arrows {
    display: flex;
    gap: 10px;
}

/* Tablet — let text wrap gracefully instead of ellipsis */
@media (max-width: 1024px) {
    .why-activation-bar {
        max-width: 90%;
    }

    .why-activation-bar span {
        white-space: normal;
        text-overflow: unset;
    }
}


@media (max-width: 768px) {
    .why-matters-section {
        overflow: hidden !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    .why-matters-section .container {
        padding: 56px 20px 20px !important;
        gap: clamp(10px, 2vh, 15px) !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .why-header-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
        margin-bottom: 5px !important;
    }

    .why-header-left {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        /* Stack title, underline, and sub-headline vertically */
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* .why-header-left h2 {
        font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
        text-align: center !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    } */

    .why-title-underline {
        margin: 0 auto 8px !important;
        width: 50px !important;
        height: 2px !important;
        flex-shrink: 0 !important;
    }

    .why-sub-headline {
        width: 100% !important;
        margin-bottom: 2px !important;
    }

    .why-sub-headline p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 95% !important;
    }

    .why-header-right-box {
        width: 100% !important;
        min-height: auto !important;
        border-radius: 12px !important;
        padding: 10px 15px !important;
        background-color: #111 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .why-header-right-box p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 !important;
        color: white !important;
    }

   .why-activation-bar {
        padding: 8px 18px !important;
        max-width: 95% !important;
        margin: 8px auto !important;
    }

    .why-activation-bar span {
        font-size: clamp(13px, 3.5vw, 18px) !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .why-activation-bar .pill-num {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
    }

    .why-grid {
        gap: 10px !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        margin-top: 5px !important;
    }

    .why-card-img {
        border-radius: 12px !important;
        height: 100px !important;
    }

    .why-card-overlay span {
        font-size: 0.85rem !important;
        padding: 8px !important;
    }
}

/* ════════════════════════════════════
   SECTION 7 — SPONSORS
   ════════════════════════════════════ */
.sponsors-section {
    background-color: var(--bg-screen);
    position: relative;
    height: calc(100vh - var(--nav-height));
    max-height: calc(100vh - var(--nav-height));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sponsors-section .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding-top: 0;
    padding-bottom: clamp(16px, 3vh, 40px);
    padding-left: 48px;
    padding-right: 48px;
}

.sponsors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(8px, 3vh, 40px);
    padding-top: clamp(16px, 4vh, 40px);
}

.sponsors-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sponsors-header h2 {
    font-family: 'Halfre', serif;
    font-size: 72px;
    line-height: 114.99999999999999%;
    letter-spacing: 2%;
    color: var(--primary-black);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
}

.sponsors-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 5px;
}

.sponsors-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(20px, 4vw, 80px);
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
}

.sponsors-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sponsors-col-right {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vh, 24px);
    min-height: 0;
    flex: 1 1 auto;
    height: 100%;
}

.sponsors-main-text,
.sponsors-secondary-text {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 107%;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: var(--primary-black);
}

.sponsors-image-grid {
    display: grid;
    gap: clamp(10px, 1.5vw, 20px);
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
}

.sponsors-image-grid img {
    width: 100%;
    height: 100%;
    min-height: clamp(120px, 20vh, 300px);
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

@media (max-width: 1024px) {
    .sponsors-layout {
        gap: clamp(16px, 3vw, 40px);
    }
}

/* Height-based adaptations for Section 7 — desktop */
@media (min-width: 769px) and (max-height: 800px) {
    .sponsors-header {
        padding-top: clamp(12px, 2.5vh, 28px);
        margin-bottom: clamp(6px, 2vh, 20px);
    }

    /* .sponsors-header h2 {
        font-size: clamp(1.2rem, min(4vw, 6vh), 3rem);
    } */

    .btn-pill-dark {
        padding: 8px 20px;
        font-size: 16px;
    }

    .sponsors-main-text,
    .sponsors-secondary-text {
        font-size: clamp(0.72rem, min(1.2vw, 1.8vh), 1.1rem);
        line-height: 1.3;
    }

    .sponsors-image-grid img {
        min-height: clamp(80px, 18vh, 220px);
    }

    .sponsors-col-right {
        gap: clamp(8px, 1.5vh, 16px);
    }
}

@media (min-width: 769px) and (max-height: 650px) {
    .sponsors-header {
        padding-top: clamp(8px, 1.5vh, 18px);
        margin-bottom: clamp(4px, 1.2vh, 12px);
    }

    /* .sponsors-header h2 {
        font-size: clamp(1rem, min(3.5vw, 5vh), 2.2rem);
        line-height: 1;
    } */

    .btn-pill-dark {
        padding: 6px 16px;
        font-size: 14px;
    }

    .sponsors-main-text,
    .sponsors-secondary-text {
        font-size: clamp(0.62rem, min(1vw, 1.5vh), 0.9rem);
        line-height: 1.2;
    }

    .sponsors-image-grid img {
        min-height: clamp(60px, 13vh, 150px);
    }

    .sponsors-col-right {
        gap: clamp(6px, 1vh, 10px);
    }

    .sponsors-layout {
        gap: clamp(14px, 2.5vw, 40px);
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
    }

    .sponsors-section .container {
        padding: clamp(52px, 9vh, 80px) 20px clamp(8px, 1.5vh, 16px);
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(6px, 1.2vh, 14px);
    }

    .sponsors-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0;
        margin-bottom: 0;
        gap: 6px;
        flex-shrink: 0;
    }

    .sponsors-header-left {
        align-items: center;
        margin-top: 20px;
    }

    /* .sponsors-header h2 {
        font-size: clamp(1.4rem, min(5vw, 4.5vh), 2rem);
        line-height: 1;
    } */

    .sponsors-header-right {
        flex-direction: row;
        gap: 10px;
        padding-bottom: 0;
    }

    .sponsors-header-right .btn-pill-dark {
        font-size: 0.6rem;
        padding: 8px 14px;
    }

    .sponsors-col-left {
        flex-shrink: 0;
    }

    .sponsors-layout {
        display: flex;
        flex-direction: column;
        gap: clamp(8px, 1.5vh, 16px);
        flex: 1;
        min-height: 0;
    }

    .sponsors-main-text,
    .sponsors-secondary-text {
        font-size: clamp(0.65rem, min(1.8vw, 1.6vh), 0.78rem);
        line-height: 1.35;
    }

    .sponsors-main-text {
        margin-top: 0;
    }

    .sponsors-col-right {
        gap: clamp(6px, 1.2vh, 14px);
        flex-shrink: 1;
        min-height: 0;
    }

    .sponsors-image-grid {
        gap: 6px;
        /* flex: 1 1 0; */
    }

    .sponsors-image-grid img {
        border-radius: 10px;
        aspect-ratio: 1.6 / 1;
    }
}

/* ════════════════════════════════════
   SECTION 8 — BUYERS & BROKERS
   ════════════════════════════════════ */
.buyers-section {
    background-color: var(--bg-screen);
    position: relative;
}

.buyers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Better for short headers */
    margin-bottom: 20px;
    padding-top: 20px;
}

.buyers-header-left {
    max-width: 65%;
}

.buyers-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    /* Tighter for short headers */
    margin-top: 50px;
    /* Prevent collision with absolute positioned arrows */
    position: relative;
    z-index: 10;
}

.buyers-invite-only {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 0%;
    line-height: 170%;
    color: var(--primary-black);
    font-weight: 400;
    text-transform: capitalize;
}

.section-title-syne {
    font-family: 'Halfre', serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 107%;
    letter-spacing: 2%;
    color: var(--primary-black);
    text-transform: uppercase;
    max-width: 800px;
}

.section-title-syne::after {
    content: '';
    display: block;
    width: clamp(80px, 25vw, 35px);
    height: 3px;
    background-color: var(--gold-accent);
    margin-top: 20px;
}



.buyers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    /* margin-bottom: 80px; */

}

.buyer-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: clamp(120px, 25vh, 220px);
    /* Increased height for more vertical presence */
}

/* Row 1: 3 cards */
.buyer-card:nth-child(1),
.buyer-card:nth-child(2),
.buyer-card:nth-child(3) {
    grid-column: span 2;
}

/* Row 2: 2 cards */
.buyer-card:nth-child(4),
.buyer-card:nth-child(5) {
    grid-column: span 3;
}

.buyer-card.text-card {
    background-color: #000;
    color: var(--primary-white);
    padding: 30px;
    display: flex;
    align-items: center;
}

.buyer-card.text-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0%;
    color: var(--primary-white);
    margin: 0;
    text-transform: capitalize;
}

.buyer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buyer-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.buyer-card-overlay span {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: none;
}

.buyers-footer {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Height-based adaptations for Section 8 — desktop (700px height) */
@media (min-width: 769px) and (max-height: 700px) {
    .buyers-header {
        padding-top: clamp(8px, 1.5vh, 18px);
        margin-bottom: clamp(6px, 1.2vh, 20px);
    }

    .buyers-header-right {
        margin-top: 70px !important;
        /* Significantly increased to push button below arrows */
    }

    .section-title-syne {
        font-size: clamp(1rem, min(3.5vw, 5vh), 2.2rem);
    }

    .section-title-syne::after {
        margin-top: 8px;
        height: 2px;
    }

    .buyers-invite-only {
        font-size: 11px;
        /* Slightly reduced */
    }

    .buyer-card {
        height: clamp(80px, 15vh, 120px);
        /* Reduced height to make room for the button move */
    }

    .buyer-card.text-card p {
        font-size: 14px;
        /* Slightly reduced to fit in shorter card */
    }

    .buyer-card-overlay span {
        font-size: 15px;
        /* Slightly reduced to fit in shorter card */
    }

    .footer-tagline-syne {
        font-size: 20px !important;
        /* Reduced further to save vertical space */
    }
}

/* Height-based adaptations for Section 8 — desktop (800px height) */
@media (min-width: 769px) and (max-height: 800px) {
    .buyers-header {
        padding-top: clamp(12px, 2.5vh, 28px);
        margin-bottom: clamp(10px, 2vh, 30px);
    }

    .buyers-header-right {
        margin-top: 20px;
    }

    .section-title-syne {
        font-size: clamp(1.2rem, min(4vw, 6vh), 3rem);
    }

    .section-title-syne::after {
        margin-top: 10px;

    }

    .buyers-invite-only {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-height: 650px) {
    .buyers-header {
        padding-top: clamp(8px, 1.5vh, 18px);
        margin-bottom: clamp(6px, 1.2vh, 20px);
    }

    .buyers-header-right {
        margin-top: 5px;
        /* Reduced from 10px to avoid arrow collision */
    }

    .section-title-syne {
        font-size: clamp(1rem, min(3.5vw, 5vh), 2.2rem);
    }

    .section-title-syne::after {
        margin-top: 8px;
        height: 2px;


    }

    .buyers-invite-only {
        font-size: 11px;
        /* Slightly reduced */
    }

    .buyer-card {
        height: clamp(80px, 18vh, 140px);
        /* Slightly reduced to fit better */
    }

    .buyer-card.text-card p {
        font-size: 15px;
        /* Slightly reduced */
    }

    .buyer-card-overlay span {
        font-size: 16px;
        /* Slightly reduced */
    }

    .footer-tagline-syne {
        font-size: 24px !important;
        /* Reduced from 32px as requested */
    }
}

.footer-tagline-syne {
    font-family: 'Halfre', serif;
    font-weight: 400;
    font-size: clamp(24px, 4.5vh, 46px);
    /* Fluid size to avoid being too large on short screens */
    color: var(--primary-black);
    text-transform: uppercase;
    margin: 0 auto;
    letter-spacing: 0%;
    line-height: 100%;
    text-align: center;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .buyers-section {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: 100% !important;
        overflow: hidden !important;
        /* No scrolling */
        padding-top: 40px !important;
        justify-content: center !important;
    }

    .buyers-section .container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        height: 100% !important;
        padding: 20px !important;
        flex: 0 1 auto !important;
        overflow: hidden !important;
    }

    .buyers-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding-top: 0 !important;
        margin-bottom: 5px !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .buyers-header-left {
        max-width: 100% !important;
        margin-bottom: 5px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .section-title-syne {
        font-family: 'Syne', sans-serif !important;
        font-size: 1.4rem !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 2px !important;
    }

    .section-title-syne::after {
        content: '' !important;
        display: block !important;
        margin: 10px auto 0 !important;
        width: 40px !important;
        height: 3px !important;
        background-color: var(--gold-accent) !important;
    }

    .title-underline-syne {
        margin: 2px auto 8px !important;
        display: block !important;
        width: 60px !important;
    }


    .buyers-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        flex: 0 1 auto !important;
        min-height: 0 !important;
        margin-bottom: 5px !important;
    }

    .buyer-card {
        height: 80px !important;
        min-height: 0 !important;
        border-radius: 12px !important;
    }

    /* Mobile stack: 1-2-2 */
    .buyer-card:nth-child(1) {
        grid-column: span 2 !important;
        height: 100px !important;
    }

    .buyer-card:nth-child(2),
    .buyer-card:nth-child(3),
    .buyer-card:nth-child(4),
    .buyer-card:nth-child(5) {
        grid-column: span 1 !important;
    }

    .buyer-card.text-card {
        padding: 10px !important;
    }

    .buyer-card.text-card p {
        font-size: 0.75rem !important;
        text-align: center !important;
    }

    .buyer-card-overlay span {
        font-size: 0.7rem !important;
        padding: 4px !important;
    }

    .footer-tagline-syne {
        font-size: 1rem !important;
        text-align: center !important;
        margin-top: 5px !important;
    }
}

/* Intermediate Laptop/Tablet Landscape Fix */
@media (min-width: 769px) and (max-width: 1366px) {
    .buyer-card {
        height: clamp(160px, 26vh, 320px) !important;
    }

    .buyers-grid {
        gap: 10px !important;
        margin-bottom: 15px !important;
    }

    .section-title-syne {
        font-size: clamp(1.4rem, 2.8vw, 2.2rem) !important;
    }

    .footer-tagline-syne {
        font-size: clamp(1rem, 2vh, 1.8rem) !important;
    }
}

/* Ultra-Short Viewport Fix (e.g. 1166x572) */
@media (max-height: 620px) {
    .buyers-section .container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .buyers-header {
        margin-bottom: 10px !important;
    }

    .buyers-grid {
        margin-bottom: 10px !important;
        gap: 8px !important;
    }

    .buyer-card {
        height: 26vh !important;
    }

    .section-title-syne {
        font-size: 1.4rem !important;
    }

    .footer-tagline-syne {
        font-size: 1rem !important;
    }

    .buyers-header-right {
        display: none !important;
        /* Hide extra info in very short viewports */
    }
}

/* ════════════════════════════════════
   SECTION 9 — SOMETHING DIFFERENT
   ════════════════════════════════════ */
.something-different-section {
    position: relative;
    padding: clamp(20px, 4vw, 50px);
    /* Larger grey frame for focus */
    background-color: var(--bg-screen);
    overflow: hidden;
}

.different-bg-img {
    position: absolute;
    top: clamp(20px, 4vw, 50px);
    left: clamp(20px, 4vw, 50px);
    right: clamp(20px, 4vw, 50px);
    bottom: clamp(20px, 4vw, 50px);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.different-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.different-overlay {
    position: absolute;
    top: clamp(20px, 4vw, 50px);
    left: clamp(20px, 4vw, 50px);
    right: clamp(20px, 4vw, 50px);
    bottom: clamp(20px, 4vw, 50px);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    z-index: 1;
}

/* Watermark logo contained within image area */
.different-watermark {
    position: absolute;
    bottom: -40px;
    left: -30px;
    opacity: 0.35;
    /* Reduced opacity as requested */
    width: clamp(160px, 16vw, 320px);
    /* Smaller size as requested */
    aspect-ratio: 1/1;
    /* Ensure square for the icon */
    background-color: var(--gold-accent);
    -webkit-mask: url('assets/background-icon_converted.avif') no-repeat center / contain;
    mask: url('assets/background-icon_converted.avif') no-repeat center / contain;
    pointer-events: none;
    z-index: 3;
    display: block !important;
    transform: none;
    /* Keep it far in the corner */
}

.different-container {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
    height: 100%;
}

.different-content {
    padding: clamp(60px, 12vh, 140px) clamp(60px, 8vw, 140px);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    /* Push the block to the right side of the screen */
    align-items: flex-end;
    /* Align the block to the bottom */
}

.different-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure title and subtext start at the same vertical line */
    gap: clamp(20px, 4vh, 40px);
    max-width: 1100px;
    /* Keep the block's width reasonable */
}

.different-title {
    color: var(--primary-white);
    font-family: 'Canela', serif;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    letter-spacing: 2%;
    margin: 0;
    text-align: left;
    /* Text within title starts from the left of the block */
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 400;
}

.different-subtitle {
    text-align: left;
    /* Text within subtext starts from the left of the block */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.different-subtitle p {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.8vh, 1.4rem);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.different-subtitle p {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.8vh, 1.4rem);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
    text-align: left;
    /* LEFT align the paragraph text */
}

/* Section 9 Specialized Outline Arrows */
.something-different-section .arrow-btn {
    background: rgba(0, 0, 0, 0.15) !important;
    /* Slight dark tint for visibility */
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    /* Much higher visibility */
    color: var(--primary-white) !important;
    backdrop-filter: blur(4px);
}

.something-different-section .arrow-btn:hover {
    background: var(--primary-white) !important;
    color: var(--primary-black) !important;
    border-color: var(--primary-white) !important;
}

@media (max-width: 768px) {
    .something-different-section {
        --sd-pad: 10px;
        --sd-frame-h: 85vh;
        padding: var(--sd-pad);
        height: 100% !important;
        min-height: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden !important;
    }

    .different-bg-img,
    .different-overlay {
        position: absolute !important;
        inset: var(--sd-pad) !important;
        height: auto !important;
        width: auto !important;
        transform: none !important;
        border-radius: 12px !important;
    }

    .different-content {
        position: relative !important;
        z-index: 10 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
    }

    .different-text-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .different-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        text-align: center !important;
        margin-bottom: 0 !important;
        line-height: 1.1 !important;
    }

    .different-subtitle {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .different-subtitle p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        max-width: 90% !important;
        text-align: center !important;
    }

    .different-watermark {
        width: clamp(100px, 25vw, 150px) !important;
        bottom: 10px !important;
        left: 10px !important;
        opacity: 0.2 !important;
    }
}

@media (max-width: 420px) and (max-height: 760px) {
    .something-different-section {
        --sd-pad: 50px 10px 10px 10px;
    }

    .different-bg-img {
        background-color: transparent;
    }

    .different-bg-img img {
        object-fit: cover;
        object-position: center;
    }

    .different-content {
        padding: 32px 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .different-title {
        font-size: 2.1rem;
        margin-bottom: 18px;
        text-align: center;
    }

    .different-subtitle {
        text-align: center;
    }

    .different-text-block {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .something-different-section .different-bg-img {
        background-color: transparent;
    }

    .something-different-section .different-bg-img img {
        object-fit: cover;
        object-position: center;
    }

    .something-different-section .different-overlay {
        background: rgba(0, 0, 0, 0.35);
    }
}

/* ════════════════════════════════════
   SECTION 10 — PROGRAM OVERVIEW
   ════════════════════════════════════ */
.why-matters-section {
    padding: 20px 0;
    /* Ultra-reduced */
    background-color: var(--bg-screen);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-section {
    background-color: var(--bg-screen);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.program-section .container {
    max-width: 95%;
    padding: 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.program-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: clamp(2px, 0.8vh, 12px);
    padding-top: clamp(6px, 1.2vh, 18px);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.program-header h2 {
    font-family: 'Halfre', serif;
    font-size: 72px;

    color: var(--primary-black);
    line-height: 190%;
    letter-spacing: 2%;
    text-transform: uppercase;
    font-weight: 400;
    /* max-width: 600px; */
}

.gold-underline-header {
    width: 150px;
    height: 3px;
    background-color: var(--gold-accent);
    /* margin-top: 15px; */
}

.timeline-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: clamp(40px, 5vh, 80px);
    /* Space for top items */
    margin-bottom: clamp(40px, 5vh, 80px);
    /* Space for bottom items */
    height: 400px;
    /* Fixed height to control the line and dots perfectly */
    min-height: 0;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 50%;
    /* Exactly in the middle of 400px */
    left: 2.5%;
    width: 95%;
    height: 1px;
    background-color: #000000;
    z-index: 1;
}

.timeline-item {
    position: relative;
    height: 100%;
    /* Take full height of 400px container */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    cursor: default;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.timeline-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    /* Fixed width for better control */
    max-width: 90vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
}

.timeline-item.top .timeline-content {
    bottom: calc(50% + 20px);
    /* Close to dot but not touching */
}

.timeline-item.bottom .timeline-content {
    top: calc(50% + 20px);
    /* Close to dot but not touching */
}

.timeline-day-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2%;
    line-height: 190%;
    color: var(--primary-black);
    order: 2;
}

.timeline-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 119%;
    letter-spacing: 2%;
    color: #444;
    font-weight: 400;
    margin-bottom: clamp(2px, 0.6vh, 10px);
    order: 1;
}

.timeline-title {
    font-family: 'Halfre', serif;
    font-size: 20px;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2%;
    line-height: 190%;
    font-weight: 400;
    margin-top: clamp(2px, 0.6vh, 10px);
    order: 3;
}

.timeline-item.top .timeline-day-label {
    order: 3;
    /* Closest to dot at bottom of top item */
}

.timeline-item.top .timeline-title {
    order: 2;
}

.timeline-item.top .timeline-text {
    order: 1;
}

.timeline-item.bottom .timeline-day-label {
    order: 1;
    /* Closest to dot at top of bottom item */
}

.timeline-item.bottom .timeline-text {
    order: 2;
}

.timeline-item.bottom .timeline-title {
    order: 3;
}

/* Timeline Hover Tooltip Card */
.timeline-item {
    cursor: default;
    transition: opacity 0.3s ease;
}

/* Hide regular content - Interactions REMOVED */
@media (min-width: 1025px) {

    .timeline-item.hovered:not(.always-tooltip) .timeline-content,
    .timeline-item.active:not(.always-tooltip) .timeline-content {
        opacity: 1;
        /* Keep visible for all days */
        pointer-events: auto;
    }
}

/* Always Tooltip Style (Applied to all days) */
.timeline-item.always-tooltip .timeline-content {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('./assets/timeline-tooltip-bg_converted.avif') no-repeat center center / cover !important;
    color: var(--primary-white);
    border-radius: 14px;
    padding: clamp(12px, 2vh, 20px) clamp(14px, 2vw, 24px);
    width: clamp(220px, 20vw, 358px);
    /* Reduced width further for 4 items */
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* On mobile/tablet, reset always-tooltip card styles so they match normal cards */
@media (max-width: 1024px) {
    .timeline-item.always-tooltip .timeline-content::after {
        display: none !important;
    }
}

.timeline-item.always-tooltip.top .timeline-content {
    bottom: calc(50% + clamp(20px, 4vh, 32px));
    /* Reduced gap */
}

.timeline-item.always-tooltip.bottom .timeline-content {
    top: calc(50% + clamp(20px, 4vh, 32px));
}

.timeline-item.always-tooltip .timeline-content::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: clamp(6px, 1vh, 8px);
    border-style: solid;
}

.timeline-item.always-tooltip.top .timeline-content::after {
    bottom: calc(clamp(6px, 1vh, 8px) * -2);
    border-color: var(--primary-black) transparent transparent transparent;
}

.timeline-item.always-tooltip.bottom .timeline-content::after {
    top: calc(clamp(6px, 1vh, 8px) * -2);
    border-color: transparent transparent var(--primary-black) transparent;
}

.timeline-item.always-tooltip .timeline-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(6px, 1.2vh, 14px);
    font-size: clamp(12px, 1.4vh, 15px);
    line-height: 1.3;
    order: 1;
}

.timeline-item.always-tooltip .timeline-title {
    color: #C5A065;
    margin-bottom: clamp(4px, 0.8vh, 8px);
    margin-top: 0;
    font-size: clamp(14px, 1.6vh, 18px);
    order: 2;
}

.timeline-item.always-tooltip .timeline-day-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(11px, 1.2vh, 13px);
    order: 3;
}

.timeline-item.always-tooltip .timeline-tooltip-icon {
    margin-bottom: clamp(6px, 1vh, 10px);
    order: 0;
    
}

.timeline-item.always-tooltip .timeline-tooltip-icon img {
    width: clamp(24px, 3.5vh, 32px);
    height: auto;
    
}

/* Hide per-item tooltip data containers — used only as JS data source */
.timeline-tooltip {
    display: none !important;
}

/* Tight trigger zone around the dot */
.timeline-trigger {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* Timeline Tooltip — global element outside slider */
.timeline-tooltip-global {
    position: fixed;
    transform: translateX(-50%);
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-radius: 14px;
    padding: 24px 28px 20px;
    width: 320px;
    /* Increased width per design */
    text-align: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.timeline-tooltip-global::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
}

/* Arrow pointing down (for top items) */
.timeline-tooltip-global.pointing-down::after {
    bottom: -16px;
    border-color: var(--primary-black) transparent transparent transparent;
}

/* Arrow pointing up (for bottom items) */
.timeline-tooltip-global.pointing-up::after {
    top: -16px;
    border-color: transparent transparent var(--primary-black) transparent;
}

.timeline-tooltip-global.visible {
    opacity: 1;
    pointer-events: none;
    /* Ensure it never blocks hover on the items below */
}

.timeline-tooltip-icon {
    margin-bottom: 10px;
}

.timeline-tooltip-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.timeline-tooltip-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

.timeline-tooltip-title {
    font-family: 'Halfre', serif;
    font-size: 1.2rem;
    color: #C5A065;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.timeline-tooltip-day {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Watermark */
.program-watermark {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.program-watermark img {
    width: 100%;
    height: auto;
}

/* Responsive Timeline */
@media (max-width: 1024px) {
    .timeline-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2x2 Grid */
        grid-template-rows: auto auto !important;
        gap: 20px !important;
        height: auto !important;
        min-height: 0 !important;
        width: 100% !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }

    .timeline-line,
    .timeline-trigger,
    .timeline-dot {
        display: none !important;
    }

    .timeline-item:not(.always-tooltip) {
        width: 100% !important;
        height: 100% !important;
        min-height: 120px !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    }

    .timeline-item.always-tooltip {
        width: 100% !important;
        height: 100% !important;
        min-height: 120px !important;
        padding: 0 !important;
        background: var(--primary-black) !important;
        border: none !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Hover and active effects removed per user request to keep cards uniform */
    /* .timeline-item:hover, .timeline-item.active {
        background: var(--primary-black) !important;
        border-color: var(--primary-black) !important;
    }

    .timeline-item:hover .timeline-day-label, .timeline-item.active .timeline-day-label {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .timeline-item:hover .timeline-text, .timeline-item.active .timeline-text {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .timeline-item:hover .timeline-title, .timeline-item.active .timeline-title {
        color: var(--gold-accent) !important;
    } */

    .timeline-content {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .timeline-item.top .timeline-content,
    .timeline-item.bottom .timeline-content {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .timeline-day-label {
        order: 1 !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 2px !important;
    }

    .timeline-title {
        order: 2 !important;
        font-size: 1rem !important;
        margin: 4px 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .timeline-text {
        order: 3 !important;
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .program-section {
        padding-top: 40px !important;
        height: 100% !important;
        justify-content: center !important;
    }

    .program-section .container {
        padding: 15px !important;
        height: 100% !important;
        justify-content: center !important;
    }

    /* .program-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    } */

    .timeline-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Ensure 2x2 grid */
        grid-template-rows: 1fr 1fr !important;
        /* Same height cards across rows */
        gap: 12px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .timeline-item:not(.always-tooltip) {
        padding: 15px 10px !important;
        height: 100% !important;
        min-height: 180px !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .timeline-item.always-tooltip {
        padding: 0 !important;
        height: 100% !important;
        min-height: 180px !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        background: var(--primary-black) !important;
        border: none !important;
    }

    .timeline-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
        gap: 4px !important;
    }

    /* Unify Order for all items including always-tooltip */
    .timeline-day-label {
        order: 1 !important;
        font-size: 0.8rem !important;
        margin-bottom: 4px !important;
    }

    .timeline-title {
        order: 2 !important;
        font-size: 0.85rem !important;
        margin: 4px 0 !important;
    }

    .timeline-text {
        order: 3 !important;
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
    }

    .timeline-tooltip-icon {
        order: 0 !important;
        margin-bottom: 6px !important;
    }

    .timeline-item.always-tooltip .timeline-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 15px 10px !important;
        border-radius: 0 !important;
    }
}


/* ════════════════════════════════════
   SECTION 11 — OFFICIAL PARTNERS
   ════════════════════════════════════ */


.partners-section {
    position: relative;
    background-color: var(--bg-screen);
    padding: 120px 0 100px !important;
    overflow: hidden;
}

/* Header */
.partners-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 5%;
}

.partners-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-black);
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.gold-underline-header {
    height: 3px;
    width: 80px;
    background: var(--gold-accent);
    margin: 0;
}

/* Subtitle */
.partners-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--primary-black);
    margin-bottom: 70px;
    font-weight: 600;
    letter-spacing: 0%;
    font-family: 'Inter', sans-serif;
    padding: 0 5%;
}

/* Logo Grid */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1250px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto 80px;
    justify-items: center;
}

.partner-logo-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 28px 20px;
    width: 100%;
    max-width: 280px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--gold-accent);
    cursor: pointer;
}

.partner-logo-card:hover {
    transform: translateY(2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.partner-logo-card img {
    max-height: 68px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.partners-bottom-text {
    text-align: center;
    font-size: 24px;
    line-height: 1.7;
    color: var(--primary-black);
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
    padding: 0 5%;
}



@media (min-width: 769px) {
    .partners-section { 
        padding: 115px 0 95px !important; 
    }
    .partners-header { 
        margin-bottom: 42px; 
        padding: 0 5%; 
    }
    .partners-subtitle { 
        margin-bottom: 58px; 
    }
    .partners-logo-grid { 
        grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); 
        gap: 22px; 
        padding: 0 5%; 
        max-width: 1250px; 
        margin: 0 auto 65px; 
    }
    .partner-logo-card { 
        min-height: 128px; 
        padding: 26px 24px; 
    }
    .partner-logo-card img { 
        max-height: 57px; 
    }
    .partners-bottom-text { 
        padding: 0 5%; 
    }
}


@media (min-width: 1200px) {
    .partners-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .partner-logo-card {
        max-width: none;
        min-height: 160px;
    }
    .partner-logo-card img {
        max-height: 72px;
    }
}

/* Your previous short height rules */
@media (max-width: 950px) {
    .partners-section { 
        padding: 115px 0 95px !important; 
    }
    .partners-header { 
        margin-bottom: 20px; 
       text-align: center;
    }
    .partners-subtitle { 
        margin-bottom: 25px; 
        font-size: 10px; 
    }
    .partners-logo-grid { 
        gap: 11px; 
        margin-bottom: 30px; 
    }
    .partner-logo-card { 
        min-height: 15px; 
        padding: 20px 15px; 
    }
    .partner-logo-card img { 
        max-height: 38px; 
    }
    .partners-bottom-text { 
        font-size: 13px; 
    }
}

@media (max-height: 680px) {
    .partners-section { 
        padding: 60px 0 35px !important; 
    }
    .partners-header { 
        margin-bottom: 10px; 
    }
    .partners-subtitle { 
        margin-bottom: 20px; 
    }
    .partners-logo-grid { 
        gap: 11px; 
        margin-bottom: 30px; 
    }
    .partner-logo-card { 
        min-height: 20px; 
        padding: 15px 10px; 
    }
    .partner-logo-card img { 
        max-height: 32px; 
    }
    .partners-bottom-text { 
        font-size: 10px; 
    }
}

/* ════════════════════════════════════
   SECTION 12 — CTA / CONTACT
   ════════════════════════════════════ */
.cta-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    isolation: isolate;
    background: var(--primary-black);
}

.cta-bg-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 250px;
    z-index: 0;
}

.cta-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.92) 0px, rgba(0, 0, 0, 0.75) 140px, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

@media (max-width: 768px) {
    .cta-bg-img {
        top: 140px;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: clamp(70px, 9vh, 110px) 48px clamp(18px, 4vh, 70px);
    /* Reduced padding further */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    gap: clamp(14px, 2.2vh, 30px);
    /* Reduced gap */
}

.cta-countdown {
    background-color: transparent;
    border: 1px solid rgba(188, 172, 147, 0.35);
    border-radius: 72px;
    height: 58px;
    /* padding: 0 39px; */
    gap: 30px;
    box-shadow: 0 2.77px 6.92px rgba(82, 82, 82, 0.1);
    margin-bottom: clamp(10px, 2vh, 18px);
}



.cta-header-flow {
    margin-top: 0;
}

.cta-countdown .nav-countdown-label,
.cta-countdown .nav-countdown-text {
    color: rgba(188, 172, 147, 0.75);
}

.cta-countdown .nav-countdown-num {
    color: var(--primary-white);
}

.cta-center-logo {
    width: clamp(100px, 14vw, 220px);
    /* Reduced logo size */
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cta-center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pill-transparent {
    background-color: transparent;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: clamp(14px, 1.5vw, 20px);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0%;
    text-transform: none;
    font-weight: 500;
    line-height: 100%;
}

.cta-title {
    color: var(--primary-white);
    font-size: clamp(24px, 4vw, 39px);
    letter-spacing: 2%;
    text-transform: uppercase;
    font-family: Canela, serif;
    position: relative;
    line-height: 1.2;
    z-index: 3;
    max-width: 800px;
}

.cta-sub {
    color: var(--primary-white);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    margin: 0;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 2%;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.cta-section .btn-gold {
    /* width: 250px; */
    background-color: var(--gold-accent);
    color: var(--primary-black);
    padding: 10px 20px;
    border: 1px solid var(--gold-accent);
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0%;
    line-height: 100%;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-section .btn-gold:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cta-section .btn-outline-light {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 20px;
    border: 1px solid var(--primary-white);
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0%;
    line-height: 100%;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-section .btn-outline-light:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* Navigation Arrows Positioning */
.nav-arrow-left,
.nav-arrow-right {
    position: absolute;
    top: 48px;
    z-index: 10;
    /* Ensure arrows are above content overlay */
}

.nav-arrow-left {
    left: 50px;
    top: 150px;
}

.nav-arrow-right {
    right: 48px;
}

@media (max-width: 768px) {
    .cta-section .nav-arrow-left {
        color: var(--primary-white);
    }

    .nav-arrow-left {
        left: 12px;
        top: calc(10px + env(safe-area-inset-top, 0px));
    }

    .nav-arrow-right {
        right: 16px;
    }

    /* Standard arrows positioning on mobile */
    .standard-arrows,
    .standard-arrows-inline {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {

    section:not(#contact) .section-bg-icon,
    section:not(#contact) .industrial-watermark,
    section:not(#contact) .why-watermark,
    section:not(#contact) .program-watermark,
    section:not(#contact) .different-watermark {
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
        transform: translateX(-50%) !important;
    }

    section:not(#contact) .section-bg-icon,
    section:not(#contact) .industrial-watermark,
    section:not(#contact) .why-watermark,
    section:not(#contact) .program-watermark,
    section:not(#contact) .different-watermark {
        width: clamp(250px, 60vw, 400px) !important;
        opacity: 0.8 !important;
    }

    #partners .why-watermark {
        width: clamp(250px, 70vw, 400px) !important;
        bottom: -20px !important;
    }

    section:not(#contact) .industrial-watermark img,
    section:not(#contact) .why-watermark img,
    section:not(#contact) .program-watermark img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (min-width: 769px) {

    #about .strategic-container,
    #more-than-event .container,
    #ecosystem .container,
    #industrial-scope .container,
    #why-matters .container,
    #sponsors .container,
    #buyers .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 48px !important;
        padding-right: 48px !important;
        margin: 0 !important;
    }
}

/* Fix image visibility in Section 8 */
#buyers .buyer-card-img {
    height: 320px !important;
    /* Revert to fixed height for consistent grid */
    aspect-ratio: auto !important;
    width: 100%;
}

#buyers .buyer-card-img img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: center;
    /* Default center alignment */
}

/* Specific fix for the first image (Technical Transparency) which has content at the bottom */
#buyers .buyer-card:nth-child(1) .buyer-card-img img {
    object-position: bottom center;
}

/* Form Navbar Mode (Black background, white content) */
.fixed-nav.nav-black {
    background-color: var(--primary-black);
    border-bottom: none;
}

.fixed-nav.nav-black .nav-countdown {
    background-color: transparent;
    border: 1px solid rgba(188, 172, 147, 0.35);
    border-radius: 72px;
    height: 58px;
    padding: 0 39px;
    gap: 33.2px;
    box-shadow: 0 2.77px 6.92px rgba(82, 82, 82, 0.1);
}

.fixed-nav.nav-black .nav-countdown-label,
.fixed-nav.nav-black .nav-countdown-text {
    color: rgba(188, 172, 147, 0.75);
}

@media (max-width: 768px) {
    .fixed-nav.nav-black .nav-countdown {
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 20px;
        height: 48px;
        gap: 14px;
    }

    section.form-section.active .form-back-btn {
        position: absolute !important;
        top: calc(var(--nav-height) + -10px) !important;
        left: 12px !important;
        z-index: 8999 !important;
    }
}

/* Hide form back button by default, show only when parent form-section is active */
.form-back-btn {
    display: none !important;
}

section.form-section.active .form-back-btn {
    display: flex !important;
}

.fixed-nav.nav-black .logo-icon {
    filter: brightness(0) invert(1);
}

.fixed-nav.nav-black .nav-right-logo {
    filter: brightness(0) invert(1);
}

.fixed-nav.nav-black .nav-links {
    background-color: var(--primary-white);
    border: 1px solid var(--primary-white);
}

.fixed-nav.nav-black .nav-links a {
    color: var(--primary-black);
}

.fixed-nav.nav-black .btn-outline {
    color: var(--primary-white);
    border-color: rgba(188, 172, 147, 0.35);
    background-color: transparent;
    box-shadow: 0 2.77px 6.92px rgba(82, 82, 82, 0.1);
}

.fixed-nav.nav-black .btn-primary {
    background-color: transparent;
    color: var(--primary-white);
    border-color: rgba(188, 172, 147, 0.35);
    box-shadow: 0 2.77px 6.92px rgba(82, 82, 82, 0.1);
}

.fixed-nav.nav-black .hamburger-menu {
    color: var(--primary-white);
}

/* ════════════════════════════════════
   FORM SECTIONS — Request Access / Become a Sponsor
   ════════════════════════════════════ */
.form-section {
    background-color: var(--primary-black);
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    position: relative;
    overflow: hidden !important;
    /* No scroll as requested */
    height: 100%;
    /* Take full slider height */
    padding-top: 0;
    /* Padding not needed as it's inside the slider below nav */
}

/* Allow scrolling removed for forms as requested */
body.allow-scroll {
    overflow: hidden !important;
}

body.allow-scroll #slider-container {
    height: calc(100vh - var(--nav-height));
    overflow: hidden !important;
}

body.allow-scroll section.form-section {
    height: 100%;
    overflow: hidden !important;
}

.form-section-inner {
    position: relative;
    display: flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    gap: clamp(20px, 6vw, 120px);
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    /* Take full height to allow vertical centering */
    z-index: 10;
}

.form-watermark {
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: clamp(300px, 30vw, 600px);
    aspect-ratio: 1/1;
    opacity: 0.15;
    /* Reduced opacity */
    background-color: var(--gold-accent);
    -webkit-mask: url('assets/background-icon_converted.avif') no-repeat center / contain;
    mask: url('assets/background-icon_converted.avif') no-repeat center / contain;
    z-index: 100;
    /* Increased to override image */
    display: block !important;
    pointer-events: none !important;
    /* Allow interaction with inputs below */
}

.form-image-wrapper {
    position: relative;
    flex: 1;
    max-width: 550px;
    height: 100%;
    /* Take full height to allow vertical centering */
    aspect-ratio: 0.85 / 1;
    max-height: calc(100vh - var(--nav-height) - 100px);
    /* Adapt to viewport height */
    z-index: 5;
    display: flex;
    align-items: center;
    /* Center image vertically */
    justify-content: center;
    /* Center image horizontally */
    overflow: visible;
    /* Changed from hidden to allow back button visibility */
    border-radius: 24px;
}

.form-back-btn {
    position: absolute;
    left: 48px;
    top: 24px;
    z-index: 100;
    background: transparent;
    border: 1px solid rgba(188, 172, 147, 0.35);
    color: var(--gold-accent);
    width: clamp(36px, 4.5vh, 48px);
    height: clamp(36px, 4.5vh, 48px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .form-back-btn {
        left: 10px;
        /* Adjust for smaller screens */
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
    }
}

.form-back-btn:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-black);
    transform: scale(1.1);
}

.form-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) brightness(0.8);
    border-radius: 24px;
    /* Ensure clipping happens on the image itself */
}

.form-field.full {
    width: 100%;
}

.form-field select {
    display: none;
    /* Hide native select */
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    border-bottom: 1px solid #eee;
    padding: clamp(4px, 0.8vh, 8px) 24px clamp(4px, 0.8vh, 8px) 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(11px, 1.3vh, 13px);
    color: var(--primary-black);
    font-weight: 500;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    transition: border-color 0.3s ease;
}

.custom-select.active .custom-select-trigger {
    border-bottom-color: var(--primary-black);
}

.custom-options {
    position: absolute;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5000;
    /* Extremely high to show over any other element */
    max-height: 200px;
    overflow-y: auto !important;
    border: 1px solid #f0f0f0;
    pointer-events: auto;
}

.custom-select.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Logic for opening above */
.custom-select.open-above .custom-options {
    bottom: 100%;
    top: auto;
    margin-top: 0;
    margin-bottom: 4px;
    transform: translateY(-10px);
}

.custom-select.active.open-above .custom-options {
    transform: translateY(0);
}

.custom-option {
    padding: 12px 16px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-black);
    cursor: pointer;
    transition: background 0.2s;
}

.custom-option:hover {
    background: #f8f8f8;
}

.custom-option.selected {
    background: #f0f0f0;
    font-weight: 600;
}

.form-field.error .custom-select-trigger {
    border-bottom-color: #ff3b30;
}

.form-field input:focus,
.form-field select:focus {
    border-bottom-color: var(--primary-black);
}

.form-field.error input,
.form-field.error select {
    border-bottom-color: #ff3b30;
}

.error-msg {
    color: #ff3b30;
    font-size: 9px;
    font-family: 'DM Sans', sans-serif;
    margin-top: 2px;
    display: none;
    text-transform: none;
}

.form-field.error .error-msg {
    display: block;
}
.form-checkbox.error .error-msg {
    display: block;
}

.form-checkbox-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-black);
}

.form-image-col {
    width: 100%;
    height: 100%;
    border-radius: clamp(20px, 4vh, 40px);
    overflow: hidden;
    position: relative;
}

.form-content-col {
    flex: 0 0 clamp(320px, 30vw, 420px);
    display: flex;
    flex-direction: column;
    background: var(--primary-white);
    border-radius: 24px;
    padding: clamp(16px, 2.5vh, 32px) clamp(20px, 2.5vw, 32px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    max-height: calc(100vh - var(--nav-height) - 40px);
    /* Adapt to viewport height */
    overflow-y: auto;
    /* Internal scroll if content is too tall, while body remains locked */
    position: relative;
    z-index: 10;
    /* Hide scrollbar for a cleaner look but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.form-content-col::-webkit-scrollbar {
    display: none;
}

.form-header {
    text-align: center;
    margin-bottom: clamp(12px, 2.5vh, 32px);
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vh, 22px);
    font-weight: 700;
    color: var(--primary-black);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: clamp(4px, 0.5vh, 8px);
}

.form-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(9px, 1.1vh, 12px);
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    max-width: 260px;
    margin: 0 auto;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.8vh, 20px);
}

.form-row {
    display: flex;
    gap: clamp(8px, 1.5vw, 16px);
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: clamp(2px, 0.4vh, 6px);
}

.form-field label {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(8px, 0.9vh, 10px);
    color: #999;
    cursor: pointer;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.form-field input,
.form-field select {
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
    padding: clamp(4px, 0.8vh, 8px) 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(11px, 1.3vh, 13px);
    color: var(--primary-black);
    font-weight: 500;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.3s ease;
}

.form-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: clamp(2px, 0.4vh, 6px);
}

.form-checkbox label {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(8px, 0.9vh, 10px);
    color: var(--primary-black);
    cursor: pointer;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.privacy-link {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.privacy-link:hover {
    opacity: 0.7;
}

.form-submit {
    background: var(--primary-black);
    color: var(--primary-white);
    border: none;
    border-radius: 100px;
    padding: clamp(10px, 1.2vh, 16px);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(10px, 1.1vh, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    width: 100%;
    margin-top: clamp(4px, 0.8vh, 8px);
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #333;
    transform: translateY(-1px);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeIn 0.5s ease-out;
}

.form-success i {
    font-size: 48px;
    color: #4CAF50;
}

.form-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    color: var(--primary-black);
    margin: 0;
}

.form-success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 10px;
    max-width: 300px;
}

.form-success .btn-primary {
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Nav white mode for form sections */
.fixed-nav.nav-white {
    background-color: var(--primary-white) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .form-section-inner {
        flex-direction: column;
        padding: 60px 20px 20px;
        /* Reduced top padding from 100px to 60px */
        gap: 0;
        height: 100%;
        overflow-y: auto;
    }

    .form-image-col {
        display: none;
    }

    .form-content-col {
        box-shadow: none;
        border: none;
        padding: 0;
        width: 100%;
        max-width: 500px;
    }

    .form-back-btn {
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
}

/* ════════════════════════════════════
   FINAL MOBILE OVERRIDES
   ════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100% !important;
        padding-top: 20px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 20px !important;
        width: 100% !important;
        align-items: center !important;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }

    .hero-image {
        display: none !important;
    }

    .hero-meta {
        margin-bottom: 15px !important;
    }

    .hero-section h1 {
        font-size: 1.8rem !important;
        /* Even smaller */
        margin: 10px 0 15px 0 !important;
        line-height: 1.1 !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero-section .pill {
        font-size: 0.85rem !important;
        padding: 6px 16px !important;
    }

    .subtext-bold {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }

    .subtext-regular {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero-footer {
        margin-top: 20px !important;
        gap: 12px !important;
        justify-content: center !important;
    }

    .large-number {
        font-size: 40px !important;
    }

    .small-desc {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .hero-container {
        padding: 40px 0 20px 0 !important;
        justify-content: center !important;
        /* Center everything */
    }

    /* Forms (Mobile) */
    .form-section {
        height: 100% !important;
        min-height: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 15px !important;
    }

    .form-section-inner {
        padding: 0 !important;
        height: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
    }

    .form-image-wrapper {
        display: none !important;
        /* Hide wrapper entirely on mobile */
    }

    .form-content-col {
        flex: 0 1 auto !important;
        width: 100% !important;
        margin-top: 0 !important;
        align-items: center !important;
        padding: 20px 15px !important;
        /* Reduced padding to fit more content */
        border-radius: 20px !important;
        background: var(--primary-white) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
        overflow-y: auto !important;
        max-height: calc(100vh - 140px) !important;
        /* Slightly more space */
        position: relative;
    }

    .form-header {
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: row !important;
        /* Inputs side by side */
        gap: 10px !important;
        width: 100% !important;
    }

    .form-row .form-field {
        flex: 1 !important;
    }

    .form-back-btn {
        position: absolute !important;
        /* Absolute relative to form-section */
        left: 20px !important;
        top: 20px !important;
        /* Top of the section */
        width: 36px !important;
        height: 36px !important;
        z-index: 5000 !important;
        background: black !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid #ddd !important;
    }

    .form-back-btn i {
        font-size: 16px !important;
        display: block !important;
        /* Ensure the arrow icon itself is displayed */
    }

    .form-title {
        font-size: 1rem !important;
        /* Even smaller title */
        margin-bottom: 2px !important;
        font-weight: 700 !important;
    }

    .form-subtitle {
        font-size: 0.65rem !important;
        /* Even smaller subtitle */
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
    }

    /* Mobile Menu Buttons Fix */
    .nav-cta--mobile {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 90% !important;
        margin-top: 30px !important;
        padding-bottom: 40px !important;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.7s;
        /* Delay to show after other links */
    }

    .nav-links.nav-active .nav-cta--mobile {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-cta--mobile a.btn-primary {
        background-color: var(--primary-black) !important;
        color: var(--primary-white) !important;
        border: 1px solid var(--primary-black) !important;
        padding: 12px 20px !important;
        /* Reduced padding */
        border-radius: 100px !important;
        font-size: 13px !important;
        /* Slightly smaller font */
        font-weight: 700 !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .nav-cta--mobile a.btn-outline {
        background-color: transparent !important;
        color: var(--primary-black) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        /* Subtle border */
        padding: 12px 20px !important;
        /* Reduced padding */
        border-radius: 100px !important;
        font-size: 13px !important;
        /* Slightly smaller font */
        font-weight: 700 !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    /* Fix for hamburger color and logo when menu is open */
    .fixed-nav.menu-open .hamburger-menu {
        color: var(--primary-black) !important;
    }

    .fixed-nav.menu-open .logo-icon {
        filter: none !important;
        /* Ensure logo is black on white background */
    }

    .form-fields {
        gap: 6px !important;
        /* Minimal gap */
        width: 100% !important;
    }

    .form-field label {
        font-size: 0.55rem !important;
        /* Even smaller labels */
        margin-bottom: 1px !important;
    }

    .form-field input {
        font-size: 0.75rem !important;
        /* Smaller input text */
        padding: 4px 0 !important;
    }

    .form-submit {
        padding: 10px !important;
        font-size: 10px !important;
        margin-top: 5px !important;
    }

    .error-msg {
        font-size: 8px !important;
        margin-top: 1px !important;
    }

    /* CTA Section (Mobile) */
    .cta-section {
        height: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .cta-content {
        padding: 40px 20px !important;
        gap: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        height: 100% !important;
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }

    .cta-header-flow {
        margin-bottom: 5px !important;
    }

    .cta-center-logo {
        width: 100px !important;
        height: 100px !important;
        margin: 5px 0 !important;
    }

    .cta-title {
        font-size: 1.4rem !important;
        line-height: 1.1 !important;
        margin: 5px 0 !important;
        max-width: 100% !important;
    }

    .cta-sub {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        max-width: 90% !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        align-items: center !important;
        margin-top: 5px !important;
    }

    .cta-buttons .btn-gold,
    .cta-buttons .btn-outline-light {
        width: 100% !important;
        max-width: 260px !important;
        padding: 10px 20px !important;
        font-size: 13px !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
