.page-main-content {
    padding-top: var(--space-24);
}

.page-header {
    padding: var(--space-20) 0 var(--space-16);
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background-elevated) 100%);
    color: var(--color-text-primary);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 4vw + 1rem, var(--font-size-h1));
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--space-6);
    color: var(--color-primary);
}

.page-header p {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-text-tertiary);
}

.services-grid, .vision-content, .about-content, .contact-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

.service-card h3 {
    font-size: var(--font-size-h4);
    font-family: var(--font-family-display);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 20px;
    color: #38bdf8;
    font-weight: var(--font-weight-bold);
}

.service-card p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--color-text-tertiary);
}

.vision-text, .about-text {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text h2, .about-text h2 {
    font-size: clamp(28px, 3vw + 1rem, var(--font-size-h2));
    font-family: var(--font-family-display);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 30px;
    color: #38bdf8;
    font-weight: var(--font-weight-bold);
}

.vision-text h3, .about-text h3 {
    font-size: var(--font-size-h4);
    font-family: var(--font-family-display);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-tight);
    margin: 40px 0 20px;
    color: #fff;
    font-weight: var(--font-weight-semibold);
}

.vision-text p, .about-text p {
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-loose);
    letter-spacing: var(--letter-spacing-normal);
    margin-bottom: 20px;
    color: var(--color-text-tertiary);
}

.vision-text ul, .about-text ul {
    list-style: none;
    padding: 0;
}

.vision-text li, .about-text li {
    padding: 10px 0;
    color: #ccc;
    position: relative;
    padding-left: 30px;
}

.vision-text li:before, .about-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

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

.contact-info h2, .contact-form h2 {
    font-size: var(--font-size-h2);
    font-family: var(--font-family-display);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 30px;
    color: #38bdf8;
    font-weight: var(--font-weight-bold);
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: var(--font-size-h5);
    font-family: var(--font-family-display);
    line-height: var(--line-height-snug);
    margin-bottom: 10px;
    color: #fff;
    font-weight: var(--font-weight-semibold);
}

.contact-method p {
    color: var(--color-text-tertiary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-family-base);
    font-size: var(--font-size-body);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}


/* Enhanced Animations */
/* Services Page Enhancements */
.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card.featured {
    position: relative;
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.1), rgba(138, 43, 226, 0.08)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.service-card.featured::before {
    content: '⭐ FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff1493, #38bdf8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #38bdf8;
}

/* Technical Details Section - World-Class Design */
.technical-details {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.technical-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(56, 189, 248, 0.03) 100px,
            rgba(56, 189, 248, 0.03) 101px
        );
    pointer-events: none;
}

.tech-integration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.tech-category {
    position: relative;
    padding: 45px 35px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tech-category:hover::before {
    opacity: 1;
}

.tech-category:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Category-specific color themes */
.tech-category:nth-child(1) {
    border-image: linear-gradient(145deg, rgba(56, 189, 248, 0.3), transparent) 1;
}

.tech-category:nth-child(1):hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(56, 189, 248, 0.3);
}

.tech-category:nth-child(2) {
    border-image: linear-gradient(145deg, rgba(168, 85, 247, 0.3), transparent) 1;
}

.tech-category:nth-child(2):hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(168, 85, 247, 0.3);
}

.tech-category:nth-child(2) .tech-category h3 {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-category:nth-child(3) {
    border-image: linear-gradient(145deg, rgba(236, 72, 153, 0.3), transparent) 1;
}

.tech-category:nth-child(3):hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(236, 72, 153, 0.3);
}

.tech-category:nth-child(3) .tech-category h3 {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-category h3 {
    font-size: clamp(1.5rem, 3vw, var(--font-size-h3));
    font-family: var(--font-family-display);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 35px;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    position: relative;
    padding-bottom: 15px;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, currentColor, transparent);
    border-radius: 2px;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #38bdf8, #818cf8);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.tech-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.tech-item:hover {
    transform: translateX(8px);
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-item h4 {
    font-size: clamp(1rem, 2vw, var(--font-size-h5));
    font-family: var(--font-family-display);
    line-height: var(--line-height-snug);
    margin-bottom: 10px;
    color: #FFFFFF;
    font-weight: var(--font-weight-bold);
    transition: color 0.3s ease;
}

.tech-item:hover h4 {
    color: #38bdf8;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.9rem, 1.5vw, var(--font-size-body));
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-normal);
    transition: color 0.3s ease;
}

