        /* ----- Reset & Variables ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #DA6707;
            --primary-dark: #b85506;
            --primary-light: #f5a86a;
            --green: #0E8B28;
            --green-dark: #0a6d1f;
            --yellow: #C1C100;
            --gradient-green: linear-gradient(135deg, #0E8B28 0%, #C1C100 100%);
            --deep: #0f172a;
            --slate: #475569;
            --gray: #64748b;
            --light: #f8fafc;
            --white: #ffffff;
            --radius: 16px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--white);
            color: var(--deep);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ----- Buttons ----- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            min-height: 60px;
            min-width: 200px;
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 8px 32px rgba(218, 103, 7, 0.25);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(218, 103, 7, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--deep);
            border: 2px solid rgba(0, 0, 0, 0.15);
        }
        .btn-outline:hover {
            background: rgba(0, 0, 0, 0.04);
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .btn-dark {
            background: var(--deep);
            color: var(--white);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .btn-dark:hover {
            background: var(--slate);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .btn-block {
            width: 100%;
            min-width: unset;
        }

        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
        }

        /* ----- Header ----- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(24px) saturate(200%);
            -webkit-backdrop-filter: blur(24px) saturate(200%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 16px 0;
            transition: var(--transition);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 16px;
        }

        .header-logo {
            height: 52px;
            width: auto;
            flex-shrink: 0;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.04));
            transition: var(--transition);
        }
        .header-logo:hover {
            filter: drop-shadow(0 4px 20px rgba(218, 103, 7, 0.15));
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: nowrap;
            flex-shrink: 0;
        }

        .header-actions .btn {
            padding: 12px 28px;
            font-size: 0.9rem;
            min-height: 48px;
            min-width: auto;
            border-radius: 40px;
        }

        .header-actions .btn-outline {
            border-width: 2px;
            padding: 12px 24px;
        }

        /* ----- Hero ----- */
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.50);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(2.8rem, 6vw, 4.4rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .subhead {
            font-size: clamp(1.1rem, 1.6vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            margin-bottom: 12px;
        }

        .hero-content .date-location {
            font-size: clamp(1.1rem, 1.4vw, 1.4rem);
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 32px;
        }

        .hero-content .date-location span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .countdown-wrap {
            background: rgba(255, 255, 255, 0.10);
            border-radius: var(--radius);
            padding: 20px 32px;
            margin-bottom: 32px;
            display: inline-flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.10);
        }

        .countdown-wrap .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
        }

        .countdown-digits {
            display: flex;
            gap: 16px;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--white);
        }

        .countdown-digits .unit {
            font-size: 0.65rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.4);
            display: block;
            text-align: center;
            margin-top: 2px;
            text-transform: uppercase;
        }

        .countdown-digits .digit-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.30);
            padding: 6px 14px;
            border-radius: 12px;
            min-width: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 48px;
            margin: 24px 0 36px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }

        .hero-trust-item {
            display: flex;
            align-items: baseline;
            gap: 6px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-trust-item strong {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 800;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-buttons .btn-outline {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.3);
        }
        .hero-buttons .btn-outline:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: var(--white);
        }

        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .image-card {
            border-radius: var(--radius);
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: flex-end;
            padding: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            background-size: cover;
            background-position: center;
            background-color: #1a2a3a;
        }
        .image-card:hover {
            transform: scale(1.01);
            border-color: rgba(218, 103, 7, 0.3);
        }

        .image-card .card-label {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            padding: 16px 24px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        .image-card .card-label h3 {
            color: #fff;
            font-size: 1.2rem;
            margin: 0;
        }
        .image-card .card-label p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.9rem;
        }

        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .hero-badge-row span {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        /* ----- Section titles ----- */
        .section-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            color: var(--deep);
        }

        .section-sub {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 640px;
            margin-bottom: 48px;
            font-weight: 400;
        }

        .section {
            padding: 80px 0;
        }

        .section-light {
            background: var(--white);
        }

        .section-dark {

            background: #f8fafc;
            color: var(--deep);
        }
        .section-dark .section-sub {
            color: var(--gray);
        }

        /* ----- Cards ----- */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .card-icon {
            font-size: 2.6rem;
            margin-bottom: 18px;
        }
        .card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .section-dark .card {
            background: var(--white);
            border-color: rgba(0, 0, 0, 0.02);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        }
        .section-dark .card p {
            color: var(--gray);
        }
        .section-dark .card:hover {
            background: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        /* ----- Agenda ----- */
        .agenda-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .agenda-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            border-left: 6px solid var(--primary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .agenda-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }
        .agenda-item .day {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            font-weight: 700;
        }
        .agenda-item h4 {
            font-size: 1.2rem;
            margin: 8px 0 6px;
        }
        .agenda-item p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .section-dark .agenda-item {
            background: var(--white);
            border-left-color: var(--primary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        }
        .section-dark .agenda-item p {
            color: var(--gray);
        }
        .section-dark .agenda-item:hover {
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        /* ----- Speakers ----- */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 30px;
        }

        .speaker-card {
            text-align: center;
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 16px 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .speaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .speaker-avatar {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 14px;
            border: 3px solid var(--primary);
            box-shadow: 0 8px 24px rgba(218, 103, 7, 0.08);
            transition: var(--transition);
        }
        .speaker-card:hover .speaker-avatar {
            border-color: var(--primary-dark);
            transform: scale(1.05);
        }
        .speaker-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .speaker-card .name {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        .speaker-card .title {
            font-size: 0.8rem;
            color: var(--gray);
        }
        .speaker-card .org {
            font-size: 0.75rem;
            color: var(--gray);
            opacity: 0.7;
        }

        .section-dark .speaker-card {
            background: var(--white);
            border-color: rgba(0, 0, 0, 0.02);
        }
        .section-dark .speaker-card .title,
        .section-dark .speaker-card .org {
            color: var(--gray);
        }
        .section-dark .speaker-card:hover {
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        /* ----- Scope ----- */
        .scope-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .scope-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            border-top: 6px solid var(--primary);
            transition: var(--transition);
        }
        .scope-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }
        .scope-card h4 {
            font-size: 1.15rem;
            margin-bottom: 14px;
        }
        .scope-card ul {
            list-style: none;
            padding: 0;
        }
        .scope-card ul li {
            padding: 6px 0;
            font-size: 0.9rem;
            color: var(--gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .scope-card ul li::before {
            content: '\25B8';
            color: var(--primary);
            font-weight: 700;
        }
        .scope-card ul li:last-child {
            border-bottom: none;
        }

        .section-dark .scope-card {
            background: var(--white);
            border-top-color: var(--primary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        }
        .section-dark .scope-card ul li {
            color: var(--gray);
            border-bottom-color: rgba(0, 0, 0, 0.04);
        }
        .section-dark .scope-card:hover {
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        /* ----- Exhibitors - Dual Track with Edge Fade (no mask-image) ----- */
        .exhibitors-section {
            background: #f8fafc;
            padding: 80px 0 60px;
            overflow: hidden;
            position: relative;
        }

        .exhibitors-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 139, 40, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .exhibitors-section .container {
            position: relative;
            z-index: 1;
        }

        .exhibitors-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .exhibitors-header .section-title {
            margin-bottom: 8px;
        }

        .exhibitors-header .section-sub {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0;
        }

        .exhibitors-header .accent-line {
            width: 60px;
            height: 4px;
            background: var(--gradient-green);
            border-radius: 4px;
            margin: 16px auto 0;
        }

        /* Scroll wrapper with pseudo-element edge fade (no mask-image) */
        .scrolling-wrapper {
            overflow: hidden;
            white-space: nowrap;
            margin: 8px 0 20px;
            position: relative;
            width: 100%;
            padding: 12px 0;
        }

        /* Edge fade using pseudo-elements - does not clip inner borders */
        .scrolling-wrapper::before,
        .scrolling-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .scrolling-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
        }

        .scrolling-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
        }

        .logo-track {
            display: inline-flex;
            align-items: center;
            gap: 28px;
            animation: scrollLeft 45s linear infinite;
            width: max-content;
        }

        .logo-track-right {
            animation: scrollRight 45s linear infinite;
        }

        .logo-track:hover,
        .logo-track-right:hover {
            animation-play-state: paused;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            height: 112px;
            padding: 20px 28px;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
            border: 1.5px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex-shrink: 0;
            position: relative;
        }

        /* Gradient glow border on hover - does not affect visibility */
        .logo-item::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 16px;
            background: var(--gradient-green);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .logo-item:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .logo-item:hover::after {
            opacity: 1;
        }

        .logo-item img {
            max-height: 64px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .logo-item:hover img {
            transform: scale(1.04);
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* ----- Nigeria stats ----- */
        .nigeria-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .nigeria-stat {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 24px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .nigeria-stat:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }
        .nigeria-stat .number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nigeria-stat .label {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 8px 0 4px;
        }
        .nigeria-stat .desc {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .section-dark .nigeria-stat {
            background: var(--white);
            border-color: rgba(0, 0, 0, 0.02);
        }
        .section-dark .nigeria-stat .desc {
            color: var(--gray);
        }
        .section-dark .nigeria-stat:hover {
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        /* ----- Review ----- */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .review-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .review-card .icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
        }
        .review-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .review-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 12px;
        }
        .review-card .media-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin-top: 8px;
        }
        .review-card .media-logos span {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--gray);
            opacity: 0.7;
            letter-spacing: 0.3px;
        }
        .review-card .quote {
            font-style: italic;
            font-size: 0.95rem;
            color: var(--gray);
            background: rgba(0, 0, 0, 0.02);
            padding: 12px 16px;
            border-radius: 12px;
            border-left: 3px solid var(--primary);
            text-align: left;
            width: 100%;
        }
        .review-card .photo-placeholder {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 0.85rem;
            border: 1px solid rgba(0, 0, 0, 0.04);
            margin-bottom: 8px;
        }

        .section-dark .review-card {
            background: var(--white);
            border-color: rgba(0, 0, 0, 0.02);
        }
        .section-dark .review-card p,
        .section-dark .review-card .quote,
        .section-dark .review-card .media-logos span {
            color: var(--gray);
        }
        .section-dark .review-card .photo-placeholder {
            background: #f1f5f9;
            border-color: rgba(0, 0, 0, 0.04);
            color: var(--gray);
        }
        .section-dark .review-card .quote {
            background: rgba(0, 0, 0, 0.02);
            border-left-color: var(--primary);
        }
        .section-dark .review-card:hover {
            background: var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .review-bottom {
            text-align: center;
            margin-top: 20px;
        }

        /* ----- CTA dual ----- */
        .cta-dual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .cta-box {
            background: var(--white);
            border-radius: var(--radius);
            padding: 44px 36px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: var(--transition);
        }
        .cta-box:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .cta-box h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
            color: var(--deep);
        }
        .cta-box .price-tag {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 16px;
        }
        .cta-box ul {
            list-style: none;
            padding: 0;
            margin: 16px 0 28px;
            text-align: left;
            display: inline-block;
        }
        .cta-box ul li {
            padding: 6px 0;
            font-size: 0.95rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cta-box ul li::before {
            content: '\2713';
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .cta-contact {
            margin-top: 40px;
            padding-top: 28px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .cta-contact a {
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
        }
        .cta-contact a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ----- Footer ----- */
        .footer {
            background: var(--deep);
            color: rgba(255, 255, 255, 0.5);
            padding: 48px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.9rem;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.4);
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--primary);
        }
        .footer-socials {
            display: flex;
            gap: 20px;
        }
        .footer-socials a {
            font-size: 1.4rem;
            transition: var(--transition);
        }
        .footer-socials a:hover {
            transform: translateY(-4px);
            color: var(--primary);
        }

        /* ============================================================
           EXHIBITOR REGISTRATION FORM – NEW STYLES
           ============================================================ */
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .form-header .section-title {
            margin-bottom: 8px;
        }
        .form-header .section-sub {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px 30px;
            background: var(--white);
            padding: 40px 40px 30px;
            border-radius: var(--radius);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.02);
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--deep);
            letter-spacing: 0.3px;
        }

        .form-group label .required {
            color: #e53e3e;
            margin-left: 2px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-family: var(--font);
            font-size: 1rem;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1.5px solid #e2e8f0;
            background: #fafcfd;
            transition: var(--transition);
            color: var(--deep);
            width: 100%;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(218, 103, 7, 0.10);
            background: var(--white);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #a0aec0;
            font-weight: 400;
        }

        .form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 44px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }

        .form-submit-row .btn {
            min-width: 240px;
        }

        .form-hint {
            font-size: 0.85rem;
            color: var(--gray);
            text-align: center;
            margin: 4px 0 0;
        }

        .form-status {
            margin-top: 24px;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 0.95rem;
            display: none;
            text-align: center;
            transition: var(--transition);
        }

        .form-status.success {
            display: block;
            background: #f0fff4;
            border: 1px solid #48bb78;
            color: #22543d;
        }

        .form-status.error {
            display: block;
            background: #fff5f5;
            border: 1px solid #fc8181;
            color: #742a2a;
        }

        .form-status a {
            color: var(--primary);
            font-weight: 600;
        }
        .form-status a:hover {
            text-decoration: underline;
        }

        /* ----- Responsive ----- */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero {
                min-height: auto;
                padding: 140px 0 60px;
            }
            .grid-3,
            .agenda-grid,
            .scope-grid,
            .nigeria-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-dual {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .speakers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .review-grid {
                grid-template-columns: 1fr 1fr;
            }
            .logo-item {
                min-width: 160px;
                height: 96px;
                padding: 16px 20px;
            }
            .logo-item img {
                max-height: 50px;
                max-width: 120px;
            }
            .scrolling-wrapper::before,
            .scrolling-wrapper::after {
                width: 50px;
            }
            .form-grid {
                grid-template-columns: 1fr 1fr;
                padding: 30px 24px 20px;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 12px 0;
                background: rgba(255, 255, 255, 0.94);
            }
            .header .container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 10px;
            }
            .header-logo {
                height: 40px;
            }
            .header-actions {
                gap: 8px;
            }
            .header-actions .btn {
                padding: 8px 16px;
                font-size: 0.8rem;
                min-height: 36px;
                border-radius: 30px;
            }
            .header-actions .btn-outline {
                border-width: 1.8px;
                padding: 8px 14px;
            }

            .hero {
                padding: 110px 0 40px;
                min-height: auto;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .countdown-wrap {
                padding: 14px 18px;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .countdown-digits {
                font-size: 1.3rem;
                justify-content: center;
                gap: 8px;
            }
            .countdown-digits .digit-group {
                min-width: 44px;
                padding: 4px 8px;
            }
            .hero-trust {
                gap: 12px 24px;
                margin: 16px 0 24px;
                padding-top: 16px;
            }
            .hero-trust-item strong {
                font-size: 1.2rem;
            }
            .hero-buttons .btn {
                min-width: 140px;
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .grid-3,
            .agenda-grid,
            .scope-grid,
            .nigeria-grid {
                grid-template-columns: 1fr;
            }
            .speakers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .speaker-card {
                padding: 20px 12px;
            }
            .speaker-avatar {
                width: 72px;
                height: 72px;
            }
            .review-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section {
                padding: 56px 0;
            }
            .cta-box {
                padding: 32px 20px;
            }
            .footer .container {
                flex-direction: column;
                text-align: center;
            }
            .image-card {
                padding: 16px;
                aspect-ratio: 16 / 10;
            }
            .image-card .card-label {
                padding: 12px 16px;
            }
            .image-card .card-label h3 {
                font-size: 1rem;
            }
            .image-card .card-label p {
                font-size: 0.8rem;
            }

            .exhibitors-section {
                padding: 56px 0 40px;
            }
            .logo-item {
                min-width: 140px;
                height: 80px;
                padding: 12px 16px;
            }
            .logo-item img {
                max-height: 42px;
                max-width: 100px;
            }
            .logo-track {
                gap: 18px;
            }
            .scrolling-wrapper::before,
            .scrolling-wrapper::after {
                width: 40px;
            }
            .scrolling-wrapper {
                padding: 8px 0;
            }

            /* Form responsive */
            .form-grid {
                grid-template-columns: 1fr;
                padding: 24px 16px 16px;
                gap: 16px;
            }
            .form-group.full-width {
                grid-column: 1;
            }
            .form-submit-row .btn {
                min-width: 100%;
            }
            .form-status {
                font-size: 0.9rem;
                padding: 14px 16px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 10px 0;
            }
            .header-logo {
                height: 34px;
            }
            .header-actions .btn {
                padding: 6px 12px;
                font-size: 0.7rem;
                min-height: 30px;
                border-radius: 24px;
            }
            .header-actions .btn-outline {
                padding: 6px 10px;
                border-width: 1.5px;
            }
            .header-actions {
                gap: 6px;
            }

            .hero {
                padding: 90px 0 30px;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-content .date-location {
                font-size: 0.9rem;
                flex-direction: column;
                gap: 4px;
            }
            .btn {
                min-width: 120px;
                padding: 10px 18px;
                font-size: 0.85rem;
                min-height: 44px;
            }
            .speakers-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .speaker-card {
                padding: 16px 10px;
            }
            .speaker-avatar {
                width: 60px;
                height: 60px;
            }

            .logo-item {
                min-width: 110px;
                height: 64px;
                padding: 8px 12px;
            }
            .logo-item img {
                max-height: 32px;
                max-width: 74px;
            }
            .logo-track {
                gap: 12px;
            }
            .exhibitors-header .section-title {
                font-size: 1.6rem;
            }
            .scrolling-wrapper::before,
            .scrolling-wrapper::after {
                width: 28px;
            }
            .scrolling-wrapper {
                padding: 6px 0;
            }

            .form-grid {
                padding: 16px 12px 12px;
                gap: 12px;
            }
            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 0.9rem;
                padding: 10px 12px;
            }
            .form-submit-row .btn {
                font-size: 0.9rem;
                padding: 14px 20px;
                min-height: 50px;
            }
        }

        @media (max-width: 374px) {
            .header .container {
                flex-wrap: wrap;
                justify-content: space-between;
            }
            .header-actions {
                flex-wrap: wrap;
                justify-content: flex-end;
                gap: 4px;
            }
            .header-actions .btn {
                font-size: 0.6rem;
                padding: 4px 8px;
                min-height: 24px;
            }
            .header-logo {
                height: 28px;
            }
            .logo-item {
                min-width: 90px;
                height: 54px;
                padding: 6px 8px;
            }
            .logo-item img {
                max-height: 26px;
                max-width: 60px;
            }
            .logo-track {
                gap: 10px;
            }
            .scrolling-wrapper::before,
            .scrolling-wrapper::after {
                width: 20px;
            }
            .form-grid {
                padding: 12px 8px 8px;
                gap: 10px;
            }
            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 0.8rem;
                padding: 8px 10px;
            }
        }