/* --- About Us: Interactive 3D Orb with Info Hotspots --- */
.about-visual-col {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Orb Stage --- */
.ma-orb-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: visible;
}

/* --- Central Orb Wrapper --- */
.ma-orb-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.ma-orb-core {
    position: absolute;
    inset: 0;
    animation: maOrbRotate 12s ease-in-out infinite;
}

.ma-orb-sphere {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, 
        rgba(42, 58, 255, 0.7), 
        rgba(240, 192, 64, 0.5), 
        rgba(233, 30, 99, 0.45), 
        rgba(42, 58, 255, 0.7));
    box-shadow: 
        0 0 60px 10px rgba(42, 58, 255, 0.3),
        inset 0 0 40px rgba(240, 192, 64, 0.2);
    animation: maOrbShimmer 6s ease-in-out infinite;
}

[data-theme="light"] .ma-orb-sphere {
    background: conic-gradient(from 0deg, 
        rgba(42, 58, 255, 0.5), 
        rgba(240, 192, 64, 0.4), 
        rgba(233, 30, 99, 0.35), 
        rgba(42, 58, 255, 0.5));
    box-shadow: 
        0 0 60px 10px rgba(42, 58, 255, 0.15),
        inset 0 0 40px rgba(240, 192, 64, 0.1);
}

.ma-orb-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: maOrbGlow 4s ease-in-out infinite alternate;
}

.ma-orb-letter {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--_typography---font--primary-family, system-ui, sans-serif);
    font-weight: 800;
    font-size: 4rem;
    color: #f4f4f4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

[data-theme="light"] .ma-orb-letter {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* --- Orbital Rings --- */
.ma-orb-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(240, 192, 64, 0.25);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ma-orb-ring--1 {
    width: 220px;
    height: 220px;
    animation: maRingSpin 20s linear infinite;
    border-style: dashed;
    border-color: rgba(42, 58, 255, 0.3);
}

.ma-orb-ring--2 {
    width: 300px;
    height: 300px;
    animation: maRingSpin 30s linear infinite reverse;
    border-color: rgba(240, 192, 64, 0.2);
}

.ma-orb-ring--3 {
    width: 380px;
    height: 380px;
    animation: maRingPulse 6s ease-in-out infinite;
    opacity: 0.35;
    border-color: rgba(233, 30, 99, 0.2);
}

/* --- Info Hotspots --- */
.ma-hotspot {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.ma-hotspot-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(240, 192, 64, 0.9);
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(240, 192, 64, 0.5), 0 0 40px rgba(240, 192, 64, 0.2);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
    animation: maHotspotPulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.ma-hotspot:hover .ma-hotspot-dot,
.ma-hotspot.is-active .ma-hotspot-dot {
    transform: scale(1.4);
    box-shadow: 0 0 30px rgba(240, 192, 64, 0.7), 0 0 60px rgba(240, 192, 64, 0.3);
    animation: none;
    background: rgba(42, 58, 255, 0.9);
}

[data-theme="light"] .ma-hotspot-dot {
    border-color: rgba(0, 0, 0, 0.3);
}

.ma-hotspot-line {
    position: absolute;
    width: 80px;
    height: 40px;
    color: rgba(240, 192, 64, 0.35);
    overflow: visible;
    pointer-events: none;
    transition: color 0.35s ease;
    z-index: 1;
}

/* Position lines from dot towards center */
[data-hotspot="1"] .ma-hotspot-line { left: 18px; top: 8px; }
[data-hotspot="2"] .ma-hotspot-line { right: 18px; top: 8px; transform: scaleX(-1); }
[data-hotspot="3"] .ma-hotspot-line { left: 18px; bottom: 8px; }
[data-hotspot="4"] .ma-hotspot-line { right: 18px; bottom: 8px; transform: scaleX(-1); }
[data-hotspot="5"] .ma-hotspot-line { left: 0; bottom: 18px; width: 40px; height: 60px; }

.ma-hotspot:hover .ma-hotspot-line,
.ma-hotspot.is-active .ma-hotspot-line {
    color: rgba(42, 58, 255, 0.7);
}

/* --- Info Cards --- */
.ma-hotspot-card {
    position: absolute;
    width: 220px;
    padding: 1rem 1.15rem;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 192, 64, 0.25);
    border-radius: 14px;
    color: #f4f4f4;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 20;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .ma-hotspot-card {
    background: rgba(255, 255, 255, 0.95);
    color: #0b0b0b;
    border-color: rgba(42, 58, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Card positions per hotspot */
[data-hotspot="1"] .ma-hotspot-card { top: -10px; left: 28px; }
[data-hotspot="2"] .ma-hotspot-card { top: -10px; right: 28px; }
[data-hotspot="3"] .ma-hotspot-card { bottom: -10px; left: 28px; }
[data-hotspot="4"] .ma-hotspot-card { bottom: -10px; right: 28px; }
[data-hotspot="5"] .ma-hotspot-card { bottom: 28px; left: 50%; transform: translateX(-50%) translateY(8px) scale(0.95); }

.ma-hotspot:hover .ma-hotspot-card,
.ma-hotspot.is-active .ma-hotspot-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

[data-hotspot="5"]:hover .ma-hotspot-card,
[data-hotspot="5"].is-active .ma-hotspot-card {
    transform: translateX(-50%) translateY(0) scale(1);
}

.ma-hotspot-card h5 {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f0c040;
}

[data-theme="light"] .ma-hotspot-card h5 {
    color: #2a3aff;
}

.ma-hotspot-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* --- Animations --- */
@keyframes maOrbRotate {
    0%   { transform: rotate(0deg) scale(1); }
    25%  { transform: rotate(90deg) scale(1.05); }
    50%  { transform: rotate(180deg) scale(1); }
    75%  { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes maOrbShimmer {
    0%, 100% { filter: brightness(1) saturate(1); }
    50%      { filter: brightness(1.25) saturate(1.15); }
}

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

@keyframes maRingSpin {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes maHotspotPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(240, 192, 64, 0.5), 0 0 40px rgba(240, 192, 64, 0.2); }
    50%      { box-shadow: 0 0 30px rgba(240, 192, 64, 0.7), 0 0 60px rgba(240, 192, 64, 0.35); }
}

/* --- Team section --- */
.team-section {
    padding-top: clamp(3rem, 8vw, 6.25rem) !important;
    padding-bottom: clamp(3rem, 8vw, 6.25rem) !important;
    overflow: visible;
}

.team-section > .u-container,
.team-section .team-grid {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
}

.team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.team-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.team-visual-frame {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.25rem;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    aspect-ratio: auto;
    overflow: visible;
    transform: none;
    transition: transform 0.3s ease;
}

.team-visual-frame:hover {
    transform: translateY(-5px);
}

.team-visual-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

@media (min-width: 1200px) {
    .team-visual-frame {
        max-width: 450px;
    }
}

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

    .team-section-title h2 {
        white-space: normal;
    }

    .team-visual {
        order: -1;
    }

    .team-visual-frame {
        max-width: 350px;
        aspect-ratio: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .team-visual-frame {
        aspect-ratio: auto;
    }
}

/* --- About section 3D iframe layout --- */
#about-us .u-layout-column-2 {
    padding-top: 4rem; /* Lower the text for all devices */
}

.about-visual-col {
    position: relative;
    width: 100%;
    min-height: 650px; /* Increased base height */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .about-visual-col {
        min-height: 800px; /* Increased desktop height */
    }
}

.about-3d-iframe-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 16px;
}

.about-3d-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.about-model-cta {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.about-poetic-lines h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 0.02em;
}

.about-poetic-lines h3:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-visual-col {
        height: 700px; /* Increased mobile height */
        min-height: 75vh;
    }
    
    #about-us .u-button-wrapper {
        margin-top: 4rem;
    }
    
    .about-model-cta {
        bottom: 8px;
        font-size: 0.65rem;
    }
}

