/* ==========================================================================
   ProJEct Humanity - JECO Pavia | Stylesheet
   Color Palette: JECO Bordeaux (#900020), Carmine (#A6191F), 
   Deep Navy (#001A3C), Gold (#C5A059), Alabaster/Ivory (#FAF8F5)
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-bordeaux: #900020;
    --color-bordeaux-dark: #660017;
    --color-bordeaux-deep: #40000e;
    --color-bordeaux-light: #ab092b;
    --color-carmine: #a6191f;
    --color-carmine-bright: #c81e26;

    /* Secondary & Accent Colors */
    --color-navy: #001a3c;
    --color-navy-dark: #0a101d;
    --color-navy-light: #0d2b59;
    --color-gold: #c5a059;
    --color-gold-light: #e0be7d;
    --color-gold-dark: #a8833e;
    
    /* Neutrals */
    --bg-main: #faf8f5;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #120408;
    --bg-dark-card: #1d070e;
    
    --text-primary: #1e1b1d;
    --text-secondary: #585356;
    --text-muted: #847e82;
    --text-light: #f7f5f5;
    --text-gold: #c5a059;
    
    --border-light: #eee5e7;
    --border-subtle: #e5d7db;
    --border-gold: rgba(197, 160, 89, 0.35);
    
    /* Gradients */
    --grad-hero: linear-gradient(145deg, #180309 0%, #3d0511 40%, #73001a 80%, #900020 100%);
    --grad-bordeaux: linear-gradient(135deg, #900020 0%, #ba1630 100%);
    --grad-gold: linear-gradient(135deg, #c5a059 0%, #e6ca8d 100%);
    --grad-dark: linear-gradient(180deg, #17040a 0%, #0d0105 100%);
    --grad-soft: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);

    /* Elevation & Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(144, 0, 32, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 16px 36px rgba(144, 0, 32, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 48px rgba(64, 0, 14, 0.22), 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 12px 30px rgba(197, 160, 89, 0.25);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout */
    --max-width: 1240px;
    --header-height: 80px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-lg {
    max-width: 860px;
}

/* Section Header Utilities */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
    border: 1px solid rgba(144, 0, 32, 0.16);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 3.5rem;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-bordeaux);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(144, 0, 32, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #a6191f 0%, #cf233e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(144, 0, 32, 0.45);
    color: #ffffff;
}

.btn-gold {
    background: var(--grad-gold);
    color: #17040a;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #d8b46e 0%, #f0d7a4 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45);
    color: #17040a;
}

.btn-outline {
    background: transparent;
    color: var(--color-bordeaux);
    border: 1.5px solid var(--color-bordeaux);
}
.btn-outline:hover {
    background: rgba(144, 0, 32, 0.05);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.35s ease;
    background: rgba(250, 248, 245, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(144, 0, 32, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 72px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.brand-divider {
    width: 1.5px;
    height: 28px;
    background: rgba(144, 0, 32, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-event {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-bordeaux);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.brand-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-bordeaux);
    transition: width 0.25s ease;
}
.nav-link:hover {
    color: var(--color-bordeaux);
}
.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 0.5rem;
}

.menu-toggle {
    display: none;
    color: var(--color-bordeaux);
    padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 6rem;
    background: var(--grad-hero);
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(200, 30, 38, 0.28) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(197, 160, 89, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold-light);
    box-shadow: 0 0 10px var(--color-gold-light);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.title-highlight {
    color: var(--color-gold-light);
    position: relative;
}

.hero-payoff {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    color: #f7e6c4;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Event Metadata Bar */
.hero-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    backdrop-filter: blur(14px);
    margin: 0 auto 2.5rem;
    max-width: 820px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.meta-icon {
    color: var(--color-gold-light);
    width: 24px;
    height: 24px;
}

.meta-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
}

.meta-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.meta-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Countdown */
.countdown-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    display: inline-block;
}

.countdown-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold-light);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}

.countdown-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 0.8rem;
}

/* ==========================================================================
   Stats Banner
   ========================================================================== */
.stats-banner {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 3rem 0;
    margin-top: -1.5rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--border-light);
}
.stat-card:last-child {
    border-right: none;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(144, 0, 32, 0.08);
    color: var(--color-bordeaux);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.about-content-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-bordeaux);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.about-content-card p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.highlight-check {
    color: var(--color-bordeaux);
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-item strong {
    color: var(--text-primary);
    display: inline;
}

.highlight-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-footer-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.about-pillars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-bordeaux);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pillar-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(144, 0, 32, 0.3);
}
.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(144, 0, 32, 0.08);
    color: var(--color-bordeaux);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.pillar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Themes Section
   ========================================================================== */
