/* Capabilities Page Specific Styles */

.capabilities-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}


.capabilities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

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

.capabilities-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}


.capability-section {
    padding: 100px 0;
}

.capability-section:nth-child(even) {
    background: var(--light);
}

.capability-section:nth-child(odd) {
    background: var(--white);
}

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

.capability-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.capability-grid.reverse .capability-visual {
    order: -1;
}

.capability-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.capability-text p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.capability-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

/* Interactive capability list styles */
.interactive-list .capability-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.interactive-list .capability-item:hover {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-teal);
    transform: translateX(5px);
}

.interactive-list .capability-item.active {
    background: rgba(78, 205, 196, 0.15);
    color: var(--accent-teal);
    font-weight: 600;
}

.interactive-list .capability-item.active::before {
    color: var(--accent-teal);
    font-weight: bold;
}

.interactive-list .capability-item:hover::before,
.interactive-list .capability-item.active::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.capability-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 400px;
    height: 400px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.visual-card:hover {
    transform: scale(1.05);
}

.visual-card.purple {
    background: linear-gradient(135deg, var(--accent-purple), #8E44AD);
}

.visual-card.green {
    background: linear-gradient(135deg, var(--accent-green), #27AE60);
}

.visual-card.orange {
    background: linear-gradient(135deg, #FF8C00, #FF6347);
}

/* Branding image container */
.branding-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branding-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) rotateY(45deg);
}

.branding-image.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.branding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Revolutionary Brand DNA Helix */
.strategy-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-dna-helix {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.helix-container {
    width: 140px;
    height: 140px;
    position: relative;
    margin-bottom: 15px;
}

.helix-svg {
    width: 100%;
    height: 100%;
    animation: helixRotation 8s linear infinite;
}

@keyframes helixRotation {
    0% {
        transform: rotateY(0deg) rotateX(5deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(5deg);
    }
}

/* Helix Strands Animation */
.helix-strand {
    animation: strandFlow 6s ease-in-out infinite;
}

.strand-left {
    animation-delay: 0s;
}

.strand-right {
    animation-delay: 3s;
}

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

/* DNA Elements Animation */
.dna-element {
    animation: elementPulse 4s ease-in-out infinite;
    transform-origin: center;
}

.element-1 { animation-delay: 0s; }
.element-2 { animation-delay: 0.4s; }
.element-3 { animation-delay: 0.8s; }
.element-4 { animation-delay: 1.2s; }
.element-5 { animation-delay: 1.6s; }
.element-6 { animation-delay: 0.2s; }
.element-7 { animation-delay: 0.6s; }
.element-8 { animation-delay: 1.0s; }
.element-9 { animation-delay: 1.4s; }
.element-10 { animation-delay: 1.8s; }

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

/* Connection Lines Animation */
.connection-line {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: connectionFlow 3s ease-in-out infinite;
}

.conn-1 { animation-delay: 0s; }
.conn-2 { animation-delay: 0.5s; }
.conn-3 { animation-delay: 1s; }
.conn-4 { animation-delay: 1.5s; }

@keyframes connectionFlow {
    0%, 20% {
        stroke-dashoffset: 60;
        opacity: 0.3;
    }
    50%, 80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -60;
        opacity: 0.3;
    }
}

/* Information Packets */
.info-packet {
    animation: packetTravel 5s ease-in-out infinite;
    transform-origin: center;
}

.packet-1 { animation-delay: 0s; }
.packet-2 { animation-delay: 1s; }
.packet-3 { animation-delay: 2s; }
.packet-4 { animation-delay: 3s; }
.packet-5 { animation-delay: 4s; }

@keyframes packetTravel {
    0%, 90%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.7;
    }
    10%, 80% {
        transform: scale(1.5) translateX(5px);
        opacity: 1;
    }
    45% {
        transform: scale(1.2) translateX(-5px);
        opacity: 0.9;
    }
}

/* Central Brand Core */
.brand-core {
    animation: coreEnergy 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes coreEnergy {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

.core-pulse {
    animation: corePulse 2s ease-in-out infinite;
}

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

/* Interactive Brand Elements Overlay */
.brand-elements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.brand-element {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: brandElementOrbit 12s linear infinite;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.brand-element:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.element-icon {
    font-size: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.values {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.identity {
    top: 15%;
    right: 20%;
    animation-delay: -2.4s;
}

.voice {
    bottom: 25%;
    right: 10%;
    animation-delay: -4.8s;
}

.position {
    bottom: 15%;
    left: 25%;
    animation-delay: -7.2s;
}

.experience {
    top: 50%;
    left: 5%;
    animation-delay: -9.6s;
}

@keyframes brandElementOrbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0.7;
    }
}

.helix-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: labelFloat 3s ease-in-out infinite;
}

.target-icon {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand Constellation Core */
.target-center {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #f8f9ff, #e8edff);
    border-radius: 50%;
    position: relative;
    z-index: 20;
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.9),
        0 0 60px rgba(102, 126, 234, 0.4),
        inset 0 2px 8px rgba(102, 126, 234, 0.2);
    animation: coreConstellation 8s ease-in-out infinite;
}

.target-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    animation: corePulse 4s ease-in-out infinite;
}

/* Brand Pillars (Constellation Points) */
.target-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(102, 126, 234, 0.3));
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(102, 126, 234, 0.3);
    animation: pillarOrbit 12s linear infinite;
    z-index: 15;
}

.target-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff, #667eea);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pillarGlow 3s ease-in-out infinite;
}

.target-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pillarRipple 4s ease-out infinite;
}

/* Orbital Paths */
.target-ring:nth-child(1) {
    animation-duration: 15s;
    animation-delay: 0s;
    transform-origin: 100px 0px;
    top: 20%;
    left: 50%;
}

.target-ring:nth-child(2) {
    animation-duration: 18s;
    animation-delay: -3s;
    transform-origin: 70px 70px;
    top: 30%;
    right: 15%;
}

.target-ring:nth-child(3) {
    animation-duration: 20s;
    animation-delay: -6s;
    transform-origin: 0px 100px;
    bottom: 20%;
    right: 25%;
}

/* Connection Lines - Brand Relationships */
.target-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 30deg,
        transparent 60deg,
        rgba(102, 126, 234, 0.1) 90deg,
        transparent 120deg,
        rgba(255, 255, 255, 0.1) 150deg,
        transparent 180deg,
        rgba(102, 126, 234, 0.1) 210deg,
        transparent 240deg,
        rgba(255, 255, 255, 0.1) 270deg,
        transparent 300deg,
        rgba(102, 126, 234, 0.1) 330deg,
        transparent 360deg
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: constellationRotate 25s linear infinite;
    z-index: 1;
}

/* Particle Field for Brand Energy */
.strategy-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(102, 126, 234, 0.4), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.2), transparent);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px, 110px 110px;
    animation: particleField 20s linear infinite;
    z-index: 5;
}