.tech-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(255, 20, 147, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

.step-number {
    font-size: var(--font-size-display);
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    background: linear-gradient(135deg, #38bdf8, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step h3 {
    font-size: var(--font-size-h4);
    font-family: var(--font-family-display);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 20px;
    color: #fff;
    font-weight: var(--font-weight-bold);
}

.step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-normal);
}

/* Contact Page Enhancements */
.contact-method a {
    color: #38bdf8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #ff1493;
    text-shadow: 0 2px 10px rgba(56, 189, 248, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-integration {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-category {
        padding: 28px 20px;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .tech-category:hover {
        box-shadow: 0 12px 32px rgba(56, 189, 248, 0.2);
    }

    .tech-category h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: 20px;
    }

    .tech-item {
        padding: 18px 16px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.2);
    }

    .tech-item:hover {
        transform: translateX(4px);
        background: rgba(56, 189, 248, 0.1);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        font-size: clamp(36px, 8vw, var(--font-size-h1));
    }

    .service-icon {
        font-size: 36px;
    }

    .marketplace-text h3,
    .tech-card h3,
    .economy-feature h3 {
        font-size: clamp(22px, 4.5vw, var(--font-size-h3));
    }

    /* Services constellation mobile optimization - World-Class Design */
    .services-constellation {
        padding: 100px 0 60px;  /* Reduced top padding for better header spacing */
    }

    .services-orbital-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;  /* Increased gap for better visual separation */
        height: auto;
        max-width: 600px;  /* Better mobile width constraint */
        margin: 2rem auto;  /* Centered with better margins */
    }

    .service-planet {
        position: static;
        width: 100%;
        height: auto;
        margin: 0;
        transform: none;
        border-radius: 24px;  /* Consistent rounded corners */
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: visible;  /* Allow for visual elements */
    }

    .service-planet:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 0 60px rgba(56, 189, 248, 0.3);
    }

    .planet-core {
        padding: 40px 30px 30px;
        text-align: center;
    }

    .planet-icon {
        font-size: 4rem;  /* Larger, more impactful icon */
        margin-bottom: 1rem;
    }

    .planet-core h3 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0.75rem 0 0.5rem;
    }

    .planet-badge {
        margin-top: 1rem;
    }

    .planet-details {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 30px;
        margin-top: 5px;
        background: rgba(0, 0, 0, 0.4);  /* Subtle background for details */
        border-radius: 0 0 24px 24px;  /* Match container corners */
        border-top: 1px solid rgba(255, 255, 255, 0.1);  /* Delimiter */
    }

    .planet-details h4 {
        font-size: 1.4rem;
        margin: 0 0 1rem;
    }

    .planet-details h5 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem;
    }

    .planet-details p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .planet-details ul {
        margin-top: 0.75rem;
    }

    .planet-details ul li {
        font-size: 0.95rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
    }
}

/* ============================================
   REFINED TECH LAYOUT - Zigzag Features + Compact Tech Grid
   Sky Blue Theme with Glassmorphism & 3D Effects
   ============================================ */

