/* ==========================================
   דרך ההייטק - Unified Styles v3
   Clean, Consistent, Modern
   ========================================== */

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--primary, #6366f1);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary, #6366f1);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary, #6366f1);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    
    /* Accent Colors */
    --accent: #10b981;
    --accent-light: #34d399;
    --warning: #f59e0b;
    
    /* Gaming Colors */
    --gaming-green: #00ff88;
    --gaming-blue: #00d4ff;
    --gaming-purple: #b14aff;
    --gaming-pink: #ff4a8d;
    
    /* Course Colors */
    --minecraft-green: #22c55e;
    --roblox-red: #e11d48;
    --python-blue: #3b82f6;
    --java-orange: #ea580c;
    --ai-purple: #8b5cf6;
    --scratch-yellow: #f59e0b;
    --discord-blue: #5865F2;
    --teal: #14b8a6;
    --cyan: #06b6d4;
    
    /* Text Colors */
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    
    /* Background Colors */
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-gaming: #13111a;
    
    /* Gradients */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-gaming: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-neon: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-teal: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    
    /* Shadows */
    --shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-neon: 0 0 30px rgba(99, 102, 241, 0.4);
    
    /* Border Radius */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    border: none;
    border-radius: var(--radius-full);
    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.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-alt);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-nav {
    padding: 12px 24px;
    background: var(--gradient);
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    filter: brightness(1.05);
}

/* ===== UserWay Accessibility Widget Position Fix ===== */
.userway_buttons_wrapper,
.uway,
[data-uw-rm],
.userway-widget,
#userway-button,
.uai-wrapper,
div[data-userway-widget] {
    right: 20px !important;
    left: auto !important;
    bottom: 100px !important;
    top: auto !important;
    position: fixed !important;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: var(--transition);
}

/* Secondary nav link (not a button) */
.nav-link-secondary {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    transition: all 0.2s;
}

.nav-link-secondary:hover {
    background: var(--primary);
    color: white;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 12px 24px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a:not(.btn) {
    color: #374151;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
    background: #f3f4f6;
}

/* Nav Buttons Container */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 8px;
}

/* Nav Buttons */
.nav-links .btn {
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links .btn-student {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.nav-links .btn-student:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.nav-links .btn-nav {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.nav-links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: #f3f4f6;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gaming);
    position: relative;
    overflow: hidden;
    padding: 140px 20px 120px;
}

/* Hero Background Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.75) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Mobile video fix */
@media (max-width: 768px) {
    .hero-video-bg video {
        width: auto;
        height: 100%;
        min-width: 100%;
        object-fit: cover;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    inset: 0;
}

.float-icon {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.float-icon:nth-child(4) { top: 40%; right: 25%; animation-delay: 6s; }
.float-icon:nth-child(5) { bottom: 20%; right: 10%; animation-delay: 8s; }
.float-icon:nth-child(6) { top: 60%; left: 5%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(15deg) scale(1.1); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); }
}

.float-icon:nth-child(odd) {
    animation: float 15s infinite ease-in-out, glow 3s infinite ease-in-out;
}

/* Gaming grid background for hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-top {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.15;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--gaming-green), var(--gaming-blue), var(--gaming-purple));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

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

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-alt);
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Sections Base ===== */
section {
    padding: var(--section-padding) 0;
}

/* ===== Transformation Section ===== */
.transformation-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.transform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.parent-quote {
    position: relative;
    padding: 40px;
}

.quote-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 30px;
}

.parent-quote blockquote {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.parent-quote blockquote strong {
    color: var(--accent);
    cursor: default;
}

.parent-quote cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    display: block;
}

.transform-benefits {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.transform-benefits h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.transform-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transform-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--text);
}

.transform-benefits li:first-child {
    padding-top: 0;
}

.transform-benefits li i {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .transform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .parent-quote {
        padding: 20px;
        text-align: center;
    }
    
    .parent-quote blockquote {
        font-size: 1.3rem;
    }
    
    .quote-icon {
        position: static;
        margin: 0 auto 20px;
        display: block;
    }
}

