/* ================================
   OFISENSE - INNOVATIVE DESIGN
   Bento Grid + Interactive Canvas + Scroll Animations
   ================================ */

/* Custom Font */
@font-face {
    font-family: 'Ozrad';
    src: url('OzradCLM-Bold.woff') format('woff'),
         url('OzradCLM-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --orange: #FF6B4A;
    --coral: #FF5E6D;
    --pink: #E94560;
    --purple: #9B5DE5;
    --violet: #7B2CBF;
    
    --gradient: linear-gradient(135deg, #FF6B4A 0%, #E94560 50%, #9B5DE5 100%);
    --gradient-reverse: linear-gradient(135deg, #9B5DE5 0%, #E94560 50%, #FF6B4A 100%);
    
    --dark: #0a0a0f;
    --darker: #050508;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);
    
    --font: 'Ozrad', 'Heebo', sans-serif;
    --font-display: 'Ozrad', 'Heebo', sans-serif;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext x='4' y='24' font-size='24' fill='%23E94560'%3E✦%3C/text%3E%3C/svg%3E") 16 16, auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple));
    border-radius: 10px;
    border: 2px solid var(--darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pink), var(--purple), var(--orange));
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--darker);
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Interactive elements get pointer cursor */
a, button, [role="button"], input[type="submit"] {
    cursor: pointer;
}

::selection {
    background: var(--pink);
    color: white;
}

/* Canvas Background */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

/* ================================
   POPUP
   ================================ */
.coming-soon-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.coming-soon-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
}

.popup-content {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    padding: 50px 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    backdrop-filter: blur(20px);
    animation: popupEnter 0.6s var(--ease-bounce);
}

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

.popup-icon { font-size: 4rem; margin-bottom: 20px; }
.popup-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.popup-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}
.popup-close-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.popup-close-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

/* ================================
   PORTAL ORB MENU - REVOLUTIONARY NAVIGATION
   ================================ */

/* Logos Container */
.portal-logos {
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 10002;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portal-logo {
    transition: all 0.4s var(--ease);
}

.portal-logo-color img {
    height: 50px;
    filter: drop-shadow(0 5px 20px rgba(233, 69, 96, 0.4));
    animation: logoFloat 6s ease-in-out infinite;
}

.portal-logo-white img {
    height: 35px;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
    animation: logoFloat 6s ease-in-out infinite 0.5s;
}

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

.portal-logo:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(233, 69, 96, 0.6));
}

/* Living Orb */
.portal-orb {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    z-index: 10002;
    cursor: pointer;
    transition: all 0.5s var(--ease-bounce);
}

.portal-orb:hover {
    transform: scale(1.15) rotate(10deg);
}

.orb-energy {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    border-radius: 50%;
    animation: orbPulse 2s ease-in-out infinite;
}

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

.orb-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid;
    border-color: var(--orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbRipple 3s ease-out infinite;
}

@keyframes orbRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.orb-core {
    position: absolute;
    inset: 10px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.orb-icon {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s var(--ease);
}

.portal-orb:hover .orb-icon {
    transform: rotate(90deg);
}

/* Backdrop Blur Overlay */
.portal-menu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
    z-index: 10000;
}

.portal-expansion.active ~ .portal-menu::before,
body:has(.portal-expansion.active)::before {
    opacity: 1;
    pointer-events: auto;
}

/* Add overlay to body when portal is active */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
    z-index: 10000;
}

body.portal-active::before {
    opacity: 1;
    pointer-events: auto;
}

/* Portal Expansion */
.portal-expansion {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(0);
    width: 600px;
    height: 600px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s var(--ease-bounce);
}

