/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Button Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-primary, #ffffff);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.1;
    cursor: pointer;
    will-change: transform, box-shadow;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
}

.btn:focus-visible {
    outline: 3px solid rgba(0, 255, 255, 0.55);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.95) 0%, rgba(0, 180, 255, 0.95) 45%, rgba(139, 92, 246, 0.98) 100%);
    border-color: rgba(0, 255, 255, 0.35);
    color: #04111a;
    box-shadow: 0 14px 32px rgba(0, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 18px 42px rgba(0, 255, 255, 0.32);
    color: #020617;
}

.btn-outline {
    background: rgba(3, 7, 18, 0.6);
    border-color: rgba(0, 255, 255, 0.45);
    color: var(--primary-cyan, #00ffff);
    box-shadow: 0 10px 24px rgba(0, 255, 255, 0.18);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(0, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(0, 255, 255, 0.6);
}

.btn-service {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    justify-content: center;
}

.btn.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Display card stacks for testimonials and feedback */
.display-card-stack {
    display: grid;
    place-items: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .display-card-stack {
        grid-template-areas: 'stack';
    }

    .display-card-stack .display-card {
        grid-area: stack;
    }
}

.display-card {
    --card-skew: -8deg;
    --card-translate-x: 0rem;
    --card-translate-y: 0rem;
    --card-pop-extra: 6rem;
    --card-transform: skewY(var(--card-skew)) translate(var(--card-translate-x), var(--card-translate-y));
    --card-hover-transform: skewY(var(--card-skew)) translate(var(--card-translate-x), calc(-1 * (var(--card-translate-y) + var(--card-pop-extra))));
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
    width: min(22rem, 92vw);
    min-height: 9rem;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 21, 36, 0.68);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    transform: var(--card-transform);
    transition: transform 0.7s ease, border-color 0.7s ease, background 0.7s ease, box-shadow 0.7s ease, opacity 0.7s ease;
    overflow: hidden;
}

.display-card::after {
    content: "";
    position: absolute;
    top: -5%;
    right: -4px;
    height: 110%;
    width: clamp(12rem, 60vw, 20rem);
    background: linear-gradient(to left, rgba(var(--surface-dark-rgb), 0.9), rgba(var(--surface-dark-rgb), 0));
    pointer-events: none;
    transition: opacity 0.7s ease;
    opacity: 0.65;
}

.display-card:hover {
    transform: var(--card-hover-transform);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(14, 30, 50, 0.9);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45);
    z-index: 5;
}

.display-card:hover::after {
    opacity: 0;
}

.display-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.display-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.25);
    color: #7dd3fc;
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.35);
}

.display-card__icon--image {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.display-card__icon--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.35);
}

.display-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-cyan);
    letter-spacing: 0.01em;
}

.display-card__description {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    text-wrap: pretty;
}

.display-card__footer {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: rgba(125, 211, 252, 0.95);
    letter-spacing: 0.02em;
}

/* ActiveSpace hero dual hook */
#hero {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

#hero-two-options {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--primary-cyan, #00ffff);
}

.hero-options {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 640px) {
    .hero-options {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-offer {
    margin-top: 0.5rem;
}

.option-card {
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.option-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.option-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.98rem;
}

.option-card.option-a {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(153, 27, 27, 0.55));
    border-color: rgba(239, 68, 68, 0.55);
    box-shadow: 0 20px 44px rgba(239, 68, 68, 0.25);
}

.option-card.option-b {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.6));
    border-color: rgba(34, 197, 94, 0.65);
    box-shadow: 0 26px 52px rgba(34, 197, 94, 0.4);
    padding: 1.35rem;
}

.option-card.option-c {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(202, 138, 4, 0.55));
    border-color: rgba(250, 204, 21, 0.55);
    box-shadow: 0 22px 46px rgba(234, 179, 8, 0.32);
}

@media (min-width: 1024px) {
    .option-card {
        padding: 1rem;
    }

    .option-card.option-b {
        transform: scale(1.05);
        z-index: 1;
        padding: 1.35rem;
    }
}

#hero-result {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.95);
}

#cta-hero {
    margin-top: 0.5rem;
}

/* ActiveSpace infobox */
#warum-bewegung {
    margin: 0 auto 3rem;
    padding: 2.5rem 1.75rem;
    max-width: 960px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(14, 165, 233, 0.18);
}

#warum-bewegung h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan, #00ffff);
}

#warum-bewegung ul {
    display: grid;
    gap: 0.9rem;
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
}

#warum-bewegung a {
    color: var(--primary-cyan, #00ffff);
    text-decoration: underline;
}

/* Process outcome copy */
.step-outcome {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.92);
}

/* Registration evidence line */
#evidence-line {
    margin: 1.5rem auto 1rem;
    max-width: 720px;
    text-align: center;
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.5;
}

.section-anchor {
    display: block;
    position: relative;
    top: -120px;
    visibility: hidden;
}

.display-card--secondary {
    --card-translate-x: 4rem;
    --card-translate-y: 2.5rem;
}

.display-card--tertiary {
    --card-translate-x: 8rem;
    --card-translate-y: 5rem;
}

.display-card--placeholder {
    border-style: dashed;
    border-color: rgba(125, 211, 252, 0.35);
    color: rgba(255, 255, 255, 0.75);
}

.display-card--placeholder:hover {
    border-color: rgba(125, 211, 252, 0.55);
    background: rgba(14, 30, 50, 0.8);
}

.display-card--placeholder .display-card__icon {
    background: rgba(125, 211, 252, 0.12);
    color: rgba(125, 211, 252, 0.75);
    box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.25);
}

.display-card-stack[data-card-stack] {
    --stack-height: 26rem;
    min-height: var(--stack-height);
    position: relative;
    width: min(26rem, 92vw);
    perspective: 1400px;
}

.display-card-stack[data-card-stack] .display-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(24rem, 90vw);
    opacity: 0;
    pointer-events: none;
    --card-hover-transform: var(--card-transform);
}

.display-card-stack[data-card-stack] .display-card::after {
    opacity: 0.5;
}

.display-card-stack[data-card-stack] .display-card.stack-card--active {
    opacity: 1;
    pointer-events: auto;
    --card-transform: translate3d(-50%, 0, 0) skewY(var(--card-skew));
    --card-hover-transform: translate3d(-50%, -1.5rem, 0) skewY(var(--card-skew));
    z-index: 3;
}

.display-card-stack[data-card-stack] .display-card.stack-card--next {
    opacity: 0.85;
    --card-transform: translate3d(calc(-50% + 6.5rem), 2.75rem, -90px) skewY(var(--card-skew)) scale(0.95);
    z-index: 2;
}

.display-card-stack[data-card-stack] .display-card.stack-card--prev {
    opacity: 0.85;
    --card-transform: translate3d(calc(-50% - 6.5rem), 2.75rem, -90px) skewY(var(--card-skew)) scale(0.95);
    z-index: 2;
}

.display-card-stack[data-card-stack] .display-card.stack-card--hidden {
    opacity: 0;
    --card-transform: translate3d(-50%, 6rem, -160px) skewY(var(--card-skew)) scale(0.9);
    z-index: 1;
}

.display-card-stack[data-card-stack]:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 6px;
}

.community-feedback-group {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.community-feedback-group__section {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
}

.community-feedback-group__title {
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-align: center;
}

@media (min-width: 1024px) {
    .community-feedback-group {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 4rem;
    }

    .community-feedback-group__section {
        flex: 1 1 0;
        align-items: center;
    }

    .community-feedback-group__title {
        font-size: 1.65rem;
    }
}

@media (max-width: 1024px) {
    .display-card-stack {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .display-card-stack {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        justify-items: center;
    }

    .display-card-stack .display-card {
        grid-area: auto;
    }

    .display-card {
        --card-skew: -3deg;
        --card-translate-x: 0rem;
        --card-translate-y: 0rem;
        --card-pop-extra: 4rem;
        width: min(100%, 26rem);
    }

    .display-card-stack[data-card-stack] {
        width: min(100%, 24rem);
    }

    .display-card-stack[data-card-stack] .display-card.stack-card--next {
        --card-transform: translate3d(calc(-50% + 3.5rem), 2.25rem, -70px) skewY(var(--card-skew)) scale(0.97);
    }

    .display-card-stack[data-card-stack] .display-card.stack-card--prev {
        --card-transform: translate3d(calc(-50% - 3.5rem), 2.25rem, -70px) skewY(var(--card-skew)) scale(0.97);
    }
}

@media (max-width: 480px) {
    .display-card {
        --card-skew: -2deg;
        padding: 0.85rem 1rem;
    }

    .display-card__title {
        font-size: 1.05rem;
    }

    .display-card__description {
        font-size: 0.95rem;
    }
}

:root {
    /* Futuristic Color Palette */
    --primary-cyan: #00ffff;
    --primary-purple: #8b5cf6;
    --accent-neon: #39ff14;
    --surface-dark: #0d1b2a;
    --surface-darker: #090d1f;
    --surface-dark-rgb: 13, 27, 42;
    --dark-bg: var(--surface-dark);
    --unified-background-base: #7E00B4;
    --unified-background-gradient: linear-gradient(135deg, #7E00B4 0%, #0096C7 100%);
    --unified-background-overlay: linear-gradient(155deg,
            rgba(62, 0, 110, 0.94) 0%,
            rgba(26, 28, 96, 0.9) 52%,
            rgba(10, 46, 110, 0.92) 100%);
    --body-gradient: var(--unified-background-gradient);
    --page-gradient: var(--unified-background-gradient);
    --page-overlay-gradient: var(--unified-background-overlay);
    --hero-gradient: linear-gradient(135deg, rgba(10, 10, 30, 0.95) 0%, rgba(26, 26, 46, 0.94) 50%, rgba(42, 42, 62, 0.95) 100%);
    --page-bg-base: var(--unified-background-base);
    --page-accent: var(--primary-cyan);
    --page-accent-rgb: 0, 255, 255;
    --page-accent-secondary: var(--primary-purple);
    --page-accent-secondary-rgb: 139, 92, 246;
    --particle-color: rgba(var(--page-accent-rgb), 0.65);
    --darker-bg: var(--surface-darker);
    --card-bg: rgba(var(--surface-dark-rgb), 0.85);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-accent: var(--primary-cyan);
    --banner-color: #0a0a1e;
    --banner-color-rgb: 10, 10, 30;
    --banner-text-color: var(--text-secondary);
    
    /* Neon Colors for Cards */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
    
    /* Typography */
    --font-title: 'Orbitron', monospace;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --bg-dark: var(--dark-bg);
    --text-light: var(--text-primary);
}

html {
    background-color: var(--page-bg-base, var(--bg-dark));
}

body {
    font-family: var(--font-body);
    background-color: var(--page-bg-base, var(--bg-dark));
    background-image:
        var(--page-overlay-gradient, linear-gradient(155deg,
                rgba(62, 0, 110, 0.94) 0%,
                rgba(26, 28, 96, 0.9) 52%,
                rgba(10, 46, 110, 0.92) 100%)),
        var(--page-gradient, linear-gradient(135deg, #7E00B4 0%, #0096C7 100%));
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Space for fixed header */
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: visible;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }
}

.vision-disclaimer {
    margin: 0 auto 1.5rem;
    padding: 1rem 1.5rem;
    max-width: min(1200px, 92vw);
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 64, 129, 0.18));
    border: 1px solid rgba(255, 196, 0, 0.45);
    border-radius: 14px;
    color: #fff7d6;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 5;
}

.vision-disclaimer strong {
    color: #ffe27a;
}

/* Page themes */
body[data-page-theme] {
    --page-gradient: var(--unified-background-gradient);
    --page-overlay-gradient: var(--unified-background-overlay);
    --page-bg-base: var(--unified-background-base);
}

body[data-page-theme="team-career"] {
    --page-accent: #16A34A;
    --page-accent-rgb: 22, 163, 74;
    --page-accent-secondary: #34D399;
    --page-accent-secondary-rgb: 52, 211, 153;
    --section-panel-background: radial-gradient(circle at top, rgba(0, 255, 255, 0.08), transparent 60%), var(--darker-bg);
    --bg-secondary: var(--section-panel-background);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-cyan);
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid #000;
}

main {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-indicator,
    .particles,
    .floating-particle {
        animation: none !important;
    }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}



/* Card animation preference */
body.card-animations-disabled .feature-card,
body.card-animations-disabled .feature-card.is-proximity-hover,
body.card-animations-disabled .area-card {
    transform: none !important;
}

body.card-animations-disabled .feature-card::before {
    transform: scaleX(1);
}

body.card-animations-disabled .feature-card:hover,
body.card-animations-disabled .feature-card.is-proximity-hover {
    transform: none !important;
    box-shadow: none;
}

body.card-animations-disabled .area-card:hover {
    box-shadow: none;
}

body.card-animations-disabled .feature-card ul,
body.card-animations-disabled .feature-card:hover ul,
body.card-animations-disabled .feature-card.is-proximity-hover ul,
body.card-animations-disabled .area-card ul,
body.card-animations-disabled .area-card:hover ul {
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: none;
}

body.card-animations-disabled .areas-grid:hover .feature-card:not(:hover) ul {
    max-height: 1000px !important;
    opacity: 1 !important;
    overflow: visible;
    transition: none;
}

body.card-animations-disabled .area-card::before {
    left: 0;
}

body.card-animations-disabled .area-card:hover::before {
    left: 0;
}

body.card-animations-disabled .feature-card .audio-links,
body.card-animations-disabled .feature-card .expandable-content {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding-top: 1.2rem;
}

/* Toggle & modal styling for animation settings */
.settings-section {
    margin-top: 25px;
    display: grid;
    gap: 1rem;
}

.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
}
.settings-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.settings-toggle-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.settings-toggle-description {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
}

