:root {
    --bg-color: #000000;
    --primary-gold: #D4AF37;
    --bright-gold: #FFD700;
    --soft-gold: #C5A028;
    --white: #FFFFFF;
    --gray-400: #9CA3AF;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --aura-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2.5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    min-width: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo-aura {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.15);
    position: relative;
    transform: rotate(-15deg);
}

.logo-aura::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 8px #fff, 0 0 15px var(--primary-gold);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.chinese-text {
    color: var(--primary-gold);
    font-weight: 400;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 7px;
    margin-left: 7px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.9rem;
    align-items: center;
    flex-shrink: 1;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 400;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Region Switcher */
.region-selector {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 28px;
    flex-shrink: 0;
}

.region-pill {
    padding: 0 7px;
    height: 22px;
    border-radius: 50px;
    font-size: 0.6rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--gray-400);
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-pill:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.region-pill.active {
    background: var(--primary-gold);
    color: var(--bg-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.buy-btn-small {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.18) 0%, rgba(142, 45, 226, 0.28) 50%, rgba(212, 175, 55, 0.25) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #ffd866; /* Elegant soft gold */
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.92rem;
    box-shadow: 0 0 15px rgba(99, 91, 255, 0.15), 0 0 10px rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.buy-btn-small:hover {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.35) 0%, rgba(142, 45, 226, 0.45) 50%, rgba(212, 175, 55, 0.4) 100%);
    border-color: var(--bright-gold);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.35), 0 0 25px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 1rem;
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Partner Logo Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.partner-logo {
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

/* Mobile Responsive Navbar */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.8rem 5%;
    }
    
    .nav-left {
        gap: 0.8rem;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000000 !important; /* Force solid black */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 3rem !important;
        z-index: 9999 !important; /* Extreme priority */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        margin: 0;
        padding: 0;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0);
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
        z-index: 10000 !important; /* Above EVERYTHING */
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .chinese-text {
        font-size: 0.9rem;
    }
    
    .region-selector {
        transform: scale(0.85);
        transform-origin: left center;
    }

    .nav-links a {
        font-size: 1.5rem !important;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .chinese-text {
        display: none;
    }
    .logo-text {
        font-size: 1rem;
    }
    .region-selector {
        transform: scale(0.8);
    }
}

.login-btn {
    background: var(--primary-gold);
    color: var(--bg-color) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--aura-shadow);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px; /* Wider side padding on hero for dual-column spacing */
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    z-index: 2;
}

.aura-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: block;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 4rem); /* Slightly adjusted for standard column size */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(90deg, var(--primary-gold), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}

.primary-btn {
    background: var(--primary-gold);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--aura-shadow);
}

.primary-btn:hover {
    background: var(--bright-gold);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-800);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.secondary-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.aura-sphere {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseAura 8s infinite alternate;
}

@keyframes pulseAura {
    from { transform: translateY(-50%) scale(1); opacity: 0.5; }
    to { transform: translateY(-50%) scale(1.1); opacity: 0.8; }
}

/* AI Graphic Design Showcase */
.hero-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    perspective: 1200px;
    width: 100%;
}

.canvas-perspective {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 440px;
    transform-style: preserve-3d;
}

.canvas-showcase-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.08);
    transform: rotateY(-12deg) rotateX(8deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-perspective:hover .canvas-showcase-card {
    transform: rotateY(-4deg) rotateX(3deg) scale(1.03);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 40px 85px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.18);
}

.canvas-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.9;
    transition: opacity 0.5s ease;
}

.canvas-perspective:hover .canvas-preview-img {
    opacity: 1;
}

/* AI Design Showcase Switching States */
.canvas-showcase-card .ai-bounding-boxes {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.canvas-showcase-card.switching .canvas-preview-img {
    opacity: 0.08;
}

.canvas-showcase-card.switching .ai-bounding-boxes {
    opacity: 0;
    transform: scale(0.96);
}

/* Corner Brackets */
.bracket {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-gold);
    z-index: 10;
    pointer-events: none;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.bracket.top-left {
    top: 24px;
    left: 24px;
    border-right: none;
    border-bottom: none;
}

.bracket.top-right {
    top: 24px;
    right: 24px;
    border-left: none;
    border-bottom: none;
}

.bracket.bottom-left {
    bottom: 24px;
    left: 24px;
    border-right: none;
    border-top: none;
}

.bracket.bottom-right {
    bottom: 24px;
    right: 24px;
    border-left: none;
    border-top: none;
}

.canvas-perspective:hover .bracket {
    width: 22px;
    height: 22px;
    opacity: 1;
    border-color: var(--bright-gold);
}

/* Laser Sweep */
.laser-beam {
    position: absolute;
    left: 16px;
    right: 16px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bright-gold), var(--primary-gold), var(--bright-gold), transparent);
    z-index: 8;
    pointer-events: none;
    box-shadow: 0 0 12px var(--bright-gold), 0 0 25px var(--primary-gold);
    opacity: 0.85;
    animation: laser-sweep 4.5s ease-in-out infinite;
}