.portal-expansion.active {
    transform: translate(50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.portal-ring {
    position: absolute;
    inset: 0;
    border: 3px solid;
    border-image: var(--gradient) 1;
    border-radius: 50%;
    animation: portalSpin 20s linear infinite;
}

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

.portal-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

/* Lightning Lines */
.portal-lightning {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Portal Items */
.portal-items {
    position: absolute;
    inset: 0;
}

.portal-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s var(--ease);
}

.portal-expansion.active .portal-item {
    opacity: 1;
    transform: scale(1);
    animation: itemAppear 0.6s var(--ease-bounce) backwards;
}

.portal-item:nth-child(1) { animation-delay: 0.1s; }
.portal-item:nth-child(2) { animation-delay: 0.15s; }
.portal-item:nth-child(3) { animation-delay: 0.2s; }
.portal-item:nth-child(4) { animation-delay: 0.25s; }
.portal-item:nth-child(5) { animation-delay: 0.3s; }
.portal-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes itemAppear {
    from { opacity: 0; transform: scale(0) rotate(-180deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

.item-bubble {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portal-item:hover .item-bubble {
    transform: scale(1.2) rotateY(360deg);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3), rgba(155, 93, 229, 0.3));
    border-color: var(--pink);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.6);
}

.item-bubble.special {
    background: var(--gradient);
    border-color: white;
}

.item-icon {
    font-size: 2rem;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.item-text {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

/* Close Button */
.portal-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: 2px solid var(--pink);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 10;
}

.portal-close:hover {
    background: var(--pink);
    transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.8);
}

/* Lightning animation */
@keyframes lightningFlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.4; }
}

/* Responsive */
@media (max-width: 768px) {
    .portal-expansion {
        width: 90vw;
        height: 90vw;
        max-width: 500px;
        max-height: 500px;
    }
    
    .portal-item {
        width: 70px;
        height: 70px;
        margin: -35px 0 0 -35px;
    }
    
    .item-icon {
        font-size: 1.5rem;
    }
    
    .item-text {
        font-size: 0.65rem;
    }
    
    .portal-logos {
        left: 15px;
        top: 15px;
        gap: 10px;
    }
    
    .portal-logo-color img {
        height: 35px;
    }
    
    .portal-logo-white img {
        height: 25px;
    }
    
    .portal-orb {
        right: 20px;
        top: 20px;
        width: 60px;
        height: 60px;
    }
}

/* ================================
   HERO - MORPHING TEXT EXPLOSION 🔥
   ================================ */
.hero-clean {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}

/* Particle Canvas */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: decoFloat 6s ease-in-out infinite;
}

.deco-1 {
    top: 15%;
    right: 10%;
    color: var(--orange);
    font-size: 2.5rem;
    animation-delay: 0s;
    animation: decoAppear 1s ease 2s forwards, decoFloat 6s ease-in-out infinite 3s;
}

.deco-2 {
    top: 25%;
    left: 8%;
    color: var(--pink);
    font-size: 1.8rem;
    animation: decoAppear 1s ease 2.2s forwards, decoFloat 7s ease-in-out infinite 3.2s;
}

.deco-3 {
    bottom: 30%;
    right: 12%;
    color: var(--purple);
    font-size: 1.5rem;
    animation: decoAppear 1s ease 2.4s forwards, decoFloat 5s ease-in-out infinite 3.4s;
}

.deco-4 {
    bottom: 25%;
    left: 15%;
    color: var(--coral);
    font-size: 2rem;
    animation: decoAppear 1s ease 2.6s forwards, decoFloat 8s ease-in-out infinite 3.6s;
}

.deco-5 {
    top: 40%;
    right: 5%;
    color: var(--violet);
    font-size: 1.2rem;
    animation: decoAppear 1s ease 2.8s forwards, decoFloat 6.5s ease-in-out infinite 3.8s;
}

@keyframes decoAppear {
    from { opacity: 0; transform: scale(0) rotate(-180deg); }
    to { opacity: 0.6; transform: scale(1) rotate(0); }
}

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(15px) rotate(-5deg); }
}

.hero-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 120px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

/* Morphing Hero Text */
.morphing-hero-text {
    margin-top: 60px;
    margin-bottom: 80px;
}

.morph-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    min-height: 1.4em;
}

.static-text {
    color: var(--text);
    opacity: 0;
    animation: fadeSlideIn 1s ease 0.5s forwards;
}

.morph-line.line-2 .static-text {
    animation-delay: 0.8s;
}

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

.morphing-word {
    min-width: 280px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(155, 93, 229, 0.2));
    border: 2px solid rgba(233, 69, 96, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.4);
    animation: wordGlow 3s ease-in-out infinite;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
}

@keyframes wordGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(233, 69, 96, 0.3),
                    inset 0 0 40px rgba(155, 93, 229, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(155, 93, 229, 0.5),
                    inset 0 0 60px rgba(233, 69, 96, 0.3);
    }
}

.morphing-word::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient);
    animation: cursorBlink 1s infinite;
    opacity: 0.8;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 0.8; }
    50%, 100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .morph-line {
        flex-direction: column;
        gap: 10px;
        font-size: 1.5rem;
    }
    
    .morphing-word {
        min-width: 220px;
        padding: 12px 24px;
        font-size: 1.2rem;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
}