/* Services Constellation Section */
.services-constellation {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Services Orbital Layout Container */
.services-orbital-layout {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Service Planet - Base Styles with Enhanced Glassmorphism */
.service-planet {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(56, 189, 248, 0.3);
    box-shadow:
        0 0 60px rgba(56, 189, 248, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    overflow: hidden;
}

.service-planet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-planet:hover::before {
    opacity: 1;
}

.service-planet:hover {
    width: 420px;
    height: 520px;
    border-radius: 24px;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow:
        0 0 80px rgba(56, 189, 248, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    z-index: 10;
}

/* Planet-specific Color Themes */
.planet-auto {
    background:
        radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.02)),
        rgba(10, 10, 10, 0.95);
    border-color: rgba(56, 189, 248, 0.35);
}

.planet-auto:hover {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow:
        0 0 80px rgba(56, 189, 248, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.planet-auto .planet-badge {
    color: rgba(56, 189, 248, 0.95);
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
}

.planet-co {
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.02)),
        rgba(10, 10, 10, 0.95);
    border-color: rgba(168, 85, 247, 0.35);
}

.planet-co:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow:
        0 0 80px rgba(168, 85, 247, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.planet-co .planet-core h3 {
    background: linear-gradient(135deg, #FFFFFF, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.planet-co .planet-badge {
    color: rgba(168, 85, 247, 0.95);
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
}

.planet-co .planet-icon {
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.planet-co .planet-details h4 {
    color: rgba(168, 85, 247, 0.95);
}

.planet-co .planet-details ul li::before {
    color: rgba(168, 85, 247, 0.8);
}

.planet-video {
    background:
        radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(236, 72, 153, 0.08), rgba(236, 72, 153, 0.02)),
        rgba(10, 10, 10, 0.95);
    border-color: rgba(236, 72, 153, 0.35);
}

.planet-video:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow:
        0 0 80px rgba(236, 72, 153, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

.planet-video .planet-core h3 {
    background: linear-gradient(135deg, #FFFFFF, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.planet-video .planet-badge {
    color: rgba(236, 72, 153, 0.95);
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.4);
}

.planet-video .planet-icon {
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.6));
}

.planet-video .planet-details h4 {
    color: rgba(236, 72, 153, 0.95);
}

.planet-video .planet-details ul li::before {
    color: rgba(236, 72, 153, 0.8);
}

/* Planet Core - Always Visible */
.planet-core {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-planet:hover .planet-core {
    transform: scale(0.9) translateY(-20px);
}

.planet-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.6));
    transition: all 0.6s ease;
}

.service-planet:hover .planet-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.planet-core h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #FFFFFF, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* On mobile, hide the <br> tags to keep text on one line */
@media (max-width: 768px) {
    .planet-core h3 br {
        display: none;
    }
    
    .planet-core h3 {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
}

.planet-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(56, 189, 248, 0.9);
    background: rgba(56, 189, 248, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin-top: 0.75rem;
}

/* Planet Details - Hidden by Default */
.planet-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.service-planet:hover .planet-details {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.5rem;
}

.planet-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(56, 189, 248, 0.95);
    margin: 0 0 0.5rem;
    text-align: left;
}

.planet-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0 0.5rem;
    text-align: left;
}

.planet-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0.75rem;
}

.planet-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.planet-details ul li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.planet-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(56, 189, 248, 0.8);
    font-weight: 600;
}

/* Planet Positions - Triangle Layout */
.planet-auto {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.planet-co {
    bottom: 5%;
    left: 18%;
}

.planet-video {
    bottom: 5%;
    right: 18%;
}

/* 3. Technology Section - Compact 3-Column Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.tech-card {
    position: relative;
    padding: var(--space-8);
    background: var(--glass-light);
    border: var(--glass-border-medium);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(var(--blur-md)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
    box-shadow: var(--shadow-sm), var(--glow-subtle);
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth);
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 50%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-lg), var(--glow-medium);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: 
        linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tech-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    animation: techIconRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes techIconRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-primary);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(56, 189, 248, 0.5));
}

.tech-card h3 {
    font-size: var(--font-size-h4);
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, #FFFFFF, var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-card p {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: var(--color-text-tertiary);
}

/* 4. Economy Section - 3-Column Industry Cards with Stacked Effect */
.economy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.economy-feature {
    position: relative;
    padding: var(--space-10);
    background: 
        linear-gradient(155deg, rgba(56, 189, 248, 0.08), rgba(139, 92, 246, 0.05)),
        rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    overflow: visible;
}

.economy-feature::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.economy-feature:hover::after {
    opacity: 0.6;
}

.economy-feature:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: transparent;
    box-shadow: 
        0 32px 64px rgba(56, 189, 248, 0.4),
        0 0 80px rgba(56, 189, 248, 0.2);
}

.economy-feature h3 {
    font-size: var(--font-size-h3);
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, #FFFFFF, var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.economy-feature h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
}

/* Geometric decorations */
.economy-feature:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.economy-feature:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.economy-feature:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 90px;
    height: 90px;
    background: conic-gradient(from 45deg, rgba(56, 189, 248, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive Adjustments */