.settings-toggle-hint {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.35;
}

.settings-toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.settings-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d0d5dd;
    border-radius: 999px;
    transition: background 0.3s ease;
}

.settings-toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: left 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.settings-toggle-switch input:disabled + .settings-toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.settings-toggle-switch input:disabled + .settings-toggle-slider::before {
    box-shadow: none;
    background: #f3f4f6;
}

.settings-toggle-switch input:checked + .settings-toggle-slider {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
}

.settings-toggle-switch input:checked + .settings-toggle-slider::before {
    transform: translateX(24px);
}

.card-animation-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(var(--surface-dark-rgb), 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25000;
    padding: 20px;
}

.card-animation-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(var(--surface-dark-rgb), 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-animation-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card-animation-modal__header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #111;
}

.card-animation-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.card-animation-modal__close:hover {
    color: #000;
}

.card-animation-modal__intro {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-animation-modal__footer {
    display: flex;
    justify-content: flex-end;
}

.card-animation-modal__close-btn {
    padding: 0.6rem 1.4rem;
    background: #f1f3f5;
    border: 1px solid #d0d5dd;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.card-animation-modal__close-btn:hover {
    background: #e2e8f0;
}

/* Global Search & AI Toggle Styles */
.global-search-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-search-toggle-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.4);
    background: rgba(var(--surface-dark-rgb), 0.25);
    color: var(--primary-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    margin-right: 10px;
}

.mobile-search-toggle-button:focus-visible {
    outline: 3px solid rgba(0, 255, 255, 0.5);
    outline-offset: 2px;
}

.mobile-search-toggle-button:hover {
    background: rgba(0, 255, 255, 0.12);
    transform: translateY(-1px);
}

.mobile-search-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-cyan);
    cursor: pointer;
}

.mobile-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 16px 24px;
    overflow-y: auto;
    pointer-events: none;
    z-index: 10990;
}

.mobile-search-overlay .mobile-search-portal {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-input-wrapper {
    position: relative;
    background: rgba(var(--surface-dark-rgb), 0.2);
    border: 1px solid var(--primary-cyan);
    border-radius: 25px;
    padding: 0.5rem 3.75rem 0.5rem 1rem;
    backdrop-filter: blur(10px);
    min-width: 200px;
    max-width: 250px;
}

.search-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-cyan);
    font-size: 1rem;
    cursor: pointer;
}

.search-control-buttons {
    position: absolute;
    right: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-nav-button {
    width: 1.75rem;
    height: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.35);
    background: rgba(var(--surface-dark-rgb), 0.35);
    color: var(--primary-cyan);
    border-radius: 6px;
    font-size: 0.65rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.search-nav-button:hover:not([disabled]),
.search-nav-button:focus-visible:not([disabled]) {
    background: rgba(0, 255, 255, 0.25);
    color: #000;
    border-color: rgba(0, 255, 255, 0.6);
    outline: none;
}

.search-nav-button[aria-disabled="true"],
.search-nav-button.is-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.ai-toggle-wrapper {
    display: flex;
    align-items: center;
}

.ai-checkbox {
    display: none;
}

.ai-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--surface-dark-rgb), 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-label:hover {
    border-color: var(--primary-cyan);
    color: white;
}

.ai-checkbox:checked + .ai-label {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.ai-checkbox:checked + .ai-label i {
    color: var(--primary-cyan);
}

.global-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(var(--surface-dark-rgb), 0.95);
    border: 2px solid var(--primary-cyan);
    border-radius: 15px;
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(15px);
    display: none;
    min-width: 400px;
}

.global-search-result-item {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: inherit;
    font: inherit;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.global-search-result-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.global-search-result-item:focus-visible {
    outline: 2px solid rgba(0, 255, 204, 0.7);
    outline-offset: -2px;
}

.global-search-result-item.active {
    background: rgba(0, 255, 255, 0.18);
    transform: translateX(5px);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.25);
}

.global-search-result-item:last-child {
    border-bottom: none;
}

.global-search-result-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.global-search-result-media {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(var(--surface-dark-rgb), 0.35);
}

.global-search-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-search-result-info {
    flex: 1;
}

.global-search-result-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.global-search-result-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.global-search-results-header {
    padding: 0.75rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.global-search-results-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.85);
}

.global-search-results-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.global-search-message {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
}

.global-search-message-icon {
    font-size: 1.6rem;
}

.global-search-message-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.global-search-message-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.global-search-message-description,
.global-search-result-query {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.global-search-result-query {
    margin-top: 0.4rem;
    font-style: italic;
}

.global-search-highlight {
    background: rgba(0, 255, 204, 0.35);
    color: #012a2a;
    padding: 0 0.2em;
    border-radius: 4px;
}

.search-highlight-target {
    position: relative;
    background: rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.25);
    border-radius: 10px;
    animation: searchHighlightPulse 1.5s ease-in-out 2;
    transition: background 0.6s ease;
}

.search-highlight-target--fadeout {
    background: rgba(0, 255, 204, 0.08) !important;
    box-shadow: none !important;
}

@keyframes searchHighlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.35);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 255, 255, 0.15);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.35);
    }
}

/* Makerspace Request Form */
.makerspace-form-section {
    padding: 4rem 0;
}

.makerspace-form-lead {
    text-align: center;
    margin: 1rem auto 3rem auto;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.6;
}

.required-marker {
    color: var(--primary-cyan);
}

.makerspace-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.makerspace-form {
    background: rgba(var(--surface-dark-rgb), 0.85);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(var(--surface-dark-rgb), 0.45);
}

.makerspace-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.makerspace-fieldset legend {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.2rem;
}

.makerspace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.field-group label,
.field-label {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.field-note {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.makerspace-field-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: -0.4rem 0 1.2rem;
}

.makerspace-form input[type="text"],
.makerspace-form input[type="email"],
.makerspace-form input[type="tel"],
.makerspace-form input[type="date"],
.makerspace-form select,
.makerspace-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.5);
    background: rgba(var(--surface-dark-rgb), 0.65);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.makerspace-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.makerspace-form input:focus,
.makerspace-form select:focus,
.makerspace-form textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.15);
    outline: none;
    background: rgba(var(--surface-dark-rgb), 0.8);
}

.char-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.char-counter.is-warning {
    color: #ff8a80;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.option-chip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    background: rgba(var(--surface-dark-rgb), 0.4);
}

.option-chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.option-chip:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.15);
}