.hero-title .line-1 {
    display: block;
    opacity: 0;
    transform: translateX(100px) rotateY(-20deg);
    animation: heroLine1 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-title .line-2 {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    opacity: 0;
    transform: translateX(-100px) rotateY(20deg);
    animation: 
        heroLine2 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards,
        gradientShift 4s ease-in-out infinite 1.8s;
}

/* Word and letter styling */
.blur-letters .word {
    display: inline-block;
    margin: 0 0.15em;
}

.blur-letters .letter {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
}

.blur-letters .letter:hover {
    filter: blur(4px);
    opacity: 0.7;
    transform: scale(1.1);
}

@keyframes heroLine1 {
    0% { 
        opacity: 0; 
        transform: translateX(100px) rotateY(-20deg) scale(0.8);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroLine2 {
    0% { 
        opacity: 0; 
        transform: translateX(-100px) rotateY(20deg) scale(0.8);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) rotateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glowing effect on hover */
.hero-title:hover .line-2 {
    text-shadow: 0 0 40px rgba(233, 69, 96, 0.8), 0 0 80px rgba(155, 93, 229, 0.6);
    animation: titleGlitch 0.8s ease-in-out;
}

@keyframes titleGlitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleReveal 1s ease 1s forwards;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 2px;
    background: var(--gradient);
    animation: lineExpand 0.8s ease 1.5s forwards;
}

@keyframes subtitleReveal {
    0% { 
        opacity: 0; 
        transform: translateY(30px);
        letter-spacing: 10px;
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
        letter-spacing: normal;
    }
}

@keyframes lineExpand {
    to { transform: translateX(-50%) scaleX(1); }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: ctaReveal 0.8s ease 1.8s forwards;
}

@keyframes ctaReveal {
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
    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::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.btn-primary .arrow {
    transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arrow {
    transform: translateX(-5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--card-border);
    border-radius: 50px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
    border-color: var(--pink);
    background: rgba(233, 69, 96, 0.1);
}

.btn-school {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.2), rgba(233, 69, 96, 0.2));
    border: 2px solid var(--purple);
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    animation: schoolPulse 2s ease-in-out infinite;
}

@keyframes schoolPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(155, 93, 229, 0.3); }
    50% { box-shadow: 0 0 40px rgba(155, 93, 229, 0.6); }
}

.btn-school:hover {
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.4), rgba(233, 69, 96, 0.4));
    border-color: var(--pink);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(155, 93, 229, 0.4);
}

.btn-secondary .play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Hero Stats Bar */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.stat-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--purple), transparent);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.8s ease 1.5s forwards, bounce 2s ease-in-out infinite 1.5s;
}

.scroll-hint .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-hint .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gradient);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

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

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

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

/* ================================
   BUTTONS
   ================================ */
.btn-glow {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-glow::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-glow:hover::before { left: 100%; }
.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    animation: buttonPulse 0.6s ease-in-out;
}

@keyframes buttonPulse {
    0%, 100% { transform: translateY(-3px) scale(1.02); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.btn-glow.full { width: 100%; text-align: center; }

.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--card-border);
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    border-color: var(--pink);
    background: rgba(233, 69, 96, 0.1);
}


/* ================================
   SENSI SECTION
   ================================ */
.sensi-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.sensi-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sensi-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.sensi-robot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glowing Circle Orbit */
.robot-orbit {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid transparent;
    border-image: var(--gradient) 1;
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.4),
                inset 0 0 40px rgba(155, 93, 229, 0.3);
}

.orbit-2 {
    width: 380px;
    height: 380px;
    border-width: 2px;
    animation-duration: 25s;
    animation-direction: reverse;
    opacity: 0.6;
}

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

.robot-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.robot-image {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: robotFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.drag-hint {
    display: none;
}


.sensi-text-side {
    position: relative;
}

.badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.giant-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 30px;
}

.sensi-tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
}

.check-list li::before {
    content: '✓';
    color: var(--purple);
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.cta-text strong { color: var(--text); }

/* ================================
   PROBLEM SECTION - Animated Cards
   ================================ */
.problem-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: lineExpand 1s ease-in-out;
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.section-heading:hover::after {
    animation: lineGlow 0.8s ease-in-out;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(233, 69, 96, 0.5); }
    50% { box-shadow: 0 0 30px rgba(155, 93, 229, 0.8); width: 100px; }
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    border-color: var(--pink);
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(155, 93, 229, 0.1));
}