/* Advanced Keyframe Animations */
@keyframes coreConstellation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow:
            0 0 30px rgba(255, 255, 255, 0.9),
            0 0 60px rgba(102, 126, 234, 0.4),
            inset 0 2px 8px rgba(102, 126, 234, 0.2);
    }
    25% {
        transform: scale(1.05) rotate(90deg);
        box-shadow:
            0 0 40px rgba(255, 255, 255, 1),
            0 0 80px rgba(102, 126, 234, 0.6),
            inset 0 3px 12px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        box-shadow:
            0 0 50px rgba(255, 255, 255, 0.8),
            0 0 100px rgba(102, 126, 234, 0.5),
            inset 0 4px 16px rgba(102, 126, 234, 0.4);
    }
    75% {
        transform: scale(1.05) rotate(270deg);
        box-shadow:
            0 0 40px rgba(255, 255, 255, 1),
            0 0 80px rgba(102, 126, 234, 0.6),
            inset 0 3px 12px rgba(102, 126, 234, 0.3);
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 25px rgba(102, 126, 234, 1);
    }
}

@keyframes pillarOrbit {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) translateX(80px) rotate(-180deg);
        opacity: 0.9;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
        opacity: 0.7;
    }
}

@keyframes pillarGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes pillarRipple {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes constellationRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes particleField {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.6;
    }
    75% {
        transform: translateY(5px) translateX(10px);
        opacity: 0.9;
    }
}

/* Living Brand System */
.guidelines-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.living-brand-system {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-system-container {
    width: 180px;
    height: 180px;
    display: grid;
    grid-template-areas:
        "logos colors"
        "typography rules"
        "apps apps";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    margin-bottom: 15px;
}

/* Interactive Logo Variations */
.logo-variations {
    grid-area: logos;
    display: flex;
    gap: 4px;
    align-items: center;
}

.logo-variant {
    width: 24px;
    height: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: logoVariationCycle 6s ease-in-out infinite;
}

.logo-variant:hover {
    transform: scale(1.2);
}

.primary { animation-delay: 0s; }
.secondary { animation-delay: 2s; }
.icon { animation-delay: 4s; }

@keyframes logoVariationCycle {
    0%, 80%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    10%, 70% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.variant-svg {
    width: 100%;
    height: 100%;
}

.logo-shape {
    animation: shapeTransform 3s ease-in-out infinite;
}

.logo-accent {
    animation: accentGlow 2s ease-in-out infinite;
}

@keyframes shapeTransform {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) rotate(5deg);
        opacity: 0.9;
    }
}

@keyframes accentGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    }
}

