/* ==================== Reset & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyber Theme — from platform tailwind.config.js */
    --cyber-bg: #0b0f14;
    --cyber-panel: #0f1720;
    --cyber-accent: #00e5ff;
    --cyber-accent2: #7c3aed;
    --cyber-danger: #ff3b3b;
    --cyber-success: #22c55e;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Shadows */
    --shadow-neon: 0 0 10px rgba(0, 229, 255, 0.6), 0 0 20px rgba(124, 58, 237, 0.4);
    --shadow-neon-sm: 0 0 5px rgba(0, 229, 255, 0.3), 0 0 10px rgba(124, 58, 237, 0.2);
    --shadow-neon-lg: 0 0 20px rgba(0, 229, 255, 0.6), 0 0 40px rgba(124, 58, 237, 0.4), 0 0 60px rgba(0, 229, 255, 0.2);

    /* Glass */
    --glass-dark: rgba(15, 23, 32, 0.7);
    --glass-border: rgba(0, 229, 255, 0.15);

    /* Fonts */
    --font-primary: 'Inter', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Borders */
    --radius-soft: 0.75rem;
    --radius-smooth: 1.25rem;
    --radius-elegant: 2rem;
}

/* ==================== Base ==================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--cyber-bg);
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    z-index: 1000;
    background: rgba(11, 15, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: var(--radius-elegant);
    padding: var(--space-xs) var(--space-md);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(11, 15, 20, 0.92);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: var(--shadow-neon-sm);
    top: 0.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 28px;
    height: 28px;
    color: var(--cyber-accent);
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
}

.brand-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.header-nav {
    display: flex;
    gap: var(--space-md);
}

.header-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--cyber-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 1rem !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyber-accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-soft);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-neon {
    background: var(--cyber-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-neon:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--cyber-accent);
}

.btn-ghost:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
}

/* ==================== Hero / Landing ==================== */
.landing {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(1200px 800px at 80% 10%, rgba(0, 229, 255, 0.07), transparent),
        radial-gradient(1000px 600px at 20% 80%, rgba(124, 58, 237, 0.07), transparent),
        var(--cyber-bg);
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: var(--space-2xl) var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--cyber-accent);
    background: rgba(0, 229, 255, 0.05);
    margin-bottom: var(--space-lg);
    animation: pulse-badge 3s ease-in-out infinite;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyber-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyber-accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyber-accent); }
    50% { opacity: 0.4; box-shadow: 0 0 3px var(--cyber-accent); }
}

@keyframes pulse-badge {
    0%, 100% { border-color: rgba(0, 229, 255, 0.25); }
    50% { border-color: rgba(0, 229, 255, 0.45); }
}

.main-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.accent-text {
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero-dates {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.date-item svg {
    width: 18px;
    height: 18px;
    color: var(--cyber-accent);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyber-accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==================== Sections ==================== */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-alt {
    background:
        radial-gradient(800px 500px at 50% 50%, rgba(124, 58, 237, 0.04), transparent),
        var(--cyber-panel);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto var(--space-xl);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== Feature Cards ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-smooth);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-accent), var(--cyber-accent2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-neon-sm);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-soft);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cyber-accent);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Timeline ==================== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyber-accent), var(--cyber-accent2), transparent);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyber-accent);
    background: var(--cyber-bg);
    border: 2px solid var(--cyber-accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-card {
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-smooth);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-neon-sm);
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Platform Features ==================== */
.platform-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.platform-feature {
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-smooth);
    padding: var(--space-lg) var(--space-md);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.platform-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-accent), var(--cyber-accent2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.platform-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-neon-sm);
}

.platform-feature:hover::before {
    transform: scaleX(1);
}

.platform-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.platform-feature p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Platform Gallery */
.platform-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-smooth);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--cyber-panel);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: var(--shadow-neon-sm);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 1;
}

.gallery-label {
    display: block;
    padding: 0.6rem var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

/* ==================== Agenda ==================== */
.agenda-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyber-accent), var(--cyber-accent2), transparent);
    border-radius: 2px;
}

.agenda-item {
    position: relative;
    margin-bottom: var(--space-md);
}

.agenda-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyber-accent);
    border: 2px solid var(--cyber-bg);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
    position: relative;
    z-index: 2;
}