.section-themes {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.theme-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(144, 0, 32, 0.25);
    background: #ffffff;
}

.featured-theme {
    border-color: var(--color-bordeaux);
    box-shadow: var(--shadow-md);
}

.theme-badge-highlight {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--grad-bordeaux);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(144, 0, 32, 0.3);
}

.theme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.theme-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

.bg-wine {
    background: var(--grad-bordeaux);
}

.bg-bordeaux {
    background: linear-gradient(135deg, #17040a 0%, #900020 100%);
}

.theme-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(144, 0, 32, 0.18);
}

.theme-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.theme-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.theme-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.theme-features li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-features li i {
    color: var(--color-bordeaux);
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Talents Section (100 Talenti Selezionati)
   ========================================================================== */
.section-talents {
    background: var(--grad-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-talents .section-title {
    color: #ffffff;
}

.section-talents .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.section-talents .section-badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold-light);
    border-color: rgba(197, 160, 89, 0.3);
}

.talents-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.talents-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.talents-center-badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--grad-bordeaux);
    border: 6px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 60px rgba(144, 0, 32, 0.6), inset 0 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.big-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.big-sub {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-light);
}

.big-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
}

.orbit-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1.5px dashed rgba(197, 160, 89, 0.4);
    animation: rotateOrbit 25s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.talents-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.talent-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.talent-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold-light);
    transform: translateY(-4px);
}

.t-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.talent-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.45rem;
}

.talent-feature-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

/* Callout Box for Talent Pre-registration */
.talent-callout-box {
    background: linear-gradient(135deg, rgba(144, 0, 32, 0.6) 0%, rgba(26, 4, 10, 0.8) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    backdrop-filter: blur(16px);
}

.callout-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.callout-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.callout-actions {
    flex-shrink: 0;
}

/* ==========================================================================
   Program / Agenda Section
   ========================================================================== */
.section-program {
    background: var(--bg-main);
}

.program-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.prog-filter-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}
.prog-filter-btn:hover {
    color: var(--color-bordeaux);
    border-color: rgba(144, 0, 32, 0.3);
}
.prog-filter-btn.active {
    background: var(--color-bordeaux);
    color: #ffffff;
    border-color: var(--color-bordeaux);
    box-shadow: 0 4px 14px rgba(144, 0, 32, 0.3);
}

.timeline-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}
.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 170px;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.timeline-row.hidden {
    display: none;
}

.timeline-time {
    width: 145px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 1.5rem;
}

.time-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-bordeaux);
}

.time-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.35rem;
}

.tag-institutional { background: #e8eaf6; color: #283593; }
.tag-speech { background: #fce4ec; color: #ad1457; }
.tag-workshop { background: #fff3e0; color: #e65100; }
.tag-lunch { background: #e8f5e9; color: #2e7d32; }
.tag-lounge { background: #ede7f6; color: #512da8; }
.tag-panel { background: #e0f2f1; color: #00695c; }

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-bordeaux);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(144, 0, 32, 0.2);
    position: absolute;
    left: 164px;
    top: 8px;
    z-index: 2;
}

.timeline-card {
    flex-grow: 1;
    margin-left: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(144, 0, 32, 0.25);
}

.highlight-card {
    border-left: 4px solid var(--color-bordeaux);
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.06);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}

.location-pill i {
    width: 14px;
    height: 14px;
}

.card-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-main);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.tag-pill i {
    width: 13px;
    height: 13px;
    color: var(--color-bordeaux);
}

.program-notes-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 980px;
    margin: 3rem auto 0;
    padding: 1.25rem 1.75rem;
    background: rgba(144, 0, 32, 0.04);
    border: 1px solid rgba(144, 0, 32, 0.15);
    border-radius: var(--radius-md);
}

.notes-icon {
    color: var(--color-bordeaux);
    flex-shrink: 0;
    margin-top: 2px;
}

.notes-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   Partners & Ecosystem Section
   ========================================================================== */
.section-partners {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.partners-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.partner-group-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.pg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.media-partner-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.media-partner-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #111111;
}

.forbes-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-bordeaux);
    font-size: 1.4rem;
    margin-left: 0.3rem;
}