.problem-card:hover .shape-icon {
    animation: iconExplode 0.6s ease-out;
}

@keyframes iconExplode {
    0% { transform: scale(1); }
    50% { transform: scale(1.5) rotate(180deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

.problem-shape {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(155, 93, 229, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.problem-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover .problem-shape::before {
    opacity: 0.2;
}

.shape-icon {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    animation: iconPulse 3s ease-in-out infinite;
}

.problem-card:nth-child(1) .shape-icon { animation-delay: 0s; }
.problem-card:nth-child(2) .shape-icon { animation-delay: 0.5s; }
.problem-card:nth-child(3) .shape-icon { animation-delay: 1s; }
.problem-card:nth-child(4) .shape-icon { animation-delay: 1.5s; }

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

.problem-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.problem-card p strong {
    color: var(--text);
    display: block;
    margin-top: 4px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   EXPLODING PROBLEM CARDS 💥
   ================================ */

.problem-card.explodable {
    cursor: pointer;
    position: relative;
    perspective: 1000px;
    overflow: visible;
}

.card-front {
    transition: all 0.5s ease;
}

/* Explosion Particles Container */
.explosion-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

/* The Solution Reveal */
.solution-reveal {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.95), rgba(155, 93, 229, 0.95));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transform: scale(0) rotateY(180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.solution-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Exploded State */
.problem-card.exploded .card-front {
    opacity: 0;
    transform: scale(0.5) rotate(10deg);
}

.problem-card.exploded .solution-reveal {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Create explosion particles dynamically */
.explosion-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
}

.explosion-particle.star {
    width: 15px;
    height: 15px;
    background: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sparkle trail */
@keyframes explodeParticle {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0) rotate(720deg);
    }
}

@keyframes sparkleTrail {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0); }
}

/* Click Hint Animation */
.problem-card.explodable::after {
    content: '👆 לחצו!';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--text-dim);
    opacity: 0;
    transition: opacity 0.3s;
}

.problem-card.explodable:hover::after {
    opacity: 1;
    animation: hintBounce 1s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Reset Button (shows after explosion) */
.problem-card.exploded::after {
    content: '🔄 לחצו לאפס';
    opacity: 0.7;
}

.solution-line {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease);
}

.solution-line.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* ================================
   SOLUTIONS - EQUAL GRID
   ================================ */
.solutions-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(155, 93, 229, 0.3);
}

/* Popular Card - Center Focus */
.popular-card {
    background: linear-gradient(145deg, rgba(155, 93, 229, 0.15), rgba(233, 69, 96, 0.1));
    border: 2px solid var(--pink);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
    animation: popularPulse 3s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { 
        box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
        border-color: var(--pink);
    }
    50% { 
        box-shadow: 0 30px 80px rgba(155, 93, 229, 0.6);
        border-color: var(--purple);
    }
}

.popular-card:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 80px rgba(233, 69, 96, 0.6);
}

.popular-card .sol-badge {
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}

.sol-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sol-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.solution-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.sol-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    margin-top: auto;
}
.sol-link:hover { color: var(--orange); }

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

/* ================================
   DEMO SECTION
   ================================ */
.demo-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.demo-glass {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.demo-glass h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.demo-glass > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.demo-frame {
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.demo-frame:hover {
    border-color: var(--pink);
    box-shadow: 0 0 60px rgba(233, 69, 96, 0.4);
    transform: scale(1.02);
}

.demo-play {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s var(--ease);
    animation: demoBreath 2s ease-in-out infinite;
    position: relative;
}

@keyframes demoBreath {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 20px 60px rgba(155, 93, 229, 0.6);
    }
}

.demo-play::before,
.demo-play::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    opacity: 0;
    animation: playRipple 2s ease-out infinite;
}

.demo-play::after {
    animation-delay: 0.5s;
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.demo-frame:hover .demo-play {
    transform: scale(1.2) rotate(10deg);
    animation: demoSpin 1s ease-in-out;
}

@keyframes demoSpin {
    0% { transform: scale(1.2) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1.2) rotate(360deg); }
}

/* ================================
   TIMELINE
   ================================ */
.timeline-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.timeline::before {
    content: '';
    position: absolute;
    right: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple));
}

