:root {
    /* Colors from brandbook */
    --color-orange: #ff5c0a;
    --color-orange-dark: #d14600;
    --color-black: #000000;
    --color-gray-light: #ededed;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    --avatar-size: 200px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-orange-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

.btn-secondary:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.section-lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-md);
}

.navbar-content {
    background: var(--color-white);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.navbar-logos {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-vsprint {
    height: 40px;
    width: auto;
}

.logo-allegro {
    height: 30px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-black);
    transition: color 0.3s ease;
}

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

.navbar-cta {
    display: flex;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    white-space: nowrap;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    width: 100%;
    padding: var(--spacing-lg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    padding: var(--spacing-sm);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

.mobile-nav-cta {
    margin-top: var(--spacing-md);
    background: linear-gradient(90deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    border-bottom: none;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 92, 10, 0.4);
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 92, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 92, 10, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-speakers {
    margin-bottom: var(--spacing-md);
}

.speaker-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-sm);
}

.speaker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-xs);
}

 

.speaker-1 {
    background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
}

.speaker-2 {
    background: linear-gradient(135deg, #555 0%, #333 100%);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-condensed);
    text-align: center;
    margin-top: var(--spacing-xs);
}

.speaker-caption strong {
    font-size: 1.15rem;
    color: var(--color-black);
}

.speaker-caption span {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    :root { --avatar-size: 140px; }
    .speaker-list {
        grid-template-columns: 1fr;
    }
    .speaker-item {
        flex-direction: column;
    }
}

.hero-title {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-black) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.hero-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: var(--spacing-lg);
}

.hero-datetime {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.hero-date,
.hero-time {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--color-black);
}

.hero-dot {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: #bdbdbd;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
}

.benefit-item i {
    color: var(--color-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Forms */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

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

.form-group label {
    font-family: var(--font-condensed);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 92, 10, 0.1);
}

.checkbox-group {
    margin-top: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-orange);
}

.webinar-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-light);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #222;
    font-weight: 700;
    white-space: nowrap;
}

.info-item i {
    color: var(--color-orange);
    font-size: 1.25rem;
}

@media (max-width: 560px) {
    .info-item {
        font-size: 1rem;
    }
    .webinar-info {
        gap: var(--spacing-md);
    }
}

/* For Who Section */
.for-who {
    background: var(--color-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Agenda Section */
.agenda {
    background: var(--color-gray-light);
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.agenda-item {
    display: flex;
    gap: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.agenda-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.agenda-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.agenda-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--color-gray-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.benefit-card p {
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0;
    color: var(--color-black);
}

/* Speakers Section */
.speakers {
    background: var(--color-gray-light);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.speaker-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.speaker-photo {
    display: block;
    width: var(--avatar-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.speaker-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    border: 6px solid var(--color-gray-light);
}

.speaker-artur {
    background: linear-gradient(135deg, #555 0%, #333 100%);
}

.speaker-pawel {
    background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
}

.speaker-real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.speaker-info h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.speaker-bio {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.speaker-bio p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.speaker-bio i {
    color: var(--color-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
    color: var(--color-white);
}

.registration .section-title {
    color: var(--color-white);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.registration-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.registration-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.form-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: #666;
}

.form-info i {
    color: var(--color-orange);
}

/* Footer FOMO Section */
.footer-fomo {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.fomo-content {
    text-align: center;
}

.fomo-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.fomo-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--color-white);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.contact {
    background: var(--color-white);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.contact-photo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.modal-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: var(--spacing-lg);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {

    /* Navigation */
    .navbar-content {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .navbar-menu {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-logos {
        gap: var(--spacing-xs);
    }

    .logo-vsprint {
        height: 28px;
    }

    .logo-allegro {
        height: 22px;
    }

    .btn-nav {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        max-width: 140px;
    }


    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

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

    .hero-lead {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-form-card {
        padding: var(--spacing-md);
    }

    .speaker-images {
        gap: var(--spacing-xs);
    }

    .speaker-img {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

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

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        white-space: normal;
        word-wrap: break-word;
    }

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

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

    .registration-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

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

    .webinar-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .info-item {
        font-size: 0.875rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: var(--spacing-lg) 0;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

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

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

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

    .navbar-content {
        padding: var(--spacing-xs);
    }

    .btn-nav {
        font-size: 0.7rem;
        padding: 0.5rem 0.625rem;
        max-width: 120px;
    }

    .logo-vsprint {
        height: 24px;
    }

    .logo-allegro {
        height: 20px;
    }

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

    .registration-stats {
        gap: var(--spacing-md);
    }
}