/* Dynamic Color System */
.color-system {
    grid-area: colors;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-wheel {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50%;
    overflow: visible;
}

.color-segment {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: colorPulse 4s ease-in-out infinite;
}

.color-segment:hover {
    transform: scale(1.3);
    z-index: 10;
}

.color-segment:hover .color-value {
    opacity: 1;
    transform: translateY(-20px) scale(1);
}

.segment-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.color-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.8);
    font-size: 6px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    padding: 1px 3px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.primary {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.primary .segment-inner {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.secondary {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.secondary .segment-inner {
    background: #4ECDC4;
}

.accent {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.accent .segment-inner {
    background: #FF6B6B;
}

.neutral {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.neutral .segment-inner {
    background: #96CEB4;
}

@keyframes colorPulse {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    20%, 60% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.color-relationships {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.relationship-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 50%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: 0;
    width: 100%;
    animation-delay: 1s;
}

.line-3 {
    top: 25%;
    left: 25%;
    width: 50%;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

/* Typography System */
.typography-system {
    grid-area: typography;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.font-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.font-level {
    display: flex;
    align-items: center;
    gap: 4px;
    animation: fontLevelShow 3s ease-in-out infinite;
}

.heading { animation-delay: 0s; }
.body { animation-delay: 1s; }
.caption { animation-delay: 2s; }

@keyframes fontLevelShow {
    0%, 80%, 100% {
        opacity: 0.7;
        transform: translateX(0);
    }
    20%, 60% {
        opacity: 1;
        transform: translateX(2px);
    }
}

.font-sample {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    color: #ffffff;
    font-weight: bold;
    animation: fontSampleGlow 2s ease-in-out infinite;
}

@keyframes fontSampleGlow {
    0%, 100% {
        box-shadow: 0 0 2px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 4px rgba(102, 126, 234, 0.6);
    }
}

.font-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.font-name {
    font-size: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1;
}

.font-weight {
    font-size: 4px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.typography-flow {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.flow-arrow {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.6);
    animation: arrowFlow 2s ease-in-out infinite;
}

.flow-arrow:nth-child(1) { animation-delay: 0s; }
.flow-arrow:nth-child(2) { animation-delay: 0.5s; }

@keyframes arrowFlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(2px);
    }
}

/* Brand Rules Engine */
.brand-rules {
    grid-area: rules;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rule-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    animation: ruleCheck 6s ease-in-out infinite;
}

.rule-indicator:nth-child(1) { animation-delay: 0s; }
.rule-indicator:nth-child(2) { animation-delay: 2s; }
.rule-indicator:nth-child(3) { animation-delay: 4s; }

@keyframes ruleCheck {
    0%, 80%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    20%, 60% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.rule-indicator.active .rule-dot {
    background: #4ECDC4;
    box-shadow: 0 0 4px rgba(78, 205, 196, 0.6);
}

.rule-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    animation: dotPulse 2s ease-in-out infinite;
}

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

.rule-text {
    font-size: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Real-time Brand Applications */
.brand-applications {
    grid-area: apps;
    margin-top: 4px;
}

.application-preview {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.preview-item {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    animation: appPreviewShow 4s ease-in-out infinite;
}

.business-card { animation-delay: 0s; }
.website { animation-delay: 1.3s; }
.social { animation-delay: 2.6s; }

@keyframes appPreviewShow {
    0%, 75%, 100% {
        opacity: 0.7;
        transform: scale(1) rotateY(0deg);
    }
    25%, 50% {
        opacity: 1;
        transform: scale(1.1) rotateY(5deg);
    }
}

.card-layout {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-logo {
    width: 6px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1px;
}

.card-text {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5px;
}

.web-layout {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    display: flex;
    flex-direction: column;
}

.web-header {
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
}

.web-header::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 4px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.5px;
}

.web-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.05);
    margin: 1px;
    border-radius: 1px;
}

.social-layout {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    padding: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.social-avatar {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: avatarPulse 2s ease-in-out infinite;
}

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

.social-post {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
}

.system-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: labelFloat 3s ease-in-out infinite;
}

.guideline-doc {
    width: 180px;
    height: 220px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.guidelines-visual:hover .guideline-doc {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.doc-header {
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    border-radius: 6px;
    margin-bottom: 18px;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.doc-header::before {
    content: 'Brand Guidelines';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.doc-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
    border-radius: 5px;
    margin-bottom: 10px;
    animation: lineLoad 2s ease-in-out infinite;
}

.doc-line:nth-child(3) { animation-delay: 0.2s; }
.doc-line:nth-child(4) { animation-delay: 0.4s; }
.doc-line.short { animation-delay: 0.6s; }

.doc-line.short {
    width: 65%;
}

.color-palette {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: swatchPulse 3s ease-in-out infinite;
}

.color-swatch::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: swatchGlow 2s ease-in-out infinite;
}

.color-swatch.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 0s;
}

.color-swatch.blue {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    animation-delay: 0.5s;
}

.color-swatch.green {
    background: linear-gradient(135deg, #96CEB4, #FFECD2);
    animation-delay: 1s;
}

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

@keyframes lineLoad {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.02); }
}

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

@keyframes swatchGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Typography visual */
.typography-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.font-showcase {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.font-large {
    font-size: 5rem;
    font-weight: 100;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff, #f0f0f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
    position: relative;
}

.font-large::before {
    content: 'Aa';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(1px);
    opacity: 0.3;
}

.font-samples {
    margin-bottom: 25px;
    position: relative;
}

.font-line {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: typeWriter 3s ease-in-out infinite;
    position: relative;
}

.font-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    animation: underlineExpand 2s ease-in-out infinite;
    transform: translateX(-50%);
}

.font-line.small {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 3px;
    animation-delay: 1s;
}

.color-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.color-dots::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: dotRing 2s ease-in-out infinite;
}

.dot.red {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    animation-delay: 0s;
}

.dot.yellow {
    background: linear-gradient(135deg, #FFD93D, #FFED4E);
    animation-delay: 0.7s;
}

.dot.blue {
    background: linear-gradient(135deg, #4ECDC4, #6BCF7F);
    animation-delay: 1.4s;
}

.dot.green {
    background: linear-gradient(135deg, #96CEB4, #A8E6CF);
    animation-delay: 2.1s;
}

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

@keyframes typeWriter {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes underlineExpand {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

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

@keyframes dotRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* Digital image container */
.digital-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) rotateY(45deg);
}

.digital-image.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Responsive Design Visual */
.responsive-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.desktop-mockup {
    width: 120px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.desktop-mockup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 35%;
    width: 30%;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 4px 4px;
}

.tablet-mockup {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.mobile-mockup {
    width: 30px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.desktop-mockup .screen {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    margin: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: screenGlow 2s ease-in-out infinite alternate;
}

.tablet-mockup .screen {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    margin: 4px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border-radius: 4px;
    animation: screenGlow 2s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

.mobile-mockup .screen {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    margin: 3px;
    background: linear-gradient(135deg, #96CEB4, #FFECD2);
    border-radius: 3px;
    animation: screenGlow 2s ease-in-out infinite alternate;
    animation-delay: 1s;
}

@keyframes screenGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* E-commerce Development Visual (for digital section) */
.ecommerce-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-cart {
    position: relative;
    transform: perspective(600px) rotateY(-10deg);
}

.cart-body {
    width: 100px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item {
    height: 8px;
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
    border-radius: 2px;
    animation: itemPulse 3s ease-in-out infinite;
}

.cart-item:nth-child(1) { animation-delay: 0s; width: 90%; }
.cart-item:nth-child(2) { animation-delay: 1s; width: 70%; }
.cart-item:nth-child(3) { animation-delay: 2s; width: 85%; }

.cart-total {
    height: 12px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
    border-radius: 3px;
    margin-top: 4px;
    animation: totalGlow 2s ease-in-out infinite alternate;
}

.cart-handle {
    position: absolute;
    right: -15px;
    top: 10px;
    width: 12px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-left: none;
    border-radius: 0 8px 8px 0;
}

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

@keyframes totalGlow {
    0% { opacity: 0.8; box-shadow: 0 0 8px rgba(255, 107, 107, 0.3); }
    100% { opacity: 1; box-shadow: 0 0 16px rgba(255, 107, 107, 0.6); }
}

/* Mobile App Development Visual */
.mobile-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-devices {
    display: flex;
    gap: 20px;
    align-items: center;
}

.device {
    width: 60px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: deviceFloat 3s ease-in-out infinite;
}

.device.ios { animation-delay: 0s; }
.device.android { animation-delay: 1s; }

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    margin-bottom: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.content-block {
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    animation: contentPulse 2s ease-in-out infinite;
}

.content-block:nth-child(1) { animation-delay: 0s; }
.content-block:nth-child(2) { animation-delay: 0.5s; }

.app-navigation {
    height: 16px;
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.nav-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.9);
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg) scale(1); }
    50% { transform: translateY(-8px) rotateY(8deg) scale(1.05); }
}

@keyframes contentPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* API & Database Solutions Visual */
.api-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.database-architecture {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.database-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.server-icon {
    font-size: 32px;
    animation: serverPulse 3s ease-in-out infinite;
}

.server-connections {
    position: absolute;
    top: 100%;
    width: 100px;
    height: 20px;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    animation: dataTransfer 2s ease-in-out infinite;
}

.line-1 { left: 20%; width: 60%; animation-delay: 0s; }
.line-2 { left: 10%; width: 80%; animation-delay: 0.5s; }
.line-3 { left: 30%; width: 40%; animation-delay: 1s; }

.api-endpoints {
    display: flex;
    gap: 10px;
}

.endpoint {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    animation: endpointGlow 2s ease-in-out infinite;
}

.endpoint:nth-child(1) { animation-delay: 0s; }
.endpoint:nth-child(2) { animation-delay: 0.3s; }
.endpoint:nth-child(3) { animation-delay: 0.6s; }

.endpoint-method {
    font-size: 8px;
    font-weight: bold;
    color: #4ECDC4;
}

.endpoint-path {
    font-size: 6px;
    color: #666;
}

.data-flow {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.flow-arrows .arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    animation: arrowFlow 1.5s ease-in-out infinite;
}

.arrow-down { animation-delay: 0s; }
.arrow-up { animation-delay: 0.75s; }

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

@keyframes dataTransfer {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes endpointGlow {
    0%, 100% { box-shadow: 0 0 4px rgba(78, 205, 196, 0.3); }
    50% { box-shadow: 0 0 8px rgba(78, 205, 196, 0.6); }
}

@keyframes arrowFlow {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-3px); opacity: 1; }
}

/* Platform Strategy Visual */
.platform-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-diagram {
    position: relative;
    width: 200px;
    height: 200px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.node-core {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: coreRotate 4s linear infinite;
}

.connected-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: nodeOrbitFloat 6s ease-in-out infinite;
}

.node-1 { top: 10%; left: 50%; margin-left: -10px; animation-delay: 0s; }
.node-2 { top: 25%; right: 15%; animation-delay: 1s; }
.node-3 { top: 50%; right: 5%; margin-top: -10px; animation-delay: 2s; }
.node-4 { bottom: 25%; right: 15%; animation-delay: 3s; }
.node-5 { bottom: 10%; left: 50%; margin-left: -10px; animation-delay: 4s; }
.node-6 { top: 50%; left: 5%; margin-top: -10px; animation-delay: 5s; }

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    animation: dataFlow 3s ease-in-out infinite;
}

.line-1 { top: 25%; left: 50%; width: 60px; transform: rotate(-30deg); animation-delay: 0s; }
.line-2 { top: 40%; right: 25%; width: 70px; transform: rotate(45deg); animation-delay: 0.5s; }
.line-3 { bottom: 40%; right: 25%; width: 70px; transform: rotate(-45deg); animation-delay: 1s; }
.line-4 { bottom: 25%; left: 50%; width: 60px; transform: rotate(30deg); animation-delay: 1.5s; }
.line-5 { top: 50%; left: 25%; width: 80px; transform: rotate(0deg); animation-delay: 2s; }
.line-6 { top: 40%; left: 25%; width: 70px; transform: rotate(-45deg); animation-delay: 2.5s; }

@keyframes coreRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes nodeOrbitFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.8; }
    50% { transform: scale(1.2) translateY(-5px); opacity: 1; }
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* UX Design Visual */
.ux-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-flow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-step {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: stepPulse 3s ease-in-out infinite;
}

.step-1 { animation-delay: 0s; }
.step-2 { animation-delay: 1s; }
.step-3 { animation-delay: 2s; }

.step-icon {
    font-size: 24px;
    animation: iconBounce 2s ease-in-out infinite;
}

.flow-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    animation: arrowSlide 2s ease-in-out infinite;
}

.arrow-1 { animation-delay: 0.5s; }
.arrow-2 { animation-delay: 1.5s; }

@keyframes stepPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.1); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); }
}

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

@keyframes arrowSlide {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Revolutionary Logo Metamorphosis Animation */
.logo-metamorphosis {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.metamorphosis-stage {
    position: absolute;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: stageSequence 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.stage-concept {
    animation-delay: 0s;
    z-index: 4;
}

.stage-refinement {
    animation-delay: -3s;
    z-index: 3;
}

.stage-final {
    animation-delay: -6s;
    z-index: 2;
}

.stage-application {
    animation-delay: -9s;
    z-index: 1;
}

@keyframes stageSequence {
    0%, 20% {
        opacity: 1;
        transform: translateZ(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
    25%, 30% {
        opacity: 0;
        transform: translateZ(-100px) scale(0.8) rotateY(90deg);
        filter: blur(10px);
    }
    75%, 95% {
        opacity: 0;
        transform: translateZ(-100px) scale(0.8) rotateY(-90deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

/* Concept Stage Styling */
.concept-sketch {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sketch-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.sketch-line {
    stroke-dasharray: 10, 5;
    animation: sketchDraw 4s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 1s; }

@keyframes sketchDraw {
    0%, 20% {
        stroke-dashoffset: 100;
        opacity: 0.3;
    }
    40%, 80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -100;
        opacity: 0.3;
    }
}

.sketch-element {
    animation: elementAppear 3s ease-in-out infinite;
}

.element-1 { animation-delay: 0.5s; }
.element-2 { animation-delay: 1.5s; }
.element-3 { animation-delay: 2.5s; }

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

/* Refinement Stage Styling */
.refinement-process {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.refinement-svg {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.logo-shape {
    animation: shapeRefinement 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes shapeRefinement {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.1) rotate(15deg);
        opacity: 1;
    }
    50% {
        transform: scale(0.9) rotate(-10deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.05) rotate(5deg);
        opacity: 1;
    }
}

.logo-accent {
    animation: accentPulse 2s ease-in-out infinite;
}

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

.logo-detail {
    animation: detailFlow 3s ease-in-out infinite;
}

@keyframes detailFlow {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* Final Logo Stage Styling */
.final-logo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.final-svg {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
}

.final-shape {
    animation: finalPresentation 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes finalPresentation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) rotate(360deg);
        opacity: 1;
    }
}

.final-core {
    animation: coreGlow 3s ease-in-out infinite;
}

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

.final-symbol {
    animation: symbolFlow 2s ease-in-out infinite;
}

@keyframes symbolFlow {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-2px);
    }
}

.brand-dot {
    animation: brandDotOrbit 6s linear infinite;
    transform-origin: 100px 80px;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: -1.5s; }
.dot-3 { animation-delay: -3s; }
.dot-4 { animation-delay: -4.5s; }

@keyframes brandDotOrbit {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 0.6;
    }
}

/* Brand Application Stage Styling */
.brand-application {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
    width: 120px;
    height: 80px;
}

.app-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    animation: appItemShow 3s ease-in-out infinite;
}

.business-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    animation-delay: 0s;
}

.letterhead {
    background: linear-gradient(135deg, #ffffff, #f1f3f4);
    animation-delay: 0.5s;
}

.digital-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 1s;
}

@keyframes appItemShow {
    0%, 30% {
        opacity: 0;
        transform: scale(0.8) rotateY(45deg);
    }
    50%, 90% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotateY(-45deg);
    }
}

.card-front {
    width: 100%;
    height: 60%;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 2px;
}

.card-logo {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: logoGlow 2s ease-in-out infinite;
}

.letter-content {
    padding: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.letter-logo {
    width: 10px;
    height: 6px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border-radius: 1px;
    margin-bottom: 2px;
}

.letter-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.letter-lines::before,
.letter-lines::after {
    content: '';
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5px;
}

.letter-lines::before {
    width: 80%;
}

.letter-lines::after {
    width: 60%;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: badgeGlow 2s ease-in-out infinite;
}

.badge-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 8px rgba(102, 126, 234, 0.6);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Stage Labels */
.concept-label,
.refinement-label,
.final-label,
.application-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: labelFloat 3s ease-in-out infinite;
}

@keyframes labelFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.person-silhouette {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.person-silhouette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Marketing Section Styles */
.marketing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.marketing-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) rotateY(45deg);
}

.marketing-image.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* SEO Visual */
.seo-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.search-optimization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.search-graph {
    position: relative;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: end;
}

.graph-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
    padding: 10px;
    position: relative;
    width: 100%;
}

.bar {
    width: 20px;
    min-height: 20px;
    background: linear-gradient(to top, #4ECDC4, #44A08D);
    border-radius: 2px 2px 0 0;
    animation: barGrow 3s ease-in-out infinite;
    display: block;
}

.bar-1 { animation-delay: 0s; }
.bar-2 { animation-delay: 0.5s; }
.bar-3 { animation-delay: 1s; }
.bar-4 { animation-delay: 1.5s; }

.trend-line {
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
    border-radius: 1px;
    animation: trendGlow 2s ease-in-out infinite;
}

.seo-keywords {
    display: flex;
    gap: 8px;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #667eea;
    animation: tagPulse 2s ease-in-out infinite;
}

.keyword-tag:nth-child(1) { animation-delay: 0s; }
.keyword-tag:nth-child(2) { animation-delay: 0.3s; }
.keyword-tag:nth-child(3) { animation-delay: 0.6s; }

@keyframes barGrow {
    0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

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

@keyframes tagPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 4px rgba(102, 126, 234, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 8px rgba(102, 126, 234, 0.5); }
}

/* Social Media Visual */
.social-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    animation: platformGlow 3s ease-in-out infinite;
}

.platform-1 { animation-delay: 0s; }
.platform-2 { animation-delay: 1s; }
.platform-3 { animation-delay: 2s; }

.platform-icon {
    font-size: 16px;
}

.engagement-meter {
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
    border-radius: 3px;
    animation: meterFill 2s ease-in-out infinite;
}

@keyframes platformGlow {
    0%, 100% { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transform: translateY(0); }
    50% { box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); transform: translateY(-2px); }
}

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

/* Content Strategy Visual */
.content-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-creation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.content-types {
    display: flex;
    gap: 15px;
}

.content-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: contentFloat 3s ease-in-out infinite;
}

.content-type:nth-child(1) { animation-delay: 0s; }
.content-type:nth-child(2) { animation-delay: 1s; }
.content-type:nth-child(3) { animation-delay: 2s; }

.type-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.type-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.content-flow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flow-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    animation: arrowPulse 2s ease-in-out infinite;
}

.audience-icon {
    font-size: 24px;
    animation: audiencePulse 3s ease-in-out infinite;
}

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

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

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

/* Analytics Visual */
.analytics-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-dashboard {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.metric-cards {
    display: flex;
    gap: 10px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    animation: metricPulse 3s ease-in-out infinite;
}

.metric-card:nth-child(1) { animation-delay: 0s; }
.metric-card:nth-child(2) { animation-delay: 0.5s; }
.metric-card:nth-child(3) { animation-delay: 1s; }

.metric-number {
    font-size: 14px;
    font-weight: bold;
    color: #667eea;
}

.metric-label {
    font-size: 8px;
    color: #666;
    margin-top: 2px;
}

.performance-chart {
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
    border-radius: 1px;
    animation: chartGrow 3s ease-in-out infinite;
}

@keyframes metricPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
}

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

/* Advertising Visual */
.ads-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-campaigns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.ad-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    animation: platformFloat 3s ease-in-out infinite;
}