.timeline-item {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s var(--ease);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.timeline-cta {
    text-align: center;
}

/* ================================
   5 STEPS - BREATHTAKING ANIMATION
   ================================ */
.steps-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* Removed energy line for cleaner look */

.step-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(100px) rotateY(-20deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.visible {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.step-card:hover {
    background: linear-gradient(135deg, var(--card-bg), rgba(155, 93, 229, 0.1));
    border-color: var(--pink);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

/* Staggered entrance */
.step-card[data-step="1"] { transition-delay: 0.1s; }
.step-card[data-step="2"] { transition-delay: 0.2s; }
.step-card[data-step="3"] { transition-delay: 0.3s; }
.step-card[data-step="4"] { transition-delay: 0.4s; }
.step-card[data-step="5"] { transition-delay: 0.5s; }

/* Orbital Step Number */
.step-orbit {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: orbitPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.step-card:hover .step-number {
    animation: orbitSpin 1s ease-out;
}

@keyframes orbitPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 60px rgba(155, 93, 229, 0.6); }
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Orbit rings */
.step-orbit::before,
.step-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-color: var(--pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: orbitExpand 2s ease-out infinite;
}

.step-orbit::before {
    width: 120px;
    height: 120px;
}

.step-orbit::after {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

@keyframes orbitExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Connector Arrow */
.step-connector {
    position: absolute;
    left: 80px;
    bottom: -40px;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.step-connector::after {
    content: '↓';
    font-size: 2rem;
    color: var(--pink);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.step-card:last-child .step-connector {
    display: none;
}

/* ================================
   EXPLOSIVE TIMELINE ANIMATIONS 🚀
   ================================ */

/* Explosive Title */
.explosive-title {
    display: flex !important;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
}

.title-word.fly-in.visible {
    animation: flyInWord 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-word.delay-1 { animation-delay: 0.2s; }
.title-word.delay-2 { animation-delay: 0.4s; }

.title-emoji {
    font-size: 3rem;
}

.title-emoji.bounce-forever {
    animation: megaBounce 1s ease-in-out infinite, rocketShake 0.5s ease-in-out infinite;
}

@keyframes flyInWord {
    0% { 
        opacity: 0; 
        transform: translateY(100px) rotateX(90deg) scale(0.5);
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        filter: blur(0);
    }
    70% {
        transform: translateY(-20px) rotateX(0) scale(1.1);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0) scale(1);
    }
}

@keyframes megaBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.2); }
}

@keyframes rocketShake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Explosive Cards */
.explosive-steps {
    perspective: 2000px;
}

.explosive-card {
    position: relative;
    transform-style: preserve-3d;
    overflow: visible;
}

.explosive-card::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.5s;
}

.explosive-card:hover::before {
    opacity: 0.5;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: blur(20px); opacity: 0.3; }
    50% { filter: blur(30px); opacity: 0.6; }
}

/* Flying Icons */
.step-flying-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0;
    transform: translateY(50px) rotate(-20deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

.explosive-card.visible .step-flying-icon {
    opacity: 1;
    transform: translateY(0) rotate(0);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-15px) rotate(10deg); }
    50% { transform: translateY(0) rotate(0); }
    75% { transform: translateY(-10px) rotate(-10deg); }
}

/* Spinning Orbit */
.step-orbit.spinning {
    position: relative;
}

.orbit-ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--pink);
    border-radius: 50%;
    opacity: 0.5;
    animation: orbitSpin 10s linear infinite;
}

.orbit-ring.ring-2 {
    inset: -25px;
    border-color: var(--purple);
    animation: orbitSpin 15s linear infinite reverse;
}

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

/* Glowing Numbers */
.glowing-number {
    animation: numberGlow 2s ease-in-out infinite, numberPulse 1.5s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(233, 69, 96, 0.5),
                    0 0 60px rgba(233, 69, 96, 0.3),
                    0 0 90px rgba(155, 93, 229, 0.2);
    }
    50% { 
        box-shadow: 0 0 50px rgba(233, 69, 96, 0.7),
                    0 0 100px rgba(233, 69, 96, 0.5),
                    0 0 150px rgba(155, 93, 229, 0.4);
    }
}

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

/* Typewriter Effect */
.typewriter-text {
    overflow: hidden;
    white-space: nowrap;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: typewriter 2s steps(20) forwards;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* Fade In Text */
.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
}