.option-chip.is-selected {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
    color: var(--primary-cyan);
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(var(--surface-dark-rgb), 0.35);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.color-swatch[data-status="backorder"] {
    border-style: dashed;
}

.color-swatch input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.color-swatch .swatch {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: var(--swatch-color, #111);
}

.color-swatch .swatch-label {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-secondary);
}

.color-swatch .swatch-note {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.3;
}

.color-swatch.is-selected {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.file-dropzone {
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    background: rgba(var(--surface-dark-rgb), 0.45);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.file-dropzone:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.15);
}

.file-dropzone.is-dragover {
    border-color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.dropzone-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.dropzone-button {
    background: transparent;
    border: none;
    color: var(--primary-cyan);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.dropzone-button:hover {
    color: white;
}

.upload-hint,
.upload-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.file-placeholder {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.file-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(var(--surface-dark-rgb), 0.4);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.file-name {
    font-weight: 600;
    color: white;
    word-break: break-word;
}

.file-size {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.file-progress {
    grid-column: 1 / -1;
    height: 6px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), #00b7ff);
    transition: width 0.3s ease;
}

.file-status-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.15rem;
}

.file-item[data-upload-status="uploading"] .file-status-text {
    color: var(--primary-cyan);
}

.file-item[data-upload-status="uploaded"] .file-status-text {
    color: #52ffa8;
}

.file-item[data-upload-status="failed"] .file-status-text {
    color: #ff6b6b;
}

.file-item[data-upload-status="cancelled"] .file-status-text {
    color: var(--text-secondary);
}

.file-item[data-upload-status="uploaded"] .progress-bar {
    background: linear-gradient(90deg, #52ffa8, #1dd1a1);
}

.file-item[data-upload-status="failed"] .progress-bar {
    background: linear-gradient(90deg, #ff6b6b, #ff3b3b);
}

.file-item[data-upload-status="cancelled"] .progress-bar {
    background: rgba(0, 255, 255, 0.25);
}

.remove-file {
    justify-self: end;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.remove-file:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.field-error {
    min-height: 1.1rem;
    font-size: 0.8rem;
    color: #ff8a80;
}

.makerspace-form input.has-error,
.makerspace-form select.has-error,
.makerspace-form textarea.has-error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important;
}

.file-dropzone.has-error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important;
}

.option-grid.has-error {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
}

.option-grid.has-error .option-chip {
    border-color: rgba(255, 107, 107, 0.8);
}

.consent-checkbox.has-error {
    color: #ff8a80;
}

.makerspace-form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.consent-checkbox input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.consent-checkbox a {
    color: var(--primary-cyan);
}

.makerspace-submit {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-cyan), #00b7ff);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.makerspace-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0, 255, 255, 0.25);
}

.makerspace-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-cta {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-cta__lead {
    margin: 0;
    font-size: 0.95rem;
}

.contact-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.contact-cta__button {
    min-width: 190px;
}

.contact-cta__feedback {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.participation-cta {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.participation-cta::before {
    content: none;
}

.participation-cta__content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.participation-cta__lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1rem;
}

.participation-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.participation-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    color: #000;
    background: linear-gradient(135deg, var(--primary-cyan), #00b7ff);
    box-shadow: 0 16px 40px rgba(0, 255, 255, 0.15);
}

.participation-cta__button--whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #021b0f;
}

.participation-cta__button--form {
    background: linear-gradient(135deg, var(--primary-purple), #00b7ff);
    color: #fff;
}

.participation-cta__button:hover,
.participation-cta__button:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(var(--surface-dark-rgb), 0.35);
    filter: brightness(1.05);
}

@media (max-width: 640px) {
    .participation-cta {
        padding: 3rem 0;
    }

    .participation-cta__button {
        width: 100%;
    }
}

#color-special {
    margin-top: 0.75rem;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
}

.secondary-cta.whatsapp {
    background: #25d366;
}

.secondary-cta.instagram {
    background: linear-gradient(135deg, #feda75, #d62976, #4f5bd5);
}

.secondary-cta.email {
    background: #ea4335;
}

.secondary-cta.reclaim {
    background: linear-gradient(135deg, #7f5af0, #6436d9);
}

.secondary-cta:hover,
.secondary-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(var(--surface-dark-rgb), 0.35);
}

.secondary-cta.is-success {
    background: #2ecc71;
    color: #082b18;
}

.secondary-cta.is-error {
    background: #ff6b6b;
}

.form-message {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    display: none;
}

.form-message.is-success {
    display: block;
    border: 1px solid rgba(0, 255, 204, 0.4);
    background: rgba(0, 255, 204, 0.12);
    color: var(--primary-cyan);
}

.form-message.is-error {
    display: block;
    border: 1px solid rgba(255, 107, 107, 0.4);
    background: rgba(255, 107, 107, 0.12);
    color: #ff8a80;
}

.recap {
    display: inline-block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.floating-scroll-button {
    position: fixed;
    bottom: max(1.5rem, calc(env(safe-area-inset-bottom, 0px) + 1.25rem));
    right: auto;
    left: max(1.5rem, calc(env(safe-area-inset-left, 0px) + 1.25rem));
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-cyan), #0080ff);
    color: #000;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    z-index: 1200;
    padding: 0;
    gap: 0;
}

.floating-scroll-button .floating-button-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.floating-scroll-button .floating-button-label {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-scroll-button:hover,
.floating-scroll-button:focus {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 18px 36px rgba(0, 255, 255, 0.45);
}

.floating-scroll-button.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.makerspace-conditional {
    display: none;
}

.makerspace-conditional.is-visible {
    display: block;
}

@media (min-width: 768px) {
    .makerspace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .makerspace-form {
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 640px) {
    .floating-scroll-button {
        bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
        right: auto;
        left: max(1rem, calc(env(safe-area-inset-left, 0px) + 0.75rem));
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .contact-cta__buttons {
        gap: 0.6rem;
    }

    .contact-cta__button {
        min-width: 160px;
    }
}

@media (min-width: 1024px) {
    .floating-scroll-button {
        width: auto;
        height: auto;
        padding: 0.75rem 1.5rem;
        border-radius: 999px;
        font-size: 1rem;
        gap: 0.65rem;
    }

    .floating-scroll-button .floating-button-icon {
        font-size: 1.2rem;
    }

    .floating-scroll-button .floating-button-label {
        display: inline-flex;
        align-items: center;
    }
}

/* Essential Global Search */
.global-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(var(--surface-dark-rgb), 0.95);
    border: 1px solid var(--primary-cyan);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

/* Essential chatbot trigger only */
.chatbot-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
    body.mobile-search-open {
        overflow: hidden;
    }

    .mobile-search-toggle-button {
        display: inline-flex;
    }

    .mobile-search-overlay {
        background: rgba(var(--surface-dark-rgb), 0.55);
        padding: clamp(40px, 8vh, 72px) 16px 24px;
    }

    .mobile-search-overlay.is-visible {
        display: flex;
        pointer-events: auto;
    }

    .global-search-container {
        display: none;
    }

    .global-search-container.is-mobile-active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: fixed;
        top: min(18vh, 120px);
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw - 32px, 420px);
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid rgba(0, 255, 255, 0.45);
        border-radius: 20px;
        padding: 1.5rem 1.25rem;
        box-shadow: 0 25px 60px rgba(var(--surface-dark-rgb), 0.45);
        z-index: 11000;
        margin-left: 0;
    }

    .global-search-container.is-mobile-active.is-mobile-detached {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: clamp(32px, 6vh, 80px) auto 0;
        width: min(100%, 420px);
        z-index: auto;
        align-self: center;
    }

    .global-search-container.is-mobile-active .search-input-wrapper {
        min-width: 100%;
        max-width: 100%;
        background: rgba(var(--surface-dark-rgb), 0.55);
        padding-right: 3.5rem;
    }

    .global-search-container.is-mobile-active .search-control-buttons {
        right: 3.1rem;
    }

    .global-search-container.is-mobile-active .search-nav-button {
        height: 1.75rem;
        width: 1.9rem;
    }

    .global-search-container.is-mobile-active .global-search-results {
        display: block;
        position: static;
        width: 100%;
        margin-top: 0;
        max-height: 45vh;
    }

    .global-search-container.is-mobile-active .mobile-search-close {
        display: inline-flex;
        align-self: flex-end;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 255, 255, 0.18);
        color: var(--primary-cyan);
        font-size: 1.1rem;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .global-search-container.is-mobile-active .mobile-search-close:focus-visible {
        outline: 3px solid rgba(0, 255, 255, 0.5);
        outline-offset: 2px;
    }

    .global-search-container.is-mobile-active .mobile-search-close:hover {
        transform: translateY(-1px);
        background: rgba(0, 255, 255, 0.26);
    }

    /* Mobile Hero Section Fix */
    .hero {
        min-height: auto;
        padding: 3rem 0 4.5rem;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-content {
        padding: 1.5rem 1.25rem 2.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    /* Mobile Dropdown Fix */
    #profile-dropdown,
    #feedback-dropdown {
        position: fixed !important;
        top: calc(70px + 10px) !important;
        left: 50% !important;
        right: auto !important;
        width: min(100vw - 32px, 420px) !important;
        max-width: min(100vw - 32px, 420px) !important;
        z-index: 10000 !important;
        transform: translateX(-50%) !important;
    }

    #profile-dropdown .dropdown-slideout-panel,
    #feedback-dropdown .dropdown-slideout-panel {
        max-height: min(80vh, 540px) !important;
        overflow-y: auto !important;
        padding: 18px 18px 22px !important;
    }

    #profile-dropdown [data-dropdown-close],
    #feedback-dropdown [data-dropdown-close] {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
    }

    /* Mobile Navigation Links Fix */
    .nav-menu {
        background: rgba(var(--banner-color-rgb, 13, 27, 42), 0.92);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.35);
        border-radius: 10px;
        margin: 0 10px;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.15);
        display: block;
        width: 100%;
        text-align: left;
        color: var(--banner-text-color, #ffffff);
        text-decoration: none;
        transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active {
        background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.14);
        color: var(--page-accent, var(--primary-cyan));
        transform: translateX(5px);
    }
    
    /* Ensure clickable area */
    .nav-link {
        position: relative;
        z-index: 1000;
        pointer-events: auto;
    }
    
    /* Fix logo sizing issues on mobile */
    .logo img {
        max-height: 50px;
        width: auto;
        transition: none;
    }
    
    /* Prevent layout shifts */
    .hero-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    /* Mobile-specific container fixes */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .chatbot-container {
        width: calc(100vw - 2rem);
        height: calc(100vh - 4rem);
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .feedback-btn,
    .user-profile-btn {
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.95rem;
    }

    .modern-navbar .feedback-btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    #feedback-popup {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: min(100vw - 32px, 400px) !important;
        max-width: min(100vw - 32px, 400px) !important;
        border-radius: 18px !important;
    }
}

.mobile-fullscreen {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    left: 16px !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 18px !important;
    margin: 0 !important;
    box-shadow: 0 20px 50px rgba(var(--surface-dark-rgb), 0.35) !important;
    border: 1px solid rgba(0, 255, 255, 0.15) !important;
    display: flex !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.chat-tab-info-message {
    margin: 0.5rem 0.75rem 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.12) 0%, rgba(0, 153, 255, 0.08) 100%);
    color: #e6fbff;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0 10px 24px rgba(var(--surface-dark-rgb), 0.28);
}

.chat-info-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.chat-tab-info-message .chat-info-text {
    text-align: left;
}

.chat-tab-info-message .chat-info-text p {
    margin: 0;
    color: #d2f8ff;
    font-size: 0.85rem;
}

.chat-info-community-btn,
.chat-info-feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chat-info-community-btn {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.95), rgba(0, 168, 255, 0.85));
    color: #02141f;
    box-shadow: 0 10px 20px rgba(0, 200, 255, 0.32);
}

.chat-info-feedback-btn {
    background: rgba(0, 255, 204, 0.16);
    color: #9afcff;
    border: 1px solid rgba(0, 255, 204, 0.35);
}

.chat-info-actions-row .chat-info-feedback-btn {
    min-width: 0;
    justify-content: center;
}

.chat-info-community-btn:hover,
.chat-info-community-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 200, 255, 0.45);
    background: linear-gradient(135deg, rgba(0, 255, 204, 1), rgba(0, 191, 255, 0.95));
}

.chat-info-feedback-btn:hover,
.chat-info-feedback-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 255, 204, 0.25);
    background: rgba(0, 255, 204, 0.22);
}

.chat-info-feedback-btn:focus,
.chat-info-community-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.35);
}

@media (max-width: 768px) {
    .chat-info-actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .chat-info-community-btn,
    .chat-info-feedback-btn {
        width: 100%;
        justify-content: center;
    }

    .chat-tab-info-message,
    .chat-tab-info-message .chat-info-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-fullscreen .chatbot-header {
        border-radius: 16px 16px 0 0 !important;
    }

    .mobile-fullscreen .chatbot-messages {
        height: auto !important;
    }

    .mobile-fullscreen .chat-tabs-container {
        position: sticky;
        top: 0;
        z-index: 3;
    }
}

