        @font-face {
            font-family: 'Radikal-Regular';
            src: url('assets/fonts/Radikal-Regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --primary-navy: #071424;
            --charcoal: #111827;
            --brand-red: #C53030;
            --brand-red-hover: #DC4444;
            --gold: #D9A441;
            --gold-dark: #B8892E;
            --gold-light: #E8C170;
            --off-white: #F9FAFB;
            --light-gray: #E5E7EB;
            --medium-gray: #6B7280;
            --dark-gray: #374151;
            --white: #FFFFFF;
            --platinum: #E5E4E2;
            --silver: #C0C0C0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Radikal-Regular', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--off-white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Radikal-Regular', sans-serif;
            line-height: 1.2;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(7, 20, 36, 0.98);
            backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1001;
            max-width: 70%;
        }

        .logo img {
            height: auto;
            max-height: 80px;
            /* Safe upper limit for desktop */
            width: auto;
            object-fit: contain;
            transition: height 0.3s ease;
        }

        @media (max-width: 1024px) {
            .logo img {
                height: 45px;
            }

            .logo {
                max-width: 70%;
            }
        }

        @media (max-width: 768px) {
            .logo img {
                height: 35px;
            }

            .logo {
                max-width: 65%;
            }
        }

        .logo-badge {
            background: var(--brand-red);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--light-gray);
        }

        .nav-links a:not(.nav-cta):hover::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-red);
        }

        .nav-cta {
            background: var(--brand-red);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--brand-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(197, 48, 48, 0.4);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--white);
            min-width: 180px;
            border-radius: 12px;
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            list-style: none;
            z-index: 1001;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            color: var(--charcoal) !important;
            padding: 10px 24px;
            display: block;
            width: 100%;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: var(--off-white);
            color: var(--brand-red) !important;
            padding-left: 28px;
        }

        .dropdown-menu a::after {
            display: none !important;
        }

        .dropdown-toggle svg {
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle svg {
            transform: rotate(180deg);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
            position: relative;
            margin-left: auto;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.7) 0%, rgba(7, 20, 36, 0.85) 100%),
                url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&q=80') center/cover no-repeat;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            padding: 140px 20px 80px;
            width: 100%;
        }

        .hero-logo-mobile {
            display: none !important;
        }

        .desktop-only-logo {
            display: flex !important;
        }

        @media (max-width: 1024px) {
            .desktop-only-logo {
                display: none !important;
            }

            .hero-logo-mobile {
                display: flex !important;
                justify-content: center;
                margin: 0 auto 32px;
            }

            .hero-logo-mobile img {
                height: 50px !important;
            }
        }

        .hero-eyebrow {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.1s forwards;
        }

        .hero-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-weight: 500;
            opacity: 0.9;
            margin-bottom: 12px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-location {
            font-size: 1rem;
            font-weight: 400;
            color: var(--light-gray);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
            opacity: 1;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--brand-red);
            color: var(--white);
            box-shadow: 0 8px 24px rgba(197, 48, 48, 0.4);
        }

        .btn-primary:hover {
            background: var(--brand-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(197, 48, 48, 0.5);
        }

        .btn-ghost {
            background: white;
            color: var(--black);
            border: 2px solid var(--brand-red);
        }

        .btn-ghost:hover {
            background: var(--white);
            color: var(--primary-navy);
        }

        .btn-gold {
            background: var(--gold);
            color: var(--primary-navy);
            box-shadow: 0 8px 24px rgba(217, 164, 65, 0.4);
        }

        .btn-gold:hover {
            background: var(--primary-navy);
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(217, 164, 65, 0.5);
        }


        /* Metrics Strip */
        .metrics-strip {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.5s forwards;
        }

        .metric-item {
            text-align: center;
        }

        .metric-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            display: block;
        }

        .metric-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--light-gray);
            opacity: 0.8;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sponsor Strip */
        .sponsor-strip {
            background: var(--white);
            padding: 40px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .sponsor-strip-title {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--medium-gray);
            margin-bottom: 24px;
        }

        .sponsor-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 48px;
        }

        .sponsor-logo {
            height: 32px;
            opacity: 0.5;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .sponsor-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .sponsor-placeholder {
            width: 100px;
            height: 32px;
            background: var(--light-gray);
            border-radius: 4px;
            opacity: 0.5;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .section-dark {
            background: var(--primary-navy);
            color: var(--white);
        }

        .section-light {
            background: var(--off-white);
        }

        .section-white {
            background: var(--white);
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand-red);
            margin-bottom: 12px;
            display: block;
        }

        .section-dark .section-label {
            color: var(--gold);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 16px;
        }

        .section-dark .section-title {
            color: var(--white);
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--medium-gray);
            max-width: 600px;
            line-height: 1.7;
        }

        .section-dark .section-subtitle {
            color: var(--light-gray);
            opacity: 0.9;
        }

        .text-center {
            text-align: center;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* HRM Ecosystem Section */
        .ecosystem-section {
            background: var(--white);
            padding: 100px 0;
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .ecosystem-item {
            text-align: center;
            padding: 32px 16px;
            background: var(--off-white);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .ecosystem-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--brand-red);
        }

        .ecosystem-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-navy);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .ecosystem-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        .ecosystem-item h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .ecosystem-item p {
            font-size: 0.875rem;
            color: var(--medium-gray);
            line-height: 1.5;
        }

        /* Advisory Network Section */
        .advisory-section {
            background: var(--charcoal);
            padding: 100px 0;
        }

        .advisory-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 60px;
        }

        .advisory-card {
            text-align: center;
            max-width: 180px;
            cursor: pointer;
        }

        .advisory-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 16px;
            overflow: hidden;
            border: 3px solid var(--gold);
            background: var(--primary-navy);
        }

        .advisory-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .advisory-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-navy), var(--charcoal));
            color: var(--gold);
            font-size: 2rem;
            font-weight: 700;
        }

        .advisory-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .advisory-card p {
            font-size: 0.8rem;
            color: var(--light-gray);
            opacity: 0.8;
        }

        /* Themes Section */
        .themes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .theme-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .theme-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            border-color: var(--brand-red);
        }

        .theme-image {
            width: 100%;
            height: 180px;
            border-radius: 12px;
            margin-bottom: 24px;
            overflow: hidden;
            background: var(--primary-navy);
        }

        .theme-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .theme-card:hover .theme-image img {
            transform: scale(1.1);
        }

        .theme-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 8px;
        }

        .theme-card p {
            font-size: 0.9rem;
            color: var(--light-gray);
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Speakers Section */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .speaker-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .speaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        .speaker-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--light-gray);
        }

        .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .speaker-card h3 {
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .speaker-role {
            color: var(--brand-red);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 4px;
        }

        .speaker-company {
            color: var(--medium-gray);
            font-size: 0.8125rem;
        }

        /* Speaker Bio Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-container {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            animation: modalFadeIn 0.3s ease-out;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-header {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2001;
        }

        .modal-close {
            background: rgba(0, 0, 0, 0.1);
            color: var(--charcoal);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--brand-red);
            color: white;
        }

        .modal-content {
            display: flex;
            flex-direction: column;
        }

        .modal-speaker-image {
            width: 100%;
            height: 350px;
            overflow: hidden;
            background: #f8f9fa;
            /* Light background for logos */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-speaker-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .modal-speaker-info {
            padding: 40px;
            overflow-y: auto;
        }

        .modal-speaker-info h2 {
            font-size: 32px;
            font-weight: 800;
            margin: 0 0 10px 0;
            color: var(--primary-navy);
        }

        .modal-speaker-info h3 {
            font-size: 18px;
            color: var(--brand-red);
            margin: 0 0 24px 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-speaker-info p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--dark-gray);
            margin: 0;
        }

        @media (min-width: 768px) {
            .modal-content {
                flex-direction: row;
                height: 500px;
                /* Fixed height for consistent look */
            }

            .modal-speaker-image {
                width: 400px;
                height: 100%;
            }

            .modal-speaker-info {
                flex: 1;
                padding: 50px;
            }
        }

        /* Why Attend Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        }

        .benefit-icon {
            width: 72px;
            height: 72px;
            background: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            color: var(--brand-red);
        }

        .benefit-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .benefit-card p {
            font-size: 0.9rem;
            color: var(--medium-gray);
            line-height: 1.6;
        }

        /* Agenda Section */
        .agenda-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .agenda-tab {
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: 2px solid var(--light-gray);
            background: var(--white);
            color: var(--charcoal);
            transition: all 0.3s ease;
        }

        .agenda-tab.active {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: var(--white);
        }

        .agenda-tab:hover:not(.active) {
            border-color: var(--brand-red);
            color: var(--brand-red);
        }

        .agenda-content {
            display: none;
        }

        .agenda-content.active {
            display: block;
        }

        .agenda-item {
            display: flex;
            gap: 24px;
            padding: 24px;
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }

        .agenda-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .agenda-time {
            min-width: 100px;
            font-weight: 600;
            color: var(--brand-red);
            font-size: 0.9rem;
        }

        .agenda-details h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .agenda-details p {
            font-size: 0.875rem;
            color: var(--medium-gray);
        }

        .agenda-speaker {
            font-size: 0.8rem;
            color: var(--brand-red);
            margin-top: 8px;
        }

        /* Registration Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            border: 2px solid var(--light-gray);
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--brand-red);
            /* transform: scale(1.4); */
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-red);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-red);
            margin-bottom: 8px;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--medium-gray);
        }

        .pricing-description {
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-bottom: 24px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.9rem;
            color: var(--charcoal);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features svg {
            width: 20px;
            height: 20px;
            color: var(--brand-red);
            flex-shrink: 0;
        }

        .btn-block {
            width: 100%;
        }

        /* Email Capture Section */
        .email-section {
            background: var(--off-white);
            padding: 80px 0;
        }

        .email-card {
            background: var(--white);
            border-radius: 20px;
            padding: 60px;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }

        .email-card h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .email-card p {
            font-size: 1rem;
            color: var(--medium-gray);
            margin-bottom: 32px;
        }

        .email-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .email-form input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            font-family: 'Radikal-Regular', sans-serif;
            transition: all 0.3s ease;
        }

        .email-form input:focus {
            outline: none;
            border-color: var(--brand-red);
        }

        .email-form button {
            padding: 16px 32px;
            background: var(--brand-red);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .email-form button:hover {
            background: var(--brand-red-hover);
        }

        /* Sponsors Section */
        .sponsors-tier {
            margin-bottom: 80px;
            width: 100%;
        }

        .sponsors-tier:last-child {
            margin-bottom: 0;
        }

        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand-red);
            margin-bottom: 12px;
        }

        .tier-title {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary-navy);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .tier-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--brand-red);
            border-radius: 2px;
        }

        .tier-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 20px;
        }

        .sponsor-logo {
            background: var(--white);
            border-radius: 16px;
            padding: 0;
            /* No padding */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.08);
            overflow: hidden;
            flex-shrink: 0;
        }

        .sponsor-logo:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
            border-color: var(--brand-red);
        }

        .sponsor-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transform: scale(1.15);
            /* Zoom in to bypass internal margins in image files */
            filter: contrast(105%);
            transition: all 0.4s ease;
        }

        .sponsor-logo:hover img {
            transform: scale(1.2);
            /* Extra zoom on hover */
        }

        /* Maximum Tier Sizes */
        .sponsor-logo.diamond {
            width: 500px;
            height: 240px;
        }

        .sponsor-logo.presenting {
            width: 440px;
            height: 210px;
        }

        .sponsor-logo.platinum {
            width: 380px;
            height: 190px;
        }

        .sponsor-logo.partner {
            width: 320px;
            height: 160px;
        }

        @media (max-width: 991px) {
            .sponsor-logo.diamond {
                width: 420px;
                height: 200px;
            }

            .sponsor-logo.presenting {
                width: 380px;
                height: 180px;
            }

            .sponsor-logo.platinum {
                width: 320px;
                height: 160px;
            }
        }

        @media (max-width: 767px) {
            .tier-logos {
                gap: 20px;
            }

            .sponsor-logo {
                width: 100% !important;
                max-width: 300px;
                height: 120px !important;
                padding: 20px;
            }
        }



        /* FAQ Section */
        .faq-list {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid var(--light-gray);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--charcoal);
            cursor: pointer;
            text-align: left;
            font-family: 'Radikal-Regular', sans-serif;
        }

        .faq-question:hover {
            color: var(--brand-red);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 24px 24px;
            color: var(--medium-gray);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
            padding: 100px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.125rem;
            color: var(--light-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: var(--light-gray);
            opacity: 0.8;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--brand-red);
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            opacity: 1;
            color: var(--white);
            text-decoration: underline;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--light-gray);
            opacity: 0.6;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 0.85rem;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .footer-bottom-links a:hover {
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .ecosystem-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            /* .pricing-card.featured {
                transform: none;
            } */

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-navy);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .dropdown.active .dropdown-toggle svg {
                transform: rotate(180deg);
            }

            .metrics-strip {
                gap: 24px;
            }

            .metric-item {
                min-width: 80px;
            }

            .ecosystem-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .advisory-grid {
                gap: 24px;
            }

            .advisory-card {
                max-width: 140px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .agenda-item {
                flex-direction: column;
                gap: 8px;
            }

            .email-form {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 180px;
            }

            .ecosystem-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 60px 0;
            }
        }

        /* ==========================================================================
           Awards Specific Styles
           ========================================================================== */

        .hero-gold-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        }

        .awards-page .section-label,
        .awards-brochure-page .section-label {
            color: var(--gold);
        }

        .hero h1 span {
            color: var(--gold);
        }

        /* Metrics Strip in Hero */
        .hero-metrics {
            display: flex;
            justify-content: center;
            gap: 64px;
            flex-wrap: wrap;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .hero-metric {
            text-align: center;
        }

        .hero-metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .hero-metric-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--light-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-navy);
        }

        /* Award Process Section */
        .process-section {
            background: var(--white);
            padding: 100px 0;
        }

        .process-steps {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 32px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .process-step {
            flex: 1;
            min-width: 280px;
            max-width: 340px;
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 48px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: var(--gold);
        }

        .process-number {
            width: 96px;
            height: 96px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-navy);
            box-shadow: 0 8px 32px rgba(217, 164, 65, 0.3);
        }

        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 0.95rem;
            color: var(--medium-gray);
            line-height: 1.7;
        }

        .section-charcoal {
            background: var(--charcoal);
            color: var(--white);
        }

        .section-charcoal .section-label {
            color: var(--gold);
        }

        .section-charcoal .section-title {
            color: var(--white);
        }

        .section-charcoal .section-subtitle {
            color: var(--light-gray);
            opacity: 0.9;
        }

        /* Jury Section */
        .jury-section {
            background: var(--charcoal);
            padding: 100px 0;
        }

        .jury-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .jury-card {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .jury-card:hover {
            transform: translateY(-8px);
        }

        .jury-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--gold);
            background: var(--primary-navy);
            transition: border-color 0.3s ease;
        }

        .jury-card:hover .jury-image {
            border-color: var(--white);
        }

        .jury-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jury-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-navy), var(--charcoal));
            color: var(--gold);
            font-size: 2.5rem;
            font-weight: 700;
        }

        .jury-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .jury-card .jury-role {
            font-size: 0.85rem;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .jury-card .jury-org {
            font-size: 0.8rem;
            color: var(--light-gray);
            opacity: 0.8;
        }

        .jury-card .jury-country {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* Evaluation Section */
        .evaluation-section {
            background: var(--primary-navy);
            padding: 80px 0;
        }

        .evaluation-content {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .evaluation-text {
            flex: 1;
            min-width: 300px;
        }

        .evaluation-text h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
        }

        .evaluation-list {
            list-style: none;
        }

        .evaluation-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            font-size: 1rem;
            color: var(--light-gray);
            line-height: 1.6;
        }

        .evaluation-list li svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: var(--gold);
            margin-top: 2px;
        }

        .evaluation-cta {
            flex: 0 0 360px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
        }

        .evaluation-cta h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
        }

        .evaluation-cta p {
            font-size: 0.95rem;
            color: var(--light-gray);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* Categories Section */
        .categories-section {
            background: var(--off-white);
            padding: 100px 0;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .category-group-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin: 60px 0 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            grid-column: 1 / -1;
        }

        .category-group-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--gold-light);
            opacity: 0.3;
        }

        .category-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--gold);
        }

        .category-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .category-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary-navy);
        }

        .category-card h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .category-card p {
            font-size: 0.8rem;
            color: var(--medium-gray);
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* Hall of Fame Section */
        .hall-of-fame-section {
            background: var(--primary-navy);
            padding: 100px 0;
        }

        .years-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 40px;
            margin-bottom: 48px;
        }

        .year-tab {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: var(--light-gray);
            transition: all 0.3s ease;
        }

        .year-tab.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--primary-navy);
        }

        .year-tab:hover:not(.active) {
            border-color: var(--gold);
            color: var(--gold);
        }

        .winners-content {
            display: none;
        }

        .winners-content.active {
            display: block;
        }

        .winners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }

        .winner-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .winner-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .winner-photo {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .winner-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .winner-card:hover .winner-photo img {
            transform: scale(1.1);
        }

        .winner-category {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            display: block;
        }

        .winner-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin: 0;
            line-height: 1.4;
        }

        /* Winner Modal Specifics */
        .winner-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(7, 20, 36, 0.95);
            backdrop-filter: blur(10px);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .winner-modal-content {
            background: var(--charcoal);
            width: 100%;
            max-width: 800px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: modalFadeIn 0.4s ease;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--white);
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--gold);
        }

        .winner-modal-body {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            min-height: 400px;
        }

        .winner-modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #000;
        }

        .winner-modal-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .modal-category {
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .modal-name {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .modal-year {
            font-size: 1.1rem;
            color: var(--light-gray);
            margin-bottom: 32px;
        }

        .high-res-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--brand-red);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: fit-content;
            cursor: pointer;
            border: none;
        }

        .high-res-link:hover {
            background: var(--brand-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(197, 48, 48, 0.4);
            color: var(--white);
        }

        /* Awards Page Specific Class Overrides */
        .awards-page .cta-section {
            background: linear-gradient(135deg, var(--brand-red) 0%, #8B1A1A 100%);
        }

        /* About Section Styles */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .about-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-item h3 svg {
            color: var(--brand-red);
        }

        .about-item ul {
            list-style: none;
            padding: 0;
        }

        .about-item ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 24px;
            font-size: 0.95rem;
            color: var(--dark-gray);
        }

        .about-item ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

        .about-item p {
            color: var(--dark-gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .about-item .deadline-text {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .about-item .deadline-date {
            color: var(--brand-red);
            font-weight: 700;
        }

        .about-link {
            display: inline-block;
            margin-top: 16px;
            color: var(--brand-red);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--brand-red);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .about-link:hover {
            color: var(--brand-red-hover);
            border-color: var(--brand-red-hover);
            padding-left: 5px;
        }

        @media (max-width: 1200px) {
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .winner-modal-body {
                grid-template-columns: 1fr;
            }

            .winner-modal-image {
                height: 300px;
            }

            .winner-modal-info {
                padding: 30px;
            }

            .modal-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }

            .category-card {
                padding: 20px;
            }
        }

        /* ==========================================================================
           Registration Form & Brochure Specific Styles
           ========================================================================== */

        .hero-awards {
            min-height: 60vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: var(--white);
        }

        .hero-awards::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.85) 0%, rgba(7, 20, 36, 0.95) 100%),
                url('assets/img/banners/awards-dinner.jpg') center/cover no-repeat;
            z-index: 1;
        }

        .form-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            padding: 48px;
        }

        .form-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 8px;
            text-align: center;
        }

        .form-subtitle {
            font-size: 1rem;
            color: var(--medium-gray);
            margin-bottom: 40px;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row.single {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--charcoal);
        }

        .form-group label .required {
            color: var(--brand-red);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--brand-red);
            box-shadow: 0 0 0 4px rgba(197, 48, 48, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--brand-red);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn-submit:hover {
            background: var(--brand-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(197, 48, 48, 0.3);
        }

        /* Success State */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px 0;
        }

        .form-success.active {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--brand-red), #E53E3E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            color: var(--white);
        }

        .form-success h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .form-success p {
            font-size: 1rem;
            color: var(--medium-gray);
            max-width: 400px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================================================
           Multi-Step Form Architecture
           ========================================================================== */

        .form-progress {
            background: var(--primary-navy);
            padding: 32px 40px;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .progress-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .progress-step.active .step-number,
        .progress-step.completed .step-number {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--primary-navy);
        }

        .progress-step.completed .step-number {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: var(--white);
        }

        .step-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .progress-step.active .step-label,
        .progress-step.completed .step-label {
            color: var(--white);
        }

        .form-content {
            padding: 48px 40px;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: fadeInStep 0.4s ease;
        }

        @keyframes fadeInStep {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .form-step-subtitle {
            font-size: 0.95rem;
            color: var(--medium-gray);
            margin-bottom: 32px;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--light-gray);
        }

        .btn-next,
        .btn-back {
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-next {
            background: var(--brand-red);
            color: var(--white);
            border: none;
        }

        .btn-next:hover {
            background: var(--brand-red-hover);
            transform: translateX(4px);
        }

        .btn-back {
            background: transparent;
            color: var(--medium-gray);
            border: 2px solid var(--light-gray);
        }

        .btn-back:hover {
            background: var(--off-white);
            color: var(--charcoal);
            border-color: var(--medium-gray);
        }

        /* ==========================================================================
           Speaker / Sponsor Specific Components
           ========================================================================== */

        .hero-speaker,
        .hero-sponsor {
            min-height: 80vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: var(--white);
        }

        .hero-speaker::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.85) 0%, rgba(7, 20, 36, 0.95) 100%),
                url('assets/img/banners/hrleader.png') center/cover no-repeat;
            z-index: 1;
        }

        .value-props-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .sponsor-props-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .value-prop-card {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .value-prop-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            border-color: var(--gold);
        }

        .value-prop-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 32px rgba(217, 164, 65, 0.3);
        }

        .value-prop-icon svg {
            width: 36px;
            height: 36px;
            color: var(--primary-navy);
        }

        .value-prop-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .value-prop-card p {
            font-size: 0.9rem;
            color: var(--light-gray);
            line-height: 1.6;
            opacity: 0.9;
        }

        .talk-types-section {
            background: var(--off-white);
            padding: 80px 0;
        }

        .talk-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .talk-type-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            border: 2px solid var(--light-gray);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .talk-type-card:hover,
        .talk-type-card.selected {
            border-color: var(--brand-red);
            box-shadow: 0 8px 24px rgba(197, 48, 48, 0.15);
        }

        .talk-type-card.selected {
            background: rgba(197, 48, 48, 0.03);
        }

        .talk-type-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .talk-type-checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid var(--light-gray);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .talk-type-card.selected .talk-type-checkbox {
            background: var(--brand-red);
            border-color: var(--brand-red);
        }

        .talk-type-checkbox svg {
            width: 14px;
            height: 14px;
            color: var(--white);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .talk-type-card.selected .talk-type-checkbox svg {
            opacity: 1;
        }

        .past-speakers-section {
            background: var(--white);
            padding: 60px 0;
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
        }

        .logos-strip {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 48px;
            margin-top: 32px;
        }

        .org-logo {
            width: 120px;
            height: 60px;
            background: var(--off-white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .org-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .acknowledgement {
            font-size: 0.85rem;
            color: var(--medium-gray);
            line-height: 1.6;
            margin-top: 24px;
            padding: 20px;
            background: var(--off-white);
            border-radius: 10px;
            border-left: 4px solid var(--gold);
        }

        .price-tag {
            display: inline-block;
            background: var(--gold);
            color: var(--primary-navy);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.25rem;
            margin-top: 16px;
        }

        @media (max-width: 992px) {
            .value-props-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .talk-types-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .value-props-grid,
            .talk-types-grid {
                grid-template-columns: 1fr;
            }

            .form-navigation {
                flex-direction: column;
                gap: 16px;
            }

            .btn-next,
            .btn-back {
                width: 100%;
                justify-content: center;
            }
        }

        /* --- Why Attend Page Styles --- */
        .why-attend-page .hero {
            min-height: 50vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .why-attend-page .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.85) 0%, rgba(7, 20, 36, 0.95) 100%),
                url('https://images.unsplash.com/photo-1515187029135-18ee286d815b?w=1920&q=80') center/cover no-repeat;
        }

        .why-attend-page .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            padding: 140px 20px 80px;
            width: 100%;
        }



        .audience-section .audience-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            margin-top: 60px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .audience-section .audience-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 48px;
            flex: 1;
            min-width: 340px;
            max-width: 500px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
        }

        .audience-section .audience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: #c53030;
        }

        .audience-section .audience-card h3 {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 1.75rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 24px;
        }

        .audience-section .audience-card h3 svg {
            width: 36px;
            height: 36px;
            color: #c53030;
            flex-shrink: 0;
        }

        .audience-section .audience-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 32px;
        }

        .audience-section .audience-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .audience-section .audience-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 1rem;
            color: #334155;
            font-weight: 500;
        }

        .audience-section .audience-list li svg {
            width: 20px;
            height: 20px;
            color: #22c55e;
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .audience-section .audience-card {
                padding: 32px;
                min-width: 100%;
            }

            .audience-section .audience-card h3 {
                font-size: 1.5rem;
            }
        }

        /* Audience Section */
        .audience-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand-red);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .audience-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 32px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--brand-red);
        }

        .audience-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(197, 48, 48, 0.1);
            color: var(--brand-red);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .audience-list {
            list-style: none;
            padding: 0;
        }

        .audience-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.95rem;
            color: var(--dark-gray);
        }

        .audience-list li:last-child {
            border-bottom: none;
        }

        .audience-list li svg {
            width: 20px;
            height: 20px;
            color: var(--brand-red);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Glance Section */
        .glance-section {
            background: var(--white);
            padding: 60px 0;
            margin-top: -40px;
            position: relative;
            z-index: 20;
        }

        .glance-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
            padding: 48px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 32px;
            border: 1px solid var(--light-gray);
        }

        .glance-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .glance-icon {
            width: 56px;
            height: 56px;
            background: var(--off-white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .glance-icon svg {
            width: 28px;
            height: 28px;
            color: var(--brand-red);
        }

        .glance-text h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 2px;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--gray-light);
            padding: 100px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--off-white);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }

        .quote-mark {
            font-size: 4rem;
            font-weight: 700;
            color: var(--brand-red);
            opacity: 0.2;
            line-height: 1;
            position: absolute;
            top: 20px;
            left: 28px;
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--primary-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-placeholder {
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 2px;
        }

        .testimonial-info p {
            font-size: 0.8rem;
            color: var(--medium-gray);
        }

        /* Benefits Grid */
        .benefits-section {
            background: var(--off-white);
            padding: 100px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--brand-red);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--brand-red);
        }

        /* CTA Strip Override for Why Attend */
        .why-attend-page .cta-strip {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--charcoal) 100%);
            padding: 60px 0;
        }

        .why-attend-page .cta-strip-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        /* Responsive Why Attend */
        @media (max-width: 1024px) {

            .audience-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Expo Brochure Styles */
        .hero-expo {
            min-height: 60vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: var(--white);
        }

        .hero-expo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.85) 0%, rgba(7, 20, 36, 0.95) 100%),
                url('assets/img/banners/silos.png') center/cover no-repeat;
            z-index: 1;
        }

        @media (max-width: 768px) {

            .audience-grid,
            .testimonials-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .glance-card {
                padding: 32px 24px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* --- Sponsors Page Styles --- */
        .sponsors-page .hero {
            min-height: 70vh;
            background: var(--primary-navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .sponsors-page .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(7, 20, 36, 0.75) 0%, rgba(7, 20, 36, 0.9) 100%),
                url('https://images.unsplash.com/photo-1591115765373-5207764f72e7?w=1920&q=80') center/cover no-repeat;
        }

        .sponsors-page .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
            padding: 140px 20px 80px;
            width: 100%;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        /* Sponsor Tiers Section */
        .tiers-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .tier-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--light-gray);
            display: flex;
            flex-direction: column;
        }

        .tier-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .tier-bar {
            height: 6px;
        }

        .tier-bar.platinum {
            background: linear-gradient(90deg, #E5E4E2, #B8B8B8, #E5E4E2);
        }

        .tier-bar.gold {
            background: linear-gradient(90deg, var(--gold), #C9963A, var(--gold));
        }

        .tier-bar.silver {
            background: linear-gradient(90deg, #C0C0C0, #A8A8A8, #C0C0C0);
        }

        .tier-bar.category {
            background: var(--brand-red);
        }

        .tier-content {
            padding: 32px 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .tier-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .tier-price {
            font-size: 0.875rem;
            color: var(--medium-gray);
            margin-bottom: 24px;
        }

        .tier-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 24px;
        }

        .tier-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.875rem;
            color: var(--dark-gray);
        }

        .tier-benefits li svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .tier-card.platinum .tier-benefits li svg {
            color: #9CA3AF;
        }

        .tier-card.gold .tier-benefits li svg {
            color: var(--gold);
        }

        .tier-card.silver .tier-benefits li svg {
            color: #9CA3AF;
        }

        .tier-card.category .tier-benefits li svg {
            color: var(--brand-red);
        }

        .tier-cta {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .tier-card.platinum .tier-cta {
            background: var(--charcoal);
            color: var(--white);
        }

        .tier-card.gold .tier-cta {
            background: var(--gold);
            color: var(--charcoal);
        }

        .tier-card.silver .tier-cta {
            background: var(--light-gray);
            color: var(--charcoal);
        }

        .tier-card.category .tier-cta {
            background: var(--brand-red);
            color: var(--white);
        }

        /* Logo Wall */
        .logo-wall-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 32px;
            align-items: center;
        }

        .logo-item {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
        }

        .logo-placeholder {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Sponsors */
        @media (max-width: 1200px) {
            .tiers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .logo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {

            .tiers-grid,
            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {

            .tiers-grid,
            .logo-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Success / Thank You Pages --- */
        .success-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--primary-navy) 0%, #0a1f3d 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .success-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/img/banners/awards-dinner.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .success-hero .container {
            position: relative;
            z-index: 10;
        }

        .success-hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .success-hero h1 span {
            color: var(--gold);
        }

        .success-hero .intro-text {
            font-size: 1.125rem;
            color: var(--light-gray);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .referral-section {
            padding: 0 0 100px;
            background: var(--off-white);
        }

        .referral-card {
            margin-top: -80px;
            position: relative;
            z-index: 20;
        }

        .quotes-section {
            padding: 100px 0;
            background: var(--white);
        }

        .quote-card {
            background: var(--primary-navy);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .quote-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .quote-logo {
            height: 80px;
            margin-bottom: 10px;
            filter: grayscale(1);
            opacity: 0.6;
            transition: all 0.3s ease;
            object-fit: contain;
            width: 100%;
        }

        .quote-card:hover .quote-logo {
            filter: grayscale(0);
            opacity: 1;
        }

        .quote-text {
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.6;
            color: var(--white);
            font-style: italic;
        }

        @media (max-width: 768px) {
            .referral-card {
                margin-top: -40px;
            }
        }

        /* --- SEO Landing Pages --- */
        .hero-seo {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--primary-navy) 0%, #0a1f3d 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-seo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/img/banners/silos.png') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-seo .container {
            position: relative;
            z-index: 2;
        }

        .hero-seo h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero-seo h1 span {
            color: var(--gold);
        }

        .hero-seo .hero-eyebrow {
            display: block;
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .hero-seo .hero-subtitle {
            font-size: 1.25rem;
            color: var(--light-gray);
            max-width: 700px;
            margin-bottom: 40px;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            position: relative;
            z-index: 10;
        }

        .seo-content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .seo-main-text h2 {
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 24px;
        }

        .seo-main-text h3 {
            font-size: 1.5rem;
            color: var(--primary-navy);
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .seo-main-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .seo-main-text ul {
            margin-bottom: 30px;
        }

        .seo-main-text li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .seo-main-text li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

        .seo-sidebar .cta-card {
            background: var(--primary-navy);
            padding: 40px;
            border-radius: 20px;
            color: var(--white);
        }

        .seo-sidebar .cta-card h4 {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .seo-sidebar .cta-card p {
            color: var(--light-gray);
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .related-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .related-link-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .related-link-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .related-link-card h4 {
            color: var(--gold);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .related-link-card p {
            color: var(--light-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        @media (max-width: 992px) {
            .seo-content-grid {
                grid-template-columns: 1fr;
            }

            .related-links-grid {
                grid-template-columns: 1fr;
            }
        }

        /* EXHIBITOR SECTION (Independent from Sponsors) */
        .exhibitors-tier {
            margin-top: 60px;
            text-align: center;
        }

        .exhibitor-tier-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #94a3b8;
            margin-bottom: 35px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.8;
        }

        .exhibitor-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 0 10px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .exhibitor-card {
            background: var(--white);
            border-radius: 16px;
            padding: 35px;
            /* Large padding to make images smaller within the box */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.06);
            aspect-ratio: 16/9;
            width: 100%;
            overflow: hidden;
        }

        .exhibitor-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
            border-color: var(--brand-red);
        }

        .exhibitor-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
            filter: grayscale(10%) contrast(105%);
        }

        .exhibitor-card:hover img {
            transform: scale(1.1);
            filter: grayscale(0%) contrast(110%);
        }

        @media (max-width: 991px) {
            .exhibitor-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .exhibitor-card {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .exhibitor-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
        }

        /* PARTNER SECTION (Independent from Exhibitors) */
        .partners-tier {
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .partner-tier-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: #94a3b8;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.7;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            padding: 0 10px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-card {
            background: var(--white);
            border-radius: 12px;
            padding: 0;
            /* No padding to maximize logo width */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.04);
            aspect-ratio: 16/9;
            width: 100%;
            overflow: hidden;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--gold);
        }

        .partner-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            filter: none;
            opacity: 1;
            transform: scale(1.3);
        }

        .partner-card:hover img {
            transform: scale(1.4);
            filter: grayscale(0%) opacity(1);
        }

        @media (max-width: 1024px) {
            .partner-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 600px) {
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 15px;
            }

            .partner-card {
                padding: 30px;
            }
        }

        /* ==========================================================================
   Poll Component Styles
   ========================================================================== */
        .poll-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .poll-card h4 {
            color: var(--primary-navy);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .poll-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .poll-option {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            background: var(--off-white);
            border: 2px solid transparent;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .poll-option:hover {
            border-color: var(--gold);
            background: var(--white);
        }

        .poll-option.selected {
            border-color: var(--brand-red);
            background: rgba(197, 48, 48, 0.03);
        }

        .poll-option input {
            display: none;
        }

        .option-text {
            font-size: 0.9rem;
            color: var(--charcoal);
            font-weight: 500;
            z-index: 1;
        }

        .btn-poll-submit {
            width: 100%;
            padding: 12px;
            background: var(--primary-navy);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-poll-submit:hover {
            background: var(--brand-red);
            transform: translateY(-2px);
        }

        .btn-poll-submit:disabled {
            background: var(--medium-gray);
            cursor: not-allowed;
            transform: none;
        }

        /* Results State */
        .poll-results {
            display: none;
        }

        .poll-results.active {
            display: block;
        }

        .result-item {
            margin-bottom: 16px;
        }

        .result-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .result-bar-bg {
            height: 8px;
            background: var(--light-gray);
            border-radius: 4px;
            overflow: hidden;
        }

        .result-bar-fill {
            height: 100%;
            background: var(--gold);
            width: 0;
            transition: width 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
        }

        .total-votes {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-top: 15px;
            text-align: center;
        }