.ad-platform.google { animation-delay: 0s; }
.ad-platform.facebook { animation-delay: 1s; }

.platform-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.ad-platform.google .platform-logo {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.ad-platform.facebook .platform-logo {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.campaign-stats {
    display: flex;
    flex-direction: column;
}

.stat-item {
    display: flex;
    gap: 5px;
    align-items: center;
}

.stat-value {
    font-weight: bold;
    color: #667eea;
    font-size: 12px;
}

.stat-label {
    font-size: 10px;
    color: #666;
}

.targeting-visual {
    margin-top: 10px;
}

.target-audience {
    display: flex;
    gap: 8px;
}

.audience-segment {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: segmentPulse 2s ease-in-out infinite;
}

.segment-1 {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    animation-delay: 0s;
}

.segment-2 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    animation-delay: 0.5s;
}

.segment-3 {
    background: linear-gradient(135deg, #FFD93D, #FFED4E);
    animation-delay: 1s;
}

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

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

/* Marketing Automation Visual */
.automation-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.funnel-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: stageGlow 3s ease-in-out infinite;
}

.stage-1 { animation-delay: 0s; }
.stage-2 { animation-delay: 1s; }
.stage-3 { animation-delay: 2s; }

.stage-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stage-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.funnel-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    animation: funnelFlow 2s ease-in-out infinite;
}

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