@media (max-width: 520px) {
    .mobile-fullscreen {
        top: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        left: 12px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 0 3rem;
    }

    .hero-content {
        padding: 1.5rem 1rem 2.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-title .title-main {
        display: block;
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-description,
    .hero-text-content,
    .hero-offer {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-text {
        gap: 1rem;
    }

    .hero-offer a {
        display: inline-block;
        margin-top: 0.35rem;
    }

    .development-notice {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 1rem;
    }
}

.google-signin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(var(--surface-dark-rgb), 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 20000;
}

.google-signin-modal {
    background: #ffffff;
    border-radius: 18px;
    max-width: 420px;
    width: min(100%, 420px);
    padding: 28px 24px 24px;
    box-shadow: 0 20px 60px rgba(var(--surface-dark-rgb), 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.google-signin-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #5f6368;
    line-height: 1;
}

.google-signin-close:hover {
    color: #202124;
}

.google-signin-header h3 {
    margin: 0;
    color: #202124;
    font-size: 1.45rem;
}

.google-signin-header p {
    margin: 8px 0 0;
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.4;
}

.google-signin-button-wrapper {
    display: flex;
    justify-content: center;
}

.google-signin-hint {
    margin: 0;
    text-align: center;
    color: #5f6368;
    font-size: 0.85rem;
    line-height: 1.4;
}

@media (max-width: 520px) {
    .google-signin-modal {
        border-radius: 16px;
        padding: 24px 18px 20px;
    }

    .google-signin-header h3 {
        font-size: 1.3rem;
    }

    .google-signin-header p {
        font-size: 0.9rem;
    }
}

/* Essential shop styles only */
.shop-category {
    padding: 120px 0 50px;
}

/* Remove featured styling - all price options same style */

.product-showcase-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

/* Essential product styles only */
.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 28px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    cursor: pointer;
    width: min(100%, 320px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    min-height: auto;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Shop Category Product Layouts */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    justify-items: center;
}

@media (min-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 420-Box specific grid - 3 cards side by side */
.wide-product-card .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
}

/* 420-Box Wide Card Styles */
.wide-product-section {
    margin-bottom: 3rem;
}

.wide-product-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.wide-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.wide-product-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.wide-product-card:hover::before {
    transform: scaleX(1);
}

.wide-product-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.product-showcase-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-column h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.pricing-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.price-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    z-index: 10;
    border-radius: 10px 10px 0 0;
}

.price-option:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.price-option:hover::before {
    transform: scaleX(1);
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    color: var(--accent-neon);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.payment-options-hover {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.price-option:hover .payment-options-hover {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.product-image {
    text-align: center;
    margin-bottom: 20px;
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    opacity: 0.8;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-neon);
    text-align: center;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.product-card:hover .product-features {
    max-height: 600px;
    opacity: 1;
    margin-top: 15px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--accent-neon);
    margin-right: 10px;
    width: 16px;
}

.product-features li::before {
    content: '•';
    color: #8A2BE2;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.payment-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.product-card:hover .payment-buttons {
    max-height: 320px;
    opacity: 1;
    margin-top: 20px;
}

.btn-stripe, .btn-paypal {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-stripe {
    background: linear-gradient(45deg, #635bff, #7c3aed);
    color: white;
}

.btn-stripe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 91, 255, 0.4);
}

.btn-paypal {
    background: linear-gradient(45deg, #0070ba, #003087);
    color: white;
}

.btn-paypal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}

.category-footer {
    text-align: center;
    margin-top: 40px;
}

.back-to-shop {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 1px solid var(--primary-cyan);
    border-radius: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.back-to-shop:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.eco-info, .customization-info, .tools-info, .design-info {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--primary-purple);
    padding: 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.eco-info h3, .customization-info h3, .tools-info h3, .design-info h3 {
    color: var(--primary-cyan);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Animated Gradient Title Effects */
@keyframes titleGradient {
    0% { 
        color: #39ff14;
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.6), 0 0 20px rgba(57, 255, 20, 0.4);
    }
    33% { 
        color: var(--primary-cyan);
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
    }
    66% { 
        color: var(--primary-purple);
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.6), 0 0 20px rgba(139, 92, 246, 0.4);
    }
    100% { 
        color: #39ff14;
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.6), 0 0 20px rgba(57, 255, 20, 0.4);
    }
}

.hero-title,
.section-title,
.category-header h1,
h1.hero-title,
h2.section-title {
    animation: titleGradient 3s ease infinite !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Essential navigation styles */
.nav-link.active {
    color: var(--page-accent, var(--primary-cyan)) !important;
    text-shadow: 0 0 10px rgba(var(--page-accent-rgb, 0, 255, 255), 0.5);
}

/* Header Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.nav-item-dropdown .nav-parent .nav-link {
    flex: 1 1 auto;
    padding-right: 0;
    text-align: center;
}

.dropdown-toggle {
    border: none;
    background: transparent;
    color: var(--page-accent, var(--primary-cyan));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    margin-left: 0;
    flex-shrink: 0;
    font-size: 0.9rem;
    line-height: 1;
    position: static;
    width: 1.9rem;
    height: 1.9rem;
    min-width: 1.9rem;
    min-height: 1.9rem;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
    background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.12);
    color: var(--banner-text-color, #ffffff);
}

.dropdown-toggle:focus-visible {
    outline: 3px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.4);
    outline-offset: 3px;
}

.dropdown-toggle-icon {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    transform: translateY(2px);
}

.nav-item-dropdown.dropdown-open .dropdown-toggle,
.nav-item-dropdown.mobile-open .dropdown-toggle {
    background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.18);
    color: var(--banner-text-color, #ffffff);
}

.nav-item-dropdown.dropdown-open .nav-link,
.nav-item-dropdown.mobile-open .nav-link {
    color: var(--page-accent, var(--primary-cyan));
}

.nav-item-dropdown.dropdown-open .dropdown-toggle-icon,
.nav-item-dropdown.mobile-open .dropdown-toggle-icon {
    transform: rotate(-180deg) translateY(2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker-bg);
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.25);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.12);
    width: 100%;
    box-sizing: border-box;
}

.dropdown-link .dropdown-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.dropdown-link .dropdown-label {
    flex: 1;
    line-height: 1.4;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.12);
    color: var(--page-accent, var(--primary-cyan));
}

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(var(--banner-color-rgb, 10, 10, 30), 0.92) 0%, rgba(var(--banner-color-rgb, 10, 10, 30), 0.88) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.35);
    z-index: 9999;
    will-change: transform, background;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    padding: 0;
    width: 100%;
    height: auto;
    transform: translateY(0) !important;
}

.modern-navbar.scrolled,
.modern-navbar:hover {
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(var(--banner-color-rgb, 10, 10, 30), 0.96) 0%, rgba(var(--banner-color-rgb, 10, 10, 30), 0.92) 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    gap: 0.6rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-item-logo {
    margin-right: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 43px;
    width: 43px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.preloader-square-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.preloader-square-ring.active {
    opacity: 1;
}

.preloader-square-spinner {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 8px;
    animation: preloader-square-spin 1.5s linear infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

body.is-spa-loading {
    cursor: progress;
}

.spa-loader-fallback {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(var(--surface-dark-rgb), 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 11000;
}

.spa-loader-fallback.active {
    display: flex;
}

.spa-loader-fallback__ring {
    width: 42px;
    height: 42px;
    position: relative;
}

.spa-loader-fallback__ring .preloader-square-spinner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@keyframes preloader-square-spin {
    0% { 
        border-top-color: #00ffff; 
        border-right-color: rgba(0, 255, 255, 0.2); 
        border-bottom-color: rgba(0, 255, 255, 0.2); 
        border-left-color: rgba(0, 255, 255, 0.2); 
    }
    25% { 
        border-top-color: rgba(0, 255, 255, 0.2); 
        border-right-color: #00ffff; 
        border-bottom-color: rgba(0, 255, 255, 0.2); 
        border-left-color: rgba(0, 255, 255, 0.2); 
    }
    50% { 
        border-top-color: rgba(0, 255, 255, 0.2); 
        border-right-color: rgba(0, 255, 255, 0.2); 
        border-bottom-color: #00ffff; 
        border-left-color: rgba(0, 255, 255, 0.2); 
    }
    75% { 
        border-top-color: rgba(0, 255, 255, 0.2); 
        border-right-color: rgba(0, 255, 255, 0.2); 
        border-bottom-color: rgba(0, 255, 255, 0.2); 
        border-left-color: #00ffff; 
    }
    100% { 
        border-top-color: #00ffff; 
        border-right-color: rgba(0, 255, 255, 0.2); 
        border-bottom-color: rgba(0, 255, 255, 0.2); 
        border-left-color: rgba(0, 255, 255, 0.2); 
    }
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--text-primary);
}

.logo-number {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(var(--banner-color-rgb, 10, 10, 30), 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch !important;
        padding: 40px 24px 24px;
        transition: left 0.3s ease;
        gap: 12px;
    }

    .nav-menu.active {
        left: 0;
    }
}

.nav-link {
    color: var(--banner-text-color, var(--text-secondary));
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
    min-width: 72px;
}

@media (min-width: 769px) {
    .nav-link {
        padding-bottom: 1.4rem;
    }

    .nav-item-dropdown .nav-parent {
        height: 100%;
        justify-content: flex-start;
    }

    .nav-item-dropdown .dropdown-toggle {
        position: absolute;
        left: 50%;
        bottom: 0.35rem;
        transform: translateX(-50%);
    }
}

.nav-icon {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
}

.nav-label {
    font-size: 0.85rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .nav-link {
        width: 100%;
        align-items: flex-start;
        text-align: left;
        padding: 0.8rem 1rem;
    }

    .nav-label {
        font-size: 1rem;
    }
}

.nav-link:hover {
    color: var(--page-accent, var(--primary-cyan));
    text-shadow: 0 0 5px rgba(var(--page-accent-rgb, 0, 255, 255), 0.8);
    background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.12);
    border-color: rgba(var(--page-accent-rgb, 0, 255, 255), 0.35);
}

/* Essential button styles */
.cta-button {
    display: inline-block;
    background: var(--dark-bg);
    color: var(--primary-cyan) !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--primary-cyan);
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--dark-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.cta-button.ghost {
    background: rgba(12, 18, 34, 0.78);
    border-color: rgba(var(--page-accent-rgb, 0, 255, 255), 0.35);
    color: var(--page-accent, var(--primary-cyan)) !important;
    box-shadow: none;
}

.cta-button.ghost:hover {
    background: linear-gradient(135deg,
            rgba(var(--page-accent-rgb, 0, 255, 255), 0.22),
            rgba(var(--page-accent-secondary-rgb, 139, 92, 246), 0.22));
    color: #071021 !important;
}

.cta-button:disabled,
.cta-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.clickable-card {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Memory Ball Images Styling */
.memory-ball-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.memory-ball-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(var(--surface-dark-rgb), 0.3);
    transition: transform 0.3s ease;
}

.memory-ball-img:hover {
    transform: scale(1.05);
}

/* Custom Consultation Styling */
.custom-consultation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
}

.consultation-content h4 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.consultation-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.consultation-content .price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-cyan);
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Essential hero styles */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero.hero-transparent {
    background: transparent;
}

.hero.hero-transparent .hero-background {
    background: transparent;
}

.hero.hero-transparent .hero-background::before {
    content: none;
}

.hero.compact-hero {
    min-height: 60vh;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    overflow: hidden;
}


.hero .particles,
.page-banner .particles,
.banner .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--particle-color, rgba(0, 255, 255, 0.65));
    opacity: var(--particle-opacity, 0.45);
    box-shadow: 0 0 var(--particle-blur, 10px) currentColor;
    animation: floatParticle var(--float-duration, 18s) ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
    will-change: transform, opacity;
    mix-blend-mode: screen;
}

.hero-page-icon {
    font-size: clamp(2.75rem, 5vw, 4rem);
    color: var(--primary-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.35));
}

.hero-text .hero-page-icon,
.hero-content .hero-page-icon {
    align-self: center;
}

@keyframes floatParticle {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: var(--particle-opacity, 0.45);
    }
    50% {
        transform: translate3d(var(--float-x, 24px), var(--float-y, -60px), 0) scale(1.1);
        opacity: var(--particle-opacity-active, 0.65);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: var(--particle-opacity, 0.45);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(var(--page-accent-rgb), 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--page-accent-rgb), 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Essential loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Space animation enhancements */
@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
        filter: hue-rotate(0deg);
    }
    33% {
        text-shadow: 0 0 35px rgba(138, 43, 226, 0.7), 0 0 70px rgba(138, 43, 226, 0.4), 0 0 100px rgba(138, 43, 226, 0.2);
        filter: hue-rotate(120deg);
    }
    66% {
        text-shadow: 0 0 40px rgba(255, 20, 147, 0.6), 0 0 80px rgba(255, 20, 147, 0.3);
        filter: hue-rotate(240deg);
    }
    100% {
        text-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 80px rgba(0, 255, 255, 0.4), 0 0 120px rgba(0, 255, 255, 0.2);
        filter: hue-rotate(360deg);
    }
}

.hero .hero-background::before {
    content: none;
}

.hero.hero-layered,
.hero.hero-layered .hero-background {
    background: var(--hero-gradient, var(--page-gradient, var(--body-gradient)));
}

.hero.hero-layered .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(var(--page-accent-rgb), 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(var(--page-accent-secondary-rgb), 0.12) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(var(--page-accent-rgb), 0.08) 0%, transparent 50%);
    animation: nebula 15s ease-in-out infinite alternate;
}

@keyframes nebula {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
}

