/* Mankato Web Solutions - Modern Styles */

:root {
    /* Techy Dark Colors */
    --primary: #00f0ff;
    --primary-dark: #00c4cc;
    --primary-light: #5cffff;
    --accent-green: #00ff88;
    --accent-orange: #ff6b35;
    --accent-purple: #b829f7;
    --neon-pink: #ff2d95;
    --neon-blue: #00f0ff;
    --neon-green: #00ff88;
    --neon-purple: #b829f7;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #b829f7 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0d1b2a 100%);
    --gradient-cyber: linear-gradient(90deg, #00f0ff, #b829f7, #00ff88);
    --gradient-card: linear-gradient(180deg, rgba(0,240,255,0.1) 0%, rgba(184,41,247,0.05) 100%);
    
    /* Text */
    --text-dark: #0a0a0f;
    --text-medium: #a0a0b0;
    --text-light: #6b6b7b;
    --text-white: #ffffff;
    
    /* Backgrounds - Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-dark: #050508;
    --bg-card: #151520;
    --bg-glass: rgba(255,255,255,0.03);
    /* Legacy vars for compatibility */
    --bg-white: #0a0a0f;
    --bg-light: #111118;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
}

/* Tech Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Glowing Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}
.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}
.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: 20%;
    left: -100px;
    animation: float 25s infinite ease-in-out reverse;
}
.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    top: 50%;
    right: 10%;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,240,255,0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    color: var(--text-white);
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0,240,255,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-highlight {
    color: var(--accent-green) !important;
    font-weight: 600 !important;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,240,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184,41,247,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0,255,136,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    bottom: -150px;
    left: -150px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0,240,255,0.2);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 0 40px rgba(0,240,255,0.3);
}

.text-gradient {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0,240,255,0.5));
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 0 30px rgba(0,240,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(0,240,255,0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,240,255,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(0,240,255,0.3);
    box-shadow: 0 0 20px rgba(0,240,255,0.1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,240,255,0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn svg {
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(0,240,255,0.5));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* Pillars Section */
.pillars {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-purple), transparent);
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0,240,255,0.1);
}

.section-tag-green {
    background: rgba(0,255,136,0.1);
    border-color: rgba(0,255,136,0.2);
    color: var(--accent-green);
    box-shadow: 0 0 15px rgba(0,255,136,0.1);
}

.section-tag-orange {
    background: rgba(255,43,149,0.1);
    border-color: rgba(255,43,149,0.2);
    color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255,43,149,0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,240,255,0.05);
    transition: all 0.3s ease;
}

.pillar-card {
    padding: 40px;
    position: relative;
}

.pillar-highlight {
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(0,255,136,0.2), 0 0 0 1px rgba(0,255,136,0.3);
}

.pillar-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-green);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-services {
    background: rgba(0,240,255,0.1);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0,240,255,0.2);
}

.pillar-academy {
    background: rgba(0,255,136,0.1);
    color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.pillar-tools {
    background: rgba(184,41,247,0.1);
    color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(184,41,247,0.2);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.pillar-desc {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pillar-features {
    list-style: none;
    margin-bottom: 24px;
}

.pillar-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
}

.pillar-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.pillar-link:hover {
    gap: 12px;
}

/* Academy Preview */
.academy-preview {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.academy-content {
    max-width: 540px;
}

.academy-content .section-title {
    margin-bottom: 20px;
}

.academy-content .section-subtitle {
    margin-bottom: 40px;
}

.course-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.course-category {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(0,240,255,0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.course-category:hover {
    transform: translateX(8px);
    border-color: rgba(0,240,255,0.3);
    box-shadow: 0 4px 30px rgba(0,240,255,0.1);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-white);
}

.category-info p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.academy-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(0,240,255,0.3));
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.price-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,240,255,0.2);
}

.academy-visual {
    position: relative;
}

.course-showcase {
    position: relative;
    height: 400px;
}

.course-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,240,255,0.1);
    width: 280px;
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.card-2 {
    top: 60px;
    left: 80px;
    z-index: 2;
    transform: rotate(3deg);
}

.card-3 {
    top: 120px;
    left: 40px;
    z-index: 1;
    transform: rotate(-2deg);
}

.course-thumb {
    height: 140px;
}

.course-info {
    padding: 16px;
}

.course-info h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.course-price {
    color: var(--accent-green);
    font-weight: 700;
}

/* Tools Teaser */
.tools-teaser {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.tools-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tools-visual {
    order: 1;
}

.tools-content {
    order: 2;
    max-width: 540px;
}

.tools-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tool-badge {
    background: var(--bg-card);
    border: 1px solid rgba(184,41,247,0.3);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(184,41,247,0.2);
    color: var(--text-white);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tools-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.tool-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
}

.tools-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(184,41,247,0.4));
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Why Us */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0,240,255,0.3);
    box-shadow: 0 8px 30px rgba(0,240,255,0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.2);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0,240,255,0.2);
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,240,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184,41,247,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-purple), transparent);
}

.cta-box {
    text-align: center;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0,240,255,0.3);
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: var(--primary);
    color: var(--bg-white);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0,240,255,0.4);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,240,255,0.6);
    background: var(--primary-light);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(0,240,255,0.3);
    box-shadow: 0 0 20px rgba(0,240,255,0.1);
}

.btn-outline-white:hover {
    background: rgba(0,240,255,0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0,240,255,0.2);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0,240,255,0.5);
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .academy-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tools-visual {
        order: 2;
    }
    
    .tools-content {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
