:root {
    --primary: #E31E24;
    --primary-dark: #C41C21;
    --primary-opacity-60: rgba(227, 30, 36, 0.6);
    --secondary: #0A0E27;
    --secondary-opacity-40: rgba(10, 14, 39, 0.4);
    --light-secondary: #F5F7FA;
    --accent: #E31E24;
    --text-primary: #0A0E27;
    --text-secondary: #5A6C7D;
    --text-light: #FFFFFF;
    --white-opacity-60: rgba(255, 255, 255, 0.6);
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --border: #E1E8ED;
    --shadow: rgba(10, 17, 40, 0.08);
    --shadow-lg: rgba(10, 17, 40, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'DM Sans', -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Wrapper & Sidebar Layout */
.page-wrapper {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sticky-sidebar {
    width: 350px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 2rem 2rem 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sticky-sidebar::-webkit-scrollbar {
    width: 6px;
}

.sticky-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

/* Catalog Card */
.catalog-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.catalog-card:hover::before {
    left: 100%;
}

.catalog-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4c1d95 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.catalog-image::after {
    content: '📘';
    font-size: 5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-image::after {
    transform: scale(1.1) rotate(-5deg);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    padding: 1.75rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.08), transparent);
    position: relative;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}

/* Ready Card */
.ready-card {
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
}

.ready-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ready-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23991b1b" width="800" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ready-image::before {
    content: '👥';
    position: absolute;
    font-size: 5.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.ready-card:hover .ready-image::before {
    transform: scale(1.1);
}

.ready-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.ready-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ready-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 0.938rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Sidebar Actions */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-sidebar {
    width: 100%;
    height: 180px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-sidebar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

.btn-sidebar:hover .btn-sidebar-bg {
    transform: scale(1.05);
}

.btn-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.btn-sidebar-text {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-catalog .btn-sidebar-bg {
    background-image: url('Links/(4)DSC08469.JPG');
    background-size: cover;
    background-position: center;
}

.btn-program .btn-sidebar-bg {
    background-image: url('Links/DSC01182.JPG');
    background-size: cover;
    background-position: center;
}

.btn-register .btn-sidebar-bg {
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
}

.btn-sidebar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.btn-catalog:hover .btn-sidebar-text,
.btn-program:hover .btn-sidebar-text {
    background: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
}

.btn-register {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: var(--text-light);
    border: 2px solid #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-register:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    border-color: #1e3a8a;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.4);
}

.btn-register span {
    font-size: 1.375rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-register:hover span {
    transform: rotate(15deg) scale(1.1);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.nav-link .arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link .arrow {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.938rem;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.08), transparent);
    border-left-color: var(--primary);
    color: var(--primary);
    padding-left: 1.75rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Button Styles - Template Design */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-primary .primary-button-text-wrapper {
    position: relative;
}

.btn-primary .absolute-primary-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    transition: top 0.3s ease;
}

.btn-primary:hover .primary-button-text-wrapper > div:first-child {
    transform: translateY(-100%);
}

.btn-primary:hover .absolute-primary-button-text {
    top: 0;
}

.btn-primary:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary);
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--text-light);
    border-color: var(--secondary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Primary Button with Icon Animation */
.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-button-text-wrapper {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.primary-button-text-wrapper > div {
    transition: transform 0.3s ease;
}

.absolute-primary-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
}

.primary-button:hover .primary-button-text-wrapper > div:first-child {
    transform: translateY(-100%);
}

.primary-button:hover .absolute-primary-button-text {
    transform: translateY(-100%);
}

.primary-button-icons-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
}

.primary-button-primary-icon,
.primary-button-secondary-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.primary-button-secondary-icon {
    opacity: 0;
    transform: translate(-5px, 5px);
}

.primary-button:hover .primary-button-primary-icon {
    opacity: 0;
    transform: translate(5px, -5px);
}

.primary-button:hover .primary-button-secondary-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.primary-button:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.primary-button:hover .primary-button-icons-wrapper svg {
    stroke: var(--primary);
}

/* Secondary Button */
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secondary-button-text-wrapper {
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.secondary-button-text-wrapper > div {
    transition: transform 0.3s ease;
}

.absolute-secondary-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
}

.secondary-button:hover .secondary-button-text-wrapper > div:first-child {
    transform: translateY(-100%);
}

.secondary-button:hover .absolute-secondary-button-text {
    transform: translateY(-100%);
}

.secondary-button:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(227, 30, 36, 0.02) 35px, rgba(227, 30, 36, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 0, 0, 0.01) 35px, rgba(0, 0, 0, 0.01) 70px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-info-blocks {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #00FFB3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.meta-icon {
    font-size: 1.5rem;
}

.meta-text {
    font-size: 1.125rem;
    font-weight: 500;
}

.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.hero-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Info Cards */
.info-cards {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

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

.info-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Section Styles - Template Design */
.section {
    padding: 2rem 0;
}

.section-header-wrapper {
    padding: 2rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.section-header-wrapper.bg-color-light-secondary {
    background: var(--light-secondary);
}

.section-header-wrapper.bg-color-secondary {
    background: var(--secondary);
}

.section-header {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.section-header.color-primary .h2,
.section-header.color-primary .medium-s-uppercase,
.section-header.color-primary .regular-s {
    color: var(--text-light);
}

.section-chips-and-heading {
    flex: 1;
}

.medium-s-uppercase {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.medium-l-uppercase {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.color-primary-opacity-60 {
    color: var(--primary-opacity-60);
}

.color-secondary-opacity-40 {
    color: var(--secondary-opacity-40);
}

.h1, .h2, .h3, .h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.h3 {
    font-size: 2rem;
}

.h4 {
    font-size: 1.5rem;
}

.regular-s {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.regular-m {
    font-size: 1.125rem;
    line-height: 1.6;
}

.max-width-280 {
    max-width: 280px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.188rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-action {
    text-align: center;
    margin-top: 2rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.063rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
    display: inline-block;
}

/* Speakers Section - Template Design */
.speakers {
    background: var(--bg-white);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.speaker-block {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    cursor: pointer;
}

.speaker-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 14, 39, 0.1);
}

.speaker-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.speaker-info {
    padding: 2rem 1.5rem;
    background: var(--primary);
}

.speaker-info .medium-l-uppercase {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
}

.speaker-info .medium-s-uppercase {
    font-size: 0.875rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.speaker-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.speaker-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.speaker-company {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Program Section */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--secondary);
    color: var(--text-light);
    border-color: var(--secondary);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.program-content {
    position: relative;
}

.program-day {
    display: none;
}

.program-day.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.program-item {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.program-item.networking {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0284c7;
}

.program-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow);
}

.program-item .time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 150px;
}

.program-details h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-details p {
    color: var(--text-secondary);
}

/* Venue Section */
.venue {
    background: var(--bg-light);
}

.venue-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    border: 2px dashed var(--border);
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.venue-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.venue-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.venue-features {
    list-style: none;
    margin-bottom: 2rem;
}

.venue-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 1.063rem;
    font-weight: 500;
}

/* Sponsors Section */
.sponsor-tier {
    margin-bottom: 4rem;
}

.tier-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.sponsor-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.sponsor-grid.main {
    grid-template-columns: repeat(2, 1fr);
}

.sponsor-grid.gold {
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-logo {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sponsor-logo.large {
    width: 280px;
    height: 160px;
}

.sponsor-logo:not(.large) {
    width: 220px;
    height: 120px;
}

.sponsor-logo:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* Networking Section */
.networking {
    background: var(--bg-light);
}

.networking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.event-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-item-header {
    cursor: pointer;
}

.event-item-detail {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.event-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.15);
}

.event-item.active {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left-color: var(--primary);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.2);
}

.event-item .event-time {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.event-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.networking-detail {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
    border: 1px solid var(--border);
}

.event-detail {
    display: none;
}

.event-detail.active {
    display: block;
}

.event-detail h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.event-detail p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-detail .btn {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover::after {
    transform: scaleX(1);
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Partners Section */
.partners {
    background: var(--bg-light);
}

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

.partner-logo {
    height: 100px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

/* Statistics Section */
.stats-years {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.year-tab {
    padding: 1rem 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-primary);
}

.year-tab:hover:not(.active) {
    border-color: var(--primary);
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 2rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 217, 255, 0.03) 35px, rgba(0, 217, 255, 0.03) 70px);
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.page-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

/* Content Section */
.content-section {
    padding: 2rem 0;
}

.content-layout {
    display: grid;
    gap: 3rem;
}

.content-main {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    margin-left: 0;
}

.content-list li {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.feature-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item-simple {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item-simple:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}

.feature-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item-simple h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item-simple p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, #00B8D4 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--text-light);
    margin-top: 4rem;
}

.cta-block h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive Design */

/* Desktop - Large screens (1200px+) */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .page-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .sticky-sidebar {
        position: static;
        width: 100%;
        max-height: none;
        padding: 0 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sidebar-card {
        flex: 1;
        min-width: 300px;
        max-width: 400px;
    }

    .sidebar-actions {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .btn-sidebar {
        flex: 1;
        max-width: 300px;
    }

    .hero .h1 {
        font-size: 4rem;
    }

    .h2 {
        font-size: 2.5rem;
    }
}

/* Tablet - Medium screens (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Header */
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-year {
        font-size: 1.125rem;
    }

    .nav {
        gap: 1.5rem;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero .h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-content {
        padding-top: 80px;
    }

    /* Info Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem;
    }

    /* Speakers */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .speaker-image {
        height: 350px;
    }

    /* Venue */
    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Networking */
    .networking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Sponsors */
    .sponsor-grid.main {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid.gold {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-blocks-grid,
    .logo-blocks-grid-copy {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Statistics */
    .highlight-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large-value {
        font-size: 3.5rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .icon-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Layout */
    .two-blocks-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-blocks-grid {
        grid-template-columns: 1fr;
    }

    /* Section Headings */
    .h1 {
        font-size: 3rem;
    }

    .h2 {
        font-size: 2.25rem;
    }

    .h3 {
        font-size: 1.75rem;
    }

    .section-chips-and-heading .h2 {
        font-size: 2.5rem;
    }
}

/* Mobile - Small tablets and large phones (481px - 768px) */
@media (max-width: 768px) {
    /* Base Typography */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header */
    .header-content {
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-year {
        font-size: 1rem;
    }

    .nav {
        display: none;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Hamburger Menu */
    .hamburger-button {
        display: flex;
        width: 44px;
        height: 44px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero .h1 {
        font-size: 2.25rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .meta-icon {
        font-size: 1.25rem;
    }

    .meta-text {
        font-size: 1rem;
    }

    .hero-info-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    .secondary-info-block {
        padding: 1.5rem 1.25rem;
    }

    .secondary-info-block .medium-s-uppercase {
        font-size: 0.813rem;
        margin-bottom: 0.75rem;
    }

    .secondary-info-block .medium-l-uppercase {
        font-size: 1rem;
    }

    .hero-controls {
        bottom: 1.5rem;
        gap: 1rem;
    }

    .hero-nav {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    /* Sidebar */
    .sticky-sidebar {
        display: none !important;
    }

    /* Show mobile sticky bottom bar */
    .adaptation-ticket-wrapper {
        display: block;
        bottom: 1rem;
        width: calc(100% - 2rem);
        max-width: 500px;
    }

    .adaptation-ticket {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .adaptation-ticket-button {
        width: 100%;
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        min-height: 48px;
    }

    /* Add bottom padding to body to prevent content from being hidden behind mobile nav */
    body {
        padding-bottom: 120px;
    }

    /* Remove bottom padding from last section to prevent too much space */
    .footer {
        padding-bottom: 0;
    }

    /* Info Cards */
    .info-cards {
        margin-top: -2rem;
        padding-bottom: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-text {
        font-size: 0.938rem;
    }

    /* Section Headers */
    .section {
        padding: 2rem 0;
    }

    .section-header-wrapper {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: left;
    }

    .h1 {
        font-size: 2.25rem;
    }

    .h2 {
        font-size: 1.75rem;
    }

    .h3 {
        font-size: 1.375rem;
    }

    .h4 {
        font-size: 1.125rem;
    }

    .section-chips-and-heading .h2 {
        font-size: 1.75rem;
    }

    .medium-s-uppercase {
        font-size: 0.813rem;
    }

    .regular-s {
        font-size: 0.938rem;
    }

    .regular-m {
        font-size: 1rem;
    }

    /* Speakers */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speaker-image {
        height: 300px;
    }

    .speaker-info {
        padding: 1.5rem 1.25rem;
    }

    .speaker-info .medium-l-uppercase {
        font-size: 1.125rem;
    }

    /* Program */
    .program-tabs {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .program-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .program-item .time {
        font-size: 1.125rem;
        min-width: auto;
    }

    .program-details h3 {
        font-size: 1.25rem;
    }

    /* Venue */
    .venue-image-placeholder {
        height: 250px;
        margin-bottom: 2rem;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-map {
        height: 300px;
    }

    .venue-info h3 {
        font-size: 1.5rem;
    }

    .venue-info p {
        font-size: 1rem;
    }

    .venue-features li {
        font-size: 0.938rem;
    }

    /* Sponsors & Partners */
    .sponsor-grid.main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sponsor-grid.gold {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sponsor-logo.large {
        width: 100%;
        max-width: 280px;
    }

    .sponsor-logo:not(.large) {
        width: 100%;
        max-width: 200px;
    }

    .logo-blocks-grid,
    .logo-blocks-grid-copy {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
        display: grid !important;
    }

    .logo-block {
        padding: 1.25rem !important;
        min-height: 110px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo-block-image {
        max-height: 85px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

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

    .partner-logo {
        height: 80px;
    }

    /* Networking */
    .networking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .networking-detail {
        display: none !important;
    }

    .event-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        cursor: pointer;
    }

    .event-item.active .event-item-detail {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .event-item-detail .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .event-item h3 {
        font-size: 1.25rem;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    .event-item p {
        font-size: 0.938rem;
    }

    .networking-detail {
        padding: 1.5rem;
    }

    .event-detail h3 {
        font-size: 1.5rem;
    }

    /* Statistics */
    .stats-years {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .year-tab {
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
        flex: 1;
        min-width: 120px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .highlight-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .large-value {
        font-size: 2.75rem;
    }

    .highlight-block {
        padding: 2rem 1.5rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }

    .icon-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .icon-block {
        gap: 1rem;
    }

    .icon-block-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-block-image {
        width: 28px;
        height: 28px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-col ul li {
        margin-bottom: 0.5rem;
        font-size: 0.938rem;
    }

    .social-link {
        padding: 0.75rem 1rem;
        font-size: 0.938rem;
    }

    .footer-bottom {
        font-size: 0.875rem;
        padding-top: 1.5rem;
    }

    .big-button {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .big-button-text-wrapper {
        height: auto;
    }

    .big-button-icons-wrapper {
        width: 40px;
        height: 40px;
    }

    .big-button-black-icon,
    .big-button-white-icon {
        width: 40px;
        height: 40px;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.938rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
        min-height: 44px;
    }

    /* Modal */
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 85vh;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.75rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    /* Content Section */
    .content-section {
        padding: 2rem 0;
    }

    .content-block {
        margin-bottom: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .content-block p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .content-list li {
        font-size: 0.938rem;
        padding-left: 1.5rem;
    }

    .feature-grid-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item-simple {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .feature-item-simple h3 {
        font-size: 1.125rem;
    }

    .cta-block {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .cta-block h2 {
        font-size: 1.75rem;
    }

    .cta-block p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Buttons */
    .primary-button,
    .secondary-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.75rem;
        min-height: 48px;
    }

    .large-primary-button,
    .large-secondary-button {
        padding: 1.25rem 2rem;
        font-size: 0.938rem;
        gap: 0.75rem;
    }

    .ticket-button {
        padding: 1.5rem 2rem;
        font-size: 0.938rem;
        gap: 0.75rem;
    }

    /* About Blocks */
    .about-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .about-block {
        padding: 1.5rem;
    }

    .parallax-image-wrapper {
        height: 250px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .faq-column {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question .medium-s-uppercase {
        font-size: 0.875rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    /* Section Block */
    .section-block {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .section-block .section-header {
        margin-bottom: 2rem;
    }

    /* Two Blocks Content */
    .two-blocks-content {
        padding: 0 1rem;
    }
}

/* Mobile - Phones (320px - 480px) */
@media (max-width: 480px) {
    /* Base */
    .container {
        padding: 0 0.75rem;
    }

    /* Header */
    .header-content {
        padding: 0.75rem 0;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo-year {
        font-size: 0.938rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
        min-height: 40px;
    }

    /* Hero */
    .hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero .h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.938rem;
    }

    .hero-content {
        padding-top: 40px;
    }

    .secondary-info-block {
        padding: 1.25rem 1rem;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    /* Typography */
    .h1 {
        font-size: 2rem;
    }

    .h2 {
        font-size: 1.5rem;
    }

    .h3 {
        font-size: 1.25rem;
    }

    .h4 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-chips-and-heading .h2 {
        font-size: 1.5rem;
    }

    /* Info Cards */
    .info-card {
        padding: 1.25rem;
    }

    .card-icon {
        font-size: 2.25rem;
    }

    .card-title {
        font-size: 1rem;
    }

    /* Speakers */
    .speaker-image {
        height: 250px;
    }

    .speaker-info {
        padding: 1.25rem 1rem;
    }

    /* Sponsors & Partners */
    .logo-blocks-grid,
    .logo-blocks-grid-copy {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        display: grid !important;
        padding: 0 1rem;
    }

    .logo-block {
        display: flex !important;
        min-height: 120px !important;
        padding: 1.25rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo-block-image {
        max-height: 80px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        display: grid !important;
    }

    /* Statistics */
    .stat-number {
        font-size: 2.5rem;
    }

    .large-value {
        font-size: 2.5rem;
    }

    /* Gallery */
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.938rem;
    }

    .primary-button,
    .secondary-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.813rem;
        min-height: 44px;
    }

    .large-primary-button,
    .large-secondary-button {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }

    .ticket-button {
        padding: 1.25rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Modal */
    .modal-content {
        padding: 1.5rem 1rem;
    }

    .modal-content h2 {
        font-size: 1.375rem;
    }

    /* Program */
    .program-item {
        padding: 1.25rem;
    }

    .program-item .time {
        font-size: 1rem;
    }

    .program-details h3 {
        font-size: 1.125rem;
    }

    /* Venue */
    .venue-image-placeholder {
        height: 200px;
    }

    .venue-map {
        height: 250px;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer */
    .big-button {
        padding: 1.5rem 1.25rem;
    }

    /* Page Hero */
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Content */
    .content-block h2 {
        font-size: 1.5rem;
    }

    .cta-block {
        padding: 1.5rem 1.25rem;
    }

    .cta-block h2 {
        font-size: 1.5rem;
    }
}

/* Small phones - Extra small screens (320px) */
@media (max-width: 360px) {
    .hero .h1 {
        font-size: 1.75rem;
    }

    .h2 {
        font-size: 1.375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number,
    .large-value {
        font-size: 2.25rem;
    }

    .info-card {
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    /* Logos - single column for very small screens */
    .logo-blocks-grid,
    .logo-blocks-grid-copy {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .logo-block {
        min-height: 100px !important;
        padding: 1rem !important;
    }

    .logo-block-image {
        max-height: 70px !important;
    }
}

/* Template Specific Styles */

/* Logo Blocks for Sponsors */
.logo-blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto 1.5rem;
    padding: 0 2rem;
}

.logo-blocks-grid-copy {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto 1.5rem;
    padding: 0 2rem;
}

.logo-block {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-height: 140px;
}

.logo-block:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.15);
}

.logo-block-image {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.logo-block-icon-wrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-block:hover .logo-block-icon-wrapper {
    opacity: 1;
}

.logo-block-icon {
    width: 100%;
    height: 100%;
    filter: invert(54%) sepia(88%) saturate(2592%) hue-rotate(160deg) brightness(101%) contrast(101%);
}

/* Highlight Blocks for Statistics */
.highlight-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-block {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
    border-color: var(--primary);
}

.large-value {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.highlight-block-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Icon Blocks for Features */
.icon-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.icon-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-block-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-block-image {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.icon-block-content {
    flex: 1;
}

.icon-block-content .medium-s-uppercase {
    margin-bottom: 0.5rem;
    font-size: 0.938rem;
}

.icon-blocks-heading {
    margin-bottom: 2rem;
}

/* Two Blocks Content Layout */
.two-blocks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.heading-and-icon-blocks-wrapper {
    display: flex;
    flex-direction: column;
}

/* Large Buttons */
.large-primary-button,
.large-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.large-primary-button {
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.large-secondary-button {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.large-button-text-wrapper {
    position: relative;
    height: 1.5em;
    overflow: hidden;
}

.large-button-text-wrapper > div {
    transition: transform 0.3s ease;
}

.absolute-large-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
}

.large-primary-button:hover .large-button-text-wrapper > div:first-child,
.large-secondary-button:hover .large-button-text-wrapper > div:first-child {
    transform: translateY(-100%);
}

.large-primary-button:hover .absolute-large-button-text,
.large-secondary-button:hover .absolute-large-button-text {
    transform: translateY(-100%);
}

.large-primary-button:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.25);
}

.large-primary-button:hover .large-button-icons-wrapper svg {
    stroke: var(--primary);
}

.large-secondary-button:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.large-button-icons-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.large-button-primary-icon,
.large-button-secondary-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.large-button-secondary-icon {
    opacity: 0;
    transform: translate(-5px, 5px);
}

.large-primary-button:hover .large-button-primary-icon {
    opacity: 0;
    transform: translate(5px, -5px);
}

.large-primary-button:hover .large-button-secondary-icon {
    opacity: 1;
    transform: translate(0, 0);
}

/* Ticket Button */
.ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 3rem;
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ticket-button-text-wrapper {
    position: relative;
    height: 1.5em;
    overflow: hidden;
}

.absolute-ticket-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
}

.ticket-button:hover .ticket-button-text-wrapper > div:first-child {
    transform: translateY(-100%);
}

.ticket-button:hover .absolute-ticket-button-text {
    transform: translateY(-100%);
}

.ticket-button-icons-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.ticket-button-icon,
.ticket-button-absolute-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.ticket-button-absolute-icon {
    opacity: 0;
    transform: translate(-5px, 5px);
}

.ticket-button:hover .ticket-button-icon {
    opacity: 0;
    transform: translate(5px, -5px);
}

.ticket-button:hover .ticket-button-absolute-icon {
    opacity: 1;
    transform: translate(0, 0);
}

.ticket-button:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(227, 30, 36, 0.3);
}

.ticket-button:hover .ticket-button-icons-wrapper svg {
    stroke: var(--primary);
}

.ticket-button-left-shape,
.ticket-button-right-shape,
.ticket-button-bottom-shape,
.ticket-button-top-shape-copy {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-white);
    border-radius: 50%;
}

.ticket-button-left-shape {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.ticket-button-right-shape {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.ticket-button-bottom-shape {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ticket-button-top-shape-copy {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Blocks */
.about-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-block {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.about-block:hover {
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.about-block-shape-and-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.about-block-shape {
    width: 60px;
    height: 60px;
}

.about-block-content {
    margin-top: 1.5rem;
}

.parallax-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.parallax-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.parallax-image-wrapper:hover img {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question .medium-s-uppercase {
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer-text {
    margin: 0;
}

/* Section Block Styles */
.section-block {
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1280px;
}

.section-block.primary-block {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1f3a 100%);
    color: var(--text-light);
}

.section-block.light-secondary-block {
    background: var(--light-secondary);
}

.section-block .section-header {
    margin-bottom: 3rem;
}

.section-block .h2,
.section-block .h3 {
    color: var(--text-light);
}

/* Regular Text Sizes */
.regular-xl-uppercase {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.regular-xxl-uppercase {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Adaptation Menu (Mobile) */
.adaptation-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.adaptation-menu.active {
    transform: translateX(0);
}

.adaptation-menu-content-wrapper {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.adaptation-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.adaptation-menu-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.adaptation-menu-items-and-button {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.adaptation-menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.adaptation-menu-item {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.adaptation-menu-item:hover {
    color: var(--primary);
}

.adaptation-menu-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hamburger-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-button:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.hamburger-icon {
    width: 24px;
    height: 24px;
}

/* Adaptation Ticket (Mobile) */
.adaptation-ticket-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
    max-width: 90%;
}

.adaptation-ticket {
    display: flex;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-lg);
    position: relative;
}

.adaptation-ticket-button {
    padding: 1rem 1.5rem !important;
    font-size: 0.875rem !important;
}

.adaptation-ticket-left-shape,
.adaptation-ticket-right-shape {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-light);
    border-radius: 50%;
}

.adaptation-ticket-left-shape {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.adaptation-ticket-right-shape {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Utility Classes */
.color-white-opacity-60 {
    color: var(--white-opacity-60);
}

.max-width-184 {
    max-width: 184px;
}

/* Additional Responsive Fixes for Overflow */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix sidebar catalog/program images */
    .catalog-image,
    .ready-image {
        height: 200px;
    }

    .sidebar-title {
        font-size: 1.125rem;
        padding: 1.5rem;
    }

    /* Ensure buttons don't break layout */
    .btn-sidebar {
        height: 150px;
        font-size: 1rem;
    }

    .btn-sidebar-text {
        padding: 0.875rem 1.5rem;
        font-size: 0.938rem;
    }

    /* Fix dropdown menus on mobile */
    .dropdown-menu {
        position: fixed;
        left: 1rem;
        right: 1rem;
        width: auto;
        min-width: auto;
    }

    /* Improve touch targets */
    .nav-link,
    .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    /* Ensure readability on small screens */
    .medium-l-uppercase {
        font-size: 1rem;
        line-height: 1.4;
    }

    .regular-xl-uppercase {
        font-size: 1.125rem;
    }

    .regular-xxl-uppercase {
        font-size: 1.25rem;
    }

    /* Adjust section spacing */
    .section-header-wrapper {
        padding: 1.25rem 0.75rem;
    }

    /* Fix grid gaps for small screens */
    .cards-grid,
    .speakers-grid,
    .features-grid {
        gap: 1rem;
    }
}

/* Hero Info Blocks */
.hero-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.secondary-info-block {
    background: var(--primary);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.secondary-info-block:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.3);
}

.secondary-info-block .medium-s-uppercase {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.938rem;
}

.secondary-info-block .medium-l-uppercase {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 1.125rem;
    font-weight: 700;
}

.hero-text-wrapper {
    margin-bottom: 2rem;
}

.hero-text .medium-s-uppercase {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.hero-text .h1 {
    color: var(--text-light);
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .hero-info-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Ensure hero background images scale properly */
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }

    /* Fix page wrapper on mobile */
    .page-wrapper {
        padding: 0;
    }

    .main-content {
        padding: 0;
    }
}

/* Additional mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        height: auto;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero .h1 {
        font-size: 2rem;
    }
}

/* Footer Block */
.footer-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-and-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    text-decoration: none;
}

.footer-logo .medium-l-uppercase {
    color: var(--text-light);
}

.footer-legal-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: flex;
    align-items: flex-start;
}

.footer-heading {
    color: var(--text-light);
    line-height: 1.2;
}

/* Big Button */
.big-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 4rem;
    background: var(--primary);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.big-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.big-button:hover::before {
    left: 0;
}

.big-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.big-button-text-wrapper {
    position: relative;
    height: 2.5em;
    overflow: hidden;
    z-index: 1;
}

.big-button-text-wrapper .h3 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.absolute-big-button-text {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
}

.big-button:hover .big-button-text-wrapper > .h3:first-child {
    transform: translateY(-100%);
}

.big-button:hover .absolute-big-button-text {
    transform: translateY(-100%);
}

.big-button-icons-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.big-button-black-icon,
.big-button-white-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.big-button-white-icon {
    opacity: 0;
    transform: translate(-10px, 10px);
}

.big-button:hover .big-button-black-icon {
    opacity: 0;
    transform: translate(10px, -10px);
}

.big-button:hover .big-button-white-icon {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .big-button {
        padding: 2rem 2.5rem;
    }
    
    .big-button-icons-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .big-button-black-icon,
    .big-button-white-icon {
        width: 40px;
        height: 40px;
    }
}

/* Hero Specific Styles */
.hero .medium-s-uppercase {
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero .h1 {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .hero .h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero .h1 {
        font-size: 2.5rem;
    }
}

.hero .h1 {
    color: var(--text-primary);
}

/* Section Headings Red Color */
.section-header .h2,
.section-title,
.h2 {
    color: var(--primary);
}

.section-header .medium-s-uppercase {
    color: var(--text-primary);
}

/* Primary Button Red with White Text */
.primary-button,
.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.primary-button:hover,
.btn-primary:hover {
    background: var(--text-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.primary-button .medium-s-uppercase,
.btn-primary .medium-s-uppercase {
    color: var(--text-light);
}

.primary-button:hover .medium-s-uppercase,
.btn-primary:hover .medium-s-uppercase {
    color: var(--primary);
}

.primary-button:hover .primary-button-text-wrapper > div,
.btn-primary:hover .primary-button-text-wrapper > div {
    color: var(--primary);
}

.primary-button-icons-wrapper svg,
.btn-primary svg {
    stroke: var(--text-light);
}

.primary-button:hover .primary-button-icons-wrapper svg,
.btn-primary:hover svg {
    stroke: var(--primary);
}

/* Big Button Red */
.big-button {
    background: var(--primary);
    color: var(--text-light);
}

.big-button::before {
    background: var(--text-light);
}

.big-button:hover {
    color: var(--primary);
}

.big-button .h3 {
    color: var(--text-light);
}

.big-button:hover .h3 {
    color: var(--primary);
}

.big-button-black-icon {
    stroke: var(--text-light);
}

.big-button-white-icon {
    stroke: var(--primary);
}

/* Section Title Styles */
.section-chips-and-heading .h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .section-chips-and-heading .h2 {
        font-size: 2rem;
    }
}

/* Sidebar Catalog Button */
.btn-catalog {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: var(--text-light);
    border: 2px solid #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-catalog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-catalog:hover::before {
    width: 300px;
    height: 300px;
}

.btn-catalog:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
    border-color: #6d28d9;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.4);
}

.btn-catalog span {
    font-size: 1.375rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-catalog:hover span {
    transform: scale(1.1);
}