/* ===== Why Us Section ===== */
.why-us {
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid var(--bg-alt);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.05);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.card-result {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* ===== Digital Courses Section ===== */
.courses {
    background: white;
}

.courses-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.course-card-mini {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-alt);
}

.course-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.course-card-mini.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.course-header-mini {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 160px;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card-mini:hover .course-image {
    transform: scale(1.05);
}

.course-header-mini .course-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.course-badge-mini {
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    backdrop-filter: blur(4px);
}

.course-header-mini .hot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fde047;
    color: var(--text);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Course Header Colors - fallback when no image */
.course-header-mini.scratch { background: linear-gradient(135deg, var(--scratch-yellow), #fbbf24); }
.course-header-mini.minecraft { background: linear-gradient(135deg, var(--minecraft-green), #4ade80); }
.course-header-mini.java { background: linear-gradient(135deg, var(--java-orange), #fb923c); }
.course-header-mini.roblox { background: linear-gradient(135deg, var(--roblox-red), #fb7185); }
.course-header-mini.python { background: linear-gradient(135deg, var(--python-blue), #60a5fa); }
.course-header-mini.ai { background: linear-gradient(135deg, var(--ai-purple), #a78bfa); }
.course-header-mini.discord { background: linear-gradient(135deg, var(--discord-blue), #7289da); }
.course-header-mini.print3d { background: linear-gradient(135deg, var(--teal), #2dd4bf); }
.course-header-mini.canva { background: linear-gradient(135deg, var(--cyan), #22d3ee); }

/* Course icon fallback (when no image) */
.course-icon {
    width: 48px;
    height: 48px;
    color: white;
    margin-bottom: 8px;
}

.course-body-mini {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body-mini h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.course-body-mini p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.course-meta-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.age-tag, .lang-tag {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.age-tag {
    background: #dbeafe;
    color: #1e40af;
}

.lang-tag {
    background: #fce7f3;
    color: #9d174d;
}

.courses-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.courses-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

/* ===== Private Lessons Section ===== */
.private-lessons {
    background: var(--bg-light);
}

/* ===== Private Lessons Section - Premium ===== */
.private-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.private-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.private-premium .container {
    position: relative;
    z-index: 1;
}

/* Header */
.private-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.premium-badge i {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

.private-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: white;
}

.private-header h2 .highlight {
    background: linear-gradient(90deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.private-header .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Main Grid */
.private-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

/* Benefits Column */
.private-benefits-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-wrap i {
    width: 28px;
    height: 28px;
    color: #818cf8;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.benefit-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

/* CTA Card */
.private-cta-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.cta-card-inner {
    padding: 32px;
    text-align: center;
}

.price-display {
    margin-bottom: 24px;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-per {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 4px;
}

.cta-features {
    list-style: none;
    text-align: right;
    margin-bottom: 24px;
    padding: 0;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 0.95rem;
    color: var(--text);
}

.cta-features li:last-child {
    border-bottom: none;
}

.cta-features i {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.cta-card-inner .btn-cta {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-subtext a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.social-proof-strip {
    background: var(--bg-light);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.social-proof-strip i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.social-proof-strip strong {
    color: var(--primary);
}

/* Subjects Strip */
.subjects-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.strip-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.strip-items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.strip-item {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.strip-item.minecraft { background: rgba(34, 197, 94, 0.2); color: #4ade80; border-color: rgba(34, 197, 94, 0.3); }
.strip-item.roblox { background: rgba(225, 29, 72, 0.2); color: #fb7185; border-color: rgba(225, 29, 72, 0.3); }
.strip-item.python { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border-color: rgba(59, 130, 246, 0.3); }
.strip-item.ai { background: rgba(139, 92, 246, 0.2); color: #a78bfa; border-color: rgba(139, 92, 246, 0.3); }
.strip-item.web { background: rgba(6, 182, 212, 0.2); color: #22d3ee; border-color: rgba(6, 182, 212, 0.3); }

.strip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .private-header h2 {
        font-size: 2rem;
    }
    
    .private-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .private-cta-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .private-premium {
        padding: 60px 0;
    }
    
    .private-header h2 {
        font-size: 1.6rem;
    }
    
    .private-header h2 br {
        display: none;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .benefit-icon-wrap {
        margin: 0 auto;
    }
    
    .subjects-strip {
        flex-direction: column;
    }
    
    .strip-items {
        justify-content: center;
    }
}

/* ===== Institutions Section - Professional ===== */
.institutions-pro {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Header */
.inst-header {
    text-align: center;
    margin-bottom: 50px;
}

.inst-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.inst-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.inst-badge i {
    width: 18px;
    height: 18px;
}

.inst-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.inst-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Stats Row */
.inst-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.inst-stat {
    text-align: center;
    padding: 16px;
    border-left: 1px solid var(--bg-alt);
}

.inst-stat:last-child {
    border-left: none;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Grid */
.inst-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.inst-service {
    display: flex;
    gap: 20px;
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--bg-alt);
    transition: var(--transition);
}

.inst-service:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

/* Highlighted service for AI/Staff training */
.inst-service.highlight-service {
    border: 2px solid var(--ai-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.inst-service.highlight-service:hover {
    border-color: var(--ai-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.service-icon.ai-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features li {
    font-size: 0.8rem;
    background: var(--bg-light);
    color: var(--text);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

/* Why Us Section */
.inst-why {
    background: var(--bg-dark);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    text-align: center;
}

.inst-why h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: white;
}

.inst-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    font-size: 0.9rem;
}

.why-item i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.why-item strong {
    color: white;
}

.why-item span {
    color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
    .inst-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .inst-why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        justify-content: center;
        text-align: center;
    }
}

/* Clients Section */
.inst-clients {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid var(--bg-alt);
}

.clients-title {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.client-logo i {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.client-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* CTA */
.inst-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient);
    padding: 40px 48px;
    border-radius: var(--radius-lg);
    color: white;
    flex-wrap: wrap;
    gap: 24px;
}

.inst-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}

.inst-cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.inst-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.inst-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.inst-cta .btn-primary:hover {
    background: var(--bg-light);
}

.inst-cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.inst-cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Mobile */
@media (max-width: 900px) {
    .inst-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inst-stat {
        border-left: none;
        border-bottom: 1px solid var(--bg-alt);
    }
    
    .inst-stat:nth-child(3),
    .inst-stat:nth-child(4) {
        border-bottom: none;
    }
    
    .inst-services-grid {
        grid-template-columns: 1fr;
    }
    
    .inst-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .inst-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .inst-header h2 {
        font-size: 1.8rem;
    }
    
    .inst-service {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .clients-logos {
        gap: 32px;
    }
    
    .inst-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .inst-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.trust-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

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

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

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote strong {
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-name {
    font-weight: 700;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== About Section ===== */
.about {
    background: white;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-story {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-story p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.founder-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.founder-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.founder-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.founder-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.media-section {
    text-align: center;
}

.media-section h3 {
    margin-bottom: 1.5rem;
}

.media-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-item {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--bg-alt);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-cta p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-top: 4px;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* Clickable WhatsApp card */
.clickable-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.clickable-card:hover {
    background: var(--bg-alt);
}

.clickable-card h4,
.clickable-card p {
    color: inherit;
}

.social-links {
    margin-top: 1rem;
}

.social-btn {
    display: block;
    padding: 14px 24px;
    background: #1877f2;
    color: white;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.required-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.form-trust-badges span {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-alt);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 24px;
}

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

.footer-brand img {
    height: auto;
    max-width: 280px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-links,
.footer-contact {
    text-align: right;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
    justify-content: flex-end;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item i {
    order: 1;
}

.footer-contact-item span {
    order: 0;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .courses-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inst-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .courses-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .ps-grid {
        flex-direction: column;
    }
    
    .arrow-icon {
        transform: rotate(0deg);
    }
    
    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .private-grid {
        grid-template-columns: 1fr;
    }
    
    .private-visual {
        order: -1;
    }
    
    .inst-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-brand img {
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .courses-grid-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 16px 80px;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .inst-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float-text {
    display: inline;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

/* ===== Course Details Button ===== */
.btn-course-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-course-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.btn-course-details svg {
    width: 14px;
    height: 14px;
}

/* ===== Lecture Image ===== */
.lecture-image-container {
    margin-top: 3rem;
    text-align: center;
}

.lecture-image {
    max-width: 100%;
    width: 700px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.lecture-caption {
    margin-top: 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== Founder Photo ===== */
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
}

.founder-card .founder-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

/* ===== Media Items Links ===== */
a.media-item {
    text-decoration: none;
    transition: var(--transition);
}

a.media-item:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

/* ===== Exit Intent Popup ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--bg-alt);
    color: var(--text);
    transform: rotate(90deg);
}

.popup-content {
    padding: 40px 30px 30px;
    text-align: center;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: bounce 2s infinite;
}

.popup-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.popup-title {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.popup-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.popup-offer {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 1.5rem;
}

.offer-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.popup-offer h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.popup-offer p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.popup-form {
    margin-bottom: 1rem;
}

.popup-form-group {
    margin-bottom: 12px;
}

.popup-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-alt);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    text-align: right;
}

.popup-form-group input[dir="ltr"] {
    text-align: left;
}

.popup-form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.popup-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.popup-submit-btn svg {
    width: 20px;
    height: 20px;
}

.popup-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.popup-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.popup-trust svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.popup-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 600;
    transition: var(--transition);
}

.popup-whatsapp:hover {
    color: #20ba5a;
}

.popup-whatsapp svg {
    width: 20px;
    height: 20px;
}

.popup-success {
    padding: 20px;
    text-align: center;
}

.popup-success h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.popup-success p {
    color: var(--text-light);
}

/* ===== Form Feedback Styles ===== */
.form-success-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.success-content svg {
    color: var(--accent);
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.success-content p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.form-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-error::before {
    content: '⚠';
}

.field-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.field-error:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
}

/* Popup responsive */
@media (max-width: 480px) {
    .popup-content {
        padding: 30px 20px 20px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-offer h3 {
        font-size: 1.25rem;
    }
    
    .popup-trust {
        flex-direction: column;
        gap: 8px;
    }
}

a.hero-badge-top {
    text-decoration: none;
    transition: var(--transition);
}

a.hero-badge-top:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.25);
}

/* ===== Video Container ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* ===== Video Showcase Section ===== */
.video-showcase {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.video-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-text {
    color: white;
}

.video-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.video-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-align: right;
}

.video-text p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.video-feature i {
    width: 18px;
    height: 18px;
    color: #4ade80;
}

.video-player-wrapper {
    position: relative;
}

.video-player-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: videoGlow 4s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Video Showcase Responsive */
@media (max-width: 968px) {
    .video-showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-text {
        text-align: center;
    }
    
    .video-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .video-features {
        justify-content: center;
    }
    
    .video-text .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 50px 0;
    }
    
    .video-text h2 {
        font-size: 1.6rem;
    }
    
    .video-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Student Banner ===== */
.student-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.student-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.student-banner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.student-banner a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.student-banner a:hover {
    opacity: 0.9;
}

/* Student Login Button in Nav */
.btn-student {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-student:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .student-banner {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

/* ===== PROMINENT CTA BUTTON ===== */
.btn-cta {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    color: white !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5) !important;
    background: linear-gradient(135deg, #fb923c, #f97316) !important;
}

.btn-xl {
    font-size: 1.4rem !important;
    padding: 1.3rem 3rem !important;
}

.pulse-animation {
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(249, 115, 22, 0.6); }
}

.hero-subtext {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-microcopy {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    gap: 24px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-benefits i {
    color: var(--gaming-green);
}

.icon-md {
    width: 24px;
    height: 24px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9997;
    animation: bounce-in 0.5s ease;
}

.floating-cta .btn-cta {
    font-size: 1rem !important;
    padding: 1rem 1.5rem !important;
    white-space: nowrap;
}

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .btn-cta {
        font-size: 1.1rem !important;
        padding: 1rem 1.8rem !important;
    }
    
    .btn-xl {
        font-size: 1.2rem !important;
        padding: 1.1rem 2rem !important;
    }
    
    .floating-cta {
        bottom: 80px;
        right: 10px;
        left: 10px;
    }
    
    .floating-cta .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PRICE BANNERS ===== */
.price-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 1.5rem auto;
    max-width: 500px;
    text-align: center;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #92400e;
}

.price-benefit {
    display: block;
    font-size: 0.9rem;
    color: #78350f;
    margin-top: 0.3rem;
}

.price-banner-small {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #065f46;
}

.price-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.price-link:hover {
    color: #047857;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .price-banner {
        padding: 0.8rem 1rem;
    }
    
    .price-tag {
        font-size: 1.1rem;
    }
    
    .price-banner-small {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== POPULAR COURSE RIBBON ===== */
.popular-course {
    position: relative;
    border: 3px solid #f97316 !important;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25) !important;
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation: pulse-popular 2s infinite;
}

@keyframes pulse-popular {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer-legal {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary, #6366f1);
    text-decoration: underline;
}

.footer-legal span {
    margin: 0 0.5rem;
    color: var(--text-secondary, #94a3b8);
}

/* ===== ANIMATED WHATSAPP ICON ===== */
.whatsapp-icon-animated {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-icon-animated svg {
    width: 100%;
    height: 100%;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* ===== FORM RTL & STYLING FIXES ===== */
.required-star {
    color: #ef4444;
    font-weight: 700;
    margin-left: 4px;
}

.ltr-input {
    direction: ltr;
    text-align: right;
}

.ltr-input::placeholder {
    text-align: right;
}

.form-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-trust-line i {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.form-trust-line span {
    color: #d1d5db;
}

.social-links-secondary {
    margin-top: 24px;
    text-align: center;
}

.social-link-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-link-small:hover {
    color: #1877f2;
}

.social-link-small i {
    width: 16px;
    height: 16px;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.contact-float,
.whatsapp-float {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.contact-float {
    background: var(--gradient);
    color: white;
}

.contact-float i {
    width: 22px;
    height: 22px;
}

.contact-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.whatsapp-float {
    background: #25d366;
    color: white;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.float-text {
    display: inline;
}

@media (max-width: 600px) {
    .floating-buttons {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .contact-float,
    .whatsapp-float {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .float-text {
        display: none;
    }
    
    .contact-float,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* CTA buttons row */
.cta-buttons-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Pixel Art Brand Elements ===== */

/* Pixel background sections - dissolve edges */
/* Large padding keeps content in center, away from pixel edges */

.pixel-bg-green {
    background: url('images/brand/bg-dissolve-green.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-green h2, .pixel-bg-green h3 { color: white; }
.pixel-bg-green p { color: rgba(255,255,255,0.9); }

.pixel-bg-purple {
    background: url('images/brand/bg-dissolve-purple.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-purple h2, .pixel-bg-purple h3 { color: white; }
.pixel-bg-purple p { color: rgba(255,255,255,0.9); }

.pixel-bg-cyan {
    background: url('images/brand/bg-dissolve-cyan.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-cyan h2, .pixel-bg-cyan h3 { color: white; }
.pixel-bg-cyan p { color: rgba(255,255,255,0.9); }

.pixel-bg-yellow {
    background: url('images/brand/bg-dissolve-yellow.png') center/cover no-repeat;
    padding: 120px 0;
    color: #1a1a2e;
}
.pixel-bg-yellow h2, .pixel-bg-yellow h3 { color: #1a1a2e; }
.pixel-bg-yellow p { color: #333; }

.pixel-bg-orange {
    background: url('images/brand/bg-dissolve-orange.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-orange h2, .pixel-bg-orange h3 { color: white; }
.pixel-bg-orange p { color: rgba(255,255,255,0.9); }

.pixel-bg-pink {
    background: url('images/brand/bg-dissolve-pink.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-pink h2, .pixel-bg-pink h3 { color: white; }
.pixel-bg-pink p { color: rgba(255,255,255,0.9); }

.pixel-bg-red {
    background: url('images/brand/bg-dissolve-red.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-red h2, .pixel-bg-red h3 { color: white; }
.pixel-bg-red p { color: rgba(255,255,255,0.9); }

.pixel-bg-gray {
    background: url('images/brand/bg-dissolve-gray.png') center/cover no-repeat;
    padding: 120px 0;
    color: white;
}
.pixel-bg-gray h2, .pixel-bg-gray h3 { color: white; }
.pixel-bg-gray p { color: rgba(255,255,255,0.9); }

/* Old pixel transition - keeping for backwards compatibility */
.pixel-transition {
    width: 100%;
    height: 80px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.pixel-transition-green {
    background-image: url('images/brand/bg-dissolve-green.png');
}

.pixel-transition-bw {
    background-image: url('images/brand/bg-dissolve-bw.png');
}

.pixel-transition-purple {
    background-image: url('images/brand/bg-dissolve-purple.png');
}

.pixel-transition-cyan {
    background-image: url('images/brand/bg-dissolve-cyan.png');
}

.pixel-transition-yellow {
    background-image: url('images/brand/bg-dissolve-yellow.png');
}

.pixel-transition-pink {
    background-image: url('images/brand/bg-dissolve-pink.png');
}

.pixel-transition-orange {
    background-image: url('images/brand/bg-dissolve-orange.png');
}

.pixel-transition-red {
    background-image: url('images/brand/bg-dissolve-red.png');
}

.pixel-transition-gray {
    background-image: url('images/brand/bg-dissolve-gray.png');
}

/* Matrix code background section */
.matrix-section {
    background: url('images/brand/bg-matrix-green.jpg') center/cover;
    padding: 4rem 0;
    position: relative;
}

.matrix-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.matrix-section .container {
    position: relative;
    z-index: 1;
}

/* Pixel mascot decoration */
.pixel-mascot {
    width: 50px;
    height: 50px;
    object-fit: contain;
    image-rendering: pixelated;
    vertical-align: middle;
    margin-left: 10px;
}

/* Pixel chat icon for contact */
.pixel-chat-icon {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
}

/* Footer logo with slogan */
.footer-logo-full {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

/* Pixel frame wrapper */
.pixel-frame {
    background: url('images/brand/frame-green.jpg') center/contain no-repeat;
    padding: 2rem;
}

/* Retro gaming style headings */
.pixel-heading {
    font-family: 'Heebo', sans-serif;
    text-shadow: 3px 3px 0 rgba(139, 195, 74, 0.5);
}

/* Pixel button style - Minecraft-inspired CSS */
.btn-pixel {
    background: linear-gradient(180deg, 
        #5ac54f 0%, 
        #33984b 10%, 
        #33984b 90%, 
        #1a5c2e 100%);
    border: 4px solid;
    border-color: #7dda6e #1e6b35 #1a5c2e #5ac54f;
    padding: 16px 40px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 2px 2px 0 #1a5c2e, -1px -1px 0 #1a5c2e;
    box-shadow: 
        inset 2px 2px 0 rgba(255,255,255,0.2),
        inset -2px -2px 0 rgba(0,0,0,0.2),
        4px 4px 0 rgba(0,0,0,0.3);
    transition: all 0.1s;
    border-radius: 4px;
    position: relative;
}

.btn-pixel::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    border-radius: 2px 2px 0 0;
    pointer-events: none;
}

.btn-pixel:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        inset 2px 2px 0 rgba(255,255,255,0.2),
        inset -2px -2px 0 rgba(0,0,0,0.2),
        6px 6px 0 rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

.btn-pixel:active {
    transform: translate(2px, 2px);
    box-shadow: 
        inset 2px 2px 0 rgba(255,255,255,0.2),
        inset -2px -2px 0 rgba(0,0,0,0.2),
        2px 2px 0 rgba(0,0,0,0.3);
}

/* Gray pixel button */
.btn-pixel-gray {
    background: linear-gradient(180deg, #6b7280 0%, #4b5563 10%, #4b5563 90%, #374151 100%);
    border: 4px solid;
    border-color: #9ca3af #374151 #1f2937 #6b7280;
    padding: 16px 40px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 0 #1f2937;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    image-rendering: pixelated;
    transition: transform 0.2s, filter 0.2s;
}

.btn-pixel:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
