/* ===== EDITORIAL BENTO UI - MODERN MINIMAL WITH EDITORIAL TONE ===== */
/*
 * Gaya: Editorial Bento UI with Scroll-Driven Storytelling
 * Tema: Modern Minimal Editorial
 * Konsep UI: Modular Narrative Interface
 * Konsep UX: Scroll as a Journey
 * Konsep Story: From Interest to Transformation
 * 
 * Design Principles:
 * - Asymmetric Bento Grid Layout
 * - Glassmorphism & Backdrop Blur
 * - Subtle Animations & Micro-interactions
 * - Editorial Typography (Playfair Display + Inter)
 * - Deep Blue Palette with Light Blue Accents
 */

:root {
    /* Colors - Deep Blue Palette (Minimal & Editorial) */
    --deep-blue-900: #0A1628;
    --deep-blue-800: #0F1F3D;
    --deep-blue-700: #1E3A8A;
    --light-blue-500: #60A5FA;
    --light-blue-400: #93C5FD;
    --light-blue-300: #DBEAFE;
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-10: rgba(255, 255, 255, 0.1);
    
    /* Typography - Editorial Style */
    --font-editorial: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing - Bento Grid System */
    --gap-editorial: 24px;
    --radius-editorial: 16px;
    --radius-large: 24px;
    
    /* Editorial Tone - Subtle & Refined */
    --border-subtle: 1px solid rgba(96, 165, 250, 0.15);
    --border-accent: 1px solid rgba(96, 165, 250, 0.3);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--deep-blue-900) 0%, var(--deep-blue-800) 50%, var(--deep-blue-900) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--deep-blue-900);
}

::-webkit-scrollbar-thumb {
    background: var(--light-blue-500);
    border-radius: 3px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue-500), var(--light-blue-400));
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
}

/* ===== NAVIGATION ===== */
.nav-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-70);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue-500);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--light-blue-500);
    color: var(--deep-blue-900);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.3);
}

/* ===== CONTAINER ===== */
.container-editorial {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== SECTIONS ===== */
.editorial-section {
    padding: 100px 0;
    position: relative;
}

.editorial-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* ===== BENTO GRID ===== */
.bento-editorial {
    display: grid;
    gap: var(--gap-editorial);
}

.hero-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, minmax(120px, auto));
    gap: var(--gap-editorial);
}

.hero-story {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
}

.hero-visual {
    grid-column: 7 / 13;
    grid-row: 1 / 4;
}

.stat-card:nth-of-type(3) {
    grid-column: 1 / 5;
    grid-row: 4 / 5;
}

.stat-card:nth-of-type(4) {
    grid-column: 5 / 9;
    grid-row: 4 / 5;
}

.story-bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: var(--gap-editorial);
}

.feature-editorial:nth-of-type(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}

.feature-editorial:nth-of-type(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}

.feature-editorial:nth-of-type(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.bootcamp-editorial {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
}

.roadmap-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--gap-editorial);
}

.roadmap-card:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.roadmap-card:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.roadmap-card:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.roadmap-card:nth-of-type(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.cta-editorial {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

/* ===== BENTO CARD - EDITORIAL STYLE ===== */
.bento-card {
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(20px);
    border: var(--border-subtle);
    border-radius: var(--radius-editorial);
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Editorial Accent Line (Top Border Glow) */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-blue-500), transparent);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.15);
}

.bento-card:hover::before {
    opacity: 1;
}

/* ===== HERO STORY ===== */
.story-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-blue-400);
    margin-bottom: 32px;
    transition: all 0.3s;
}

.story-label:hover {
    transform: translateX(4px);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--light-blue-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.editorial-headline {
    font-family: var(--font-editorial);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    transition: all 0.3s;
}

.headline-accent {
    color: var(--light-blue-400);
    font-style: italic;
    display: inline-block;
    transition: all 0.3s;
}

.editorial-headline:hover .headline-accent {
    transform: translateX(4px);
}

.editorial-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white-70);
    margin-bottom: 40px;
    max-width: 600px;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-50);
}

.meta-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-blue-400);
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: rgba(96, 165, 250, 0.2);
}

.story-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS - EDITORIAL STYLE ===== */
.btn-editorial-primary,
.btn-editorial-secondary,
.btn-bootcamp-editorial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-editorial-primary {
    background: var(--light-blue-500);
    color: var(--deep-blue-900);
}

.btn-editorial-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.4);
    background: var(--light-blue-400);
}

.btn-editorial-primary:active {
    transform: translateY(0);
}

.btn-editorial-secondary {
    background: transparent;
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--white);
}

.btn-editorial-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: var(--light-blue-500);
    transform: translateY(-2px);
}

.btn-editorial-secondary:active {
    transform: translateY(0);
}