.agenda-dot-break {
    background: var(--cyber-accent2);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.agenda-dot-award {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-accent2));
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.6), 0 0 30px rgba(124, 58, 237, 0.4);
}

.agenda-card {
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-smooth);
    padding: var(--space-sm) var(--space-md);
    transition: all 0.3s ease;
}

.agenda-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-neon-sm);
}

.agenda-card-highlight {
    border-color: rgba(0, 229, 255, 0.18);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(124, 58, 237, 0.04));
}

.agenda-card-highlight:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: var(--shadow-neon);
}

.agenda-time {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyber-accent);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.agenda-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.agenda-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==================== Partners ==================== */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-smooth);
    padding: var(--space-lg) var(--space-xl);
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.partner-logo {
    height: 60px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.partner-logo-wide {
    height: 72px;
    max-width: min(520px, 72vw);
}

.partner-card:hover .partner-logo {
    filter: brightness(1.1);
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.final-cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-kicker {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyber-accent);
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.final-cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

.final-cta-text {
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto var(--space-lg);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ==================== Footer ==================== */
.main-footer {
    background: #080b10;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    padding: var(--space-xl) 0 var(--space-lg);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-brand .brand-icon {
    width: 24px;
    height: 24px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-sm);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==================== Fade-in Animation ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Stagger children */
.features-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.platform-features .fade-in:nth-child(2) { transition-delay: 0.1s; }
.platform-features .fade-in:nth-child(3) { transition-delay: 0.2s; }
.platform-features .fade-in:nth-child(4) { transition-delay: 0.3s; }
.timeline .fade-in:nth-child(2) { transition-delay: 0.15s; }
.timeline .fade-in:nth-child(3) { transition-delay: 0.3s; }
.timeline .fade-in:nth-child(4) { transition-delay: 0.45s; }
.agenda-timeline .fade-in:nth-child(2) { transition-delay: 0.1s; }
.agenda-timeline .fade-in:nth-child(3) { transition-delay: 0.2s; }
.agenda-timeline .fade-in:nth-child(4) { transition-delay: 0.3s; }
.agenda-timeline .fade-in:nth-child(5) { transition-delay: 0.4s; }
.agenda-timeline .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header.menu-open {
        border-radius: var(--radius-smooth);
        padding-bottom: var(--space-sm);
    }

    .header.menu-open .header-content {
        flex-wrap: wrap;
    }

    .header.menu-open .header-nav,
    .header.menu-open .header-actions {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-sm);
        padding-top: var(--space-xs);
    }

    .header.menu-open .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header.menu-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .header.menu-open .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .platform-features {
        grid-template-columns: 1fr;
    }

    .platform-gallery {
        grid-template-columns: 1fr;
    }

    .hero-dates {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .main-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .timeline {
        padding-left: 50px;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-marker {
        left: -50px;
    }

    .timeline-step {
        width: 34px;
        height: 34px;
        font-size: 0.7rem;
    }

    .timeline-card {
        padding: var(--space-sm) var(--space-md);
    }

    .agenda-timeline {
        padding-left: 50px;
    }

    .agenda-timeline::before {
        left: 18px;
    }

    .agenda-marker {
        left: -50px;
    }

    .agenda-card {
        padding: var(--space-sm) var(--space-sm);
    }

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

    .footer-info {
        text-align: center;
    }

    .partners-grid {
        gap: var(--space-md);
    }

    .partner-card {
        padding: var(--space-md) var(--space-lg);
    }

    .partner-logo {
        height: 45px;
    }

    .partner-logo-wide {
        height: 56px;
        max-width: 78vw;
    }

    .final-cta-content {
        max-width: 620px;
    }

    .final-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-xl) 0;
    }

    .hero-content {
        padding: var(--space-xl) var(--space-sm);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
    }

    .feature-card {
        padding: var(--space-md) var(--space-sm);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .final-cta {
        padding: var(--space-xl) 0;
    }

    .final-cta-title {
        font-size: 1.7rem;
    }

    .final-cta-text {
        font-size: 0.95rem;
    }

    .final-cta .btn-lg {
        width: 100%;
        max-width: 280px;
    }
}