.explosive-card.visible .fade-in-text {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

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

/* Tags */
.step-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid var(--pink);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--pink);
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.explosive-card.visible .tag.pop-in {
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tag.delay-1 { animation-delay: 0.7s; }
.tag.delay-2 { animation-delay: 0.9s; }

@keyframes popIn {
    to { 
        opacity: 1; 
        transform: scale(1) rotate(0);
    }
}

/* Lightning Connector */
.lightning-connector {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: lightning 2s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* Step Particles */
.step-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.step-particles::before,
.step-particles::after {
    content: '✦';
    position: absolute;
    font-size: 12px;
    color: var(--pink);
    opacity: 0;
}

.explosive-card:hover .step-particles::before {
    animation: particle1 1s ease-out forwards;
}

.explosive-card:hover .step-particles::after {
    animation: particle2 1s ease-out forwards 0.2s;
}

@keyframes particle1 {
    0% { top: 50%; left: 50%; opacity: 1; transform: scale(0); }
    100% { top: 0; left: 20%; opacity: 0; transform: scale(2); }
}

@keyframes particle2 {
    0% { top: 50%; right: 50%; opacity: 1; transform: scale(0); }
    100% { top: 10%; right: 10%; opacity: 0; transform: scale(2); }
}

/* Flying Elements */
.flying-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.flying-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
}

.fly-1 {
    top: 10%;
    left: 5%;
    animation: flyAround1 8s ease-in-out infinite;
}

.fly-2 {
    top: 30%;
    right: 5%;
    animation: flyAround2 10s ease-in-out infinite;
}

.fly-3 {
    bottom: 20%;
    left: 10%;
    animation: flyAround3 12s ease-in-out infinite;
}

.fly-4 {
    top: 60%;
    right: 15%;
    animation: flyAround4 9s ease-in-out infinite;
}

.fly-5 {
    bottom: 10%;
    right: 20%;
    animation: flyAround5 7s ease-in-out infinite;
}

@keyframes flyAround1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(100px, 20px) rotate(180deg); }
    75% { transform: translate(30px, 50px) rotate(270deg); }
}

@keyframes flyAround2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 40px) scale(1.5); }
    66% { transform: translate(-40px, -60px) scale(0.8); }
}

@keyframes flyAround3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(200px, -100px) rotate(360deg); opacity: 1; }
}

@keyframes flyAround4 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-150px) scale(1.3); }
}

@keyframes flyAround5 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-100px, -50px); }
    50% { transform: translate(-50px, 100px); }
    75% { transform: translate(50px, 50px); }
}

/* Explosive CTA */
.explosive-cta {
    position: relative;
    margin-top: 60px;
}

.cta-sparkles {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.cta-sparkles::before,
.cta-sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.cta-sparkles::before { top: 0; left: 20%; animation-delay: 0s; }
.cta-sparkles::after { bottom: 0; right: 20%; animation-delay: 1s; }

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

.mega-bounce {
    animation: megaBounceBtn 2s ease-in-out infinite;
}

@keyframes megaBounceBtn {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.02); }
    50% { transform: translateY(0) scale(1); }
    75% { transform: translateY(-5px) scale(1.01); }
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .step-connector {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-flying-icon {
        top: -20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .explosive-card.visible .step-flying-icon {
        transform: translateX(50%);
    }
    
    .flying-elements {
        display: none;
    }
    
    .title-emoji {
        font-size: 2rem;
    }
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-abstract {
    position: relative;
    width: 200px;
    height: 200px;
}

.a-line {
    position: absolute;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: aLine 2s ease-in-out infinite;
}

.a-line:nth-child(1) { width: 120px; top: 40px; right: 20px; }
.a-line:nth-child(2) { width: 80px; top: 80px; right: 40px; animation-delay: 0.2s; }
.a-line:nth-child(3) { width: 100px; top: 120px; right: 30px; animation-delay: 0.4s; }

.a-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    top: 75px;
    right: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes aLine {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(0.7); opacity: 0.7; }
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlight {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-right: 4px solid var(--pink);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.about-highlight p {
    color: var(--text);
    margin: 0;
}

.about-mission {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.school-card {
    display: flex;
    gap: 20px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
}

.school-emoji { font-size: 2rem; }
.school-card strong { display: block; margin-bottom: 8px; color: var(--text); }
.school-card p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; }
.school-card a { color: var(--pink); text-decoration: none; font-weight: 600; }
.school-card a:hover { color: var(--orange); }

/* ================================
   CONTACT
   ================================ */
.contact-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--dark), var(--darker));
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.contact-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.contact-links a:hover { color: var(--pink); transform: translateX(-5px); }
.c-icon { font-size: 1.5rem; }

.glass-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s;
}

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

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255,255,255,0.08);
}