@keyframes funnelFlow {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(3px); opacity: 1; }
}

.coffee-cup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coffee-cup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Revolutionary Abstract Passion Section */
.passion-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #0a0f1c 0%, #1a1d29 30%, #2a1f3d 60%, #141729 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Dynamic Abstract Background System */
.passion-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Morphing Geometric Shapes */
.abstract-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.morph-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 12s ease-in-out infinite;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    width: 120px;
    height: 90px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 130px;
    background: linear-gradient(135deg, #A8E6CF, #FFD93D);
    top: 25%;
    right: 12%;
    animation-delay: -3s;
}

.shape-3 {
    width: 90px;
    height: 90px;
    background: linear-gradient(225deg, #FF8C94, #FF9999);
    bottom: 35%;
    left: 18%;
    animation-delay: -6s;
}

.shape-4 {
    width: 80px;
    height: 110px;
    background: linear-gradient(315deg, #6C5CE7, #A29BFE);
    bottom: 20%;
    right: 25%;
    animation-delay: -9s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(60deg, #FD79A8, #FDCB6E);
    top: 45%;
    left: 50%;
    animation-delay: -4s;
    transform: translate(-50%, -50%);
}

.shape-6 {
    width: 60px;
    height: 100px;
    background: linear-gradient(150deg, #74B9FF, #00CEC9);
    top: 65%;
    right: 40%;
    animation-delay: -7s;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.2);
        opacity: 0.5;
    }
}

/* Advanced Particle System */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle-layer::before,
.particle-layer::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.layer-1::before { top: 10%; left: 20%; animation-delay: 0s; background: #FF6B6B; }
.layer-1::after { top: 60%; left: 80%; animation-delay: -2s; background: #4ECDC4; }
.layer-2::before { top: 30%; left: 70%; animation-delay: -4s; background: #FFD93D; }
.layer-2::after { top: 80%; left: 30%; animation-delay: -6s; background: #A29BFE; }
.layer-3::before { top: 50%; left: 10%; animation-delay: -1s; background: #FD79A8; }
.layer-3::after { top: 20%; left: 90%; animation-delay: -5s; background: #00CEC9; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Interactive Light Beam System */
.light-system {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(78, 205, 196, 0.6), transparent);
    animation: lightSweep 15s ease-in-out infinite;
    transform-origin: top center;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 107, 0.4), transparent);
}

.beam-2 {
    left: 40%;
    animation-delay: -3s;
    background: linear-gradient(to bottom, transparent, rgba(168, 230, 207, 0.4), transparent);
}

.beam-3 {
    left: 60%;
    animation-delay: -6s;
    background: linear-gradient(to bottom, transparent, rgba(255, 217, 61, 0.4), transparent);
}

.beam-4 {
    left: 80%;
    animation-delay: -9s;
    background: linear-gradient(to bottom, transparent, rgba(162, 155, 254, 0.4), transparent);
}

@keyframes lightSweep {
    0%, 100% {
        transform: rotate(-15deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(15deg);
        opacity: 0.8;
    }
}

/* Mesh Gradient Overlay */
.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(255, 217, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(162, 155, 254, 0.15) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 5;
}

@keyframes meshMove {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

/* Enhanced Content Styling */
.passion-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Revolutionary Typography System */
.passion-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 40px;
    perspective: 1000px;
    line-height: 1.2;
}

.highlight-word {
    color: #FF6B6B;
    font-weight: 300;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    opacity: 0.7;
    border-radius: 1px;
}

/* Abstract Icon Container */
.passion-visual {
    display: flex;
    justify-content: center;
    perspective: 2000px;
    margin-bottom: 30px;
}

.abstract-icons-container {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Revolutionary Abstract Icon System */
.abstract-icon-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(150px) scale(0.6) rotateY(45deg);
    animation: iconMaterialise 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: calc(var(--delay, 0) * 0.4s + 2s);
}

@keyframes iconMaterialise {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(0.6) rotateY(45deg);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-30px) scale(1.15) rotateY(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateY(0deg);
    }
}

.abstract-icon {
    width: 140px;
    height: 140px;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
}

.abstract-icon:hover {
    transform: translateY(-20px) scale(1.1) rotateY(15deg);
}

/* Flow Container Styling */
.flow-container,
.nexus-container,
.trajectory-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    overflow: hidden;
}

.abstract-icon:hover .flow-container,
.abstract-icon:hover .nexus-container,
.abstract-icon:hover .trajectory-container {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* SVG Animations */
.flow-svg,
.nexus-svg,
.trajectory-svg {
    width: 90px;
    height: 90px;
    transition: all 0.6s ease;
}

.abstract-icon:hover .flow-svg,
.abstract-icon:hover .nexus-svg,
.abstract-icon:hover .trajectory-svg {
    transform: scale(1.2) rotate(5deg);
}

/* Creative Flow Animations */
.flow-path {
    animation: flowMorph 6s ease-in-out infinite;
}

@keyframes flowMorph {
    0%, 100% {
        d: path("M20,100 Q50,50 100,80 T180,100 Q150,150 100,120 T20,100");
        opacity: 0.8;
    }
    50% {
        d: path("M20,100 Q80,30 100,80 T180,100 Q120,170 100,120 T20,100");
        opacity: 1;
    }
}

.flow-orb {
    animation: orbFloat 4s ease-in-out infinite;
}

.orb-1 { animation-delay: 0s; }
.orb-2 { animation-delay: 1.3s; }
.orb-3 { animation-delay: 2.6s; }

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* Innovation Nexus Animations */
.nexus-core {
    animation: coreEnergy 3s ease-in-out infinite;
}

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

.nexus-node {
    animation: nodeOrbit 8s linear infinite;
    transform-origin: 100px 100px;
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: -2s; }
.node-3 { animation-delay: -4s; }
.node-4 { animation-delay: -6s; }

@keyframes nodeOrbit {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
    }
}

.nexus-line {
    animation: energyFlow 2s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }

@keyframes energyFlow {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 4;
    }
}

.energy-ripple {
    animation: rippleExpand 3s ease-out infinite;
}

.ripple-1 { animation-delay: 0s; }
.ripple-2 { animation-delay: 1.5s; }

@keyframes rippleExpand {
    0% {
        r: 25;
        opacity: 0.6;
    }
    100% {
        r: 60;
        opacity: 0;
    }
}

/* Launch Trajectory Animations */
.trajectory-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: pathTrace 4s ease-in-out infinite;
}

@keyframes pathTrace {
    0% {
        stroke-dashoffset: 200;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -200;
        opacity: 0.3;
    }
}

.launch-point {
    animation: launchPulse 2s ease-in-out infinite;
}

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

.trajectory-node {
    animation: nodeProgress 3s ease-in-out infinite;
}

.node-1 { animation-delay: 0.5s; }
.node-2 { animation-delay: 1s; }

@keyframes nodeProgress {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    20%, 60% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.destination {
    animation: destinationGlow 2.5s ease-in-out infinite;
}

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

.motion-trail {
    animation: trailFade 2s ease-out infinite;
}

.trail-1 { animation-delay: 0s; }
.trail-2 { animation-delay: 0.3s; }
.trail-3 { animation-delay: 0.6s; }

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

/* Concept Labels */
.concept-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 100;
}

.abstract-icon-wrapper:hover .concept-label {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.label-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Interactive Call to Action */
.passion-cta {
    margin-top: 40px;
    opacity: 0;
    animation: ctaReveal 1s ease-out forwards;
    animation-delay: 3s;
}

@keyframes ctaReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-interactive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    max-width: fit-content;
    margin: 0 auto;
}

.cta-interactive:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.5);
    background: rgba(78, 205, 196, 0.1);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.2);
}