/* --- Let's build your brand: moving 3D stage --- */
.brand-build-section .u-grid {
    align-items: stretch;
}

.brand-motion-stage {
    position: relative;
    min-height: 320px;
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 40%, rgba(42, 58, 255, 0.12), transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(240, 192, 64, 0.1), transparent 50%);
}

.brand-motion-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.brand-motion-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.brand-orbit-item {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4f4f4;
    background: linear-gradient(145deg, rgba(42, 58, 255, 0.85), rgba(11, 11, 11, 0.9));
    border: 1px solid rgba(240, 192, 64, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    animation: brandOrbitTravel 14s linear infinite;
    transform-style: preserve-3d;
}

[data-theme="light"] .brand-orbit-item {
    color: #fff;
}

.brand-orbit-item:nth-child(1) { animation-duration: 16s; animation-delay: 0s; }
.brand-orbit-item:nth-child(2) { animation-duration: 18s; animation-delay: -4s; }
.brand-orbit-item:nth-child(3) { animation-duration: 20s; animation-delay: -8s; }
.brand-orbit-item:nth-child(4) { animation-duration: 15s; animation-delay: -2s; }
.brand-orbit-item:nth-child(5) { animation-duration: 22s; animation-delay: -11s; }

@keyframes brandOrbitTravel {
    0%   { left: -8%;  top: 20%;  transform: rotate(0deg) scale(0.9); opacity: 0; }
    8%   { opacity: 1; }
    25%  { left: 35%;  top: 8%;   transform: rotate(12deg) scale(1); }
    50%  { left: 72%;  top: 42%;  transform: rotate(-8deg) scale(1.05); }
    75%  { left: 40%;  top: 72%;  transform: rotate(6deg) scale(1); }
    92%  { opacity: 1; }
    100% { left: 108%; top: 30%;  transform: rotate(0deg) scale(0.9); opacity: 0; }
}

@media (max-width: 991px) {
    .brand-motion-stage {
        min-height: 260px;
        margin-top: 1.5rem;
    }

    .about-visual-col {
        min-height: 240px;
        margin-bottom: 2rem;
    }

    .ma-orb-stage {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .ma-orb-wrapper {
        width: 120px;
        height: 120px;
    }

    .ma-orb-letter {
        font-size: 3rem;
    }

    .ma-orb-ring--1 { width: 170px; height: 170px; }
    .ma-orb-ring--2 { width: 230px; height: 230px; }
    .ma-orb-ring--3 { width: 290px; height: 290px; }

    .ma-orb-stage {
        max-width: 100%;
        aspect-ratio: 1 / 1.1;
    }

    .ma-hotspot-card {
        width: 180px;
        padding: 0.75rem 0.85rem;
        font-size: 0.75rem;
    }

    .ma-hotspot-card h5 {
        font-size: 0.75rem;
    }

    .ma-hotspot-card p {
        font-size: 0.7rem;
    }

    .ma-hotspot-dot {
        width: 14px;
        height: 14px;
    }
}