@keyframes laser-sweep {
    0% { top: 16px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: calc(100% - 20px); opacity: 0; }
}

/* Precision Alignment Grid */
.alignment-grid {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background-size: 32px 32px;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    z-index: 5;
    pointer-events: none;
    border-radius: 16px;
    opacity: 0.8;
    transition: opacity 0.4s;
}

.canvas-perspective:hover .alignment-grid {
    opacity: 1;
}

/* Floating Parameter Badges (Hologram Cards) */
.hologram-card {
    position: absolute;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 12;
    pointer-events: none;
    transition: all 0.4s ease;
}

.tech-font {
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #E5E7EB;
}

/* Animations for floating cards */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) translateZ(20px); }
    50% { transform: translateY(-12px) translateZ(20px); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0) translateZ(40px); }
    50% { transform: translateY(-8px) translateZ(40px); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-10px) translateZ(30px); }
}

/* Status Active Hologram Card */
.status-card {
    top: 40px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-slow 5s ease-in-out infinite;
    transform: translateZ(20px);
}

.status-dot.pulsing {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
    from { opacity: 0.4; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

/* Prompt Hologram Card */
.prompt-card {
    bottom: -30px;
    left: -20px;
    right: 40px;
    animation: float-medium 6s ease-in-out infinite;
    animation-delay: 0.5s;
    transform: translateZ(40px);
}

.prompt-card .card-label {
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 800;
}

.prompt-card .prompt-text {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Specifications Card */
.specs-card {
    top: 80px;
    right: -45px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 130px;
    animation: float-fast 4.5s ease-in-out infinite;
    animation-delay: 1s;
    transform: translateZ(30px);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.65rem;
    gap: 12px;
}

.spec-label {
    color: var(--gray-400);
}

.spec-val {
    font-weight: bold;
    color: #E5E7EB;
}

/* Confidence Score Card */
.score-card {
    bottom: 80px;
    right: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: float-slow 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
    transform: translateZ(25px);
}

.score-card .label {
    font-family: monospace;
    font-size: 0.55rem;
    color: var(--gray-400);
    letter-spacing: 1px;
}

.score-card .score {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* AI Bounding Boxes overlay */
.ai-bounding-boxes {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    pointer-events: none;
    z-index: 9;
}

.ai-box {
    position: absolute;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
}

/* Precise alignment offsets matching the food layout */
.ai-box.title-box {
    top: 8%;
    left: 8%;
    width: 84%;
    height: 18%;
    border-color: rgba(212, 175, 55, 0.35);
}

.ai-box.subject-box {
    top: 32%;
    left: 15%;
    width: 70%;
    height: 56%;
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.01);
}

.ai-box.aura-box {
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
    border-color: rgba(255, 255, 255, 0.08);
}

/* Hover dynamic styles for the bounding boxes */
.canvas-perspective:hover .ai-box {
    opacity: 1;
}

.canvas-perspective:hover .ai-box.title-box {
    border-color: rgba(212, 175, 55, 0.85);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.02);
}

.canvas-perspective:hover .ai-box.subject-box {
    border-color: rgba(212, 175, 55, 0.95);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.04);
}

.canvas-perspective:hover .ai-box.aura-box {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Glowing tech labels */
.ai-box-label {
    position: absolute;
    background: rgba(8, 8, 12, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--primary-gold);
    font-family: monospace;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 4px;
}

.title-box .ai-box-label {
    top: -9px;
    left: 12px;
}

.subject-box .ai-box-label {
    bottom: -9px;
    right: 12px;
}

.aura-box .ai-box-label {
    top: -9px;
    right: 20px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.canvas-perspective:hover .ai-box-label {
    opacity: 1;
    color: #FFF;
    border-color: var(--bright-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

/* Label pulsing dots */
.pulse-icon {
    width: 4px;
    height: 4px;
    background-color: var(--bright-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--bright-gold);
    animation: tech-pulse-dot 1.2s infinite alternate;
}

.aura-box .pulse-icon {
    background-color: #3B82F6;
    box-shadow: 0 0 6px #3B82F6;
}

@keyframes tech-pulse-dot {
    from { opacity: 0.3; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.3); }
}

/* Animated border-drawing outline lines */
.ai-box-line {
    position: absolute;
    background: rgba(212, 175, 55, 0.4);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-box-line.top { top: 0; left: 0; width: 0; height: 1px; }
.ai-box-line.right { top: 0; right: 0; width: 1px; height: 0; }
.ai-box-line.bottom { bottom: 0; right: 0; width: 0; height: 1px; }
.ai-box-line.left { bottom: 0; left: 0; width: 1px; height: 0; }

.canvas-perspective:hover .ai-box-line.top { width: 100%; background: var(--bright-gold); }
.canvas-perspective:hover .ai-box-line.right { height: 100%; background: var(--bright-gold); }
.canvas-perspective:hover .ai-box-line.bottom { width: 100%; background: var(--bright-gold); }
.canvas-perspective:hover .ai-box-line.left { height: 100%; background: var(--bright-gold); }

/* Anchor focus nodes */
.ai-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFF;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.75;
}

.node-1 { top: 3%; left: 3%; }
.node-2 { top: 3%; right: 3%; }
.node-3 { bottom: 3%; left: 3%; }
.node-4 { bottom: 3%; right: 3%; }

.canvas-perspective:hover .ai-node {
    transform: scale(1.5);
    background: var(--bright-gold);
    box-shadow: 0 0 12px var(--bright-gold);
    opacity: 1;
}

/* Custom interactive animation for the laser scan */
.canvas-perspective:hover .laser-beam {
    animation: laser-sweep 2.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--bright-gold), 0 0 35px var(--primary-gold);
}

/* Parallax responsive details */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 6% 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .canvas-perspective {
        max-width: 380px;
        height: 380px;
    }
    
    /* Flatten 3D effects on tablet for clean display */
    .canvas-showcase-card {
        transform: none !important;
    }
    
    /* Hide some floating cards to maintain tablet cleanliness */
    .specs-card, .score-card {
        display: none;
    }
    
    .status-card {
        left: -15px;
        top: 20px;
    }
    
    .prompt-card {
        left: -10px;
        right: -10px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .canvas-perspective {
        max-width: 320px;
        height: 320px;
    }
    
    .status-card {
        left: -10px;
        top: 10px;
        transform: scale(0.85);
    }
    
    .prompt-card {
        bottom: -15px;
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 5% 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .canvas-perspective {
        max-width: 270px;
        height: 270px;
    }
    
    /* Hide all extra holograms on small phones to maximize readability and performance */
    .hologram-card {
        display: none !important;
    }
    
    .bracket {
        width: 12px;
        height: 12px;
    }
    
    .bracket.top-left { top: 16px; left: 16px; }
    .bracket.top-right { top: 16px; right: 16px; }
    .bracket.bottom-left { bottom: 16px; left: 16px; }
    .bracket.bottom-right { bottom: 16px; right: 16px; }
}

/* SEO Audit Bar */
.seo-audit-bar {
    background: var(--gray-900);
    padding: 2rem 5%;
    border-bottom: 1px solid var(--gray-800);
}

.audit-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.audit-container label {
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary-gold);
}

.audit-container input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.audit-btn {
    background: var(--primary-gold);
    color: var(--bg-color);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.audit-btn:hover {
    background: var(--bright-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Brand Wall - 3D Sphere */
.brand-wall {
    padding: 6rem 0 2rem 0; /* Reduced bottom padding to eliminate void */
    text-align: center;
    background: #000;
    overflow: hidden;
    position: relative;
}

.section-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.logo-sphere-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 480px; /* Reduced from 650px to remove void */
    margin: 2rem auto;
    perspective: 2000px; /* Stronger perspective */
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Showcase / Multi-row Marquee */
.showcase {
    padding: 8rem 0;
    overflow: hidden;
    background: #000;
}

/* Section Header Base Styles (Unified Centering) */
.section-header {
    text-align: center;
    width: 100%;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.9;
}

.section-header h2 {
    font-size: 3.5rem;
    margin: 0 auto 1rem auto;
    width: 100%;
    background: linear-gradient(to right, #fff, var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 4%;
}

.portfolio-row-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 4%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-row-wrapper:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(15, 15, 15, 0.85);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(212, 175, 55, 0.04);
    transform: translateY(-5px);
}

.portfolio-row-info {
    flex: 0 0 260px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 10;
}

.portfolio-row-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--bright-gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.portfolio-row-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0.5rem 0 0 0;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 30%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-row-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.portfolio-row-wrapper .marquee-container {
    flex: 1;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    /* Premium double-sided gradient fade mask to prevent hard clipping and create a luxury look */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 0;
    white-space: nowrap;
    width: max-content;
}

.marquee-left .marquee-track {
    animation: scrollLeft 40s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 40s linear infinite;
}

/* Explicit custom widths/heights for different categories to add rich visual cadence */
#track-1 .work-item { height: 320px; width: auto; flex: 0 0 auto; }
#track-2 .work-item { height: 370px; width: auto; flex: 0 0 auto; } /* Menus vertical portrait cards */
#track-3 .work-item { height: 320px; width: auto; flex: 0 0 auto; }
#track-4 .work-item { height: 320px; width: auto; flex: 0 0 auto; }
#track-5 .work-item { height: 280px; width: auto; flex: 0 0 auto; } /* Landscape web banners & screens */

.work-item {
    background: #050505;
    border: 1px solid var(--gray-900);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 150px; /* Pre-render safety width */
}

.work-item-square {
    flex: 0 0 320px;
    height: 320px;
}

.work-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: transform 0.8s ease, opacity 0.5s ease;
}

.work-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
    pointer-events: none;
    text-align: left;
    white-space: normal; /* Force text to wrap inside dynamically-sized cards */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, text-shadow 0.4s ease;
}

.work-item:hover span {
    opacity: 1;
    transform: translateY(0);
    color: var(--bright-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.work-item:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

.work-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 1;
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

/* Pricing */
.pricing {
    padding: 8rem 10%;
    text-align: center;
}

.pricing h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-card {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.price-card.featured {
    border-color: rgba(212, 175, 55, 0.55);
    transform: scale(1.03);
    background: rgba(18, 18, 25, 0.75);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(212, 175, 55, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 94, 98, 0.15) !important;
    border: 1px solid rgba(255, 94, 98, 0.45) !important;
    color: #ff9f9f !important;
    padding: 0.4rem 1.8rem !important;
    border-radius: 50px !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-shadow: 0 0 8px rgba(255, 94, 98, 0.6) !important;
    box-shadow: 0 0 15px rgba(255, 94, 98, 0.2) !important;
}

.price-card h3, .price-card h4 {
    font-size: 1.45rem;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
}

.price-subtitle {
    font-size: 0.76rem;
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: -1rem auto 1.8rem auto !important;
    letter-spacing: 0.5px;
    font-weight: 600;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.01);
}

.price-subtitle::before {
    content: '🛡️';
    font-size: 0.85rem;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.price span, .price-card .price span {
    font-size: 0.72rem !important;
    color: var(--primary-gold) !important;
    font-weight: 700 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1) !important;
    margin-left: 2px !important;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex: 1;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.2rem;
    color: var(--gray-400);
    line-height: 1.6;
    font-size: 0.95rem;
}

.price-card li.highlight-feat {
    color: var(--primary-gold) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.price-card li span {
    display: block;
    flex: 1;
}

.price-card li::before {
    content: '✓';
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    margin-right: 0.6rem;
    margin-top: 3px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.price-card .stripe-btn {
    display: block;
    width: 100%;
    text-align: center;
    /* Luxury Obsidian Dark Purple to Royal Gold Gradient */
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.18) 0%, rgba(142, 45, 226, 0.28) 50%, rgba(212, 175, 55, 0.25) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #ffd866; /* Elegant soft gold */
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    margin-top: auto !important;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(99, 91, 255, 0.15), 0 0 15px rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.price-card .stripe-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.price-card .stripe-btn:hover::before {
    left: 150%;
    transition: all 0.8s ease-in-out;
}
.price-card .stripe-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--bright-gold);
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.35) 0%, rgba(142, 45, 226, 0.45) 50%, rgba(212, 175, 55, 0.4) 100%);
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.35), 0 0 35px rgba(212, 175, 55, 0.25);
}

.stripe-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #635BFF 0%, #8E2DE2 50%, #D4AF37 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    margin-top: auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.25), 0 0 20px rgba(212, 175, 55, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.stripe-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.45), 0 0 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

@media (max-width: 480px) {
    .price {
        font-size: 2.1rem !important;
        gap: 6px !important;
    }
    .price span, .price-card .price span {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
}


/* Pricing Layout */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.pricing-category {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.pricing-category h3 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 3px solid var(--primary-gold);
    padding-left: 1rem;
}

/* Design Packages */
.design-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--bright-gold);
    transform: translateY(-12px);
    background: rgba(15, 15, 15, 0.85);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.feature-card .feature-icon-container {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.feature-card:hover .feature-icon-container {
    background: var(--primary-gold);
    border-color: var(--bright-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.feature-card .feature-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: brightness(0);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--bright-gold);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: #FFFFFF;
}

.feature-card .feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-card.premium-feature {
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7), rgba(0, 0, 0, 0.9));
}

.feature-card.premium-feature::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 80px; height: 80px;
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.15), transparent 70%);
    pointer-events: none;
}