.cta-indicator {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-arrow {
    font-size: 1.2rem;
    color: #4ECDC4;
    transition: all 0.3s ease;
}

.cta-interactive:hover .cta-arrow {
    transform: translateX(5px);
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.journey-content h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 80px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    text-align: left;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--accent-teal);
    margin-bottom: 20px;
    opacity: 0.7;
}

.journey-step h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.journey-step p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .capability-grid {
        gap: 60px;
    }

    .visual-card {
        width: 300px;
        height: 300px;
    }

    .microphone-icon {
        width: 100%;
        height: 100%;
    }
    
}

@media (max-width: 768px) {
    .capabilities-hero {
        padding: 100px 20px 80px;
        text-align: center;
    }


    .capabilities-hero .hero-content {
        padding: 0 10px;
    }

    .capabilities-hero h1 {
        font-size: 2.5rem;
    }


    .capability-section {
        padding: 50px 20px;
    }

    .capability-grid,
    .capability-grid.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .capability-grid .capability-visual {
        order: -1;
    }

    .capability-grid.reverse .capability-visual {
        order: -1;
    }

    .capability-text h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .capability-text p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .capability-list li {
        font-size: 1rem;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    /* Mobile responsive styles for interactive branding visuals */
    .target-icon {
        width: 150px;
        height: 150px;
    }

    .target-ring:nth-child(1) {
        width: 130px;
        height: 130px;
    }

    .target-ring:nth-child(2) {
        width: 90px;
        height: 90px;
    }

    .target-ring:nth-child(3) {
        width: 50px;
        height: 50px;
    }

    .guideline-doc {
        width: 120px;
        height: 150px;
        padding: 15px;
    }

    .font-large {
        font-size: 3rem;
    }

    .color-swatch {
        width: 20px;
        height: 20px;
    }

    .visual-card {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        border-radius: 25px;
    }

    .microphone-icon {
        width: 100%;
        height: 100%;
    }
    

    .passion-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .passion-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .abstract-icons-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .abstract-icon {
        width: 140px;
        height: 140px;
    }

    .flow-svg,
    .nexus-svg,
    .trajectory-svg {
        width: 80px;
        height: 80px;
    }

    .concept-label {
        bottom: -45px;
    }

    .label-text {
        font-size: 0.9rem;
    }

    .label-subtitle {
        font-size: 0.75rem;
    }

    .morph-shape {
        filter: blur(40px);
        opacity: 0.3;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5,
    .shape-6 {
        transform: scale(0.7);
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-interactive {
        padding: 12px 25px;
    }

    .journey-section {
        padding: 50px 20px;
    }

    .journey-content h2 {
        font-size: 2rem;
        margin-bottom: 45px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 450px;
        margin: 0 auto;
    }

    .step-number {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 18px;
    }

    .journey-step {
        text-align: center;
    }

    .journey-step h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .journey-step p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .capabilities-hero {
        padding: 100px 15px 80px;
        min-height: 100vh;
    }

    .capabilities-hero .hero-content {
        padding: 0 5px;
    }

    .capabilities-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .capability-section {
        padding: 40px 15px;
    }

    .capability-grid,
    .capability-grid.reverse {
        max-width: 100%;
        gap: 30px;
    }

    .capability-grid .capability-visual,
    .capability-grid.reverse .capability-visual {
        order: -1;
    }

    .capability-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .capability-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .capability-list li {
        font-size: 1rem;
        margin-bottom: 3px;
        line-height: 1.3;
    }

    .visual-card {
        width: 200px;
        height: 200px;
        border-radius: 20px;
    }

    .microphone-icon {
        width: 100%;
        height: 100%;
    }
    

    .passion-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .passion-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .abstract-icons-container {
        gap: 50px;
    }

    .abstract-icon {
        width: 120px;
        height: 120px;
    }

    .flow-svg,
    .nexus-svg,
    .trajectory-svg {
        width: 70px;
        height: 70px;
    }

    .concept-label {
        bottom: -40px;
    }

    .label-text {
        font-size: 0.85rem;
    }

    .label-subtitle {
        font-size: 0.7rem;
    }

    .morph-shape {
        filter: blur(30px);
        opacity: 0.25;
    }

    .light-beam {
        display: none;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-interactive {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .journey-section {
        padding: 40px 15px;
    }

    .journey-content h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .journey-steps {
        max-width: 100%;
        gap: 25px;
    }

    .step-number {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .journey-step h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .journey-step p {
        font-size: 0.95rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .capabilities-hero {
        padding: 80px 0 50px;
    }
    
    .capabilities-hero h1 {
        font-size: 2rem;
    }

    .capability-section {
        padding: 35px 10px;
    }

    .capability-grid,
    .capability-grid.reverse {
        gap: 25px;
        max-width: 100%;
        padding: 0 5px;
    }

    .capability-grid .capability-visual,
    .capability-grid.reverse .capability-visual {
        order: -1;
    }

    .capability-text h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .capability-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .capability-list li {
        font-size: 0.9rem;
        margin-bottom: 2px;
        padding-left: 20px;
        line-height: 1.2;
    }

    .visual-card {
        width: 180px;
        height: 180px;
        border-radius: 18px;
    }

    .microphone-icon {
        width: 100%;
        height: 100%;
    }
    

    .passion-section {
        padding: 35px 10px;
    }

    .passion-title {
        font-size: 1.4rem;
        margin-bottom: 35px;
    }

    .abstract-icons-container {
        gap: 40px;
    }

    .abstract-icon {
        width: 100px;
        height: 100px;
    }

    .flow-svg,
    .nexus-svg,
    .trajectory-svg {
        width: 60px;
        height: 60px;
    }

    .concept-label {
        bottom: -35px;
    }

    .label-text {
        font-size: 0.8rem;
    }

    .label-subtitle {
        font-size: 0.65rem;
    }

    .morph-shape {
        filter: blur(25px);
        opacity: 0.2;
    }

    .particle-layer::before,
    .particle-layer::after {
        display: none;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .cta-interactive {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .journey-section {
        padding: 35px 10px;
    }

    .journey-content h2 {
        font-size: 1.4rem;
        margin-bottom: 35px;
    }

    .journey-steps {
        gap: 20px;
        max-width: 100%;
        padding: 0 5px;
    }

    .step-number {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .journey-step h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .journey-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ========================================
   INTERACTIVE GAMIFIED JOURNEY STYLES
   ======================================== */

/* Main Journey Section */
.passion-journey-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #0a0f1c 0%, #1a1d29 30%, #2a1f3d 60%, #141729 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Enhanced Dynamic Background */
.journey-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.journey-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.morphing-environment {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.journey-path-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 400px;
    transform: translateY(-50%);
    z-index: 4;
    opacity: 0.3;
}

.path-svg {
    width: 100%;
    height: 100%;
}

#journeyPath {
    animation: pathPulse 4s ease-in-out infinite;
}

@keyframes pathPulse {
    0%, 100% { opacity: 0.3; stroke-width: 4; }
    50% { opacity: 0.6; stroke-width: 6; }
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.journey-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar System */
.journey-progress {
    max-width: 500px;
    margin: 0 auto;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #6C5CE7);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 0%;
}

.progress-checkpoint {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.checkpoint-1 { left: 15%; }
.checkpoint-2 { left: 50%; }
.checkpoint-3 { left: 85%; }

.progress-checkpoint.active {
    background: #4ECDC4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
    transform: translateY(-50%) scale(1.3);
}

.progress-checkpoint.completed {
    background: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

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

/* Single Interactive Playground */
.interactive-playground {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Stage Info Header */
.stage-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ECDC4;
}

.stage-separator {
    color: rgba(255, 255, 255, 0.5);
}

.total-stages {
    color: rgba(255, 255, 255, 0.7);
}

.stage-description h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.stage-instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.progress-indicator {
    text-align: right;
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.mini-progress {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-left: auto;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Main Playground Area */
.playground-area {
    position: relative;
    min-height: 500px;
    padding: 30px;
}

.stage-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.stage-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.stage-content.previous {
    opacity: 0;
    transform: translateX(-50px);
}

/* Stage Header */
.stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.stage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ECDC4;
    min-width: 80px;
}

.stage-title h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.stage-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.stage-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.journey-stage[data-status="available"] .status-indicator {
    background: #4ECDC4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

.journey-stage[data-status="locked"] .status-indicator {
    background: rgba(255, 255, 255, 0.2);
}

.journey-stage[data-status="completed"] .status-indicator {
    background: #00FF88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

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

.status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stage Playground Containers */
.stage-playground {
    min-height: 350px;
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Creative Workspace (Stage 1) */
.creative-workspace {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.creative-tools {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tool-button {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tool-button:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.tool-button.active {
    background: rgba(78, 205, 196, 0.3);
    border-color: #4ECDC4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.4);
}

.creative-canvas-container {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.creative-canvas-container:hover {
    border-color: #4ECDC4;
    background: rgba(78, 205, 196, 0.05);
}

.creative-canvas {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: crosshair;
}

.canvas-placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 1.1rem;
    pointer-events: none;
}

/* Nexus Workspace (Stage 2) */
.nexus-workspace {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.nexus-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
}

.nexus-info h4 {
    color: #FF6B6B;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.nexus-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    min-height: 200px;
    position: relative;
}

/* Connection lines animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.8));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(78, 205, 196, 1));
    }
}

.connection-svg {
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    animation: pulse 2s infinite;
}

.connection-line-div {
    pointer-events: none;
    animation: pulse 2s infinite;
}

.connection-path {
    animation: pulse 2s infinite;
}

.connection-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.connection-node:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.connection-node.connected {
    background: rgba(255, 107, 107, 0.3);
    border-color: #FF6B6B;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.node-label {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    transform-origin: left center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.connection-line.active {
    opacity: 1;
    animation: connectionFlow 2s ease-in-out infinite;
}

@keyframes connectionFlow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.8); }
    50% { box-shadow: 0 0 15px rgba(78, 205, 196, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.8); }
}

/* Trajectory Workspace (Stage 3) */
.trajectory-workspace {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.launch-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.control-slider {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.launch-button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #96CEB4, #4ECDC4);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.launch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 206, 180, 0.4);
}

.trajectory-simulator {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.trajectory-canvas {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.trajectory-stats {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    color: #4ECDC4;
    font-weight: 600;
}

/* Stage Action Buttons */
.stage-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    justify-content: space-between;
    min-height: 50px;
}

/* Single button (stage 1) - align right */
.stage-1-content .stage-actions {
    justify-content: flex-end;
}

/* Two buttons (stage 2+) - space between */
.stage-2-content .stage-actions,
.stage-3-content .stage-actions {
    justify-content: space-between;
}

.action-button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.action-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.action-button.primary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: #ffffff;
}

.action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.action-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Creative Sandbox Styles (Legacy - for compatibility) */
.creative-sandbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Stage Completion Animation */
@keyframes completionPop {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.stage-completion-notification .completion-icon {
    font-size: 3rem;
    color: #00FF88;
    margin-bottom: 15px;
}

.stage-completion-notification h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4ECDC4;
}

.stage-completion-notification p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Enhanced Canvas Placeholder */
.canvas-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.canvas-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.canvas-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Shape Palette Styles */
.shape-palette {
    background: rgba(0, 0, 0, 0.95) !important;
    border: 2px solid #4ECDC4 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    animation: paletteSlideIn 0.3s ease-out !important;
}

.shape-palette.hidden {
    display: none !important;
}

.palette-header {
    color: #4ECDC4;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.shape-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.shape-option {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.shape-option:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

@keyframes paletteSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Connection Lines for Stage 2 */
.connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
    animation: connectionGlow 2s ease-in-out infinite;
}

@keyframes connectionGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.6);
    }
    50% {
        box-shadow: 0 0 15px rgba(78, 205, 196, 0.8);
    }
}

/* Journey Completion Message */
.journey-complete-message .completion-content {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #4ECDC4;
    max-width: 500px;
    animation: completionZoom 0.5s ease-out;
}

.journey-complete-message .completion-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.journey-complete-message h2 {
    color: #4ECDC4;
    margin-bottom: 15px;
    font-size: 2rem;
}

.journey-complete-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.journey-complete-message button {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.journey-complete-message button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

@keyframes completionZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Button States */
.action-button.primary:disabled {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.action-button.primary:not(:disabled) {
    background: linear-gradient(135deg, #4ECDC4, #44A08D) !important;
    color: white !important;
    cursor: pointer !important;
}

/* Node Selection Feedback */
.connection-node.connected {
    background: rgba(255, 107, 107, 0.3) !important;
    border-color: #FF6B6B !important;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6) !important;
    transform: scale(1.1) !important;
}

/* Trajectory Canvas Container */
.trajectory-simulator {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Progress Activity Indicator */
.activity-progress {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #4ECDC4;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}
}

.sandbox-canvas {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.3);
}

#creativeCanvas {
    width: 100%;
    height: auto;
    display: block;
    cursor: crosshair;
}

.sandbox-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.color-palette {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.color-orb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.color-orb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.color-orb.active {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

.sandbox-instructions {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.sandbox-instructions p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.interaction-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Creative Tools */
.creative-tools {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tool-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-btn.active {
    background: #4ECDC4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.clear-btn:hover {
    background: rgba(255, 107, 107, 0.3);
}

/* Innovation Nexus Game Styles */
.nexus-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nexus-field {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.nexus-svg {
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.nexus-node {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
}

.nexus-node:hover {
    transform: scale(1.2);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px currentColor);
}

.nexus-node.selected {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    animation: nodeGlow 1s ease-in-out infinite alternate;
}

.central-node {
    stroke-width: 3;
    stroke: rgba(255, 255, 255, 0.5);
}

@keyframes nodeGlow {
    0% { filter: drop-shadow(0 0 5px currentColor); }
    100% { filter: drop-shadow(0 0 15px currentColor); }
}

.connection-lines line {
    stroke-width: 3;
    opacity: 0.8;
    stroke-linecap: round;
    animation: connectionPulse 2s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.6; stroke-width: 2; }
    50% { opacity: 1; stroke-width: 4; }
}

.nexus-instructions {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.nexus-instructions p {
    margin-bottom: 10px;
}

.connection-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ECDC4;
}

/* Launch Trajectory Simulator Styles */
.trajectory-simulator {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.launch-field {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.trajectory-svg {
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.control-point {
    cursor: move;
    transition: all 0.3s ease;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
}

.control-point:hover {
    transform: scale(1.3);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px currentColor);
}

.target-zone {
    animation: targetPulse 3s ease-in-out infinite;
}

@keyframes targetPulse {
    0%, 100% { opacity: 0.3; stroke-width: 2; }
    50% { opacity: 0.8; stroke-width: 3; }
}

.success-target {
    animation: successGlow 2s ease-in-out infinite;
}

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

.launch-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.control-panel {
    display: flex;
    gap: 20px;
    align-items: center;
}

.control-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.control-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.power-slider, .angle-slider {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.power-value, .angle-value {
    color: #4ECDC4;
    font-weight: 600;
    font-size: 0.9rem;
}

.launch-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
}

.launch-btn:active {
    transform: translateY(0);
}

.trajectory-instructions {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.score-display {
    margin-top: 10px;
    font-size: 1.1rem;
}

.score-display .label {
    color: rgba(255, 255, 255, 0.7);
}

.score-value {
    color: #00FF88;
    font-weight: 600;
    margin-left: 5px;
}

/* Stage Completion System */
.stage-completion {
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stage-completion.show {
    opacity: 1;
    transform: translateY(0);
}

.completion-animation {
    margin-bottom: 20px;
}

.success-icon {
    font-size: 3rem;
    animation: successBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.completion-animation p {
    color: #00FF88;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.continue-btn, .journey-complete-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #00FF88, #00CEC9);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.continue-btn:hover, .journey-complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

/* Journey Completion Celebration */
.journey-completion {
    text-align: center;
    padding: 50px 30px;
    margin-top: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.completion-celebration {
    position: relative;
    z-index: 2;
}

.celebration-animation {
    position: relative;
    margin-bottom: 30px;
}

.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD93D, #FF6B6B);
    animation: fireworkBurst 2s ease-out infinite;
}

.firework:nth-child(1) {
    top: -20px;
    left: 30%;
    animation-delay: 0s;
    background: radial-gradient(circle, #FF6B6B, #4ECDC4);
}

.firework:nth-child(2) {
    top: -10px;
    right: 25%;
    animation-delay: 0.7s;
    background: radial-gradient(circle, #6C5CE7, #A29BFE);
}

.firework:nth-child(3) {
    top: -30px;
    left: 50%;
    animation-delay: 1.4s;
    background: radial-gradient(circle, #00FF88, #00CEC9);
}

@keyframes fireworkBurst {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(3) rotate(360deg);
        opacity: 0;
    }
}

.journey-completion h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.journey-completion p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.achievement-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
}

.creative-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    animation-delay: 0s;
}

.innovation-badge {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    animation-delay: 0.5s;
}

.launch-badge {
    background: linear-gradient(135deg, #00FF88, #00CEC9);
    animation-delay: 1s;
}

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

.completion-cta {
    margin-top: 30px;
}

.completion-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design for Journey */
@media (max-width: 768px) {
    .passion-journey-section {
        padding: 60px 20px;
    }

    .journey-title {
        font-size: 2rem;
    }

    .journey-subtitle {
        font-size: 1rem;
    }

    .journey-stages {
        gap: 40px;
    }

    .stage-container {
        padding: 20px;
    }

    .stage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stage-number {
        font-size: 2rem;
    }

    .achievement-badges {
        flex-direction: column;
        align-items: center;
    }

    .control-panel {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .passion-journey-section {
        padding: 40px 15px;
    }

    .progress-labels {
        font-size: 0.8rem;
    }

    .creative-tools {
        gap: 10px;
    }

    .tool-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .sandbox-overlay {
        position: static;
        margin-bottom: 15px;
        justify-content: center;
    }

    .color-palette {
        flex-direction: row;
    }
}

