/* =========================================================
   BHARAT LEADERSHIP SUMMIT 2026 — GLOBAL PAGE STYLES
   Unified, Premium Design System for All Pages
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    --navy: #061522;
    --navy-dark: #030b13;
    --navy2: #0b2439;
    --navy3: #102f48;
    --gold: #d7ad5b;
    --gold-hover: #e5bd6e;
    --gold-light: #f1d798;
    --gold-dark: #9b7129;
    --cream: #f7f5f0;
    --cream-dark: #eee9dc;
    --white: #ffffff;
    --text: #18212b;
    --text-muted: #64748b;
    --text-light: #b9c8d3;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(215, 173, 91, 0.35);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(6, 21, 34, 0.06);
    --shadow-md: 0 10px 30px rgba(6, 21, 34, 0.09);
    --shadow-lg: 0 20px 45px rgba(6, 21, 34, 0.14);
}

/* Base resets & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif-font {
    font-family: Georgia, 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================================
   TOP ANNOUNCEMENT BAR (STANDALONE & GLOBAL)
========================================================= */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1001;
    background: var(--gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.ticker-viewport {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: blsTicker 54s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-right: 36px;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.ticker-item::after {
    content: "•";
    color: #59420e;
    font-size: 16px;
}

.ticker-copy {
    display: inline-block;
}

@keyframes blsTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================
   HEADER (STANDALONE & GLOBAL)
========================================================= */

header,
.standalone-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 21, 34, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header .navbar,
.standalone-header .navbar {
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo,
.standalone-header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

nav,
#navigation,
#page-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a,
#navigation a,
#page-navigation a {
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 6px 2px;
    position: relative;
    transition: color 0.2s ease;
}

nav a:hover,
#navigation a:hover,
#page-navigation a:hover,
nav a[aria-current="page"],
#page-navigation a[aria-current="page"] {
    color: var(--gold-light);
}

nav a[aria-current="page"]::after,
#page-navigation a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-contact {
    background: var(--gold) !important;
    color: #061522 !important;
    padding: 10px 18px !important;
    font-weight: 800 !important;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-contact:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    color: #061522 !important;
}

.nav-contact::after {
    display: none !important;
}

.mobile-btn {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    border: 0;
    background: none;
    padding: 8px;
    line-height: 1;
}

/* =========================================================
   BUTTONS & COMMON UI
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--gold);
    color: #061522;
    box-shadow: 0 4px 15px rgba(215, 173, 91, 0.25);
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 173, 91, 0.35);
    color: #061522;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: #ffffff;
    color: #061522;
    transform: translateY(-2px);
}

.kicker {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dark .kicker,
.page-section-dark .kicker,
.pitch-section-dark .kicker {
    color: var(--gold-light);
}

/* =========================================================
   STANDALONE PAGE HERO
========================================================= */

.standalone-page {
    padding-top: 116px;
    background: var(--cream);
}

.page-hero {
    min-height: 520px;
    position: relative;
    background: linear-gradient(108deg, rgba(3, 14, 24, 0.97) 0%, rgba(6, 21, 34, 0.9) 60%, rgba(12, 40, 64, 0.85) 100%), url("images/about.jpg") center/cover;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 70px 0 80px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.04;
    margin: 12px 0 16px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    line-height: 1.25;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 16px;
    max-width: 800px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 720px;
    line-height: 1.7;
}

.page-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* =========================================================
   CLEAN PREMIUM PRICING & EVENT CARD
========================================================= */