/* Essential hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary-cyan);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
    letter-spacing: 2px;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-third-title {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#infinity-designs {
    margin-top: 5rem;
}

#infinity-designs .hero {
    padding: 6rem 0 4rem;
}

#infinity-designs .hero .hero-description {
    max-width: 640px;
}

#infinity-designs .infinity-designs-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (max-width: 768px) {
    #infinity-designs {
        margin-top: 3.5rem;
    }

    #infinity-designs .hero {
        padding: 4rem 0 3rem;
    }
}

#cta-hero {
    margin: 1.75rem 0 1.25rem;
}

.hero-description {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.85rem 1.6rem;
    font-size: 1.2rem;
    color: #f7fbff;
    margin: 0 auto 1.5rem;
    max-width: 820px;
    line-height: 1.6;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--page-accent-secondary-rgb), 0.28), rgba(var(--page-accent-rgb), 0.2));
    border: 1px solid rgba(var(--page-accent-rgb), 0.45);
    box-shadow: 0 0 28px rgba(var(--page-accent-rgb), 0.25), inset 0 0 22px rgba(var(--page-accent-secondary-rgb), 0.35);
    letter-spacing: 0.01em;
    overflow: visible;
    isolation: isolate;
}

.hero-upgrade-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-upgrade-link:hover,
.hero-upgrade-link:focus-visible {
    box-shadow: 0 0 35px rgba(var(--page-accent-rgb), 0.45), inset 0 0 28px rgba(var(--page-accent-secondary-rgb), 0.42);
    transform: translateY(-2px);
}

.hero-description::before {
    content: '';
    position: absolute;
    inset: -28% -20%;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(var(--page-accent-rgb), 0.45), transparent 70%);
    filter: blur(48px);
    opacity: 0.55;
    z-index: -2;
    animation: hero-description-glow 7s ease-in-out infinite alternate;
}

.hero-description::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(var(--page-accent-rgb), 0.5);
    box-shadow: inset 0 0 18px rgba(var(--page-accent-secondary-rgb), 0.32);
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
}

@keyframes hero-description-glow {
    0% {
        opacity: 0.35;
        transform: scale(0.92);
    }
    100% {
        opacity: 0.75;
        transform: scale(1.06);
    }
}

.hero-dynamic-word {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7ch;
    padding: 0.35rem 0.75rem;
    vertical-align: bottom;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--primary-cyan);
    background: radial-gradient(circle at 50% 50%, rgba(0, 162, 255, 0.28), rgba(0, 34, 63, 0.65));
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.48);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.32), inset 0 0 20px rgba(0, 160, 255, 0.35);
    overflow: visible;
    isolation: isolate;
}

.hero-progress-note {
    margin: 1.5rem auto 0;
    padding: 1rem 1.4rem;
    max-width: 720px;
    background: linear-gradient(135deg, rgba(15, 45, 70, 0.85), rgba(8, 18, 45, 0.9));
    border: 1px solid rgba(0, 255, 200, 0.35);
    border-radius: 16px;
    color: #e6f9ff;
    font-size: 1.05rem;
    line-height: 1.65;
    box-shadow: 0 12px 32px rgba(0, 200, 255, 0.18);
    text-align: center;
}

.hero-progress-note strong {
    color: var(--primary-cyan);
}

.hero-dynamic-word::before {
    content: '';
    position: absolute;
    inset: -38% -25%;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.55), transparent 65%);
    filter: blur(32px);
    opacity: 0.7;
    z-index: -2;
}

.hero-dynamic-word::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 70%);
    opacity: 0.6;
    mix-blend-mode: screen;
    z-index: -1;
    pointer-events: none;
}

.hero-dynamic-word .dynamic-viewport {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: var(--word-height, 1.35em);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(var(--surface-dark-rgb), 0.92) 18%, rgba(var(--surface-dark-rgb), 0.92) 82%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(var(--surface-dark-rgb), 0.92) 18%, rgba(var(--surface-dark-rgb), 0.92) 82%, transparent 100%);
}

.hero-dynamic-word .dynamic-words-wrapper {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: hero-word-scroll var(--word-animation-duration, 22000ms) linear infinite;
}

.hero-dynamic-word .dynamic-word {
    flex: 0 0 auto;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    padding: 0.05rem 0;
}

@keyframes hero-word-scroll {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-1 * var(--word-loop-height, 0px)));
    }
}

.hero-navigation {
    margin-top: 2rem;
}

.hero[data-reserve-nav-space="pending"]::after {
    content: "";
    display: block;
    height: var(--hero-navigation-reserved-height, 6.5rem);
}

.hero-navigation[data-auto-generated="true"] {
    min-height: var(--hero-navigation-reserved-height, auto);
}

.hero-navigation[data-auto-generated="true"].hero-navigation--pending {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.hero-navigation .nav-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
    background: var(--primary-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.25);
}

.development-notice {
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    max-width: 800px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.12);
}

.development-notice strong {
    color: var(--primary-cyan);
}

.inline-link {
    color: var(--primary-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.inline-link:hover {
    border-bottom-color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--primary-cyan);
}


/* Sections */
.active-areas {
    padding: 60px 0 0 0;
    background: var(--bg-primary);
}

.phases {
    padding: 1rem 0 1rem 0;
}

.center-vision {
    padding: var(--section-padding);
    padding-top: 1rem;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 2px;
}



/* Unified Card Styles - No Movement, Only Hover Effects */
.social-card, .event-card, .team-area, .benefit-card, .funding-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Unified Hover Effects - No Transform Movement */
.social-card:hover, .event-card:hover, .team-area:hover, .benefit-card:hover, .funding-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

/* Gradient Line Effect for Cards */
.social-card::before, .event-card::before, .team-area::before, .benefit-card::before, .funding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan), var(--primary-purple));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.social-card:hover::before, .event-card:hover::before, .team-area:hover::before, .benefit-card:hover::before, .funding-card:hover::before {
    transform: scaleX(1);
}

/* Grid Layouts - Keep Existing Structure */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.team-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.funding-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}


.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.areas-grid:hover .feature-card:not(:hover):not(.is-proximity-hover) ul {
    max-height: 0 !important;
    opacity: 0 !important;
}

.area-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-cyan);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.area-card h3 a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.area-card h3 a:hover {
    text-shadow: 0 0 10px var(--primary-cyan);
}

.card-subtitle {
    font-family: var(--font-hero-title);
    font-size: 1.1rem;
    color: var(--text-accent);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-size: 0.8rem;
}

/* Essential phases section */
.phases {
    background: var(--bg-primary);
    padding: 1rem 0;
}

/* Phases Timeline - Compact Version: 1.1 - Cache Bust */
.phases-timeline-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 4rem;
    align-items: start;
}

.phases-timeline-compact .phase-item h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.phases-timeline-compact .phase-item h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

.phases-timeline-compact .phase-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
}

.service-feature-card {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    overflow: hidden;
}

.expandable-service-card {
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.expandable-service-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.expandable-features {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 0.5rem;
}

.expandable-service-card:hover .expandable-features {
    max-height: 200px;
    opacity: 1;
}

.expandable-service-card .feature-subtitle {
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 0.25rem;
}

.expandable-service-card:hover .feature-subtitle {
    opacity: 1;
}

.phases-timeline-compact .phase-item:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: var(--primary-cyan);
}

.phase-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 1rem;
}

.phase-details ul {
    list-style: none;
    text-align: left;
}

.phase-details ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.phase-details ul li::before {
    content: '•';
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.phase-item:hover .phase-details {
    max-height: 200px;
    opacity: 1;
}

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

.phase-details li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.2rem;
}

.phase-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-size: 0.7rem;
}

.phase-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
    font-family: 'Orbitron', sans-serif;
}

.phases-timeline-compact .phase-item.completed .phase-number {
    background: #00ff00;
}

.phases-timeline-compact .phase-item.in-progress .phase-number {
    background: #ffaa00;
}

.phases-timeline-compact .phase-item.planned .phase-number {
    background: rgba(0, 255, 255, 0.3);
}

.phases-timeline-compact h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.phases-timeline-compact p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Center Vision */
.center-vision {
    background: var(--bg-primary);
}

.center-vision .features-grid {
    justify-items: center;
}

.center-vision .features-grid .feature-card {
    max-width: 360px;
    width: min(100%, 360px);
    margin: 0 auto;
}

/* Essential grid layouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.section-soft-overlay {
    position: relative;
    isolation: isolate;
}

.section-soft-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 2.5rem));
    height: 100%;
    background: linear-gradient(160deg, rgba(32, 34, 40, 0.28), rgba(22, 24, 30, 0.2));
    border-radius: 32px;
    z-index: 0;
    pointer-events: none;
}

.section-soft-overlay > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .section-soft-overlay::before {
        width: calc(100% - 1.5rem);
        border-radius: 24px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    will-change: transform, box-shadow;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.external-link-indicator {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    opacity: 0.75;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.clickable-card:hover .external-link-indicator,
.clickable-card:focus-within .external-link-indicator {
    transform: translate(3px, -3px);
    opacity: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.feature-card .role-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 11;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

.feature-card .role-status.status-active {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.45);
}

.feature-card .role-status.status-future {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.45);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--page-accent-secondary, var(--primary-purple)), var(--page-accent, var(--primary-cyan)));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.feature-card:hover::before,
.feature-card.is-proximity-hover::before {
    transform: scaleX(1);
}

.feature-card:hover,
.feature-card.is-proximity-hover {
    transform: translateY(-10px);
    border-color: var(--page-accent-secondary, var(--primary-purple));
    box-shadow: 0 20px 40px rgba(var(--page-accent-secondary-rgb, 139, 92, 246), 0.2);
}

/* Override transform for wide product cards */
.wide-product-card.feature-card:hover,
.wide-product-card.feature-card.is-proximity-hover {
    transform: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--page-accent, var(--primary-cyan));
}

