/* ===========================================
   CSS UTILITIES - Common Inline Styles
   Extracted from repeated inline styles across templates
   =========================================== */

/* ===========================================
   CARDS & CONTAINERS
   =========================================== */

/* White Card with Shadow */
.card-white {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.card-white-sm {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.card-white-lg {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-hover-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===========================================
   GRADIENTS
   =========================================== */

.gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.gradient-primary-reverse {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.gradient-overlay-dark {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.gradient-overlay-light {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(248, 249, 250, 0.03) 100%);
}

/* ===========================================
   BADGES & LABELS
   =========================================== */

.badge-white-transparent {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.badge-white-solid {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.badge-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

.text-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.text-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-section-title {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 600;
}

.text-section-title-lg {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
}

.text-section-title-xl {
    color: var(--color-text-primary);
    font-size: 2.25rem;
    font-weight: 600;
}

.text-label {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-label-sm {
    color: var(--color-text-tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===========================================
   BUTTONS & CTAs
   =========================================== */

.btn-primary {
    background-color: var(--color-secondary) !important;
    color: var(--text-on-secondary) !important;
    text-transform: none !important;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: normal;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover) !important;
    color: var(--text-on-secondary) !important;
}

.btn-primary-lg {
    background-color: var(--color-secondary) !important;
    color: var(--text-on-secondary) !important;
    text-transform: none !important;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    text-transform: none !important;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--text-on-accent);
}

.btn-link {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-text-primary);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.btn-link:hover {
    opacity: 0.7;
}

/* ===========================================
   SECTIONS & SPACING
   =========================================== */

.section-padding {
    padding: 4rem 0;
}

.section-padding-lg {
    padding: 5rem 0;
}

.section-padding-xl {
    padding: 6rem 0;
}

.section-bg-gradient {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-bg-white {
    background: white;
}

.section-bg-light {
    background: #f8f9fa;
}

/* ===========================================
   DIVIDERS & SEPARATORS
   =========================================== */

.divider-line {
    border-top: 1px solid #e5e7eb;
}

.divider-line-dark {
    border-top: 1px solid var(--color-border);
}

.divider-accent {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.divider-accent-lg {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
}

.divider-accent-gradient {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2d5a87, #5a8fc4);
}

/* ===========================================
   FLEX & GRID UTILITIES
   =========================================== */

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.gap-sm {
    gap: 0.5rem;
}

.gap-md {
    gap: 1rem;
}

.gap-lg {
    gap: 1.5rem;
}

.gap-xl {
    gap: 2rem;
}

/* ===========================================
   POSITIONING
   =========================================== */

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.absolute-cover {
    position: absolute;
    inset: 0;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

/* ===========================================
   IMPORTANT DATES STYLES
   =========================================== */

.dates-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border);
}

.dates-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.dates-card-minimal {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.dates-title {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dates-title i {
    font-size: 1.5rem;
}

.dates-title-modern {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dates-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.dates-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.dates-timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), rgba(59, 130, 246, 0.3));
}

.dates-item {
    margin-bottom: 1.5rem;
}

.dates-item:last-child {
    margin-bottom: 0;
}

.dates-item-dot {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.dates-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.dates-value {
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
}

.dates-extended {
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-right: 0.5rem;
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dates-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dates-list-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dates-list-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.dates-list-item-minimal {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.dates-list-item-minimal:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.dates-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dates-row-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dates-row-label {
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.dates-row-label-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

.dates-row-value {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.dates-row-value-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.dates-extended-modern {
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 0.5rem;
}

.dates-extended-minimal {
    text-decoration: line-through;
    color: #a0aec0;
    margin-right: 0.5rem;
}

.dates-timezone {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-style: italic;
}

.dates-timezone-modern {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
}

.dates-timezone-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
}

.dates-grid-item {
    background: white;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.dates-grid-item-highlight {
    background: var(--color-primary);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    height: 100%;
}

.dates-grid-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.dates-grid-label-highlight {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.dates-grid-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.dates-grid-value-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
}

.dates-full-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.dates-full-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.dates-full-label-highlight {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.dates-full-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.dates-full-timezone {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===========================================
   SPONSORS STYLES
   =========================================== */

.sponsors-section {
    background: #fafbfc;
    padding: 4rem 0;
}

.sponsors-section-modern {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
}

.sponsors-section-minimal {
    background: #fafafa;
    padding: 6rem 0;
}

.sponsors-title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.sponsors-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.sponsors-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsors-label-modern {
    display: inline-block;
    color: #2d5a87;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.sponsors-title-modern {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    letter-spacing: -0.01em;
}

.sponsors-divider-modern {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2d5a87, #5a8fc4);
    margin: 1rem auto 0;
}

.sponsors-header-minimal {
    margin-bottom: 4rem;
}

.sponsors-label-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.sponsors-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #171717;
    margin: 0;
}

.sponsors-title-minimal em {
    font-style: italic;
}

.sponsors-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.sponsors-grid-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsors-grid-minimal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1px;
    background: #e5e5e5;
    max-width: 1000px;
}

.sponsor-logo-card {
    flex: 0 0 auto;
}

.sponsor-logo-link {
    display: block;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sponsor-logo-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 90px;
    min-width: 180px;
}

.sponsor-logo-link-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 90, 135, 0.2);
}

.sponsor-logo-link-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    height: 100px;
    flex: 1 1 180px;
    min-width: 180px;
}

.sponsor-logo-link-minimal:hover {
    background: #f5f5f5;
}

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

.sponsor-logo-img-modern {
    max-width: 140px;
    max-height: 55px;
    object-fit: contain;
}

.sponsor-logo-img-minimal {
    max-width: 130px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.sponsor-logo-link-minimal:hover .sponsor-logo-img-minimal {
    filter: grayscale(0%);
}

.sponsors-cta-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.sponsors-cta-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.sponsors-cta-section-modern {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.sponsors-cta-section-minimal {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.sponsors-cta-btn-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-secondary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sponsors-cta-btn-minimal:hover {
    background: var(--color-secondary-light);
}

/* ===========================================
   RESPONSIVE UTILITIES
   =========================================== */

/* ===========================================
   HERO SPECIFIC STYLES
   =========================================== */

.hero-section {
    padding: 0 !important;
    margin: 0 !important;
    background: white;
    overflow: visible !important;
}

.hero-container {
    width: 100%;
    position: relative;
    background: var(--color-bg-secondary);
    overflow: visible !important;
}

.hero-bg-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: normal;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hero-bg-image[data-loaded="true"] + .hero-bg-overlay {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 6rem 2rem;
    box-sizing: border-box;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

.hero-bg-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.template-b .hero-bg-cover,
.template-b .hero-bg-image img {
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.template-b .hero-overlay-gradient {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}

.template-b .hero-content-wrapper::before,
.template-b .hero-content-wrapper::after {
    display: none !important;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: transparent !important;
    opacity: 0 !important;
    pointer-events: none;
}

.hero-overlay-subtle {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.template-c .hero-overlay-subtle {
    filter: none !important;
    opacity: 1 !important;
}

.template-c .hero-minimal-section,
.template-c .hero-minimal-section::before,
.template-c .hero-minimal-section::after {
    background: none !important;
    opacity: 1 !important;
    filter: none !important;
}

.hero-minimal-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-info-item i {
    font-size: 1.25rem;
    vertical-align: middle;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-badge-modern span {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 0.35rem 1.25rem;
}

.hero-badge-minimal {
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-badge-minimal span {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title-modern {
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.75rem;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.hero-tagline-modern {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-tagline-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.hero-location-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.hero-location-modern i {
    font-size: 1.25rem;
}

.hero-location-modern span {
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-minimal-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.hero-stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0;
}

.hero-stat-item {
    text-align: center;
    padding: 0.5rem 3rem;
    border-right: 1px solid #e5e7eb;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-stats-header {
    text-align: center;
    padding: 0.75rem 0 0;
}

.hero-stats-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-info-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.hero-info-card-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.hero-info-card-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hero-info-card-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-info-card-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* ===========================================
   PAGE HERO STYLES
   =========================================== */

.page-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 4.5rem 0 3.5rem;
    min-height: 45vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.page-hero-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   BUTTON VARIANTS
   =========================================== */

.btn-hero-primary {
    text-transform: none !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    background-color: var(--color-secondary) !important;
    color: var(--text-on-secondary) !important;
    padding: 0.875rem 2.25rem !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    line-height: 1.5 !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    min-height: auto !important;
    height: auto !important;
    backdrop-filter: blur(10px) !important;
}

.btn-hero-primary:hover {
    background-color: var(--color-secondary-hover) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    transform: translateY(-1px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-on-secondary);
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    min-width: 160px;
    transition: all 0.2s ease;
}

.btn-hero-outline:hover {
    background: rgba(55, 65, 81, 0.35);
    border-color: var(--color-secondary-light);
}

.btn-hero-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--text-on-accent);
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    min-width: 160px;
    transition: all 0.2s ease;
}

.btn-hero-accent:hover {
    background: var(--color-accent-hover);
}

.btn-minimal-primary {
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-secondary);
    color: var(--text-on-secondary);
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-minimal-primary:hover {
    background: var(--color-secondary-hover);
}

.btn-minimal-link {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.btn-minimal-link:hover {
    opacity: 0.7;
}

.btn-white {
    background-color: white;
    color: var(--color-secondary);
    text-transform: none !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: normal;
}

.btn-white i {
    font-size: 1.2rem;
    line-height: 1;
}

/* ===========================================
   CFP SECTION STYLES
   =========================================== */

.cfp-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 3rem;
    border-radius: 8px;
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cfp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.cfp-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.cfp-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cfp-description {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

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

/* ===========================================
   INFO CARD STYLES
   =========================================== */

.info-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.info-card-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-card-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-card-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.info-card-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* ===========================================
   SPEAKER CARD STYLES
   =========================================== */

.speaker-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.speaker-card-image {
    height: 280px;
    overflow: hidden;
    background: var(--color-bg-secondary);
    position: relative;
}

.speaker-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.speaker-card-placeholder span {
    font-size: 4rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.1em;
}

.speaker-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.speaker-card-content {
    padding: 1.5rem;
}

.speaker-card-title {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.speaker-card-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.speaker-card-company {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Modern Speaker Card */
.speaker-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e4e8f0;
    transition: all 0.3s ease;
}

.speaker-card-modern:hover {
    box-shadow: 0 25px 60px rgba(15,23,42,0.12);
    transform: translateY(-3px);
}

.speaker-card-image-modern {
    height: 240px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.speaker-card-placeholder-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.speaker-card-placeholder-modern span {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.1em;
}

.speaker-card-badge-modern {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,0.9);
    color: var(--color-primary);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(30,64,175,0.15);
}

.speaker-card-content-modern {
    padding: 1.5rem 1.75rem 1.75rem;
}

.speaker-card-title-modern {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.speaker-card-role-modern {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
}

.speaker-card-company-modern {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Minimal Speaker Card */
.speaker-card-minimal {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    transition: all 0.2s ease;
}

.speaker-card-minimal:hover {
    border-color: #1a202c;
}

.speaker-card-image-minimal {
    width: 70px;
    height: 70px;
    background: #e5e7eb;
    overflow: hidden;
    flex-shrink: 0;
}

.speaker-card-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.speaker-card-placeholder-minimal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
}

.speaker-card-placeholder-minimal span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.05em;
}

.speaker-card-content-minimal {
    flex: 1;
    min-width: 0;
}

.speaker-card-badge-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}

.speaker-card-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.speaker-card-role-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0 0 0.25rem 0;
}

.speaker-card-company-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.8rem;
    color: #a0aec0;
    margin: 0;
}

/* ===========================================
   ABOUT SECTION STYLES
   =========================================== */

.about-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.about-image {
    width: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 35%, rgba(248,249,250,0.03) 100%);
}

.about-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

.about-label-text {
    color: #1f2937;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.about-content {
    padding: 2rem 3rem 2.5rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.about-description {
    flex: 1;
    margin-bottom: 1.5rem;
}

.about-description p {
    color: #1f2937;
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.about-cta {
    flex-shrink: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* Modern About Section */
.about-section-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
}

.about-header-modern {
    margin-bottom: 2rem;
}

.about-label-modern {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.about-title-modern {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.about-card-modern {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 22px 60px rgba(15,23,42,0.08);
    border: 1px solid #e4e8f0;
    overflow: hidden;
}

.about-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    z-index: 0;
}

.about-card-modern > * {
    position: relative;
    z-index: 1;
}

.about-description-modern {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin: 0 0 2rem 0;
    text-align: center;
}

/* Minimal About Section */
.about-section-minimal {
    padding: 6rem 0;
    background: white;
}

.about-label-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-divider-minimal {
    width: 40px;
    height: 1px;
    background: var(--color-text-primary);
    margin-top: 1rem;
}

.about-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.about-description-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin: 0 0 2rem 0;
}

/* ===========================================
   SECTION TITLE STYLES
   =========================================== */

.section-title-default {
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.section-title-modern-wrapper {
    margin-bottom: 2rem;
}

.section-title-modern-wrapper.with-label {
    margin-bottom: 2.5rem;
}

.section-title-label-modern {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title-modern {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.section-title-minimal-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.section-title-label-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-title-divider-minimal {
    width: 40px;
    height: 1px;
    background: var(--color-text-primary);
    margin-top: 1rem;
}

.section-title-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 2.5rem 0;
    line-height: 1.3;
}

/* ===========================================
   CONFERENCE TRACKS SECTION STYLES
   =========================================== */

.track-card {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    height: 100%;
}

.track-title {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.track-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.track-card-modern {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    height: 100%;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e3e8f4;
    transition: all 0.3s ease;
    overflow: hidden;
}

.track-card-modern::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.track-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(15,23,42,0.12);
}

.track-icon-modern {
    width: 48px;
    height: 48px;
    background: #edf2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.track-icon-modern i {
    font-size: 1.4rem;
}

.track-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    padding-left: 0.75rem;
}

.track-description-modern {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 0.75rem;
}

/* Minimal Track Card */
.track-card-minimal {
    border: 1px solid #e5e7eb;
    padding: 1.75rem;
    background: #fafafa;
    transition: all 0.2s ease;
    height: 100%;
}

.track-card-minimal:hover {
    border-color: var(--color-text-primary);
}

.track-number-minimal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #d1d5db;
    display: block;
    margin-bottom: 1rem;
}

.track-title-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
}

.track-description-minimal {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   FEATURED SPEAKERS SECTION STYLES
   =========================================== */

.featured-speakers-section {
    background: white;
    padding: 4rem 0;
}

.featured-speakers-title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.featured-speakers-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.featured-speakers-empty {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.featured-speakers-section-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.featured-speakers-section-minimal {
    padding: 6rem 0;
    background: white;
}

.featured-speakers-divider-minimal {
    border-top: 1px solid #e5e7eb;
}

/* ===========================================
   RESPONSIVE UTILITIES
   =========================================== */

@media only screen and (max-width: 600px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-padding-lg {
        padding: 4rem 0;
    }
    
    .section-padding-xl {
        padding: 5rem 0;
    }
    
    .text-hero-title {
        font-size: 2rem;
    }
    
    .text-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .text-section-title-xl {
        font-size: 1.75rem;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-title-minimal {
        font-size: 2.5rem;
    }
    
    .hero-tagline-modern,
    .hero-tagline-minimal {
        font-size: 1.1rem;
    }
    
    .hero-overlay {
        padding: 4rem 1.5rem 5rem 1.5rem;
    }
    
    .hero-content-wrapper {
        min-height: 70vh;
    }
    
    .hero-minimal-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .page-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stat-item {
        padding: 0.5rem 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-info-card {
        padding: 2rem;
    }
}