.form-row textarea { resize: vertical; min-height: 100px; }

/* ================================
   FOOTER - REVOLUTIONARY
   ================================ */
.footer {
    padding: 120px 40px 30px;
    background: var(--darker);
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
}

/* Floating Contact Bubbles */
.footer-bubbles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-bubble {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--card-border);
    border-radius: 100px;
    text-decoration: none;
    position: relative;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-email {
    animation-delay: 0s;
}

.bubble-phone {
    animation-delay: 0.5s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.contact-bubble:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--pink);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.5);
    animation: bubbleExpand 0.6s ease-out;
}

@keyframes bubbleExpand {
    0% { transform: translateY(-10px) scale(1.05); }
    50% { transform: translateY(-15px) scale(1.1); }
    100% { transform: translateY(-10px) scale(1.05); }
}

.bubble-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(20px);
}

.contact-bubble:hover .bubble-glow {
    opacity: 0.4;
    animation: glowPulse 1s ease-in-out;
}

.bubble-icon {
    font-size: 2.5rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.contact-bubble:hover .bubble-icon {
    animation: iconJump 0.5s ease-out;
}

@keyframes iconJump {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(360deg); }
}

.bubble-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bubble-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bubble-value {
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bubbles {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-bubble {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom p { color: var(--text-dim); font-size: 0.9rem; }

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
}

.footer-credit:hover {
    color: var(--text);
}

.footer-credit-logo {
    height: 28px;
    transition: all 0.3s var(--ease);
}

.footer-credit:hover .footer-credit-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent));
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease);
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-main { grid-column: 1 / 7; grid-row: 1; }
    .bento-stats { grid-column: 1 / 7; grid-row: 2; }
    .bento-sensi { grid-column: 1 / 3; grid-row: 3; }
    .bento-auto { grid-column: 3 / 5; grid-row: 3; }
    .bento-ai { grid-column: 5 / 7; grid-row: 3; }
    .bento-code { grid-column: 1 / 4; grid-row: 4; }
    
    .sol-grid { grid-template-columns: 1fr; }
    .sol-main { grid-row: auto; }
}

@media (max-width: 1024px) {
    .sensi-wrapper { grid-template-columns: 1fr; text-align: center; }
    .sensi-visual-side { order: -1; min-height: 350px; }
    .check-list li { justify-content: center; }
    
    .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .about-visual { height: 250px; }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { text-align: center; }
    .contact-links { align-items: center; }
}

@media (max-width: 768px) {
    .nav-links, .school-btn { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-clean { padding: 100px 20px 60px; }
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .hero-stats-bar { flex-direction: column; gap: 30px; }
    .stat-line { width: 60px; height: 1px; }
    .scroll-hint { display: none; }
    
    .robot-image { width: 200px; }
    
    .problem-bento { grid-template-columns: 1fr 1fr; }
    
    .timeline::before { display: none; }
    .timeline-item { flex-direction: column; gap: 16px; }
    .timeline-num { text-align: right; }
    
}

@media (max-width: 480px) {
    .problem-bento { grid-template-columns: 1fr; }
    .giant-title { font-size: 4rem; }
}

/* ================================
   BLOG BANNER
   ================================ */
.blog-banner {
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.1), rgba(233, 69, 96, 0.08));
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.blog-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.blog-banner-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-banner-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 8px;
}

.blog-banner-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.blog-banner-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.blog-banner-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

.blog-banner-btn svg {
    transform: rotate(180deg);
    transition: transform 0.3s var(--ease);
}

.blog-banner-btn:hover svg {
    transform: rotate(180deg) translateX(5px);
}

@media (max-width: 768px) {
    .blog-banner {
        padding: 40px 20px;
    }
    
    .blog-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-banner-text h3 {
        font-size: 1.5rem;
    }
}

/* ================================
   BLOG SHOWCASE BANNER
   ================================ */
.blog-showcase {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a15 0%, #12081c 50%, #0a0f1a 100%);
}

.showcase-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(233, 69, 96, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(155, 93, 229, 0.08) 0%, transparent 50%);
}

.showcase-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.showcase-header {
    margin-bottom: 50px;
}