.lock-tag {
    background: var(--primary-gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.package-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 18px;
    border: 1px solid var(--gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.pkg-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.qty {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.pkg-features-mini {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-features-mini li {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.buy-btn-small {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.15) 0%, rgba(142, 45, 226, 0.25) 50%, rgba(212, 175, 55, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #ffd866;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.1), 0 0 10px rgba(212, 175, 55, 0.08);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.buy-btn-small:hover {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.3) 0%, rgba(142, 45, 226, 0.4) 50%, rgba(212, 175, 55, 0.35) 100%);
    border-color: var(--bright-gold);
    color: #fff;
    box-shadow: 0 0 20px rgba(99, 91, 255, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

.package-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

/* Payment Trust Bar Styles */
.payment-trust-bar {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-900);
    text-align: center;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.trust-icons img {
    height: 35px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.trust-icons img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.payment-trust-bar p {
    font-size: 0.85rem;
    color: var(--gray-700);
    letter-spacing: 1px;
}

.package-item.popular {
    border: 1px solid var(--primary-gold);
    background: linear-gradient(90deg, var(--gray-900), #0d0d0d);
}

.package-item .qty {
    font-size: 1.2rem;
    font-weight: 600;
}

.package-item .pkg-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
}

/* Analysis Services */
.analysis-services {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--gray-900);
    margin-top: 4rem;
}

.analysis-services h3 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-box {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-900);
    text-align: center;
}

.service-box h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.platform-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.platform-tags span {
    background: var(--gray-900);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid var(--gray-800);
}

.service-box.special {
    background: linear-gradient(145deg, #0a0a0a, #000);
    border: 1px dashed var(--primary-gold);
}

.whatsapp-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn.secondary {
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    box-shadow: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: #20BA56;
    color: white;
}

.whatsapp-btn.secondary:hover {
    background: #25D366;
    color: white;
}

.pricing-note {
    margin-top: 3rem;
    color: var(--gray-800);
    font-size: 0.85rem;
    font-style: italic;
}

/* Features & Flow */
.features, .flow {
    padding: 8rem 10%;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--gray-900);
    transition: var(--transition-smooth);
    text-align: left;
}

.feature-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-item p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    flex: 1;
    text-align: left;
    position: relative;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
}

.step p {
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .flow-steps { flex-direction: column; }
}

footer {
    text-align: center;
    padding: 4rem;
    border-top: 1px solid var(--gray-900);
    color: var(--gray-800);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .nav-links { display: none; }
    .hero { text-align: center; justify-content: center; padding: 0 5%; }
    .cta-group { justify-content: center; }
}

/* ============================================================
   AUTHENTICATION PAGES (Login/Register)
   ============================================================ */
.auth-body {
    background: #050505;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
    cursor: pointer;
}

.auth-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.auth-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: authCardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-container.register-mode {
    max-width: 720px;
}

@keyframes authCardEntrance {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 
                inset 0 0 20px rgba(212, 175, 55, 0.05);
    cursor: default;
}

.auth-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn.active {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.input-group {
    margin-bottom: 1.8rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.remember-me {
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.forgot-pass {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D35C 50%, #AA7C11 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    color: #000;
    padding: 16px;
    
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #F5D35C 0%, #D4AF37 50%, #8E6208 100%);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.auth-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.auth-footer p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.auth-footer a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    border-bottom-color: var(--primary-gold);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 640px) {
    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .auth-card {
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
    }
    .auth-container.register-mode {
        max-width: 100%;
    }
}

.logo-upload-zone {
    border: 1px dashed rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-upload-zone:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.upload-scanner {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: authScan 4s linear infinite;
    pointer-events: none;
}

@keyframes authScan {
    0% { top: -100%; }
    100% { top: 100%; }
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.logo-upload-zone p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.preview-area {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.auth-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    transition: all 0.3s ease;
}

.auth-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.auth-select option {
    background: #111;
    color: #fff;
}
/* Landing Page Enhancements */
.latest-templates {
    padding: 100px 10%;
    background: #050505;
}

.template-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.showcase-card {
    background: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.showcase-img {
    height: 380px;
    background-size: cover;
    background-position: center;
}

.showcase-info {
    padding: 20px;
}

.showcase-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.showcase-info p {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 80px 10%;
    background: linear-gradient(180deg, #050505, #000);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-card {
    text-align: center;
}

.stat-num {
    font-family: 'Outfit';
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(0,0,0,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sphere-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    object-fit: contain;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.sphere-logo:hover {
    transform: scale(1.2) !important;
    z-index: 10;
}
/* Template Showcase Grid */
.template-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.showcase-card {
    background: #080808;
    border: 1px solid var(--gray-900);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--transition-bounce);
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.showcase-img-wrapper {
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    padding: 10px;
    transition: transform 0.8s ease;
}

.showcase-card:hover .showcase-img-wrapper img {
    transform: scale(1.05);
}

.showcase-info {
    padding: 2rem;
    text-align: left;
    border-top: 1px solid var(--gray-900);
}

.showcase-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.pricing-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--gray-800);
    color: var(--gray-400);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}
.pricing-tab:hover {
    border-color: var(--primary-gold);
    color: #fff;
}
.pricing-tab.active {
    background: var(--primary-gold);
    color: var(--bg-color);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.pricing-panel {
    display: none;
    width: 100%;
}
.pricing-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pricing Packages - Horizontal Strip Mode */
.design-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px !important;
    margin: 0 auto;
}

.partner-logo-mini {
    flex: 0 0 auto;
    width: 200px; /* Increased from 140px */
    height: 120px; /* Increased from 90px */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.partner-logo-mini img {
    width: 90%; /* Force fill */
    height: 90%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1); /* Brighter */
    transition: transform 0.4s;
}

.package-item {
    background: rgba(13, 13, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.4);
    border-left-color: var(--primary-gold);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.06);
}

.package-item.popular {
    border-color: rgba(212, 175, 55, 0.55);
    border-left: 4px solid var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.03);
}

.package-item.popular:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.2);
}

.package-item .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.15) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-top: none !important;
    border-right: none !important;
    color: var(--primary-gold) !important;
    padding: 5px 20px !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    border-bottom-left-radius: 12px !important;
    letter-spacing: 1px !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1) !important;
}

.pkg-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.pkg-info .qty {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    min-width: 160px;
    letter-spacing: -0.5px;
}

.pkg-features-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.pkg-features-mini li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pkg-action {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    min-width: 120px;
    text-align: right;
}

.buy-btn-small {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.18) 0%, rgba(142, 45, 226, 0.28) 50%, rgba(212, 175, 55, 0.25) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #ffd866; /* Elegant soft gold */
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.92rem;
    box-shadow: 0 0 15px rgba(99, 91, 255, 0.15), 0 0 10px rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.buy-btn-small:hover {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.35) 0%, rgba(142, 45, 226, 0.45) 50%, rgba(212, 175, 55, 0.4) 100%);
    border-color: var(--bright-gold);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.35), 0 0 25px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .package-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .pkg-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .pkg-features-mini {
        flex-direction: column;
        gap: 0.5rem;
    }
    .pkg-action {
        width: 100%;
        justify-content: space-between;
    }
    .pkg-price {
        text-align: left;
    }
    .pricing-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 8rem 5%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.why-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.why-item:hover::before {
    opacity: 0.45;
}

/* HUD Corner Brackets */
.hud-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    pointer-events: none;
}
.hud-corner.tl {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none;
}
.hud-corner.tr {
    top: 16px;
    right: 16px;
    border-left: none;
    border-bottom: none;
}
.hud-corner.bl {
    bottom: 16px;
    left: 16px;
    border-right: none;
    border-top: none;
}
.hud-corner.br {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none;
}

.why-item:hover .hud-corner {
    border-color: rgba(255, 217, 0, 0.9);
    filter: drop-shadow(0 0 4px rgba(255, 217, 0, 0.6));
}
.why-item:hover .hud-corner.tl {
    top: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
}
.why-item:hover .hud-corner.tr {
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
}
.why-item:hover .hud-corner.bl {
    bottom: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
}
.why-item:hover .hud-corner.br {
    bottom: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5), 
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover .why-icon {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.why-svg-icon {
    width: 48px;
    height: 48px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover .tech-lightning {
    animation: lightning-glow 1.5s infinite alternate;
}

.why-item:hover .tech-cube-top,
.why-item:hover .tech-cube-left,
.why-item:hover .tech-cube-right {
    stroke-width: 1.5;
}

.why-item:hover .tech-star {
    transform: scale(1.2) rotate(45deg);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightning-glow {
    0% { filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5)); opacity: 0.9; }
    100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9)); opacity: 1; }
}

.why-item h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.why-item:hover h4 {
    color: var(--bright-gold);
}

.why-item p {
    color: #9CA3AF;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.why-item:hover p {
    color: #E5E7EB;
}

/* Official Brand Logo Redesign Styles */
.logo-official-container {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    cursor: pointer;
    vertical-align: middle;
}

.logo-official {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-text-main {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
}

.logo-o-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-o-letter {
    color: var(--primary-gold);
    font-weight: 800;
}

.logo-o-ring {
    position: absolute;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-right: 1.5px solid var(--primary-gold);
    border-bottom: 1.5px solid var(--primary-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: 1;
}

.logo-o-flare {
    position: absolute;
    top: -0.1em;
    right: -0.15em;
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 6px #FFFFFF, 0 0 12px var(--primary-gold);
    z-index: 2;
}

.logo-pipe {
    color: var(--primary-gold);
    font-weight: 300;
    font-size: 1.2rem;
    margin: 0 8px;
    opacity: 0.6;
}

.logo-chinese {
    font-family: 'Noto Sans HK', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.logo-tagline {
    font-size: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    color: var(--primary-gold);
    margin-top: 3px;
    opacity: 0.8;
}

/* Sidebar and Compact Logo Adaptations */
.sidebar .logo-official-container, 
.nav-left .logo-official-container {
    transform: scale(0.95);
    transform-origin: left center;
}

.footer-logo .logo-official-container {
    align-items: center;
}
.footer-logo .logo-official-container .logo-official {
    justify-content: center;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}
.footer-logo .logo-aura {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
}
/* --- Tech Title Glow Effect (Stabilized) --- */
.tech-title {
    color: #D4AF37; /* Base Gold */
    background: linear-gradient(90deg, #D4AF37, #FFF, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: techPulse 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes techPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}
/* --- 3D Logo Wall Effect (Cybernetic & Holographic Upgrade) --- */
.brand-wall {
    padding: 8rem 0 4rem 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #080808 0%, #000000 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Cyber grid pattern background overlay */
.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Ambient dynamic cyber glows */
.cyber-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    animation: floatGlow 12s ease-in-out infinite alternate;
}
.cyber-ambient-glow.gold {
    background: radial-gradient(circle, var(--p-gold, #D4AF37) 0%, transparent 80%);
    top: -20%;
    left: 15%;
}
.cyber-ambient-glow.blue {
    background: radial-gradient(circle, #00f3ff 0%, transparent 80%);
    bottom: -20%;
    right: 15%;
    animation-delay: -6s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

/* Cybernetic tags */
.cyber-tag {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 0.8rem !important;
    letter-spacing: 4px !important;
    color: #00f3ff !important;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    margin-bottom: 1.5rem !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cyber-status-pulse {
    width: 6px;
    height: 6px;
    background: #00f3ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00f3ff;
    animation: statusPulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Cyber-glitch tech title */
.tech-title.futuristic-glitch {
    color: #D4AF37;
    background: linear-gradient(90deg, #D4AF37 0%, #ffffff 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 2.2rem;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
    position: relative;
    margin-bottom: 3rem;
}
.tech-title.futuristic-glitch::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--p-gold, #D4AF37), transparent);
    box-shadow: 0 0 8px var(--p-gold, #D4AF37);
}

/* Hologram project rails styles */
.hologram-rail {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 10;
    pointer-events: none;
}
.hologram-rail.top {
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), var(--p-gold, #D4AF37), rgba(0, 243, 255, 0.4), transparent);
    box-shadow: 0 1px 10px rgba(0, 243, 255, 0.3);
}
.hologram-rail.bottom {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), var(--p-gold, #D4AF37), rgba(0, 243, 255, 0.4), transparent);
    box-shadow: 0 -1px 10px rgba(0, 243, 255, 0.3);
}

.logo-sphere-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 460px;
    margin: 2rem auto;
    perspective: 1200px; /* Stronger depth projection */
    display: flex;
    justify-content: center;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    overflow: hidden;
    z-index: 2;
}

.logo-sphere {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    transform: rotateX(15deg) rotateY(-8deg) translateZ(-50px);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-sphere:hover {
    transform: rotateX(10deg) rotateY(-4deg) translateZ(0);
}

.logo-wall-row {
    width: 100%;
    overflow: visible;
    will-change: transform;
}

.logo-wall-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: wallScroll linear infinite;
    animation-duration: inherit;
    animation-direction: inherit;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

@keyframes wallScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Custom cyber-glass cards */
.partner-logo-mini {
    flex: 0 0 auto;
    width: 190px;
    height: 110px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    transition: 
        border-color 0.4s ease,
        background 0.4s ease,
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Corner Bracket Ticks (Bracket Corners) */
.partner-logo-mini::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    transition: border-color 0.3s;
}
.partner-logo-mini::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    border-right: 2px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    transition: border-color 0.3s;
}

/* High-contrast grayscale mapping by default so they match the high-end scifi interface perfectly! */
.partner-logo-mini img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.75);
    transition: 
        filter 0.4s ease, 
        transform 0.4s ease,
        opacity 0.4s ease;
    pointer-events: none;
}

/* Interactive Hover Actions */
.partner-logo-mini:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.85);
    transform: translate3d(0, -6px, 45px) scale(1.06);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.35),
        0 0 25px rgba(0, 243, 255, 0.2),
        inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.partner-logo-mini:hover::before {
    border-color: var(--p-gold, #D4AF37);
}
.partner-logo-mini:hover::after {
    border-color: #00f3ff;
}

.partner-logo-mini:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* Region/Language Selector */
.region-selector {
    display: flex !important;
    gap: 5px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    padding: 2px !important;
    border-radius: 30px !important;
    background: rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(5px) !important;
    margin-left: 20px !important;
    position: relative !important;
    z-index: 10005 !important;
    pointer-events: auto !important;
}
.region-pill {
    cursor: pointer !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #888 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
    letter-spacing: 1px !important;
    position: relative !important;
    z-index: 10006 !important;
    pointer-events: auto !important;
}
.region-pill:hover { color: #fff !important; background: rgba(255,255,255,0.1) !important; }
.region-pill.active {
    background: #D4AF37 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

/* Analytics & ROI Dashboard Styles */
.analytics-section {
    padding: 8rem 4% 6rem 4%;
    position: relative;
    z-index: 10;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.analytics-card {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.analytics-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(15, 15, 15, 0.85);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(212, 175, 55, 0.03);
    transform: translateY(-5px);
}

.analytics-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.analytics-card-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.analytics-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.5px;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.analytics-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.analytics-table th {
    padding: 1rem 1.2rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.analytics-table td {
    padding: 1.2rem;
    color: var(--gray-300);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.analytics-table tbody tr:hover td {
    background: rgba(212, 175, 55, 0.02);
    color: #FFFFFF;
}

.gold-text {
    color: var(--bright-gold) !important;
    font-weight: 600;
}

.trend-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--bright-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* ROI Dashboard */
.roi-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.roi-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-label {
    font-size: 0.95rem;
    color: var(--gray-300);
    font-weight: 500;
}

.roi-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bright-gold);
}

.roi-bar-bg {
    width: 100%;
    height: 8px;
    background: #111;
    border-radius: 4px;
    overflow: hidden;
}

.roi-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b8860b 0%, #D4AF37 100%);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.roi-bar-fill.gold-fill {
    background: linear-gradient(90deg, #D4AF37 0%, #FFF 100%);
}

@media (max-width: 992px) {
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .analytics-card {
        padding: 2rem;
    }

    /* Responsive Portfolio Section Layout */
    .portfolio-row-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        padding: 2.5rem 5%;
    }
    .portfolio-row-info {
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
    }
    .portfolio-row-badge {
        align-self: center;
    }
    .portfolio-row-wrapper .marquee-container {
        /* On small screens, keep a slightly smaller gradient fade to fit */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 40px, #000 calc(100% - 40px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 40px, #000 calc(100% - 40px), transparent 100%);
    }
}

/* 全域導航列與地區選擇器極致層級加固，防止任何 Stacking Context 遮擋 */
.navbar, .top-nav {
    z-index: 25000 !important;
}
.region-selector {
    z-index: 30000 !important;
    pointer-events: auto !important;
    position: relative !important;
}
.region-pill {
    z-index: 30001 !important;
    pointer-events: auto !important;
    position: relative !important;
    cursor: pointer !important;
}




/* ==========================================================================
   Designora Global Glassmorphism Dropdown Selector
   ========================================================================== */
.region-selector.new-dropdown {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    height: auto !important;
    margin-left: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.region-trigger {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    color: var(--white) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.region-trigger:hover, .region-selector.active .region-trigger {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15) !important;
}

.region-arrow {
    font-size: 0.65rem !important;
    transition: transform 0.3s ease !important;
    color: var(--primary-gold) !important;
}

.region-selector.active .region-arrow {
    transform: rotate(180deg) !important;
}

/* Glassmorphism menu */
.region-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    background: rgba(15, 15, 15, 0.88) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 12px !important;
    padding: 6px !important;
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 150px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05) !important;
    z-index: 99999 !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s allow-discrete !important;
}

.region-selector.active .region-dropdown-menu {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.region-dropdown-menu .region-pill {
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-align: left !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.region-dropdown-menu .region-pill:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.region-dropdown-menu .region-pill.active {
    background: rgba(212, 175, 55, 0.15) !important;
    color: var(--primary-gold) !important;
    font-weight: 700 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: none !important;
}