.pg-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.academic-partner-showcase {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.partner-img-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.academic-partner-showcase h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.academic-partner-showcase p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Corporate Partners Showcase */
.corporate-partners-section {
    margin-bottom: 3.5rem;
}

.corp-partners-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.corp-badge-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
}
.corp-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.main-corp {
    border: 2px solid var(--color-bordeaux);
    background: linear-gradient(180deg, #ffffff 0%, #fdf5f7 100%);
}

.gold-corp {
    border-color: var(--color-gold);
}

.tech-corp {
    border-color: var(--border-light);
}

.corp-level {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.main-corp .corp-level {
    background: rgba(144, 0, 32, 0.1);
    color: var(--color-bordeaux);
}

.gold-corp .corp-level {
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold-dark);
}

.tech-corp .corp-level {
    background: rgba(0, 26, 60, 0.08);
    color: var(--color-navy);
}

.corp-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.corp-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.corp-sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Institutional and Association grids */
.inst-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.institutional-section {
    margin-bottom: 3.5rem;
}

.inst-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.inst-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
    min-height: 145px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.inst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(144, 0, 32, 0.25);
    background: #ffffff;
}

.inst-logo-wrap {
    height: 52px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inst-logo-img {
    max-height: 48px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.inst-card:hover .inst-logo-img {
    transform: scale(1.06);
}

.inst-icon-shield {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(144, 0, 32, 0.06);
    color: var(--color-bordeaux);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inst-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.associative-network-section {
    margin-top: 2.5rem;
}

.assoc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.assoc-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.assoc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 26, 60, 0.2);
    background: #ffffff;
}

.assoc-logo-wrap {
    height: 48px;
    min-width: 80px;
    max-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assoc-logo-img {
    max-height: 44px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.assoc-card:hover .assoc-logo-img {
    transform: scale(1.05);
}

.assoc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 26, 60, 0.08);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assoc-card strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.assoc-card span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Location Section
   ========================================================================= */
.section-location {
    background: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-info-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    display: flex;
    flex-direction: column;
}

.loc-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.loc-pin {
    width: 38px;
    height: 38px;
    color: var(--color-bordeaux);
    flex-shrink: 0;
    margin-top: 3px;
}

.loc-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.loc-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.loc-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.loc-detail-item i {
    width: 22px;
    height: 22px;
    color: var(--color-bordeaux);
    flex-shrink: 0;
    margin-top: 3px;
}

.loc-detail-item strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.loc-detail-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.loc-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.location-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
    min-height: 420px;
    box-shadow: var(--shadow-md);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.map-overlay-banner {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-bordeaux);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.section-faq {
    background: var(--bg-main);
    border-top: 1px solid var(--border-light);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.35rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s ease;
}
.faq-question:hover {
    color: var(--color-bordeaux);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--color-bordeaux);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
    background: #faf8f5;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0.5rem 1.75rem 1.5rem;
}

.faq-answer p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   Contact & Application Section (Form a Schede)
   ========================================================================== */
.section-contact {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.contact-card-container {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

.contact-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #eae3e5;
    border-bottom: 1px solid var(--border-light);
}

.tab-btn {
    padding: 1.35rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
}
.tab-btn.active {
    background: var(--bg-main);
    color: var(--color-bordeaux);
    border-top: 3px solid var(--color-bordeaux);
}

.tab-content {
    padding: 3rem 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-primary);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-bordeaux);
    box-shadow: 0 0 0 3px rgba(144, 0, 32, 0.12);
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.privacy-check input {
    margin-top: 3px;
    accent-color: var(--color-bordeaux);
}

.direct-contacts-bar {
    background: #f1ecef;
    border-top: 1px solid var(--border-light);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.dc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dc-item i {
    width: 20px;
    height: 20px;
    color: var(--color-bordeaux);
}

.dc-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dc-item a, 
.dc-item strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dc-item a:hover {
    color: var(--color-bordeaux);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: #ffffff;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.footer-socials a:hover {
    background: var(--color-bordeaux);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links-col a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.footer-legal-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    background: #0a0104;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1e1b1d;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--color-bordeaux);
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    color: #4caf50;
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-card:nth-child(2) {
        border-right: none;
    }
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .corp-partners-banner {
        grid-template-columns: 1fr;
    }
    .inst-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-payoff {
        font-size: 1.5rem;
    }
    .hero-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }
    .meta-divider {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .talents-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .talents-cards-grid {
        grid-template-columns: 1fr;
    }
    .talent-callout-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-row {
        flex-direction: column;
        padding-left: 45px;
    }
    .timeline-time {
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }
    .timeline-dot {
        left: 14px;
        top: 4px;
    }
    .timeline-card {
        margin-left: 0;
        width: 100%;
    }
    .partners-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .assoc-grid {
        grid-template-columns: 1fr;
    }
    .inst-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .themes-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .stat-card:last-child {
        border-bottom: none;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .contact-tabs {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Legal Documentation & Modal System
   ========================================================================== */
.footer-links-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links-col ul li a i {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
}

.cookie-pref-trigger-link {
    color: var(--color-gold-light) !important;
    font-weight: 600;
}

.footer-legal-bar-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-bar-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.footer-legal-bar-links a:hover {
    color: var(--color-gold-light);
}

/* Legal Modal Overlay */
.legal-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 2, 5, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-overlay.open,
.legal-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 820px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-light);
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.legal-modal-overlay.open .legal-modal-card,
.legal-modal-overlay.active .legal-modal-card {
    transform: scale(1);
}

.legal-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--text-muted);
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.legal-modal-close:hover {
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
}

.legal-modal-header {
    padding: 2rem 2.5rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    background: #faf8f5;
}

.legal-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.legal-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Legal Tabs */
.legal-tabs-bar {
    display: flex;
    background: #f1ecef;
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
}

.legal-tab-btn {
    padding: 0.95rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.legal-tab-btn:hover {
    color: var(--color-bordeaux);
}

.legal-tab-btn.active {
    color: var(--color-bordeaux);
    background: #ffffff;
    border-bottom-color: var(--color-bordeaux);
}

.legal-tab-panel {
    display: none;
    padding: 2.25rem 2.5rem;
    overflow-y: auto;
    max-height: 55vh;
}

.legal-tab-panel.active {
    display: block;
}

.legal-tab-panel h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    margin-bottom: 1rem;
}

.legal-tab-panel h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
}

.legal-tab-panel p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.legal-tab-panel ul {
    margin: 0.5rem 0 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.legal-tab-panel li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.legal-info-box {
    background: #faf8f5;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-bordeaux);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 1rem 0;
    color: var(--text-primary);
}

.legal-box-border {
    background: #faf8f5;
    border: 1.5px dashed rgba(144, 0, 32, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1rem 0;
}

.legal-action-box {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   Cookie Banner Conforme al Garante Privacy (Provv. 231/2021)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-left: 5px solid var(--color-bordeaux);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
    padding: 1.75rem 2rem;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible,
.cookie-banner.open,
.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-muted);
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-close-x:hover {
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
}

.cookie-banner-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    margin-bottom: 0.5rem;
}

.cookie-title-icon {
    width: 22px;
    height: 22px;
    color: var(--color-bordeaux);
}

.cookie-banner-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cookie-banner-desc a {
    color: var(--color-bordeaux);
    font-weight: 600;
    text-decoration: underline;
}

/* 3 Equal Prominence Buttons as requested by Italian Garante */
.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-light);
}

.btn-cookie {
    flex: 1 1 180px;
    padding: 0.75rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cookie-accept {
    background: var(--color-bordeaux);
    color: #ffffff;
    border: 1.5px solid var(--color-bordeaux);
}
.btn-cookie-accept:hover {
    background: var(--color-carmine);
    border-color: var(--color-carmine);
}

.btn-cookie-reject {
    background: #f1ecef;
    color: var(--text-primary);
    border: 1.5px solid #d8ced3;
}
.btn-cookie-reject:hover {
    background: #e5dde1;
    border-color: var(--color-bordeaux);
    color: var(--color-bordeaux);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--color-bordeaux);
    border: 1.5px solid var(--color-bordeaux);
}
.btn-cookie-settings:hover {
    background: rgba(144, 0, 32, 0.06);
}

/* ==========================================================================
   Cookie Preferences Modal (2nd level granular choice)
   ========================================================================== */
.cookie-pref-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 2, 5, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-pref-modal-overlay.open,
.cookie-pref-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cookie-pref-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    padding: 2.25rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-pref-modal-overlay.open .cookie-pref-card,
.cookie-pref-modal-overlay.active .cookie-pref-card {
    transform: scale(1);
}

.cookie-pref-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--text-muted);
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-pref-close:hover {
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
}