.showcase-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.showcase-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
}

/* Article Cards with Images */
.article-cards-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.article-card-mini {
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s var(--ease);
}

.article-card-mini:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
}

.card-mini-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.3), rgba(233, 69, 96, 0.3));
}

.card-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.article-card-mini:hover .card-mini-image img {
    transform: scale(1.1);
}

.card-mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.card-mini-content {
    padding: 20px;
    text-align: right;
}

.card-mini-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-mini-content span {
    color: var(--pink);
    font-size: 0.8rem;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease);
}

.showcase-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.showcase-cta svg {
    transform: rotate(180deg);
}

/* Scroll Transition */
.scroll-transition {
    height: 150px;
    position: relative;
    overflow: hidden;
}

.transition-wave {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        #0a0a15 0%, 
        transparent 30%,
        transparent 70%,
        #0a0515 100%
    );
}

.transition-wave::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

@media (max-width: 768px) {
    .blog-showcase {
        padding: 60px 20px;
    }
    
    .article-cards-row {
        flex-direction: column;
        align-items: center;
    }
    
    .article-card-mini {
        width: 100%;
        max-width: 320px;
    }
}

/* ================================
   SCHOOL BUBBLES BANNER
   ================================ */
.school-bubbles {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #0f0520 100%);
}

.bubbles-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main CTA Bubble */
.main-bubble {
    position: relative;
    z-index: 100;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    animation: mainBubbleFloat 6s ease-in-out infinite;
}

.main-bubble:hover {
    transform: scale(1.05);
}

.main-bubble:hover .rotating-ring {
    border-color: rgba(233, 69, 96, 0.8);
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.6);
}

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

/* Rotating Dashed Ring */
.rotating-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px dashed rgba(233, 69, 96, 0.6);
    animation: rotateRing 20s linear infinite;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.rotating-ring.ring-2 {
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(155, 93, 229, 0.4);
    animation: rotateRing 30s linear infinite reverse;
    box-shadow: 0 0 20px rgba(155, 93, 229, 0.2);
}

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

/* Main Bubble Glow */
.main-bubble-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(233, 69, 96, 0.3) 0%, 
        rgba(155, 93, 229, 0.2) 50%,
        transparent 70%
    );
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

/* Inner Bubble */
.main-bubble-inner {
    position: relative;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(155, 93, 229, 0.4) 30%,
        rgba(233, 69, 96, 0.5) 70%,
        rgba(155, 93, 229, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(233, 69, 96, 0.4),
        0 0 120px rgba(155, 93, 229, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--ease);
}

.main-bubble:hover .main-bubble-inner {
    box-shadow: 
        0 0 80px rgba(233, 69, 96, 0.6),
        0 0 150px rgba(155, 93, 229, 0.5),
        inset 0 0 80px rgba(255, 255, 255, 0.2);
}

.main-bubble-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.main-question {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    margin-bottom: 12px;
    line-height: 1.5;
}

.main-cta-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.bubble-shine {
    position: absolute;
    top: 12%;
    left: 18%;
    width: 50px;
    height: 25px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.bubble-reflection {
    position: absolute;
    bottom: 18%;
    right: 22%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Sparkle Effect for Bubble Pop */
.bubble-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, var(--pink) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleOut 0.6s ease-out forwards;
    box-shadow: 0 0 10px var(--pink), 0 0 20px var(--purple);
}

@keyframes sparkleOut {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Floating Bubbles */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(155, 93, 229, 0.15) 40%,
        rgba(233, 69, 96, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.1s;
    box-shadow: 
        0 0 20px rgba(155, 93, 229, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

.floating-bubble:hover {
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(155, 93, 229, 0.25) 40%,
        rgba(233, 69, 96, 0.3) 100%
    );
}

.bubble-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    padding: 5px;
    z-index: 1;
}

.bubble-shine-small {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 15%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-30deg);
}

/* Pop Animation */
.floating-bubble.popping {
    animation: bubblePop 0.4s ease-out forwards;
}

@keyframes bubblePop {
    0% { 
        transform: scale(1); 
        opacity: 1;
    }
    30% { 
        transform: scale(1.3); 
        opacity: 0.8;
    }
    100% { 
        transform: scale(0); 
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .main-bubble {
        width: 240px;
        height: 240px;
    }
    
    .main-question {
        font-size: 0.95rem;
    }
    
    .main-cta-text {
        font-size: 1.1rem;
    }
}