.btn-bootcamp-editorial {
    background: var(--light-blue-500);
    color: var(--deep-blue-900);
    width: 100%;
    justify-content: center;
}

.btn-bootcamp-editorial:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.4);
    background: var(--light-blue-400);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    padding: 0;
    background: transparent;
    border: none;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-editorial);
    overflow: hidden;
}

/* Large Background Text */
.visual-bg-text {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0.08;
}

.bg-text-line {
    font-family: var(--font-editorial);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    white-space: nowrap;
    animation: bg-text-float 8s ease-in-out infinite;
}

.bg-text-line:nth-child(1) {
    animation-delay: 0s;
}

.bg-text-line:nth-child(2) {
    animation-delay: 0.5s;
    margin-left: 40px;
}

.bg-text-line:nth-child(3) {
    animation-delay: 1s;
    margin-left: -40px;
}

/* Decorative Grid */
.visual-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--light-blue-500), transparent);
    opacity: 0.2;
    animation: grid-pulse 3s ease-in-out infinite;
}

.grid-h {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-v {
    height: 100%;
    width: 1px;
    top: 0;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    animation: float-badge 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--light-blue-400);
    font-size: 16px;
}

.badge-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

/* Decorative Dots */
.visual-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--light-blue-500);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.frame-corners {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--light-blue-500);
    animation: corner-glow 3s ease-in-out infinite;
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: var(--radius-editorial);
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: var(--radius-editorial);
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: var(--radius-editorial);
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: var(--radius-editorial);
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-editorial);
}

.visual-frame:hover .visual-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 2;
    border-radius: var(--radius-editorial);
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.caption-number {
    font-family: var(--font-editorial);
    font-size: 48px;
    font-weight: 700;
    color: var(--light-blue-400);
    line-height: 1;
}

.caption-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

/* ===== STAT CARD ===== */
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    min-width: 200px;
    overflow: hidden;
    position: relative;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--deep-blue-900);
    flex-shrink: 0;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card.animate-scroll .stat-icon {
    transform: translateX(-10px);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card.animate-scroll .stat-content {
    opacity: 1;
    transform: translateX(0);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: normal;
    line-height: 1.4;
}

/* ===== SECTION NUMBER - EDITORIAL BADGE ===== */
.section-number {
    display: inline-block;
    font-family: var(--font-editorial);
    font-size: 14px;
    font-weight: 600;
    color: var(--light-blue-400);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: var(--border-accent);
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-number:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: scale(1.05);
}

.section-title-editorial {
    font-family: var(--font-editorial);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.title-accent {
    color: var(--light-blue-400);
    font-style: italic;
}

.section-subtitle-editorial {
    font-size: 18px;
    color: var(--white-70);
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== SECTION HEADER - EDITORIAL LAYOUT ===== */
.section-header-editorial {
    margin-bottom: 60px;
}

.section-header-editorial.centered {
    text-align: center;
}

.section-header-editorial.centered .section-subtitle-editorial {
    margin: 0 auto;
}

/* ===== FEATURE EDITORIAL - NUMBERED CARDS ===== */
.feature-editorial {
    position: relative;
}

/* Large Editorial Number (Watermark Style) */
.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-editorial);
    font-size: 72px;
    font-weight: 700;
    color: rgba(96, 165, 250, 0.1);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-editorial:hover .feature-number {
    color: rgba(96, 165, 250, 0.2);
    transform: scale(1.1);
}

.feature-icon-editorial {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--deep-blue-900);
    margin-bottom: 24px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-editorial:hover .feature-icon-editorial {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}

.feature-title-editorial {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.3;
}

.feature-description-editorial {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-70);
    margin-bottom: 24px;
}

/* Editorial Tags - Minimal Pills */
.feature-tags-editorial {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-editorial {
    padding: 6px 16px;
    background: rgba(96, 165, 250, 0.1);
    border: var(--border-subtle);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--light-blue-400);
    transition: all 0.3s;
}

.tag-editorial:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: var(--light-blue-500);
}