.cookie-pref-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-bordeaux);
    background: rgba(144, 0, 32, 0.08);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.cookie-pref-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.cookie-pref-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cookie-categories-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.cookie-cat-item {
    background: #faf8f5;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.cookie-cat-info {
    flex: 1;
}

.cookie-cat-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.cookie-cat-title strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.cat-pill {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.cat-pill.mandatory {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.cat-pill.optional {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid rgba(21, 101, 192, 0.2);
}

.cookie-cat-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Modern Switch Toggle */
.cookie-switch-wrap {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.cookie-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-switch-label {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s ease;
}

.cookie-switch-label::before {
    position: absolute;
    content: ;
 height: 18px;
 width: 18px;
 left: 3px;
 bottom: 3px;
 background-color: white;
 border-radius: 50%;
 transition: transform 0.3s ease;
 box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.cookie-checkbox:checked + .cookie-switch-label {
 background-color: var(--color-bordeaux);
}

.cookie-checkbox:checked + .cookie-switch-label::before {
 transform: translateX(20px);
}

.cookie-switch-label.disabled {
 cursor: not-allowed;
 background-color: #2e7d32;
 opacity: 0.85;
}

.cookie-pref-footer {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 1rem;
 padding-top: 1.25rem;
 border-top: 1px solid var(--border-light);
}

/* ==========================================================================
 Map Privacy Placeholder (Blocco preventivo terze parti)
 ========================================================================== */
.map-privacy-placeholder {
 width: 100%;
 height: 100%;
 min-height: 420px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 2.5rem;
 background: linear-gradient(145deg, #f7f4ef 0%, #ece5dc 100%);
 color: var(--text-primary);
}

.map-ph-icon {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: rgba(144, 0, 32, 0.08);
 color: var(--color-bordeaux);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.25rem;
}

.map-ph-icon i {
 width: 28px;
 height: 28px;
}

.map-privacy-placeholder h4 {
 font-family: var(--font-heading);
 font-size: 1.25rem;
 font-weight: 800;
 margin-bottom: 0.5rem;
}

.map-privacy-placeholder p {
 font-size: 0.9rem;
 color: var(--text-secondary);
 max-width: 440px;
 margin-bottom: 1.5rem;
 line-height: 1.5;
}

.map-external-link {
 margin-top: 1rem;
 font-size: 0.8rem;
 color: var(--text-muted);
 display: inline-flex;
 align-items: center;
 gap: 0.35rem;
 text-decoration: underline;
}

.map-external-link:hover {
 color: var(--color-bordeaux);
}

@media (max-width: 768px) {
 .legal-modal-card {
 padding: 1.5rem;
 max-height: 90vh;
 }
 .legal-tab-panel {
 padding: 1.5rem 1rem;
 }
 .cookie-banner {
 bottom: 1rem;
 left: 1rem;
 right: 1rem;
 padding: 1.25rem;
 }
 .cookie-banner-actions {
 flex-direction: column;
 width: 100%;
 }
 .btn-cookie {
 width: 100%;
 }
 .cookie-pref-card {
 padding: 1.5rem;
 }
 .cookie-pref-footer {
 flex-direction: column;
 }
 .cookie-pref-footer .btn {
 width: 100%;
 }
 .footer-bottom-flex {
 flex-direction: column;
 text-align: center;
 gap: 0.75rem;
 }
}

/* ==========================================================================
   Refinement Styles: Compact Themes, Participation Box, MAW Main Sponsor
   ========================================================================== */

/* 1. Compact Themes (4 Clean Cards) */
.themes-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.theme-compact-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
}

.theme-compact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(144, 0, 32, 0.3);
    box-shadow: 0 16px 36px rgba(144, 0, 32, 0.12);
}

.theme-compact-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(144, 0, 32, 0.08) 0%, rgba(197, 160, 89, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-bordeaux);
    border: 1px solid rgba(144, 0, 32, 0.12);
    transition: all 0.3s ease;
}

.theme-compact-card:hover .theme-compact-icon {
    background: var(--grad-bordeaux);
    color: #ffffff;
    transform: scale(1.08);
}

.theme-compact-icon i,
.theme-compact-icon svg {
    width: 30px;
    height: 30px;
}

.theme-compact-num {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.theme-compact-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* 2. Participation Section */
.section-participation {
    background: linear-gradient(180deg, #faf8f5 0%, #f4eef0 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.participation-box {
    background: #ffffff;
    border: 1.5px solid rgba(144, 0, 32, 0.18);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.participation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--grad-bordeaux);
}

.participation-content {
    flex: 1;
}

.participation-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.participation-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.participation-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 720px;
}

.participation-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-main);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
}

