/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
    /* Primary - Magenta/Pink from logo */
    --primary: #d35dab;
    --primary-light: #e88fd0;
    --primary-dark: #b84593;
    --primary-glow: rgba(211, 93, 171, 0.3);
    
    /* Accent - Coral Orange */
    --accent: #f07e4f;
    --accent-light: #f4a07a;
    
    /* Success/Green */
    --success: #22c55e;
    --success-light: rgba(34, 197, 94, 0.1);
    
    /* Warning/Yellow */
    --warning: #eab308;
    --warning-light: rgba(234, 179, 8, 0.1);
    
    /* Background & Text */
    --bg-primary: #fcfaff;
    --bg-secondary: #faf5ff;
    --bg-card: #ffffff;
    --text-primary: #2d1f3d;
    --text-secondary: #6b5a7d;
    --text-muted: #9a8aad;
    
    /* Border */
    --border: #e9e0f0;
    --border-light: #f3eef8;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(211, 93, 171, 0.08);
    --shadow-md: 0 4px 16px rgba(211, 93, 171, 0.12);
    --shadow-lg: 0 8px 32px rgba(211, 93, 171, 0.16);
    --shadow-glow: 0 0 40px rgba(211, 93, 171, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.highlight {
    color: var(--primary);
    font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn i {
    font-size: 12px;
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

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

.btn-accent:hover {
    background: var(--accent-light);
    transform: scale(1.02);
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge.pink {
    background: rgba(211, 93, 171, 0.1);
    color: var(--primary);
}

.section-badge.orange {
    background: rgba(240, 126, 79, 0.1);
    color: var(--accent);
}

.section-badge.green {
    background: var(--success-light);
    color: var(--success);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
}

.nav-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(211, 93, 171, 0.05);
}

.nav-links a.active {
    color: var(--primary);
    background: rgba(211, 93, 171, 0.1);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.mobile-menu a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    background: rgba(211, 93, 171, 0.05);
    color: var(--primary);
}

.mobile-cta {
    background: var(--primary);
    color: white !important;
    text-align: center;
    border-radius: var(--radius);
    margin-top: 8px;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 93, 171, 0.1) 0%, var(--bg-secondary) 50%, rgba(240, 126, 79, 0.1) 100%);
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.c1 { top: 10%; left: 5%; width: 100px; height: 100px; background: rgba(211, 93, 171, 0.15); }
.c2 { top: 30%; right: 10%; width: 150px; height: 150px; background: rgba(240, 126, 79, 0.12); animation-delay: 2s; }
.c3 { bottom: 30%; left: 20%; width: 120px; height: 120px; background: rgba(211, 93, 171, 0.1); animation-delay: 1s; }
.c4 { bottom: 15%; right: 25%; width: 80px; height: 80px; background: rgba(240, 126, 79, 0.1); animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(211, 93, 171, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon.pink { background: rgba(211, 93, 171, 0.1); color: var(--primary); }
.stat-icon.orange { background: rgba(240, 126, 79, 0.1); color: var(--accent); }
.stat-icon.green { background: var(--success-light); color: var(--success); }

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

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

/* Hero Image */
.hero-image {
    display: block;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Animated Code Window */
.animated-code-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-window {
    background: #1e1e2e;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.code-header {
    background: #313244;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-header .dot.red { background: #f38ba8; }
.code-header .dot.yellow { background: #f9e2af; }
.code-header .dot.green { background: #a6e3a1; }

.code-title {
    margin-left: auto;
    font-size: 12px;
    color: #6c7086;
    font-family: monospace;
}

.code-body {
    padding: 20px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-line {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInLine 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.8s; }
.code-line:nth-child(5) { animation-delay: 1s; }
.code-line:nth-child(6) { animation-delay: 1.2s; }
.code-line:nth-child(7) { animation-delay: 1.4s; }

@keyframes fadeInLine {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.line-num {
    color: #6c7086;
    margin-right: 20px;
    width: 20px;
    text-align: right;
}

.keyword { color: #cba6f7; }
.function { color: #89b4fa; }
.string { color: #a6e3a1; }

.cursor {
    animation: blink 1s infinite;
    color: #f5e0dc;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.float-icon.git {
    background: #f34f29;
    color: white;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-icon.python {
    background: #3776ab;
    color: #ffd43b;
    bottom: 20%;
    right: 5%;
    animation-delay: 1s;
}

.float-icon.js {
    background: #f7df1e;
    color: #323330;
    top: 30%;
    left: 0;
    animation-delay: 0.5s;
}

.float-icon.react {
    background: #20232a;
    color: #61dafb;
    bottom: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: -20px; left: -20px; }
.card-2 { bottom: -20px; right: -20px; animation-delay: 2s; }

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.card-icon.success { background: var(--success); color: white; }
.card-icon.pink { background: var(--primary); }

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-sub {
    font-size: 12px;
    color: var(--text-muted);
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon.pink { background: rgba(211, 93, 171, 0.1); color: var(--primary); }
.feature-icon.orange { background: rgba(240, 126, 79, 0.1); color: var(--accent); }
.feature-icon.green { background: var(--success-light); color: var(--success); }
.feature-icon.yellow { background: var(--warning-light); color: var(--warning); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 24px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

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

.highlight-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.highlight-number.pink { color: var(--primary); }
.highlight-number.orange { color: var(--accent); }
.highlight-number.green { color: var(--success); }

.highlight-label {
    font-size: 14px;
    color: var(--text-muted);
}

.highlight-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--success));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 40px;
}

.timeline-item.left {
    justify-content: flex-start;
    padding-right: calc(50% + 30px);
}

.timeline-item.right {
    justify-content: flex-end;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.timeline-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    transition: all var(--transition);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: rgba(211, 93, 171, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.timeline-card:hover .timeline-icon {
    background: var(--primary);
    color: white;
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== REGISTRATION SECTION ===== */
.registration {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* FOMO Registration Banner */
.fomo-banner {
    background: linear-gradient(135deg, #d35dab 0%, #f07e4f 100%);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(211, 93, 171, 0.3);
    animation: fomoPulse 2s ease-in-out infinite;
}

@keyframes fomoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.fomo-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fomo-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: fireGlow 1s ease-in-out infinite alternate;
}

@keyframes fireGlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

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

.fomo-count {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.fomo-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.fomo-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.fomo-stats {
    display: flex;
    gap: 32px;
}

.fomo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
}

.fomo-stat-count {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.fomo-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .fomo-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .fomo-content {
        flex-direction: column;
    }
    
    .fomo-count {
        font-size: 28px;
    }
    
    .fomo-stats {
        width: 100%;
        justify-content: center;
    }
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.role-card {
    position: relative;
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
}

.role-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform var(--transition);
}

.role-card:hover .role-icon {
    transform: scale(1.1);
}

.role-icon.pink { background: rgba(211, 93, 171, 0.1); color: var(--primary); }
.role-icon.orange { background: rgba(240, 126, 79, 0.1); color: var(--accent); }
.role-icon.green { background: var(--success-light); color: var(--success); }

.role-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.role-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.role-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.role-benefits {
    margin-bottom: 24px;
    flex-grow: 1;
}

.role-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-primary);
}

.role-benefits i {
    width: 20px;
    height: 20px;
    background: rgba(211, 93, 171, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.stat-card-icon.pink { background: rgba(211, 93, 171, 0.1); color: var(--primary); }
.stat-card-icon.orange { background: rgba(240, 126, 79, 0.1); color: var(--accent); }
.stat-card-icon.green { background: var(--success-light); color: var(--success); }
.stat-card-icon.yellow { background: var(--warning-light); color: var(--warning); }

.stat-card-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card-suffix {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(211, 93, 171, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: var(--warning);
    font-size: 14px;
}

.testimonial-card > p {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(211, 93, 171, 0.2);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

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

.achievement-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(211, 93, 171, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(211, 93, 171, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* ===== CAMPUS ADVOCATES SECTION ===== */
.campus-advocates {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.advocates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.advocate-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.advocate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #10b981);
}

.advocate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.advocate-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advocate-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.advocate-college {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.advocate-city {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.advocate-city i {
    margin-right: 4px;
}

.advocate-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.advocate-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.advocate-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}

.advocate-socials a:hover {
    transform: scale(1.1);
}

.advocate-socials a.linkedin:hover {
    background: #0077b5;
    color: white;
}

.advocate-socials a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.advocate-socials a.twitter:hover {
    background: #1da1f2;
    color: white;
}

.advocates-cta {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px dashed var(--border);
}

.advocates-cta h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.advocates-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.advocates-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.advocates-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--border);
}

@media (max-width: 768px) {
    .advocates-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition);
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(211, 93, 171, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    transition: transform var(--transition);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 48px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.faq-cta {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(211, 93, 171, 0.05);
    border-radius: var(--radius-lg);
}

.faq-cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(211, 93, 171, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.faq-cta-title {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-cta-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.faq-cta-sub a {
    color: var(--primary);
}

.faq-cta-sub a:hover {
    text-decoration: underline;
}

/* ===== SPONSORS SECTION ===== */
.sponsors-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.sponsor-tier {
    margin-bottom: 48px;
}

.sponsor-tier:last-child {
    margin-bottom: 0;
}

.sponsor-tier-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sponsor-tier-title::before {
    content: '';
    width: 4px;
    height: 24px;
    border-radius: 2px;
}

.sponsor-tier.platinum .sponsor-tier-title::before { background: #a855f7; }
.sponsor-tier.gold .sponsor-tier-title::before { background: #f59e0b; }
.sponsor-tier.silver .sponsor-tier-title::before { background: #94a3b8; }
.sponsor-tier.bronze .sponsor-tier-title::before { background: #d97706; }
.sponsor-tier.community .sponsor-tier-title::before { background: #22c55e; }

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.sponsor-logo {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.sponsor-tier.platinum .sponsor-logo img {
    max-height: 80px;
    max-width: 200px;
}

.sponsor-tier.gold .sponsor-logo img {
    max-height: 70px;
    max-width: 180px;
}

.sponsors-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.sponsors-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--border);
}

.become-sponsor {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border-radius: var(--radius-xl);
    border: 1px dashed var(--border);
}

.become-sponsor h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.become-sponsor p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .sponsor-logos {
        gap: 16px;
    }
    
    .sponsor-logo {
        padding: 12px 16px;
    }
    
    .sponsor-logo img {
        max-height: 40px;
        max-width: 120px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-primary);
    color: white;
}

.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    font-size: 14px;
    min-width: 280px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    background: transparent;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 8px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom i {
    color: var(--primary);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

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

/* Modal form wrapper for scrollable content */
.modal-form {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow: hidden;
}

.modal-form-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    padding-bottom: 16px;
}

.modal-form-footer {
    padding: 16px 32px 32px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.modal-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background: white;
    transition: border-color var(--transition);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5a7d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform var(--transition);
    z-index: 3000;
}

.toast.active {
    transform: translateX(0);
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.toast-title {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.toast-message {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-xl {
        width: 100%;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .role-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-highlight {
        flex-direction: column;
        gap: 16px;
    }
    
    .highlight-divider {
        width: 60px;
        height: 1px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ULTRA-WIDE DISPLAY OPTIMIZATION (2560px+) ===== */
@media (min-width: 2560px) {
    /* Increase base font size for better readability */
    html {
        font-size: 18px;
    }
    
    /* Larger container for ultra-wide */
    .container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    /* Navbar optimization */
    .nav-container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .nav-links {
        gap: 48px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    /* Hero section - larger and more impactful */
    .hero {
        padding: 180px 0 120px;
        min-height: 100vh;
    }
    
    .hero-container {
        max-width: 1800px;
        gap: 100px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-description {
        font-size: 22px;
        max-width: 700px;
    }
    
    .hero-badge {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    .hero-stats {
        gap: 48px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    /* Code window in hero - larger */
    .code-window {
        width: 550px;
        padding: 0;
    }
    
    .code-body {
        padding: 28px;
    }
    
    .code-line {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    /* Floating cards - larger */
    .floating-card {
        padding: 18px 24px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 80px;
    }
    
    .section-badge {
        font-size: 15px;
        padding: 10px 24px;
    }
    
    .section-title {
        font-size: 52px;
    }
    
    .section-description {
        font-size: 20px;
        max-width: 800px;
    }
    
    /* About section */
    .about {
        padding: 120px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    
    .feature-card {
        padding: 40px;
    }
    
    .feature-card h3 {
        font-size: 24px;
    }
    
    .feature-card p {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
    
    .about-highlight {
        padding: 48px 80px;
        gap: 80px;
    }
    
    .highlight-number {
        font-size: 56px;
    }
    
    .highlight-label {
        font-size: 18px;
    }
    
    /* Timeline section */
    .timeline-section {
        padding: 120px 0;
    }
    
    .timeline-card {
        padding: 36px;
    }
    
    .timeline-content h3 {
        font-size: 24px;
    }
    
    .timeline-content p {
        font-size: 16px;
    }
    
    .timeline-date {
        font-size: 15px;
    }
    
    /* Registration section */
    .registration {
        padding: 120px 0;
    }
    
    .role-cards {
        gap: 36px;
    }
    
    .role-card {
        padding: 48px;
    }
    
    .role-card h3 {
        font-size: 28px;
    }
    
    .role-card p {
        font-size: 16px;
    }
    
    .role-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    /* Stats section */
    .stats-section {
        padding: 120px 0;
    }
    
    .stats-grid {
        gap: 36px;
    }
    
    .stat-card {
        padding: 48px;
    }
    
    .stat-card-number {
        font-size: 56px;
    }
    
    .stat-card-label {
        font-size: 18px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 120px 0;
    }
    
    .testimonial-card {
        padding: 40px;
        min-width: 420px;
    }
    
    .testimonial-card p {
        font-size: 18px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    /* FAQ section */
    .faq-section {
        padding: 120px 0;
    }
    
    .faq-container {
        max-width: 1000px;
    }
    
    .faq-question {
        padding: 28px 32px;
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 16px;
        padding: 0 32px 28px 72px;
    }
    
    /* Footer */
    .footer-newsletter {
        padding: 80px 0;
    }
    
    .newsletter-content h3 {
        font-size: 32px;
    }
    
    .newsletter-content p {
        font-size: 18px;
    }
    
    .footer-main {
        padding: 80px 0;
    }
    
    .footer-grid {
        gap: 80px;
    }
    
    .footer-brand p {
        font-size: 16px;
    }
    
    .footer-links h4 {
        font-size: 18px;
    }
    
    .footer-links a {
        font-size: 16px;
    }
    
    /* Buttons */
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .btn-xl {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .nav-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== SUPER ULTRA-WIDE (3440px+) ===== */
@media (min-width: 3200px) {
    html {
        font-size: 20px;
    }
    
    .container {
        max-width: 2200px;
        padding: 0 80px;
    }
    
    .nav-container {
        max-width: 2200px;
        padding: 0 80px;
    }
    
    .hero-container {
        max-width: 2200px;
        gap: 140px;
    }
    
    .hero-title {
        font-size: 96px;
    }
    
    .hero-description {
        font-size: 26px;
        max-width: 800px;
    }
    
    .code-window {
        width: 650px;
    }
    
    .code-line {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 64px;
    }
    
    .section-description {
        font-size: 22px;
        max-width: 900px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
    
    .feature-card {
        padding: 48px;
    }
    
    .role-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
    
    .role-card {
        padding: 56px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 48px;
    }
    
    .stat-card-number {
        font-size: 64px;
    }
    
    .testimonial-card {
        min-width: 480px;
        padding: 48px;
    }
    
    .faq-container {
        max-width: 1200px;
    }
    
    /* Better spacing for ultra-wide */
    .about, .timeline-section, .registration, .stats-section, .testimonials, .faq-section {
        padding: 140px 0;
    }
    
    .hero {
        padding: 200px 0 140px;
    }
    
    /* Floating elements scale */
    .floating-circle.c1 { width: 600px; height: 600px; }
    .floating-circle.c2 { width: 500px; height: 500px; }
    .floating-circle.c3 { width: 350px; height: 350px; }
    .floating-circle.c4 { width: 250px; height: 250px; }
}