.premium-pricing-card {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.pricing-block {
    display: flex;
    flex-direction: column;
}

.pricing-block .pricing-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-values {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pricing-values del {
    color: #8998a7;
    font-size: 20px;
    font-family: Georgia, serif;
}

.pricing-values strong {
    color: var(--gold);
    font-size: 38px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pricing-badge {
    background: var(--gold);
    color: #061522;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.pricing-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
}

.pricing-meta {
    display: flex;
    flex-direction: column;
}

.pricing-meta small {
    color: #8998a7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pricing-meta span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

/* =========================================================
   SECTIONS & GRIDS
========================================================= */

.page-section {
    padding: 85px 0;
}

.page-section-dark {
    background: var(--navy);
    color: #ffffff;
}

.page-section-cream {
    background: var(--cream);
}

.page-section h2 {
    font-size: clamp(32px, 4.5vw, 50px);
    line-height: 1.1;
    margin: 10px 0 20px;
}

.page-section h2 span {
    color: var(--gold);
}

.page-section p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}

.page-section-dark p {
    color: var(--text-light);
}

/* Two-column layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================================================
   ELEGANT STEP-BY-STEP REGISTRATION FLOW
========================================================= */

.bls-step-flow {
    margin: 40px 0 20px;
}

.bls-step-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.bls-step-item {
    position: relative;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-section-dark .bls-step-item {
    background: var(--navy2);
    border-color: var(--border-dark);
}

.bls-step-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.bls-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bls-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    border: 1px solid var(--gold);
}

.page-section-dark .bls-step-num {
    background: var(--navy-dark);
}

.bls-step-arrow {
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
}

.bls-step-item:last-child .bls-step-arrow {
    display: none;
}

.bls-step-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--navy);
    font-family: inherit;
    font-weight: 700;
}

.page-section-dark .bls-step-item h3 {
    color: #ffffff;
}

.bls-step-item p {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-muted);
}

.page-section-dark .bls-step-item p {
    color: var(--text-light);
}

/* =========================================================
   REGISTRATION SECTION & LEFT CONTENT CARD (CONTEST)
========================================================= */

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: stretch;
}

.reg-left-card,
.page-form {
    box-sizing: border-box;
    padding: 38px 36px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.reg-left-card {
    background: var(--navy);
    color: #ffffff;
    border: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.reg-left-card::before {
    content: "BLS 2026";
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: Georgia, serif;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.025);
    font-weight: 800;
    pointer-events: none;
}

.reg-card-header,
.form-header {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header {
    border-bottom: 1px solid var(--border);
}

.reg-panel-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px 0;
    min-height: 14px;
}

.reg-left-card .reg-panel-label {
    color: var(--gold-light);
}

.page-form .reg-panel-label {
    color: var(--gold-dark);
}

.reg-left-card h2,
.form-header h3 {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    font-family: inherit;
    font-weight: 800;
}

.reg-left-card h2 span {
    color: var(--gold);
}

.reg-left-card .reg-card-header p,
.form-header p {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    min-height: 44px;
}

.reg-left-card .reg-card-header p {
    color: var(--text-light);
}

.form-header p {
    color: var(--text-muted);
}

.reg-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 25px 0;
}

.reg-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: #e2e8f0;
}

.reg-benefit-list li .reg-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(215, 173, 91, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-top: 1px;
}

.reg-price-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.reg-price-box .price-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.reg-price-box .price-val {
    font-size: 32px;
    font-family: Georgia, serif;
    color: #ffffff;
    margin: 4px 0;
}

.reg-price-box p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* =========================================================
   PREMIUM REGISTRATION FORM & INLINE REQUIRED STAR (*)
========================================================= */