.feature-card h3 {
    color: var(--page-accent-secondary, var(--primary-purple));
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.feature-card h3 a {
    color: var(--page-accent-secondary, var(--primary-purple));
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.feature-card h3 a:hover {
    text-shadow: 0 0 10px var(--page-accent-secondary, var(--primary-purple));
}

.feature-subtitle {
    color: var(--page-accent, var(--text-accent));
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.feature-card-hint {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--page-accent, var(--primary-cyan));
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0.01em;
}

.feature-card ul {
    list-style: none;
    text-align: left;
}

.feature-card li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-card ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 1rem;
    list-style: none;
    text-align: left;
    padding: 0;
}

.feature-card:hover ul,
.feature-card:focus-within ul,
.feature-card.is-proximity-hover ul {
    max-height: 500px;
    opacity: 1;
}

.feature-card ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.feature-card ul li::before {
    content: '•';
    color: var(--page-accent-secondary, var(--primary-purple));
    font-weight: bold;
    position: absolute;
    left: 0;
}

.whatsapp-link-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.whatsapp-link-list li {
    padding-left: 0;
}

.whatsapp-link-list li::before {
    content: none;
}

.whatsapp-link-list .link-arrow {
    font-size: 0.85em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.whatsapp-link-list a:hover .link-arrow,
.whatsapp-link-list a:focus .link-arrow {
    transform: translateY(-1px);
}

.feature-note {
    color: var(--text-secondary);
}

.vr-form-embed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.vr-form-embed iframe {
    width: 100%;
    min-height: 520px;
    border: none;
    border-radius: 12px;
    background-color: var(--card-bg);
}

.feature-card:hover .vr-form-embed,
.feature-card:focus-within .vr-form-embed,
.feature-card.is-proximity-hover .vr-form-embed {
    margin-top: 1rem;
    max-height: 1000px;
    opacity: 1;
    pointer-events: auto;
}

.feature-card ul li a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.feature-card ul li a:hover,
.feature-card ul li a:focus {
    color: var(--page-accent, var(--primary-cyan));
    text-shadow: 0 0 8px rgba(var(--page-accent-rgb, 0, 255, 255), 0.4);
}

.feature-card .audio-links,
.feature-card .expandable-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 0;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding-top 0.3s ease;
}

.feature-card .audio-links .cta-button,
.feature-card .expandable-content .cta-button {
    width: 100%;
}

.feature-card:hover .audio-links,
.feature-card:focus-within .audio-links,
.feature-card.is-proximity-hover .audio-links,
.feature-card:hover .expandable-content,
.feature-card:focus-within .expandable-content,
.feature-card.is-proximity-hover .expandable-content {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding-top: 1.2rem;
}

.package-cta-wrapper {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

@media (hover: none) {
    body.card-animations-disabled .feature-card ul {
        max-height: none;
        opacity: 1;
    }

    body.card-animations-disabled .feature-card .audio-links,
    body.card-animations-disabled .feature-card .expandable-content {
        max-height: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding-top: 1.2rem;
    }
}

.area-card ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 1rem;
    list-style: none;
    text-align: left;
}

.area-card:hover ul {
    max-height: 200px;
    opacity: 1;
}

.area-card ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.area-card ul li::before {
    content: '•';
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Page Styles */

.team-leadership {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.leadership-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(var(--surface-dark-rgb), 0.3);
    max-width: 1000px;
    margin: 0 auto;
}


.ai-label i.fa-robot {
    font-size: 1.1rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.leader-image {
    flex-shrink: 0;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image-inner {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.leader-card:hover .leader-image-inner,
.leader-card:focus-visible .leader-image-inner,
.leader-card:focus-within .leader-image-inner {
    transform: rotateY(180deg);
}

.leader-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--page-accent, var(--primary-cyan));
    box-shadow: 0 0 20px rgba(var(--page-accent-rgb, 0, 255, 255), 0.3);
    backface-visibility: hidden;
}

.leader-image-front {
    object-position: center 85%;
    transform: rotate(-45deg);
}

.leader-image-back {
    transform: rotateY(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .leader-image-inner {
        transition: none;
    }
}

.leader-content h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.leader-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leader-content h3 a:hover {
    color: #0056b3;
}

.leader-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.team-openings {
    padding: 4rem 0;
    background: radial-gradient(circle at top, rgba(0, 255, 255, 0.08), transparent 60%), var(--darker-bg);
}

body[data-page-theme="team-career"] .team-cta {
    padding: 4rem 0;
    background: var(--section-panel-background);
}

.team-openings .section-title {
    text-align: center;
}

.job-listing {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.15);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.job-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(var(--page-accent-rgb, 0, 255, 255), 0.25), rgba(var(--page-accent-secondary-rgb, 139, 92, 246), 0.25));
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.3);
    box-shadow: 0 12px 30px rgba(var(--surface-dark-rgb), 0.35);
}

.job-tag {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.job-listing h3 {
    margin: 0;
    color: var(--page-accent, var(--primary-cyan));
    font-size: 1.6rem;
}

.job-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.job-meta li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.job-meta li strong {
    color: var(--page-accent, var(--primary-cyan));
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.job-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.job-section h4 {
    margin: 0;
    color: var(--page-accent, var(--primary-cyan));
    font-size: 1.15rem;
}

.job-section ul {
    padding-left: 1.25rem;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.job-section ul li {
    line-height: 1.6;
}

.job-section ul li strong {
    color: var(--page-accent-secondary, var(--primary-purple));
    font-weight: 600;
}

.job-listing.clickable-card {
    cursor: pointer;
}

.job-preview-note {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.job-cta ul {
    list-style: none;
    padding-left: 0;
}

.job-cta ul li {
    background: rgba(var(--page-accent-rgb, 0, 255, 255), 0.08);
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.job-footer {
    border-top: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.1);
    padding-top: 1rem;
}

.job-slogan {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-logo {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .job-listing h3 {
        font-size: 1.35rem;
    }
}

.team-vision {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

.financing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card.wide-card {
    grid-column: span 1;
}

/* Donation Styles for Financing Page */
.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.equal-donation-card {
    min-height: 600px;
}

.donation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.feature-card.expandable-support-card .cta-buttons {
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card.expandable-support-card .expandable-support-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    margin-top: 0;
    list-style: disc;
    padding-left: 1.5rem;
}

.feature-card.expandable-support-card:hover .expandable-support-list,
.feature-card.expandable-support-card:focus-within .expandable-support-list {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1.5rem;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.donation-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.donation-card:hover::before {
    transform: scaleX(1);
}

.primary-donation {
    border-color: rgba(0, 255, 255, 0.4);
}

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

.qr-donation-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin: 1.5rem 0;
}

.qr-code-section {
    text-align: center;
}

.donation-qr-code {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 2px solid var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.qr-instruction {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.bank-details {
    background: rgba(var(--surface-dark-rgb), 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.bank-details h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.bank-details p {
    margin: 0.2rem 0;
    font-family: monospace;
    color: var(--text-primary);
}

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

.donation-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.transparency-note {
    background: rgba(0, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.support-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.support-item h4 {
    color: var(--primary-cyan);
    margin: 0 0 0.5rem 0;
}

.backup-donation {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.paypal-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.support-item p {
    margin: 0;
    color: var(--text-secondary);
}


.team-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.role-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(var(--surface-dark-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-cyan);
}

.role-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.role-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.role-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-primary);
}

.role-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.role-card li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .leader-image img {
        width: 150px;
        height: 150px;
    }
    
    .team-roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .role-card {
        padding: 1.5rem;
    }
}

/* KI-Automatisierung Styles */
.offer-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-purple);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.offer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.offers-header {
    grid-column: 1 / -1;
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 2rem 0;
}

.offers-header .section-title {
    margin: 0;
}

.offer-badge {
    top: 15px;
    right: 15px;
}

/* Essential social icon colors */
.instagram-icon svg {
    color: #ff00ff !important;
    fill: #ff00ff !important;
}

.whatsapp-icon svg {
    color: #25D366;
}

.discord-icon svg {
    color: #5865F2;
}

.facebook-icon svg {
    color: #1877F2;
}

.youtube-icon svg {
    color: #FF0000;
}

/* Team Image Styles */
.feature-icon.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.team-social .social-link {
    color: #ff00ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.team-social .social-link:hover {
    color: #00ffff;
}

.tiktok-icon svg {
    color: #ff6b6b;
}

.shop-header {
    grid-column: 1 / -1;
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 2rem 0;
}

.shop-header .section-title {
    margin: 0;
}

/* Clickable Card Animation */
.clickable-card {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.clickable-card.zoom-in {
    animation: zoomIn 0.5s ease-out forwards;
}

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

/* PayPal Button Group Styling */
.paypal-button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

/* Preload PayPal fonts to prevent warnings */
@font-face {
    font-family: 'PayPalSansBig';
    src: url('https://www.paypalobjects.com/paypal-ui/fonts/PayPalSansBig-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'PayPalSansBig';
    src: url('https://www.paypalobjects.com/paypal-ui/fonts/PayPalSansBig-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* Use PayPal fonts in payment buttons to ensure they're utilized */
.btn-paypal, [id*="paypal-button"] {
    font-family: 'PayPalSansBig', -apple-system, BlinkMacSystemFont, sans-serif;
}

.price-button-combo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.button-price-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Hover Payment Box Styling */
.hover-payment-box {
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.payment-options-hover {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(var(--banner-color-rgb, 10, 10, 30), 0.92);
    border-radius: 0 0 15px 15px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(var(--page-accent-rgb, 0, 255, 255), 0.3);
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hover-payment-box:hover .payment-options-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Essential calendar styles */
.calendar-container iframe {
    border-radius: 10px;
    width: 100%;
    min-height: 600px;
}

/* Global Styles */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Styles */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Icons Grid Layout */
.social-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.social-icon.placeholder {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-icon.placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: none;
    box-shadow: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* Affiliate Shop Enhancements */
.affiliate-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero.hero-affiliate {
    min-height: auto;
    position: relative;
}

.hero-affiliate {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(var(--surface-dark-rgb), 0.35);
}

.hero-affiliate .hero-emoji {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
}

.hero-affiliate h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-affiliate p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.affiliate-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Affiliate product layout */
.affiliate-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1100px) {
    .affiliate-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.affiliate-card {
    padding: 2rem;
    width: min(100%, 340px);
}

.affiliate-card .feature-icon {
    font-size: 3rem;
}

.affiliate-card .feature-subtitle {
    margin-bottom: 1.5rem;
}

.affiliate-card ul li::before {
    content: '▹';
    color: var(--primary-cyan);
}

.affiliate-note {
    margin-top: 1.75rem;
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    background: rgba(0, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 720px;
    line-height: 1.6;
}


.legal-note {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    background: rgba(var(--surface-dark-rgb), 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(var(--surface-dark-rgb), 0.3);
    text-align: center;
    line-height: 1.6;
}

.category-navigation {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 0.5rem;
}

.back-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.back-link:hover {
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.more-discover {
    color: var(--text-secondary);
}

.more-discover a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
}

.more-discover a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.nav-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 1.5rem;
}

.nav-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1.8rem 1.2rem;
    background: rgba(10, 10, 25, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 18px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-card-icon {
    font-size: 2rem;
}

.nav-card-title {
    font-size: 1.1rem;
}

.nav-card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

.nav-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-cyan);
    box-shadow: 0 18px 35px rgba(0, 255, 255, 0.18);
}

.affiliate-teaser {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
}

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

@media (max-width: 1200px) {
    .nav-card-grid {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
    }
}

@media (max-width: 992px) {
    .nav-card-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-affiliate {
        padding: 3rem 1rem 2rem;
    }

    .affiliate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-card-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

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

    .nav-card-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-brand .footer-logo-img {
    height: 120px;
    width: 120px;
}

.footer-brand .footer-tagline {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand .footer-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-legal ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: var(--primary-cyan);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--primary-cyan);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    padding: 8px;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Social Media Brand Colors */
.social-icon[title="Discord"] {
    color: #5865F2;
}

.social-icon[title="WhatsApp"] {
    color: #25D366;
}

.social-icon[title="Instagram"] {
    background: linear-gradient(45deg, #833ab4, #c13584, #e1306c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon[title="Facebook"] {
    color: #1877F2;
}

.social-icon[title="TikTok"] {
    color: #ff6b6b;
}

.social-icon[title="YouTube"] {
    color: #FF0000;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
}

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

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

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

@keyframes pulse {
    0% { box-shadow: 0 0 20px var(--primary-purple); }
    50% { box-shadow: 0 0 30px var(--primary-purple), 0 0 40px var(--primary-purple); }
    100% { box-shadow: 0 0 20px var(--primary-purple); }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 70px;
        flex-direction: row;
        padding: 1rem 2rem;
        border-left: none;
        border-bottom: 2px solid rgba(0, 255, 255, 0.4);
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-menu {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero {
        padding-right: 0;
        padding-top: 70px;
    }
    
    .active-areas,
    .phases,
    .center-vision {
        padding-right: 0;
    }
}

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
    background: transparent;
    border: none;
    color: inherit;
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid rgba(0, 255, 255, 0.6);
    outline-offset: 3px;
    border-radius: 6px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(var(--surface-dark-rgb), 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch !important;
        padding: 32px 24px 24px;
        transition: left 0.3s ease;
        z-index: 10000;
        gap: 12px;
        overflow-y: auto;
        overflow-x: visible;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
        padding: 15px 20px;
        border-radius: 8px;
        transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-direction: row;
    }

    .nav-link:hover {
        background: rgba(0, 255, 255, 0.1);
        color: var(--primary-cyan);
    }
    
    /* Mobile dropdown menus - stacked accordion behaviour */
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-item-dropdown .nav-parent {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }

    .nav-item-dropdown .nav-parent .nav-link {
        flex: 1 1 auto;
        margin: 0;
        padding-right: 3.5rem;
    }

    .nav-item-dropdown .dropdown-toggle {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
        min-height: 2.75rem;
        border-radius: 999px;
        border: 1px solid rgba(0, 255, 255, 0.35);
        background: rgba(0, 255, 255, 0.12);
        color: var(--primary-cyan);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        margin-left: 0;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: auto;
        z-index: 1001;
        padding: 0;
    }

    .nav-item-dropdown .dropdown-toggle:hover,
    .nav-item-dropdown .dropdown-toggle:focus-visible {
        background: rgba(0, 255, 255, 0.18);
        color: #ffffff;
    }

    .nav-item-dropdown.mobile-open .nav-link,
    .nav-item-dropdown.dropdown-open .nav-link {
        background: rgba(0, 255, 255, 0.08);
        color: var(--primary-cyan);
    }

    .nav-item-dropdown.mobile-open .dropdown-toggle,
    .nav-item-dropdown.dropdown-open .dropdown-toggle {
        background: rgba(0, 255, 255, 0.18);
        color: #ffffff;
    }

    .nav-item-dropdown .dropdown-toggle-icon {
        font-size: 1.15rem;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        transform: translateY(2px);
    }

    .nav-item-dropdown.mobile-open .dropdown-toggle-icon,
    .nav-item-dropdown.dropdown-open .dropdown-toggle-icon {
        transform: rotate(-180deg) translateY(2px);
    }

    .nav-item-dropdown .dropdown-menu {
        position: static !important;
        margin: 8px 0 0 !important;
        padding: 8px 0 !important;
        min-width: 100% !important;
        max-width: 100% !important;
        background: rgba(12, 12, 12, 0.92) !important;
        border: 1px solid rgba(0, 255, 255, 0.25) !important;
        border-radius: 12px !important;
        box-shadow: 0 15px 30px rgba(var(--surface-dark-rgb), 0.5) !important;
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        overflow: hidden !important;
        pointer-events: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-item-dropdown.mobile-open .dropdown-menu,
    .nav-item-dropdown.dropdown-open .dropdown-menu {
        display: flex !important;
    }

    .nav-item-dropdown .dropdown-link {
        display: flex !important;
        align-items: center !important;
        gap: 0.65rem !important;
        padding: 12px 20px 12px 52px !important;
        color: white !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2) !important;
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .nav-item-dropdown .dropdown-link .dropdown-icon {
        font-size: 1.1rem !important;
    }

    .nav-item-dropdown .dropdown-link:last-child {
        border-bottom: none !important;
    }

    .nav-item-dropdown .dropdown-link:hover {
        background: rgba(0, 255, 255, 0.1) !important;
        color: var(--primary-cyan) !important;
    }
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.legal-content h3 {
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-content h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.footer-community {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-community h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.footer-legal h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Essential mobile responsive styles */
@media (max-width: 768px) {
    .areas-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-donation-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .donation-qr-code {
        width: 150px;
        height: 150px;
    }
    
    .payment-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: start;
    }

    .footer-brand,
    .footer-community,
    .footer-legal {
        align-items: flex-start;
        text-align: left;
    }

    .footer-community h4 {
        text-align: left;
        width: 100%;
    }

    .social-row {
        justify-content: flex-start;
    }
}

/* Investment Benefits */
.investment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
}

.benefit-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-primary);
    line-height: 1.6;
}

/* Team Leader Section */
.team-leader {
    padding: 4rem 0;
    background: rgba(var(--page-accent-secondary-rgb), 0.12);
}

.leader-card, .current-events-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(var(--surface-dark-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.current-events-card {
    display: block;
    align-items: unset;
}

.leader-card::before, .current-events-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.leader-card:hover::before, .current-events-card:hover::before {
    left: 100%;
}

.leader-image {
    flex-shrink: 0;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image-inner {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.leader-card:hover .leader-image-inner,
.leader-card:focus-visible .leader-image-inner,
.leader-card:focus-within .leader-image-inner {
    transform: rotateY(180deg);
}

.leader-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backface-visibility: hidden;
}

.leader-image-front {
    object-position: center 85%;
    transform: rotate(-45deg);
}

.leader-image-back {
    transform: rotateY(180deg);
}

.leader-content {
    flex: 1;
    padding-left: 2rem;
}

body[data-page-theme="team"] .team-leader,
body[data-page-theme="team"] .team-members,
body[data-page-theme="team"] .team-vision,
body[data-page-theme="team-career"] .team-leader,
body[data-page-theme="team-career"] .team-members,
body[data-page-theme="team-career"] .team-vision {
    background: rgba(var(--page-accent-secondary-rgb), 0.12);
}

/* Area Voting System Styles */
#start-voting-btn {
    margin: 1rem 0;
    display: block;
}

#start-voting-btn.voting-active {
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.feature-card.voting-mode {
    border: 2px dashed var(--primary-purple);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.feature-card.voting-mode:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-card.selected-for-voting {
    border: 2px solid var(--primary-cyan);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 255, 255, 0.1));
    position: relative;
}

.priority-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-cyan);
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    z-index: 10;
}

#voting-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--surface-dark-rgb), 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.voting-panel {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.voting-panel h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    text-align: center;
}

.voting-panel p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

#selected-areas-list {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.no-selection {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.priority-list {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.priority-list li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 5px;
}

.voting-form .form-group {
    margin-bottom: 1rem;
}

.voting-form label {
    display: block;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.voting-form input,
.voting-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-light);
    font-size: 1rem;
}

.voting-form input:focus,
.voting-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.voting-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.voting-buttons button {
    flex: 1;
}


.leader-content h3 {
    color: var(--primary-cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.leader-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leader-content h3 a:hover {
    color: var(--primary-purple);
}

.leader-content p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

body.ebook-feedback-active .ebook-overview {
    display: none;
}

/* E-Book Feedback */

.ebook-feedback-section {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: transparent;
    overflow: hidden;
}

.ebook-feedback-section::before,
.ebook-feedback-section::after {
    content: none;
}

.ebook-feedback-section.is-highlighted::after {
    opacity: 0;
}

.ebook-feedback-section:not(.is-active) #ebook-chapter-grid,
.ebook-feedback-section:not(.is-active) #ebook-selection-hint,
.ebook-feedback-section:not(.is-active) .ebook-feedback-form,
.ebook-feedback-section:not(.is-active) #ebook-feedback-message,
.ebook-feedback-section:not(.is-active) .ebook-feedback-loading {
    display: none;
}

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

.ebook-feedback-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ebook-feedback-header .section-subtitle {
    margin: 0.75rem 0 0;
    color: var(--text-secondary);
}

.ebook-feedback-header .section-helper {
    margin: 0.25rem 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ebook-feedback-share-link {
    color: var(--page-accent, var(--primary-cyan));
    font-weight: 600;
    text-decoration: underline;
}

.ebook-feedback-share-link:hover {
    color: var(--page-accent-secondary, var(--primary-purple));
}

.ebook-feedback-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.ebook-feedback-actions .cta-button {
    min-width: 220px;
}

.ebook-feedback-copy-status {
    min-height: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.ebook-feedback-copy-status[data-status] {
    opacity: 1;
}

.ebook-feedback-copy-status[data-status="success"] {
    color: var(--page-accent, var(--primary-cyan));
}

.ebook-feedback-copy-status[data-status="error"] {
    color: #ffb347;
}

@keyframes ebookFeedbackGlow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@media (max-width: 640px) {
    .ebook-feedback-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ebook-feedback-actions .cta-button {
        width: 100%;
    }
}

.chapter-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.chapter-feedback-card {
    position: relative;
    background: rgba(var(--surface-dark-rgb), 0.75);
    border: 1px solid rgba(0, 255, 204, 0.25);
    border-radius: 18px;
    padding: 1.8rem 1.6rem 1.6rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chapter-feedback-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 204, 0.45);
    box-shadow: 0 20px 35px rgba(var(--surface-dark-rgb), 0.4);
}

.chapter-feedback-card.selected {
    border-color: var(--page-accent);
    background: linear-gradient(145deg, rgba(var(--surface-dark-rgb), 0.82), rgba(var(--page-accent-secondary-rgb), 0.25));
    box-shadow: 0 24px 40px rgba(var(--page-accent-rgb), 0.15);
}

.chapter-feedback-card:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 4px;
}

.chapter-feedback-card h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.35rem;
}

.chapter-feedback-card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.95rem;
}

.priority-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: #001f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 18px rgba(0, 255, 204, 0.25);
}

.chapter-feedback-details {
    border-top: 1px solid rgba(0, 255, 204, 0.25);
    padding-top: 1.25rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.chapter-feedback-card.selected .chapter-feedback-details {
    display: flex;
}

.chapter-feedback-details label {
    color: rgba(0, 255, 204, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.chapter-feedback-details textarea {
    background: rgba(0, 20, 20, 0.8);
    border: 1px solid rgba(0, 255, 204, 0.35);
    border-radius: 10px;
    color: #e9fcff;
    padding: 0.75rem 0.85rem;
    resize: vertical;
    min-height: 90px;
    font-size: 0.95rem;
}

.chapter-feedback-details textarea:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.chapter-selection-hint {
    background: rgba(0, 255, 204, 0.12);
    border: 1px solid rgba(0, 255, 204, 0.35);
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.chapter-selection-hint span {
    color: var(--primary-cyan);
    font-weight: 600;
}

.ebook-feedback-form {
    background: rgba(var(--surface-dark-rgb), 0.78);
    border: 1px solid rgba(0, 255, 204, 0.18);
    border-radius: 18px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    box-shadow: 0 22px 40px rgba(var(--surface-dark-rgb), 0.35);
}

.ebook-selected-summary h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.6rem;
}

.ebook-selected-summary p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

#ebook-selection-summary {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.selection-summary-list {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.selection-summary-list li {
    color: var(--text-secondary);
}

.selection-summary-list .summary-detail {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.45rem;
}

.ebook-general-feedback label,
.ebook-contact-grid label,
.ebook-additional-contact label {
    color: rgba(0, 255, 204, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.ebook-general-feedback textarea,
.ebook-contact-grid input,
.ebook-additional-contact input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 204, 0.28);
    background: rgba(var(--surface-dark-rgb), 0.7);
    color: #f6ffff;
    font-size: 0.95rem;
}

.ebook-general-feedback textarea {
    resize: vertical;
    min-height: 110px;
}

.ebook-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.ebook-additional-contact input::placeholder,
.ebook-contact-grid input::placeholder,
.ebook-general-feedback textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.ebook-feedback-loading {
    display: none;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.ebook-feedback-message {
    margin-top: 2rem;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(var(--page-accent-rgb), 0.3);
    background: rgba(var(--page-accent-secondary-rgb), 0.22);
    color: #e9fcff;
    display: none;
    line-height: 1.6;
}

.ebook-feedback-message.is-visible {
    display: block;
}

.ebook-feedback-message.is-success {
    border-color: rgba(var(--page-accent-rgb), 0.5);
    background: rgba(var(--page-accent-secondary-rgb), 0.35);
}

.ebook-feedback-message.is-error {
    border-color: rgba(255, 107, 107, 0.65);
    background: rgba(80, 0, 0, 0.65);
    color: #ffeaea;
}

.ebook-feedback-message.is-warning {
    border-color: rgba(255, 214, 0, 0.6);
    background: rgba(70, 50, 0, 0.65);
    color: #fff4cc;
}

.ebook-feedback-message strong {
    color: var(--primary-cyan);
}

.ebook-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.ebook-submit-row .cta-button {
    min-width: 220px;
}

@media (max-width: 768px) {
    .ebook-feedback-form {
        padding: 1.75rem;
    }

    .chapter-feedback-grid {
        grid-template-columns: 1fr;
    }

    .chapter-feedback-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .ebook-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .chapter-selection-hint {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .leader-image-inner {
        width: 150px;
        height: 150px;
    }
}

.makerspace-process {
    padding: 4rem 0;
    background: transparent;
}

.makerspace-process .section-title,
.makerspace-process .section-description {
    text-align: center;
}

.makerspace-process .section-description {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    background: linear-gradient(160deg, rgba(0, 8, 18, 0.85), rgba(0, 28, 38, 0.72));
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
    display: none;
}

.comparison-table thead th {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    text-align: left;
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.comparison-table tbody td {
    padding: 0.95rem 1.5rem 0.95rem 2.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    vertical-align: top;
}

.comparison-table tbody tr + tr td {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table .manual-cell {
    background: rgba(255, 68, 68, 0.08);
}

.comparison-table .manual-cell::before,
.comparison-table .automated-cell::before {
    content: "•";
    position: absolute;
    left: 1.2rem;
    top: 1.1rem;
    font-size: 1.1rem;
}

.comparison-table .manual-cell::before {
    color: #ff5a5a;
}

.comparison-table .automated-cell {
    background: rgba(0, 255, 255, 0.05);
}

.comparison-table .automated-cell::before {
    color: var(--primary-cyan);
}

.comparison-table tbody td:last-child {
    border-left: 1px solid rgba(0, 255, 255, 0.12);
}

[data-timeline] {
    --timeline-track-thickness: 60px;
    --timeline-handle-size: 60px;
    position: relative;
    margin: 0 auto 3rem;
    max-width: 960px;
    padding: 1.5rem 2rem 1.5rem;
    border-radius: 26px;
    background: linear-gradient(155deg, rgba(0, 12, 24, 0.7), rgba(0, 32, 40, 0.4));
    border: 1px solid rgba(0, 255, 255, 0.18);
    box-shadow: 0 26px 60px rgba(var(--surface-dark-rgb), 0.45);
    touch-action: none;
    width: 100%;
    opacity: 1;
    transition: opacity 0.32s ease, filter 0.32s ease;
    will-change: opacity;
}

[data-timeline].timeline--inactive {
    opacity: 0;
    pointer-events: none;
    filter: saturate(0.8) blur(0.5px);
}

.makerspace-timeline {
    --timeline-track-thickness: 60px;
    --timeline-handle-size: 60px;
}

.timeline--sbs {
    --timeline-track-thickness: 58px;
    --timeline-handle-size: 58px;
}

.timeline--concept {
    --timeline-track-thickness: 56px;
    --timeline-handle-size: 56px;
}

[data-timeline] .timeline-track {
    position: relative;
    width: 100%;
    min-height: var(--timeline-track-thickness);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 16, 24, 0.95), rgba(0, 8, 16, 0.92));
    box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.18), inset 0 18px 42px rgba(var(--surface-dark-rgb), 0.55);
    overflow: hidden;
    touch-action: none;
}

[data-timeline] .timeline-track::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 255, 255, 0.22) 0,
        rgba(0, 255, 255, 0.22) 24px,
        transparent 24px,
        transparent 48px
    );
    opacity: 0.2;
    pointer-events: none;
}

[data-timeline] {
    --timeline-progress-scale: 0;
}

[data-timeline] .timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.7), rgba(0, 136, 255, 0.9));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 36px rgba(0, 255, 255, 0.35);
    transform-origin: left center;
    transform: scaleX(var(--timeline-progress-scale));
    will-change: transform;
    transition: transform 0s;
}

[data-timeline] .timeline-handle {
    position: absolute;
    top: 50%;
    left: 0;
    width: var(--timeline-handle-size);
    height: var(--timeline-handle-size);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01121f;
    font-size: 1.5rem;
    cursor: grab;
    background: radial-gradient(circle at 30% 30%, #f0fffb 0%, #a6fff6 45%, rgba(0, 190, 255, 0.9) 100%);
    box-shadow: 0 18px 38px rgba(0, 255, 255, 0.35), 0 0 0 6px rgba(0, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    touch-action: none;
    z-index: 3;
}

[data-timeline] .timeline-handle:focus-visible {
    outline: 3px solid rgba(0, 255, 255, 0.7);
    outline-offset: 4px;
}

[data-timeline] .timeline-handle:active {
    cursor: grabbing;
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.3), 0 0 0 4px rgba(0, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0.97);
}

[data-timeline] .timeline-handle span {
    transform: translateX(2px);
    text-shadow: 0 4px 12px rgba(var(--surface-dark-rgb), 0.35);
}

[data-timeline] .timeline-steps {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 2;
}

[data-timeline] .timeline-step-marker {
    --marker-progress: 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    pointer-events: auto;
    opacity: calc(0.55 + 0.45 * var(--marker-progress, 0));
    transition: opacity 0.25s ease, color 0.3s ease;
}

[data-timeline] .timeline-step-marker .marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 255, 0.45);
    background: rgba(var(--surface-dark-rgb), 0.8);
    box-shadow: 0 0 calc(18px * var(--marker-progress, 0)) rgba(0, 255, 255, 0.38);
    transform: scale(calc(0.8 + 0.35 * var(--marker-progress, 0)));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

[data-timeline] .timeline-step-marker .marker-label {
    white-space: nowrap;
}

[data-timeline] .timeline-step-marker.is-active {
    color: var(--primary-cyan);
}

[data-timeline] .timeline-step-marker.is-active .marker-dot {
    background: var(--primary-cyan);
    border-color: rgba(0, 255, 255, 0.9);
}

.timeline-card-grid,
.makerspace-process-grid,
.sbs-process-grid,
.concept-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
    align-items: start;
}

.process-card {
    background: rgba(var(--surface-dark-rgb), 0.78);
    border-radius: 18px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.process-card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1 1 220px;
}

.process-step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-cyan);
    background: rgba(var(--surface-dark-rgb), 0.85);
}

.process-step-icon {
    font-size: 2.1rem;
    line-height: 1;
}

.process-card-content {
    display: grid;
    gap: 0.85rem;
    transition: opacity 0.3s ease, transform 0.32s ease;
}

[data-timeline-card] {
    --timeline-card-progress: 0;
    --timeline-card-border-alpha: 0.2;
    --timeline-card-lift: 0;
    --timeline-card-max-height: 520px;
    border-color: rgba(0, 255, 255, var(--timeline-card-border-alpha, 0.2));
    background: linear-gradient(160deg, rgba(0, 8, 18, 0.85), rgba(0, 28, 38, 0.72));
    transform: translateY(calc(var(--timeline-card-lift, 0) * -1px));
    box-shadow: 0 calc(var(--timeline-card-lift, 0) * 1.8px) calc(var(--timeline-card-lift, 0) * 3.2px) rgba(0, 255, 255, 0.22);
}

[data-timeline-card].is-active {
    background: linear-gradient(165deg, rgba(0, 20, 32, 0.95), rgba(0, 40, 56, 0.9));
    box-shadow: 0 28px 64px rgba(0, 255, 255, 0.25);
}

[data-timeline-card] [data-timeline-card-content] {
    opacity: var(--timeline-card-progress, 0);
    transform: translateY(calc((1 - var(--timeline-card-progress, 0)) * 18px));
    max-height: calc(var(--timeline-card-progress, 0) * var(--timeline-card-max-height, 520px));
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.32s ease, max-height 0.35s ease;
}

.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.process-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.process-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.process-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    transform: translateY(2px);
}

[data-timeline][data-orientation="vertical"] {
    max-width: 420px;
    width: min(100%, 420px);
    padding: 1.5rem 1.25rem 2rem;
    margin-left: auto;
    margin-right: auto;
    touch-action: pan-y;
}

[data-timeline][data-orientation="vertical"] .timeline-track {
    width: var(--timeline-track-thickness);
    min-height: 320px;
    margin: 0 auto;
    touch-action: pan-y;
}

[data-timeline][data-orientation="vertical"] .timeline-track::before {
    background: repeating-linear-gradient(
        180deg,
        rgba(0, 255, 255, 0.22) 0,
        rgba(0, 255, 255, 0.22) 24px,
        transparent 24px,
        transparent 48px
    );
}

[data-timeline][data-orientation="vertical"] .timeline-progress {
    height: 100%;
    transform-origin: center top;
    transform: scaleY(var(--timeline-progress-scale));
}

[data-timeline][data-orientation="vertical"] .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 0 calc(var(--timeline-track-thickness) + 28px);
    gap: 1.5rem;
}

[data-timeline][data-orientation="vertical"] .timeline-step-marker {
    flex-direction: row;
    gap: 0.9rem;
    opacity: calc(0.65 + 0.35 * var(--marker-progress, 0));
    align-items: center;
}

[data-timeline][data-orientation="vertical"] .timeline-step-marker .marker-label {
    white-space: normal;
    text-align: left;
    line-height: 1.35;
}

[data-timeline][data-orientation="vertical"] .timeline-direction {
    margin-top: 1.25rem;
    transform: rotate(90deg);
    text-align: center;
}

[data-timeline][data-orientation="vertical"] .timeline-direction span {
    transform: none;
}

@media (max-width: 1200px) {
    .timeline-card-grid,
    .makerspace-process-grid,
    .sbs-process-grid,
    .concept-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    [data-timeline] {
        padding: 1.5rem 1.5rem 2rem;
    }

    [data-timeline] .timeline-steps {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .makerspace-process .section-title,
    .makerspace-process .section-description {
        text-align: left;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .makerspace-process .section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    [data-timeline] {
        display: none !important;
        margin: 0;
    }

    .timeline-card-grid,
    .makerspace-process-grid,
    .sbs-process-grid,
    .concept-timeline-grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
        margin-top: 1.5rem;
        gap: 1.5rem;
        padding-left: 0;
        padding-bottom: 0;
    }

    .comparison-grid {
        display: none;
    }

    .comparison-table {
        display: table;
    }

    .comparison-table thead th {
        font-size: 0.95rem;
    }

    .comparison-table tbody td {
        font-size: 0.92rem;
        padding: 0.85rem 1.25rem 0.85rem 2.2rem;
    }

    .comparison-table .manual-cell::before,
    .comparison-table .automated-cell::before {
        top: 1rem;
    }
}

.makerspace-video-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(5, 15, 35, 0.9), rgba(0, 40, 60, 0.6));
    border-top: 1px solid rgba(0, 255, 204, 0.18);
    border-bottom: 1px solid rgba(0, 255, 204, 0.12);
}

.makerspace-video-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.75rem, 5vw, 3rem);
    align-items: center;
}

.makerspace-video-text {
    display: grid;
    gap: 1rem;
}

.makerspace-video-text .section-description {
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
}

.makerspace-video-embed {
    display: grid;
    gap: 1rem;
}

.makerspace-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    background: #030a12;
}

.makerspace-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.makerspace-video-caption {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .makerspace-video-card {
        text-align: left;
    }

    .makerspace-video-text .section-title {
        font-size: clamp(1.85rem, 7vw, 2.5rem);
    }
}

@media (max-width: 520px) {
    .makerspace-video-frame {
        border-radius: 16px;
    }

    .makerspace-video-caption {
        font-size: 0.9rem;
    }
}

.trust-bar__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1.25rem;
    min-height: 1.5rem;
}

.trust-bar__status[hidden] {
    display: none;
}

.trust-bar__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.25);
}

.trust-bar__status--fallback {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: none;
    box-shadow: none;
}

.trust-bar__status-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 10px rgba(255, 77, 79, 0.7);
    animation: trust-bar-pulse 1.6s ease-in-out infinite;
}

@keyframes trust-bar-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 77, 79, 0.6);
    }
    50% {
        transform: scale(1.18);
        opacity: 0.8;
        box-shadow: 0 0 16px rgba(255, 77, 79, 0.85);
    }
}

.trust-bar--live .trust-bar__status {
    background: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 14px rgba(0, 255, 204, 0.3);
}