/* ===== BOOTCAMP EDITORIAL ===== */
.bootcamp-editorial {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(10, 22, 40, 0.6));
    border: 2px solid var(--light-blue-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.bootcamp-editorial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.bootcamp-editorial:hover::after {
    opacity: 1;
}

.bootcamp-badge-editorial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bootcamp-editorial:hover .bootcamp-badge-editorial {
    transform: scale(1.05);
}

.bootcamp-title-editorial {
    font-family: var(--font-editorial);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bootcamp-description-editorial {
    font-size: 16px;
    color: var(--white-70);
    margin-bottom: 32px;
    max-width: 700px;
}

.bootcamp-list-editorial {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 600px;
}

.bootcamp-list-editorial li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
    text-align: left;
}

.bootcamp-list-editorial i {
    color: #10B981;
    font-size: 18px;
}

/* ===== MARQUEE TECH STACK ===== */
.marquee-editorial-wrapper {
    margin: 40px 0;
    overflow: hidden;
}

.marquee-editorial {
    display: flex;
    overflow: hidden;
    user-select: none;
    margin-bottom: 24px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track-editorial {
    display: flex;
    gap: 20px;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-right .marquee-track-editorial {
    animation: marquee-scroll-right 30s linear infinite;
}

.marquee-left .marquee-track-editorial {
    animation: marquee-scroll-left 30s linear infinite;
}

.tech-badge-editorial {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-badge-editorial i {
    font-size: 20px;
    color: var(--light-blue-400);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-badge-editorial:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: var(--light-blue-500);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.2);
}

.tech-badge-editorial:hover i {
    transform: scale(1.2) rotate(5deg);
}

.marquee-editorial:hover .marquee-track-editorial {
    animation-play-state: paused;
}

/* ===== TESTIMONIALS ===== */
.testimonials-marquee-wrapper {
    margin: 40px 0;
    overflow: hidden;
}

.testimonials-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    animation: marquee-scroll-right 50s linear infinite;
}

.testimonial-editorial {
    min-width: 420px;
    max-width: 420px;
    padding: 40px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--radius-editorial);
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-blue-500), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-editorial:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.15);
}

.testimonial-editorial:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-family: var(--font-editorial);
    font-size: 64px;
    color: var(--light-blue-500);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-editorial:hover .testimonial-quote {
    opacity: 0.3;
    transform: scale(1.1);
}

.testimonial-text-editorial {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-90);
    margin-bottom: 24px;
}

.testimonial-author-editorial {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: var(--light-blue-400);
}

.author-role i {
    margin-right: 6px;
}

.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

/* ===== ROADMAP ===== */
.roadmap-card {
    text-align: center;
    position: relative;
}

.roadmap-number {
    font-family: var(--font-editorial);
    font-size: 14px;
    font-weight: 600;
    color: var(--light-blue-400);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    border: var(--border-accent);
    border-radius: 50px;
    transition: all 0.3s;
}

.roadmap-card:hover .roadmap-number {
    background: rgba(96, 165, 250, 0.1);
    transform: scale(1.05);
}

.roadmap-icon-editorial {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--deep-blue-900);
    margin: 0 auto 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roadmap-card:hover .roadmap-icon-editorial {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}

.roadmap-title-editorial {
    font-family: var(--font-editorial);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roadmap-description-editorial {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white-70);
}

/* ===== CTA EDITORIAL ===== */
.cta-editorial {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(10, 22, 40, 0.8));
    border: 2px solid var(--light-blue-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-editorial::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-headline-editorial {
    font-family: var(--font-editorial);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-accent {
    color: var(--light-blue-400);
}

.cta-description-editorial {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 48px;
    max-width: 500px;
}

.countdown-editorial {
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-editorial);
    padding: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.countdown-label-editorial {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-blue-400);
    margin-bottom: 24px;
}

.countdown-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value-editorial {
    width: 80px;
    height: 80px;
    background: rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--light-blue-500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-editorial);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-value-editorial:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}

.countdown-unit-editorial {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-50);
}

.cta-actions-editorial {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== STUDENT PROJECTS SHOWCASE ===== */
.projects-section {
    background: linear-gradient(180deg, var(--deep-blue-900) 0%, var(--deep-blue-800) 100%);
    position: relative;
}

.projects-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--gap-editorial);
}

.project-card:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.project-card:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.project-card:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.project-card:nth-of-type(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.view-more-card {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.project-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.6);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tag {
    padding: 6px 14px;
    background: rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light-blue-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-category i {
    font-size: 14px;
}

.project-year {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-50);
    padding: 4px 12px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50px;
}

.project-title {
    font-family: var(--font-editorial);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    transition: color 0.3s;
}

.project-card:hover .project-title {
    color: var(--light-blue-400);
}

.project-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-70);
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.project-stat i {
    color: var(--light-blue-400);
    font-size: 14px;
}

.project-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-blue-900);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.author-details p {
    font-size: 12px;
    color: var(--white-50);
}

/* View More Card */
.view-more-card {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(10, 22, 40, 0.6));
    border: 2px dashed rgba(96, 165, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-more-card:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(10, 22, 40, 0.8));
    border-color: var(--light-blue-500);
    border-style: solid;
}

.view-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.view-more-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.1);
    border: 2px solid rgba(96, 165, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light-blue-400);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-more-card:hover .view-more-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(96, 165, 250, 0.2);
    border-color: var(--light-blue-500);
}