.page-form {
    background: var(--white);
    padding: 38px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-header h3 {
    font-size: 22px;
    color: var(--navy);
    font-family: inherit;
    font-weight: 800;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.page-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.page-form-full {
    grid-column: 1 / -1;
}

/* Guaranteed Inline Label + Star Structure */
.page-form label,
form label {
    display: flex;
    flex-direction: column;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 700;
    gap: 6px;
}

.page-form label > span,
form label > span {
    display: inline-flex;
    align-items: center;
    line-height: 1.3;
}

.page-form label em,
form label em {
    display: inline !important;
    color: #d97706;
    font-style: normal;
    font-weight: 800;
    margin-left: 3px;
    padding: 0;
    line-height: inherit;
    vertical-align: baseline;
}

.page-form input,
.page-form select,
.page-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fafaf9;
    color: var(--text);
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-form input:focus,
.page-form select:focus,
.page-form textarea:focus {
    border-color: var(--gold);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(215, 173, 91, 0.2);
}

.page-form select {
    cursor: pointer;
}

.page-form textarea {
    min-height: 110px;
    resize: vertical;
}

.form-summary-box {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 16px 20px;
    background: #fdfbf7;
    border: 1px solid rgba(215, 173, 91, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.form-summary-box strong {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.form-summary-box span {
    color: var(--text-muted);
    font-size: 12px;
}

.page-form button[type="submit"] {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    font-size: 14px;
}

.page-form-message {
    grid-column: 1 / -1;
    min-height: 22px;
    color: #b45309;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
}

.form-security-note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
    margin-top: 4px;
}

/* =========================================================
/* =========================================================
   PITCH STAGE SPLIT SCREEN TWO-COLUMN LAYOUT (EQUAL HEIGHT)
========================================================= */

.pitch-stage-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.pitch-stage-left,
.pitch-stage-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.pitch-stage-info-card {
    background: linear-gradient(155deg, #071522 0%, #0b2439 50%, #0d2e49 100%);
    color: #ffffff;
    padding: 38px 34px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.pitch-stage-info-card::before {
    content: "BLS 2026";
    position: absolute;
    right: -15px;
    top: 20px;
    font-family: Georgia, serif;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.025);
    font-weight: 800;
    pointer-events: none;
}

.pitch-stage-info-card .pitch-info-header .kicker {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pitch-stage-info-card .pitch-info-header h2 {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
}

.pitch-stage-info-card .pitch-info-header h2 span {
    color: var(--gold);
}

.pitch-stage-info-card .pitch-info-header p {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

.pitch-stage-mini-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    border: none;
}

.pitch-mini-badge {
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pitch-mini-badge:hover {
    background: rgba(215, 173, 91, 0.06);
    border-color: rgba(215, 173, 91, 0.4);
    transform: translateX(3px);
}

.pitch-mini-badge strong {
    display: block;
    color: var(--gold-light);
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.pitch-mini-badge span {
    display: block;
    color: #a0aec0;
    font-size: 12px;
    line-height: 1.3;
}

.pitch-info-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 20px;
}

.pitch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pitch-info-item:hover {
    transform: translateX(3px);
    border-color: rgba(215, 173, 91, 0.45);
    background: rgba(215, 173, 91, 0.06);
}

.pitch-info-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #061522;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.pitch-info-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.pitch-info-item p {
    color: var(--text-light);
    font-size: 11.5px;
    line-height: 1.45;
    margin: 0;
}

.pitch-info-footer-card {
    padding: 14px 18px;
    background: rgba(215, 173, 91, 0.08);
    border: 1px solid rgba(215, 173, 91, 0.35);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pitch-info-footer-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.pitch-info-footer-card strong {
    display: block;
    font-size: 19px;
    font-family: Georgia, 'Playfair Display', serif;
    color: #ffffff;
    margin: 3px 0 2px;
    white-space: nowrap;
}

.pitch-info-footer-card small {
    display: block;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.4;
}

.page-form.pitch-form {
    padding: 38px 34px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.page-form.pitch-form .form-header {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.page-form.pitch-form .form-header .kicker {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-form.pitch-form .form-header h3 {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: var(--navy);
    font-family: inherit;
    font-weight: 800;
}

.page-form.pitch-form .form-header p {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    color: var(--text-muted);
}

/* =========================================================
   CONSOLIDATED WINNER BENEFITS SECTION (8 CARDS)
========================================================= */

.benefits-intro {
    max-width: 840px;
    margin-bottom: 45px;
}

.benefits-intro p {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.7;
}

.winner-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.winner-benefit-card {
    background: var(--navy2);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    min-height: 215px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.winner-benefit-card:hover {
    transform: translateY(-5px);
    background: #113350;
    border-top-color: var(--gold-light);
}

.winner-benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.winner-benefit-num {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.winner-benefit-icon {
    font-size: 24px;
}

.winner-benefit-card h3 {
    color: #ffffff;
    font-size: 17.5px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: 700;
}

.winner-benefit-card p {
    color: var(--text-light);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   PREMIUM WINNER BENEFIT FLOW & TIMELINE
========================================================= */

.winner-benefits-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.winner-benefit-flow {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.winner-benefit-intro-panel,
.winner-benefit-timeline-panel {
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

.winner-benefit-intro-panel {
    position: sticky;
    top: 135px;
    padding: 38px 34px;
    background: linear-gradient(145deg, #071522 0%, #0b2439 100%);
    border: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.winner-benefit-intro-panel::after {
    content: "BLS 2026";
    position: absolute;
    right: -12px;
    bottom: 18px;
    color: rgba(255,255,255,0.03);
    font-size: 68px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2px;
    pointer-events: none;
}

.winner-benefit-intro-panel h2 {
    color: #ffffff;
    font-family: Georgia, 'Playfair Display', serif;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.15;
    margin: 12px 0 16px;
}

.winner-benefit-intro-panel h2 span {
    color: var(--gold-light);
}

.winner-benefit-intro-panel > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.winner-benefit-highlight {
    margin-top: 28px;
    padding: 18px 20px;
    background: rgba(215, 173, 91, 0.08);
    border: 1px solid rgba(215, 173, 91, 0.30);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.winner-benefit-highlight .highlight-kicker {
    display: block;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.winner-benefit-highlight strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 18px;
    font-family: inherit;
    font-weight: 700;
}

.winner-benefit-highlight small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 11.5px;
    line-height: 1.5;
}

.winner-benefit-timeline-panel {
    padding: 34px 30px;
    background: #091c2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.winner-benefit-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}

.winner-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
}

.winner-timeline-item:last-child {
    padding-bottom: 0;
}

/* Subtle continuous vertical connecting line between steps */
.winner-timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(215, 173, 91, 0.6) 0%, rgba(215, 173, 91, 0.15) 100%);
}

.winner-timeline-item:last-child::before {
    display: none;
}

.winner-timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #061522;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 14px rgba(215, 173, 91, 0.2);
    transition: all 0.25s ease;
}

.winner-timeline-item:hover .winner-timeline-marker {
    border-color: var(--gold-hover);
    background: rgba(215, 173, 91, 0.15);
    box-shadow: 0 0 20px rgba(215, 173, 91, 0.4);
    transform: scale(1.08);
}

.winner-timeline-num {
    color: var(--gold-light);
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.winner-timeline-content {
    flex: 1;
    padding-top: 5px;
}

.winner-timeline-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.winner-timeline-item:hover .winner-timeline-content h4 {
    color: var(--gold-light);
}

.winner-timeline-content p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   PITCH STAGE SPECIFIC STYLES
========================================================= */

.pitch-hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 55px;
    align-items: center;
}

.pitch-funding-badge-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-gold);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.pitch-funding-badge-card .funding-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.pitch-funding-badge-card strong {
    display: block;
    font-size: 46px;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 1.1;
    margin: 10px 0 12px;
}

.pitch-funding-badge-card p {
    color: var(--text-light);
    font-size: 13.5px;
    margin: 0;
}

.pitch-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.pitch-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    min-height: 200px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pitch-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.pitch-card b {
    color: var(--gold);
    font-size: 26px;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 12px;
}

.pitch-card h3 {
    font-size: 18px;
    color: var(--navy);
    font-family: inherit;
    font-weight: 700;
    margin-bottom: 8px;
}

.pitch-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pitch-format-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.pitch-format-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    border-top: 3px solid var(--gold);
}

.pitch-format-item .node-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pitch-format-item h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.pitch-format-item p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* =========================================================
   FAQ ACCORDION
========================================================= */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 35px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    outline: none;
}

.faq-item p {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================================
   AUDIENCE TAGS & POINTS BOARD
========================================================= */

.audience-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.audience-tag {
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    border-radius: var(--radius-sm);
}

.points-board {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.points-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
}

.points-tag {
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.points-desc {
    color: var(--navy);
    font-weight: 600;
}

/* =========================================================
   GLOBAL FOOTER WITH SOCIAL MEDIA ICONS (INC. WHATSAPP)
========================================================= */

footer,
.standalone-page footer {
    background: var(--navy-dark);
    color: #ffffff;
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-brand p {
    color: #778593;
    font-size: 13.5px;
    line-height: 1.65;
    margin: 18px 0 22px;
    max-width: 360px;
}

.footer-grid h4 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-grid a {
    display: block;
    color: #778593;
    font-size: 13px;
    margin: 9px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
    color: var(--gold);
    transform: translateX(2px);
}

/* Social Media Section */
.footer-social-wrap {
    margin-top: 20px;
}

.footer-social-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    background: var(--gold);
    color: #061522;
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(215, 173, 91, 0.3);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.copyright-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #64717d;
    font-size: 11.5px;
}

.copyright-divider a {
    color: #8998a7;
}

.copyright-divider a:hover {
    color: var(--gold);
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1024px) {
    .bls-step-flow-grid,
    .winner-benefit-grid,
    .pitch-card-grid,
    .pitch-format-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .two-col-layout,
    .registration-wrapper,
    .pitch-hero-layout,
    .pitch-stage-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pitch-stage-right {
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        height: 40px;
        padding: 0 15px;
    }

    header,
    .standalone-header {
        top: 40px;
    }

    header .navbar,
    .standalone-header .navbar {
        height: 68px;
    }

    .header-logo {
        height: 38px;
    }

    .mobile-btn {
        display: block;
    }

    nav,
    #navigation,
    #page-navigation {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--navy);
        padding: 15px 6%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    }

    nav.active,
    #navigation.active,
    #page-navigation.active {
        display: flex;
    }

    nav a,
    #navigation a,
    #page-navigation a {
        font-size: 13px;
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-contact {
        margin-top: 10px;
        text-align: center;
    }

    .standalone-page {
        padding-top: 108px;
    }

    .page-hero {
        padding: 50px 0 60px;
        min-height: auto;
    }

    .premium-pricing-card {
        gap: 15px;
        padding: 16px 20px;
    }

    .pricing-divider {
        display: none;
    }

    .page-form {
        padding: 24px 18px;
    }

    .page-form-grid {
        grid-template-columns: 1fr;
    }

    .reg-left-card {
        padding: 28px 20px;
    }

    .pitch-stage-right {
        min-height: auto;
        height: auto;
    }

    .pitch-stage-info-panel {
        padding: 28px 20px;
    }

    .bls-step-flow-grid,
    .winner-benefit-grid,
    .pitch-card-grid,
    .pitch-format-timeline,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-divider {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* BLS 2026 — premium registration panel labels */
.registration-wrapper > .reg-left-card,
.registration-wrapper > .page-form {
    box-sizing: border-box;
}
.reg-panel-label {
    display: block;
    min-height: 16px;
    margin: 0 0 8px;
}
.reg-left-card .reg-panel-label,
.page-form .reg-panel-label {
    line-height: 1.35;
}

/* Clean numbered winner-benefit flow */
.winner-benefit-top {
    align-items: center;
}
.winner-benefit-label {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.winner-benefit-icon {
    display: none !important;
}

/* Currency must sit on one baseline everywhere */
.price-val,
.pricing-values,
.pricing-values strong,
.pricing-values del,
.price-val strong,
.price-val del,
.price-old,
.form-summary-box strong,
.pitch-mini-badge strong,
.pitch-funding-badge-card strong {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.price-val {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 32px;
    font-family: Georgia, 'Playfair Display', serif;
    color: #ffffff;
    line-height: 1;
}
.price-val strong {
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
}
.price-val del,
.price-val .price-old {
    color: #8998a7;
    font-size: 18px;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
}
.pricing-values {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
}
.pricing-values strong {
    color: var(--gold);
    font-size: 38px;
    font-family: Georgia, 'Playfair Display', serif;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
}
.pricing-values del {
    color: #8998a7;
    font-size: 20px;
    font-family: Georgia, 'Playfair Display', serif;
    text-decoration: line-through;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
}

/* Footer now supports six official social channels */
.footer-social-icons {
    gap: 10px;
}

@media (max-width: 900px) {
    .bls-step-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .bls-step-flow-grid {
        grid-template-columns: 1fr;
    }
    .reg-left-card,
    .page-form {
        padding: 28px 22px;
    }
}


@media (max-width: 1024px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .winner-benefit-flow {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .winner-benefit-intro-panel {
        position: static;
        min-height: auto;
        padding: 32px 26px;
    }
}

@media (max-width: 700px) {
    .winner-benefit-timeline-panel {
        padding: 24px 18px;
    }

    .winner-timeline-item {
        gap: 14px;
        padding-bottom: 22px;
    }

    .winner-timeline-marker {
        width: 34px;
        height: 34px;
    }

    .winner-timeline-item::before {
        left: 16px;
        top: 34px;
    }

    .winner-timeline-num {
        font-size: 12px;
    }

    .winner-timeline-content h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .winner-timeline-content p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .winner-benefit-intro-panel {
        padding: 28px 20px;
    }

    .winner-benefit-intro-panel h2 {
        font-size: 28px;
    }
}