.perk-item i,
.perk-item svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.participation-cta-wrapper {
    flex-shrink: 0;
}

/* 3. Main Sponsor MAW Showcase */
.main-sponsor-section {
    margin-bottom: 3.5rem;
}

.main-sponsor-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdf9fa 100%);
    border: 2px solid var(--color-bordeaux);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: 0 16px 40px rgba(144, 0, 32, 0.1);
    position: relative;
    overflow: hidden;
}

.main-sponsor-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--grad-bordeaux);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 4px 12px rgba(144, 0, 32, 0.25);
}

.main-sponsor-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-sponsor-logo-box {
    width: 220px;
    height: 110px;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.main-sponsor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.main-sponsor-info {
    flex: 1;
}

.main-sponsor-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-bordeaux);
    margin-bottom: 0.6rem;
}

.main-sponsor-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 780px;
}

/* 4. 3-Column Institutional Patronages */
.inst-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .themes-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .participation-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
    }
    .main-sponsor-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
}

@media (max-width: 640px) {
    .themes-compact-grid {
        grid-template-columns: 1fr;
    }
    .inst-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Google Forms Embed Container
   ========================================================================== */
.google-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.google-form-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.35rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.gform-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-bordeaux);
}

.gform-badge i,
.gform-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold-dark);
}

.google-form-iframe-box {
    width: 100%;
    min-height: 900px;
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.google-form-iframe-box:hover {
    box-shadow: var(--shadow-md);
}

.google-form-iframe {
    width: 100%;
    height: 900px;
    border: none;
    display: block;
}

.google-form-footer-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.25rem;
}

.google-form-footer-note a {
    color: var(--color-bordeaux);
    font-weight: 600;
    text-decoration: underline;
}

.google-form-footer-note a:hover {
    color: var(--color-bordeaux-light);
}

@media (max-width: 768px) {
    .google-form-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .google-form-header-bar .btn {
        width: 100%;
    }
    .google-form-iframe-box,
    .google-form-iframe {
        height: 800px;
        min-height: 800px;
    }
}