.view-more-title {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.view-more-description {
    font-size: 14px;
    color: var(--white-70);
    max-width: 250px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-more:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: var(--light-blue-500);
    transform: translateY(-2px);
}

/* ===== CTA JOIN SECTION ===== */
.cta-join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-blue-900) 0%, var(--deep-blue-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.1), transparent 50%);
    pointer-events: none;
}

.cta-join-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-large);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-join-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--light-blue-500), transparent);
}

.cta-join-content {
    position: relative;
    z-index: 2;
}

.cta-join-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--deep-blue-900);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-join-badge i {
    font-size: 16px;
}

.cta-join-title {
    font-family: var(--font-editorial);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-join-highlight {
    color: var(--light-blue-400);
    font-style: italic;
    display: inline-block;
}

.cta-join-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white-70);
    margin-bottom: 32px;
    max-width: 600px;
}

.cta-join-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-cta-primary {
    background: var(--light-blue-500);
    color: var(--deep-blue-900);
}

.btn-cta-primary:hover {
    background: var(--light-blue-400);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--light-blue-500);
    color: var(--white);
}

.btn-cta-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.cta-join-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--white-70);
}

.info-item i {
    color: var(--light-blue-400);
    font-size: 18px;
}

.cta-join-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.visual-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--deep-blue-900);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.3);
    transition: transform 0.3s ease;
}

.visual-icon:hover {
    transform: scale(1.05);
}

/* ===== FOOTER - EDITORIAL MINIMAL ===== */
.footer-editorial {
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    padding: 60px 0;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-editorial);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--light-blue-500), var(--light-blue-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: var(--white-50);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 4px;
}

.footer-copyright i {
    color: var(--light-blue-500);
    animation: pulse 2s ease-in-out infinite;
}

/* ===== ANIMATIONS - EDITORIAL MOTION ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes bg-text-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.12;
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes corner-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
        opacity: 1;
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== RIPPLE EFFECT - EDITORIAL INTERACTION ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-bento {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .hero-story {
        grid-column: 1 / 7;
        grid-row: 1 / 2;
    }
    
    .hero-visual {
        grid-column: 1 / 7;
        grid-row: 2 / 3;
    }
    
    .stat-card:nth-of-type(3) {
        grid-column: 1 / 4;
        grid-row: 3 / 4;
    }
    
    .stat-card:nth-of-type(4) {
        grid-column: 4 / 7;
        grid-row: 3 / 4;
    }
    
    /* Projects - 2 columns on tablet */
    .projects-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .project-card:nth-of-type(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .project-card:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .project-card:nth-of-type(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .project-card:nth-of-type(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .view-more-card {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    
    /* Roadmap - 2 columns on tablet */
    .roadmap-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-card:nth-of-type(1) {
        grid-column: 1 / 2;
    }
    
    .roadmap-card:nth-of-type(2) {
        grid-column: 2 / 3;
    }
    
    .roadmap-card:nth-of-type(3) {
        grid-column: 1 / 2;
    }
    
    .roadmap-card:nth-of-type(4) {
        grid-column: 2 / 3;
    }
    
    .cta-editorial {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .container-editorial {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 16px 24px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .editorial-section {
        padding: 80px 0;
    }
    
    .hero-bento,
    .story-bento,
    .roadmap-bento,
    .projects-bento {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-story,
    .hero-visual,
    .stat-card,
    .feature-editorial,
    .bootcamp-editorial,
    .roadmap-card,
    .project-card,
    .view-more-card,
    .cta-editorial {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    
    .project-image-wrapper {
        height: 220px;
    }
    
    .project-content {
        padding: 24px;
    }
    
    .roadmap-card {
        min-height: auto;
    }
    
    .bento-card {
        padding: 32px 24px;
    }
    
    .editorial-headline {
        font-size: 40px;
    }
    
    .story-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .story-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-editorial-primary,
    .btn-editorial-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .bootcamp-list-editorial {
        grid-template-columns: 1fr;
    }
    
    .tech-badge-editorial {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .testimonial-editorial {
        min-width: 320px;
        max-width: 320px;
        padding: 32px 24px;
    }
    
    .countdown-grid {
        gap: 12px;
    }
    
    .countdown-value-editorial {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    /* CTA Join Responsive */
    .cta-join-section {
        padding: 60px 0;
    }
    
    .cta-join-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }
    
    .cta-join-visual {
        height: 300px;
    }
    
    .visual-icon {
        width: 140px;
        height: 140px;
        font-size: 60px;
    }
    
    .cta-join-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-join-info {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .section-title-editorial {
        font-size: 32px;
    }
    
    .editorial-headline {
        font-size: 32px;
    }
    
    .meta-value {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .feature-number {
        font-size: 48px;
    }
    
    .cta-headline-editorial {
        font-size: 32px;
    }
}
