/* ====================================
   67GEN67 - SHAPE THE FUTURE
   Youth-focused, energetic design
   ==================================== */

/* CSS Variables */
:root {
    --primary-purple: #7c3aed;
    --primary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-yellow: #fbbf24;
    --accent-orange: #f97316;
    
    --bg-dark: #0f0f1a;
    --bg-darker: #070710;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --text-dim: #71717a;
    
    --gradient-main: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 50%, var(--accent-cyan) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-orange) 100%);
    --gradient-green: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
    
    --glow-purple: 0 0 40px rgba(124, 58, 237, 0.4);
    --glow-blue: 0 0 40px rgba(59, 130, 246, 0.4);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================
   PARTICLES BACKGROUND
   ==================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

/* ====================================
   NAVIGATION
   ==================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    gap: 2px;
}

.logo-67 {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-gen {
    color: var(--text-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.nav-link.parent-link {
    color: var(--accent-cyan);
}

.cta-btn {
    background: var(--gradient-main);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--accent-cyan);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    color: var(--text-gray);
    font-size: 0.5em;
    letter-spacing: 2px;
}

.title-highlight {
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--text-white);
}

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

.btn-primary {
    background: var(--gradient-main);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(124, 58, 237, 0.3);
    animation-duration: 20s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(59, 130, 246, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(6, 182, 212, 0.3);
    animation-duration: 10s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-center {
    width: 120px;
    height: 120px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    box-shadow: var(--glow-purple);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--glow-purple); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(124, 58, 237, 0.6); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 12px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-dim);
    border-bottom: 2px solid var(--text-dim);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* ====================================
   SECTION STYLES
   ==================================== */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
}

.section-header.light h2 {
    color: var(--bg-dark);
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-section {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.about-card strong {
    color: var(--accent-cyan);
}

/* ====================================
   CRACK THE CODE SECTION
   ==================================== */
.crack-section {
    background: var(--bg-dark);
}

.crack-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crack-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
}

.crack-text > p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.code-list {
    list-style: none;
    margin-bottom: 24px;
}

.code-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-symbol {
    font-family: 'Space Grotesk', monospace;
    font-size: 24px;
    width: 40px;
    text-align: center;
    color: var(--accent-cyan);
}

/* Code Block Visual */
.code-block {
    background: #1e1e2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.filename {
    margin-left: auto;
    color: var(--text-dim);
    font-size: 12px;
    font-family: monospace;
}

.code-content {
    padding: 24px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #e0e0e0;
    overflow-x: auto;
}

.keyword { color: #c678dd; }
.class-name { color: #e5c07b; }
.function { color: #61afef; }
.string { color: #98c379; }
.number { color: #d19a66; }
.comment { color: #5c6370; font-style: italic; }

/* ====================================
   PROGRAMS SECTION
   ==================================== */
.programs-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card.highlight {
    background: var(--gradient-main);
    border: none;
}

.program-card.highlight::before {
    display: none;
}

.program-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.program-card.highlight .program-number {
    color: rgba(255, 255, 255, 0.3);
}

.program-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.program-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.subject {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-gray);
}

.program-card.highlight .subject {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

/* ====================================
   MOVEMENT SECTION
   ==================================== */
.movement-section {
    background: var(--bg-darker);
    text-align: center;
}

.movement-content {
    max-width: 700px;
    margin: 0 auto;
}

.movement-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
}

.movement-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.movement-content strong {
    color: var(--accent-pink);
}

.movement-quote {
    margin-top: 40px;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-cyan);
}

.movement-quote blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-style: italic;
    color: var(--text-white);
}

/* ====================================
   REQUIREMENTS SECTION
   ==================================== */
.requirements-section {
    background: var(--text-white);
    color: var(--bg-dark);
}

.requirements-section .section-tag {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.req-card {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.req-card.yes {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-green);
}

.req-card.no {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.req-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.req-card ul {
    list-style: none;
}

.req-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #1b1b1b;
}

.req-card.yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.req-card.no li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.exclusive-badge {
    text-align: center;
    padding: 32px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg);
    color: var(--text-white);
}

.badge-text {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.exclusive-badge p {
    font-size: 15px;
    opacity: 0.9;
}

/* ====================================
   APPLY SECTION
   ==================================== */
.apply-section {
    background: var(--bg-darker);
}

.apply-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.apply-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    margin-bottom: 16px;
}

.apply-content > p {
    color: var(--text-gray);
    margin-bottom: 48px;
}

.apply-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.step h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.step p {
    font-size: 13px;
    color: var(--text-dim);
}

.step-arrow {
    color: var(--text-dim);
    font-size: 24px;
}

.apply-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
    color: #71717a;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

.apply-form select {
    cursor: pointer;
}

.apply-form select option {
    background: #0f0f1a;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.5);
}

.form-note {
    margin-top: 24px;
    font-size: 13px;
    color: #71717a;
    text-align: center;
}

.form-note a {
    color: #06b6d4;
}

/* ====================================
   PARTNERS SECTION
   ==================================== */
.partners-section {
    background: #0f0f1a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-label {
    font-size: 12px;
    color: #71717a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.partner-logo {
    color: #a1a1aa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.partner-logo:hover {
    color: #06b6d4;
}

.partner-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* ====================================
   FOOTER
   ==================================== */
.main-footer {
    background: #070710;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo span {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #a1a1aa;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

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

.footer-bottom p {
    color: #71717a;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom a {
    color: #06b6d4;
}

.footer-tagline {
    font-size: 12px;
    color: #71717a;
    letter-spacing: 1px;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crack-content {
        grid-template-columns: 1fr;
    }
    
    .crack-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .about-grid,
    .programs-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 16px;
    }
    
    .partner-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .code-content {
        font-size: 11px;
    }
}