/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled .brand-logo {
    content: url('logo-weiss.png');
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Brand/Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    opacity: 1;
}

.brand-logo.logo-transition {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.navbar.scrolled .nav-link {
    color: #ffffff;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger .bar {
    background: #ffffff;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        gap: 0.5rem;
    }

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

    .navbar.scrolled .nav-menu {
        background: rgba(15, 20, 25, 0.98);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 85%;
        text-align: center;
        border-radius: 15px;
        margin: 0.25rem 0;
    }

    .hamburger {
        display: flex;
    }

    .brand-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 35px;
    }

    .navbar .container {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .bar {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Hero Section - Simple & Clean */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    position: relative;
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hero Text Content */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}


.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000000;
}


.valerius-highlight {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}


.hero-buttons .btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}




/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
    font-size: 0.9rem;
    animation: scrollIndicator 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #d4af37 0%, transparent 100%);
    border-radius: 1px;
}


.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleSlideUp 1s ease-out forwards;
}

.title-line:first-child {
    animation-delay: 0.3s;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-line:last-child {
    animation-delay: 0.5s;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    position: relative;
}


.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: subtitleFadeIn 1s ease-out 0.7s both;
}

.hero-tagline {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: taglineSlideIn 1s ease-out 0.9s both;
    text-align: center;
}

.hero-tagline span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: buttonsSlideIn 1s ease-out 1.1s both;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}


.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}



/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.hero-3d-scene {
    position: relative;
    width: 500px;
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Gold Structure */
.gold-structure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    animation: structureRotate 20s linear infinite;
}

.gold-pyramid {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: pyramidFloat 6s ease-in-out infinite;
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.pyramid-face.front {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(212, 175, 55, 0.8);
    transform: translateZ(50px);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.pyramid-face.back {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(184, 148, 31, 0.8);
    transform: translateZ(-50px) rotateY(180deg);
    filter: drop-shadow(0 0 20px rgba(184, 148, 31, 0.5));
}

.pyramid-face.left {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(255, 215, 0, 0.8);
    transform: rotateY(-90deg) translateZ(50px);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.pyramid-face.right {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(255, 215, 0, 0.8);
    transform: rotateY(90deg) translateZ(50px);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.gold-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 3px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: ringRotate 15s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: -5s;
    border-color: rgba(255, 215, 0, 0.4);
}

.ring-3 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    animation-delay: -10s;
    border-color: rgba(212, 175, 55, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(255, 215, 0, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.float-element i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.element-1 {
    top: 10%;
    left: 15%;
    animation: elementFloat1 8s ease-in-out infinite;
}

.element-2 {
    top: 20%;
    right: 20%;
    animation: elementFloat2 10s ease-in-out infinite 2s;
}

.element-3 {
    bottom: 25%;
    left: 10%;
    animation: elementFloat3 9s ease-in-out infinite 4s;
}

.element-4 {
    bottom: 15%;
    right: 15%;
    animation: elementFloat4 7s ease-in-out infinite 1s;
}

/* Light Effects */
.light-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    animation: lightSweep 4s ease-in-out infinite;
}

.beam-1 {
    width: 2px;
    height: 200px;
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.beam-2 {
    width: 2px;
    height: 150px;
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.beam-3 {
    width: 2px;
    height: 180px;
    bottom: 20%;
    left: 60%;
    animation-delay: 3s;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    animation: scrollIndicatorFade 2s ease-out 2s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #d4af37, transparent);
    border-radius: 1px;
    animation: scrollLinePulse 2s ease-in-out infinite;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cube-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(184, 148, 31, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cube-face.front { transform: rotateY(0deg) translateZ(30px); }
.cube-face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* Hero Center Logo */
.hero-center-logo {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

/* 3D Gold Coin */
.gold-coin-3d {
    position: relative;
    width: 160px;
    height: 160px;
    transform-style: preserve-3d;
    animation: coinRotate 6s ease-in-out infinite;
}

.coin-face {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700 0%, #ffed4e 20%, #ffd700 40%, #b8860b 60%, #8b7355 100%);
    border: 4px solid #b8860b;
    box-shadow: 
        inset 0 0 30px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-face.front { 
    transform: translateZ(8px); 
}

.coin-face.back { 
    transform: rotateY(180deg) translateZ(8px); 
}

.coin-edge {
    position: absolute;
    width: 16px;
    height: 160px;
    background: linear-gradient(180deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
    border-radius: 8px;
    transform: rotateY(90deg) translateZ(8px);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    left: 50%;
    top: 0;
    margin-left: -8px;
}

.coin-content {
    text-align: center;
    color: #2c3e50;
    font-weight: bold;
    z-index: 10;
}

.coin-symbol {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.2rem;
    color: #1a252f;
}

.coin-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.1rem;
    letter-spacing: 0.5px;
    color: #2c3e50;
}

.coin-purity {
    font-size: 0.6rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #34495e;
}

/* Gold Particles */
.gold-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat1 3s ease-in-out infinite;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation: particleFloat2 4s ease-in-out infinite 0.5s;
}

.particle-3 {
    bottom: 25%;
    left: 20%;
    animation: particleFloat3 3.5s ease-in-out infinite 1s;
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation: particleFloat4 4.5s ease-in-out infinite 1.5s;
}

.particle-5 {
    bottom: 15%;
    right: 10%;
    animation: particleFloat5 3.8s ease-in-out infinite 2s;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

/* Hero Tagline */
.hero-tagline {
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
}

.hero-tagline span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin: 1rem 0;
}

/* 3D Animations */
@keyframes floatCube {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(90deg) rotateY(90deg);
    }
    50% {
        transform: translateY(-10px) rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: translateY(-30px) rotateX(270deg) rotateY(270deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes coinRotate {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-5deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

@keyframes particleFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) translateX(10px);
        opacity: 1;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(-8px);
        opacity: 1;
    }
}

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

@keyframes particleFloat4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-18px) translateX(-5px);
        opacity: 1;
    }
}

@keyframes particleFloat5 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-14px) translateX(8px);
        opacity: 1;
    }
}

/* New Hero Animations */
@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(50px); }
}


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


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

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


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


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

@keyframes pyramidFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes ringRotate {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes elementFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes elementFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-180deg); }
}

@keyframes elementFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(180deg); }
}

@keyframes elementFloat4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-180deg); }
}

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

@keyframes scrollIndicatorFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

/* The Valerius Edge Animations - New Design */
@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes diamondFloat {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(20px) translateY(-15px); }
}

@keyframes lightSweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5); }
}

@keyframes crystalRotate {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25% { transform: rotateX(15deg) rotateY(90deg) rotateZ(5deg); }
    50% { transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg); }
    75% { transform: rotateX(-15deg) rotateY(270deg) rotateZ(-5deg); }
    100% { transform: rotateX(0deg) rotateY(360deg) rotateZ(0deg); }
}


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

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

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

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(3px); }
}

/* Our Process Animations */
@keyframes routeGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

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

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

@keyframes armMove {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

@keyframes nuggetGlow {
    0%, 100% { box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 4px 8px rgba(212, 175, 55, 0.6); }
}

@keyframes signalPulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.5); }
}

@keyframes flameFlicker {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    25% { transform: translateX(-50%) scaleY(1.1); }
    50% { transform: translateX(-50%) scaleY(0.9); }
    75% { transform: translateX(-50%) scaleY(1.05); }
}

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

@keyframes planeFly {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

/* About Section Animations */
@keyframes officeFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(2deg); }
}

@keyframes chartGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

@keyframes goldFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-5px) rotateZ(2deg); }
}

@keyframes chartFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-8px) rotateZ(1deg); }
}

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

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

@keyframes globeRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

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

/* Investment Section Animations */
@keyframes flowGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}

@keyframes pointFloat {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60px) scale(1.1); }
}

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

/* Contact Section Animations */
@keyframes goldBarFloat {
    0%, 100% { transform: translateY(-50%) rotateY(0deg) rotateX(0deg); }
    25% { transform: translateY(-60px) rotateY(90deg) rotateX(5deg); }
    50% { transform: translateY(-50px) rotateY(180deg) rotateX(0deg); }
    75% { transform: translateY(-40px) rotateY(270deg) rotateX(-5deg); }
}

/* Hero Section Animations */
@keyframes badgeSlideIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes titleSlideIn {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

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


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

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

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes gridLineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes sceneFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(5deg) rotateX(2deg); }
    50% { transform: rotateY(0deg) rotateX(0deg); }
    75% { transform: rotateY(-5deg) rotateX(-2deg); }
}

@keyframes barFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(180deg); }
}

@keyframes nuggetFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes nuggetGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes sceneGlow {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

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

/* New 3D Hero Animations */
@keyframes towerFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(5deg); }
}

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

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

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes particle3DFloat {
    0%, 100% { 
        transform: translateY(0px) translateZ(0px) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-20px) translateZ(10px) scale(1.2); 
        opacity: 1; 
    }
}

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

@keyframes pointGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

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

@keyframes streamLineGlow {
    0%, 100% { opacity: 0.4; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.1); }
}

@keyframes environmentGlow {
    0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes environmentParticles {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

/* Molecular 3D Animations */
@keyframes molecularFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(5deg); }
}

@keyframes coreRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg) rotateX(360deg); }
}

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

@keyframes bondPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scaleY(1.1); }
}

@keyframes nodeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
    50% { transform: translateX(-50%) translateY(-10px) scale(1.1); }
}

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

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

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

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

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

@keyframes waveExpand {
    0% { 
        width: 0px; 
        height: 0px; 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(0);
    }
    50% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        width: 500px; 
        height: 500px; 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes dataFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-15px) translateX(5px) scale(1.05); 
        opacity: 1; 
    }
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6; 
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% { 
        transform: scale(1.5); 
        opacity: 1; 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 0.6; transform: scaleX(1.2); }
}

@keyframes gridFlicker {
    0%, 100% { opacity: 0.4; }
    25% { opacity: 0.6; }
    50% { opacity: 0.3; }
    75% { opacity: 0.7; }
}

@keyframes quantumShift {
    0%, 100% { 
        transform: translate(0px, 0px) rotate(0deg); 
        opacity: 0.05; 
    }
    50% { 
        transform: translate(20px, -20px) rotate(180deg); 
        opacity: 0.1; 
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Section Dividers */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    margin: 2rem auto;
    border-radius: 2px;
}


/* The Valerius Edge Section - New Design */
.valerius-edge {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.edge-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.geometric-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(184, 148, 31, 0.04) 0%, transparent 50%);
    animation: patternFloat 30s ease-in-out infinite;
}

.floating-diamonds {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 215, 0, 0.08) 50%, transparent 60%);
    background-size: 100px 100px, 80px 80px;
    animation: diamondFloat 25s linear infinite;
}

.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.05) 25%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.03) 75%, 
        transparent 100%);
    animation: lightSweep 20s linear infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    flex: 1;
    max-width: 100px;
    animation: lineGlow 3s ease-in-out infinite;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: iconPulse 4s ease-in-out infinite;
}

.header-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.edge-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Interaction Hint */
.interaction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    animation: hintPulse 3s ease-in-out infinite;
}

.hint-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 2s ease-in-out infinite;
}

.hint-icon i {
    font-size: 0.8rem;
    color: white;
}

.interaction-hint span {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.showcase-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-decoration {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-ornament {
    position: relative;
    width: 80px;
    height: 80px;
    animation: ornamentRotate 20s linear infinite;
}

.ornament-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.ornament-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    height: 2px;
    top: 50%;
    transform-origin: center;
    animation: lineGlow 4s ease-in-out infinite;
}

.line-1 {
    width: 40px;
    left: 20px;
    animation-delay: 0s;
}

.line-2 {
    width: 40px;
    right: 20px;
    animation-delay: 1s;
}

.line-3 {
    width: 40px;
    left: 20px;
    transform: rotate(90deg);
    animation-delay: 2s;
}

.line-4 {
    width: 40px;
    right: 20px;
    transform: rotate(90deg);
    animation-delay: 3s;
}

.edge-features-left,
.edge-features-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.feature-card {
    position: relative;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card flip functionality */
.feature-card {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: transform 0.2s ease;
}

/* Desktop hover effect - only for non-flipped cards */
@media (hover: hover) and (pointer: fine) {
    .feature-card:not(.flipped):hover .card-3d-wrapper {
        transform: rotateY(180deg);
    }
}

/* Flipped cards - stay flipped */
.feature-card.flipped .card-3d-wrapper {
    transform: rotateY(180deg) !important;
    transition: none !important;
}

/* Force flipped state */
.feature-card[data-flipped="true"] .card-3d-wrapper {
    transform: rotateY(180deg) !important;
    transition: none !important;
}

.feature-card.flipped .mobile-hint {
    display: none;
}

.feature-card.flipped .desktop-hint {
    display: none;
}

/* Prevent hover effects on flipped cards */
.feature-card.flipped:hover .card-3d-wrapper {
    transform: rotateY(180deg) !important;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .feature-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .card-hint {
        display: block !important;
    }
    
    .desktop-hint {
        display: none;
    }
    
    .mobile-hint {
        display: inline;
    }
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .desktop-hint {
        display: inline;
    }
    
    .mobile-hint {
        display: none;
    }
}

.card-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.card-back {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    transform: rotateY(180deg);
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.card-back .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-back .feature-icon i {
    color: white;
}

.card-front h3,
.card-back h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.card-front h3 {
    color: #2c3e50;
}

.card-back h4 {
    color: white;
}

.card-front p,
.card-back p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.card-front p {
    color: #7f8c8d;
}

.card-back p {
    color: rgba(255, 255, 255, 0.9);
}

.card-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Desktop: Position hint below text but still within the card background */
@media (min-width: 769px) {
    .card-hint {
        position: static;
        margin-top: 1rem;
        align-self: center;
        opacity: 1;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
}

.card-back .card-hint {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Desktop: Ensure back card hint also stays within background */
@media (min-width: 769px) {
    .card-back .card-hint {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.card-hint i {
    font-size: 0.7rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

.feature-card:hover .card-hint {
    opacity: 1;
    transform: scale(1.05);
}

/* Our Process Section */
.our-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f1f1f1 100%);
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 60%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddb363, #d4af37, #ddb363, transparent);
    transform: translateY(-50%);
    animation: routeGlow 4s ease-in-out infinite;
}

.route-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.route-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    animation: pointPulse 3s ease-in-out infinite;
}

.route-point.point-1 { top: 20%; left: 15%; animation-delay: 0s; }
.route-point.point-2 { top: 25%; left: 25%; animation-delay: 0.5s; }
.route-point.point-3 { top: 30%; left: 35%; animation-delay: 1s; }
.route-point.point-4 { top: 35%; left: 45%; animation-delay: 1.5s; }
.route-point.point-5 { top: 40%; left: 55%; animation-delay: 2s; }
.route-point.point-6 { top: 50%; left: 70%; animation-delay: 2.5s; }
.route-point.point-7 { top: 60%; left: 85%; animation-delay: 3s; }

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(221, 179, 99, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.25), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particlesFloat 20s linear infinite;
}

.process-subtitle {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-subtitle span {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 500;
}

.process-timeline {
    position: relative;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddb363, #d4af37, #ddb363);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.process-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-connector {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-3d-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
    perspective: 1000px;
}

.step-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-info p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* 3D Icons */
.mining-icon,
.logistics-icon,
.refining-icon,
.compliance-icon,
.delivery-icon {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: iconFloat 6s ease-in-out infinite;
}

/* Mining Icon */
.excavator {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
    transform-style: preserve-3d;
}

.excavator-body {
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.excavator-arm {
    width: 30px;
    height: 4px;
    background: #654321;
    position: absolute;
    top: 10px;
    right: -25px;
    transform-origin: left center;
    animation: armMove 4s ease-in-out infinite;
}

.excavator-bucket {
    width: 15px;
    height: 8px;
    background: #8b4513;
    position: absolute;
    right: -15px;
    top: -2px;
    border-radius: 0 3px 3px 0;
}

.gold-pile {
    position: absolute;
    top: 50px;
    left: 30px;
}

.nugget {
    width: 8px;
    height: 6px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.nugget-1 { top: 0; left: 0; animation: nuggetGlow 3s ease-in-out infinite; }
.nugget-2 { top: 5px; left: 10px; animation: nuggetGlow 3s ease-in-out infinite 0.5s; }
.nugget-3 { top: 10px; left: 5px; animation: nuggetGlow 3s ease-in-out infinite 1s; }

.location-pin {
    position: absolute;
    top: 80px;
    left: 50px;
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Logistics Icon */
.armored-truck {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 70px;
    height: 35px;
}

.truck-body {
    width: 50px;
    height: 25px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.truck-cab {
    width: 20px;
    height: 20px;
    background: #34495e;
    position: absolute;
    left: -15px;
    top: 2px;
    border-radius: 3px;
}

.truck-wheels {
    position: absolute;
    bottom: -5px;
    left: 5px;
    width: 40px;
    height: 10px;
}

.wheel {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #34495e;
}

.wheel:first-child { left: 0; }
.wheel:last-child { right: 0; }

.gps-signal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.signal-wave {
    position: absolute;
    border: 2px solid #d4af37;
    border-radius: 50%;
    animation: signalPulse 2s ease-in-out infinite;
}

.signal-wave.wave-1 { width: 20px; height: 20px; top: 5px; left: 5px; animation-delay: 0s; }
.signal-wave.wave-2 { width: 30px; height: 30px; top: 0; left: 0; animation-delay: 0.3s; }
.signal-wave.wave-3 { width: 40px; height: 40px; top: -5px; left: -5px; animation-delay: 0.6s; }

/* Refining Icon */
.furnace {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 50px;
}

.furnace-body {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.furnace-flame {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 8px;
    height: 15px;
    background: linear-gradient(180deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateX(-50%);
    animation: flameFlicker 1.5s ease-in-out infinite;
}

.gold-bar {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 30px;
    height: 15px;
}

.bar-body {
    width: 25px;
    height: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
}

.bar-purity {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Compliance Icon */
.document {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 50px;
}

.doc-body {
    width: 30px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #bdc3c7;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doc-lines {
    position: absolute;
    top: 8px;
    left: 5px;
    right: 5px;
}

.doc-lines .line {
    height: 2px;
    background: #7f8c8d;
    margin-bottom: 4px;
    border-radius: 1px;
}

.doc-lines .line:nth-child(1) { width: 80%; }
.doc-lines .line:nth-child(2) { width: 90%; }
.doc-lines .line:nth-child(3) { width: 70%; }

.hologram-seal {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 25px;
    height: 25px;
}

.seal-ring {
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sealRotate 4s linear infinite;
}

.seal-center {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Delivery Icon */
.airplane {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 60px;
    height: 20px;
    animation: planeFly 8s ease-in-out infinite;
}

.plane-body {
    width: 40px;
    height: 8px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.plane-wings {
    width: 25px;
    height: 4px;
    background: #2c3e50;
    position: absolute;
    top: 2px;
    left: 8px;
    border-radius: 2px;
}

.plane-tail {
    width: 8px;
    height: 6px;
    background: #34495e;
    position: absolute;
    right: -5px;
    top: 1px;
    border-radius: 0 2px 2px 0;
}

.european-skyline {
    position: absolute;
    top: 70px;
    left: 10px;
    width: 80px;
    height: 30px;
}

.building {
    position: absolute;
    bottom: 0;
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.building-1 { width: 12px; height: 20px; left: 0; }
.building-2 { width: 15px; height: 25px; left: 15px; }
.building-3 { width: 10px; height: 18px; left: 35px; }

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side: 3D Office Scene */
.about-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.office-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: officeFloat 8s ease-in-out infinite;
}

.office-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transform: rotateX(60deg) translateZ(-100px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.office-walls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-style: preserve-3d;
}

.wall {
    position: absolute;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.wall-left {
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    transform: rotateY(-30deg) translateZ(-75px);
}

.wall-right {
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    transform: rotateY(30deg) translateZ(-75px);
}

.wall-back {
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    transform: rotateX(30deg) translateZ(-100px);
}

.office-furniture {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    transform-style: preserve-3d;
}

.desk {
    position: relative;
    width: 200px;
    height: 100px;
    transform-style: preserve-3d;
}

.desk-surface {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.desk-legs {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 80px;
}

.leg {
    position: absolute;
    width: 8px;
    height: 80px;
    background: #654321;
    border-radius: 4px;
}

.leg:nth-child(1) { left: 20px; }
.leg:nth-child(2) { right: 20px; }
.leg:nth-child(3) { left: 20px; top: 20px; }
.leg:nth-child(4) { right: 20px; top: 20px; }

.computer-setup {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    transform-style: preserve-3d;
}

.monitor {
    width: 80px;
    height: 50px;
    background: #2c3e50;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screen {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #1a1a1a;
    border-radius: 3px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    height: 2px;
    background: #d4af37;
    border-radius: 1px;
    animation: chartGlow 3s ease-in-out infinite;
}

.chart-line:nth-child(1) { top: 15px; left: 10px; width: 30px; animation-delay: 0s; }
.chart-line:nth-child(2) { top: 25px; left: 15px; width: 25px; animation-delay: 0.5s; }
.chart-line:nth-child(3) { top: 35px; left: 20px; width: 20px; animation-delay: 1s; }

.keyboard {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #34495e;
    border-radius: 3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.gold-elements {
    position: absolute;
    top: 50px;
    right: 50px;
    transform-style: preserve-3d;
}

.gold-bar {
    position: absolute;
    width: 30px;
    height: 15px;
    transform-style: preserve-3d;
    animation: goldFloat 6s ease-in-out infinite;
}

.gold-bar.bar-1 { top: 0; left: 0; animation-delay: 0s; }
.gold-bar.bar-2 { top: 20px; left: 10px; animation-delay: 1s; }
.gold-bar.bar-3 { top: 40px; left: 5px; animation-delay: 2s; }

.bar-body {
    width: 25px;
    height: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 2px;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}

.bar-purity {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.glass-walls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.glass-panel {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-panel.panel-1 {
    top: 50px;
    right: 20px;
    width: 80px;
    height: 120px;
    transform: rotateY(15deg);
}

.glass-panel.panel-2 {
    bottom: 150px;
    left: 20px;
    width: 60px;
    height: 100px;
    transform: rotateY(-15deg);
}

.floating-charts {
    position: absolute;
    top: 100px;
    left: 20px;
    transform-style: preserve-3d;
}

.chart {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: chartFloat 4s ease-in-out infinite;
}

.chart.chart-1 {
    top: 0;
    left: 0;
    width: 60px;
    height: 40px;
    animation-delay: 0s;
}

.chart.chart-2 {
    top: 60px;
    left: 20px;
    width: 50px;
    height: 30px;
    animation-delay: 1s;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 20px;
    gap: 3px;
}

.chart-bars .bar {
    width: 8px;
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
    animation: barGrow 2s ease-in-out infinite;
}

.chart-bars .bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.chart-bars .bar:nth-child(2) { height: 18px; animation-delay: 0.2s; }
.chart-bars .bar:nth-child(3) { height: 15px; animation-delay: 0.4s; }

.chart-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8941f, #d4af37);
    border-radius: 1px;
    animation: lineGlow 3s ease-in-out infinite;
}

/* Interactive Globe */
.interactive-globe {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: globeRotate 20s linear infinite;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4a90e2, #2c3e50);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
    transform-style: preserve-3d;
}

.globe-surface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
}

.globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: 
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.sourcing-countries {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.country-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    animation: countryPulse 3s ease-in-out infinite;
    cursor: pointer;
}

.country-marker.ghana { top: 25%; left: 45%; animation-delay: 0s; }
.country-marker.mali { top: 30%; left: 40%; animation-delay: 0.5s; }
.country-marker.sudan { top: 35%; left: 55%; animation-delay: 1s; }
.country-marker.uganda { top: 45%; left: 60%; animation-delay: 1.5s; }
.country-marker.drc { top: 50%; left: 50%; animation-delay: 2s; }

/* Right Side: Content */
.about-text {
    padding-left: 2rem;
}

.company-logos {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.logo-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1rem;
}

.logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.headline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-style: italic;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-text p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Section Subtitle */
.section-subtitle {
    margin-bottom: 2rem;
}

.section-subtitle h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
}


/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.about-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.about-cta .btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #d4af37;
}

.about-cta .btn-secondary:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Investment & Partnership Section */
.investment {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.investment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gold-flow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

.flow-line {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddb363, #d4af37, #ddb363, transparent);
    animation: flowGlow 4s ease-in-out infinite;
}

.flow-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.flow-point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pointFloat 6s ease-in-out infinite;
}

.flow-point.point-africa { left: 15%; animation-delay: 0s; }
.flow-point.point-dubai { left: 50%; animation-delay: 2s; }
.flow-point.point-europe { left: 85%; animation-delay: 4s; }

.point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    border: 3px solid #ffffff;
}

.point-label {
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-indicators {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 20px;
}

.price-indicator {
    position: absolute;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 700;
    animation: priceFloat 3s ease-in-out infinite;
}

.price-indicator.indicator-1 { left: 20%; animation-delay: 0s; }
.price-indicator.indicator-2 { left: 50%; animation-delay: 1s; }
.price-indicator.indicator-3 { left: 80%; animation-delay: 2s; }

.floating-particles-investment {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(221, 179, 99, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.18), transparent);
    background-repeat: repeat;
    background-size: 120px 120px;
    animation: particlesFloat 25s linear infinite;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side: Headline + Key Numbers */
.investment-left {
    color: #ffffff;
}

.investment-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-intro {
    margin-bottom: 3rem;
}

.investment-intro p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Key Numbers / Metrics */
.key-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.metric-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.metric-subtitle {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.3;
}

/* Right Side: Interactive Opportunity Matrix */
.investment-right {
    color: #ffffff;
}

.opportunity-matrix h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.opportunity-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.opportunity-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.card-content p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    color: #d4af37;
    font-size: 0.9rem;
}

.feature span {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.opportunity-card:hover .card-glow {
    opacity: 1;
}


/* CTA Buttons */
.investment-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.investment-cta .btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.investment-cta .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.investment-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.investment-cta .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #d4af37;
}

.investment-cta .btn-secondary:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Contact & Next Steps Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

/* Left Side: Contact CTA */
.contact-left {
    position: relative;
}

/* Contact CTA */
.contact-cta {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #000000;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.contact-cta:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    color: #2c3e50;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    align-self: flex-start;
    color: #ffffff !important;
}

.contact-form .btn span {
    color: #ffffff !important;
}

.contact-form .btn i {
    color: #ffffff !important;
}

/* 3D Gold Bar */
.floating-gold-bar {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    perspective: 1000px;
    z-index: 1;
}

.gold-bar-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: goldBarFloat 8s ease-in-out infinite;
}

.bar-face {
    position: absolute;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.bar-face.front {
    width: 60px;
    height: 40px;
    transform: translateZ(20px);
}

.bar-face.back {
    width: 60px;
    height: 40px;
    transform: translateZ(-20px) rotateY(180deg);
}

.bar-face.left {
    width: 40px;
    height: 40px;
    transform: rotateY(-90deg) translateZ(20px);
}

.bar-face.right {
    width: 40px;
    height: 40px;
    transform: rotateY(90deg) translateZ(20px);
}

.bar-face.top {
    width: 60px;
    height: 40px;
    transform: rotateX(90deg) translateZ(20px);
}

.bar-face.bottom {
    width: 60px;
    height: 40px;
    transform: rotateX(-90deg) translateZ(20px);
}

.bar-purity-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Right Side: Business Info & Quick Links */
.contact-right {
    padding-left: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.method-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #b8941f;
}

.method-content p {
    color: #5a6c7d;
    line-height: 1.5;
    margin: 0;
}

.quick-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.quick-link i {
    color: #d4af37;
    font-size: 1.2rem;
}

.quick-link span {
    font-weight: 600;
}

/* Social Proof / Press Strip */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.proof-content {
    text-align: center;
}

.proof-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-style: italic;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-logos .logo-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.proof-logos .logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.proof-logos .logo-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
}

.proof-logos .logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Compliance Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.aml-disclaimer {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.aml-disclaimer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.aml-disclaimer strong {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.trust-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #7f8c8d;
}

.values-list i {
    color: #d4af37;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 500;
}




/* Hero 3D Scene Responsive - Molecular Design */
@media (max-width: 768px) {
    .hero-3d-scene {
        width: 400px;
        height: 400px;
        perspective: 1000px;
    }
    
    .molecular-gold {
        transform: scale(0.8);
    }
    
    .gold-core {
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .core-sphere {
        width: 60px;
        height: 60px;
    }
    
    .sphere-face {
        width: 60px;
        height: 60px;
    }
    
    .sphere-face.front { transform: translateZ(30px); }
    .sphere-face.back { transform: translateZ(-30px) rotateY(180deg); }
    .sphere-face.left { transform: rotateY(-90deg) translateZ(30px); }
    .sphere-face.right { transform: rotateY(90deg) translateZ(30px); }
    .sphere-face.top { transform: rotateX(90deg) translateZ(30px); }
    .sphere-face.bottom { transform: rotateX(-90deg) translateZ(30px); }
    
    .core-glow {
        width: 90px;
        height: 90px;
    }
    
    .bond-line {
        height: 80px;
    }
    
    .bond-node {
        width: 15px;
        height: 15px;
        top: 80px;
    }
    
    .atom {
        width: 30px;
        height: 30px;
    }
    
    .shell-1 {
        width: 30px;
        height: 30px;
    }
    
    .shell-2 {
        width: 45px;
        height: 45px;
        top: -7.5px;
        left: -7.5px;
    }
    
    .atom-nucleus {
        width: 8px;
        height: 8px;
    }
    
    .ring-1 { width: 150px; height: 150px; }
    .ring-2 { width: 220px; height: 220px; }
    .ring-3 { width: 300px; height: 300px; }
    
    .ring-segment {
        width: 35px;
        height: 3px;
    }
    
    .wave-1 { width: 80px; height: 80px; }
    .wave-2 { width: 150px; height: 150px; }
    .wave-3 { width: 220px; height: 220px; }
    .wave-4 { width: 300px; height: 300px; }
    
    .data-particle {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .neural-node {
        width: 6px;
        height: 6px;
    }
    
    .neural-connection {
        height: 1px;
    }
    
    .c1 { width: 150px; }
    .c2 { width: 120px; }
    .c3 { width: 140px; }
    .c4 { width: 100px; }
    
    .holographic-grid {
        background-size: 15px 15px;
    }
}

@media (max-width: 480px) {
    .hero-3d-scene {
        width: 300px;
        height: 300px;
        perspective: 800px;
    }
    
    .molecular-gold {
        transform: scale(0.6);
    }
    
    .gold-core {
        transform: translate(-50%, -50%) scale(0.7);
    }
    
    .core-sphere {
        width: 50px;
        height: 50px;
    }
    
    .sphere-face {
        width: 50px;
        height: 50px;
    }
    
    .sphere-face.front { transform: translateZ(25px); }
    .sphere-face.back { transform: translateZ(-25px) rotateY(180deg); }
    .sphere-face.left { transform: rotateY(-90deg) translateZ(25px); }
    .sphere-face.right { transform: rotateY(90deg) translateZ(25px); }
    .sphere-face.top { transform: rotateX(90deg) translateZ(25px); }
    .sphere-face.bottom { transform: rotateX(-90deg) translateZ(25px); }
    
    .core-glow {
        width: 70px;
        height: 70px;
    }
    
    .bond-line {
        height: 60px;
    }
    
    .bond-node {
        width: 12px;
        height: 12px;
        top: 60px;
    }
    
    .atom {
        width: 25px;
        height: 25px;
    }
    
    .shell-1 {
        width: 25px;
        height: 25px;
    }
    
    .shell-2 {
        width: 35px;
        height: 35px;
        top: -5px;
        left: -5px;
    }
    
    .atom-nucleus {
        width: 6px;
        height: 6px;
    }
    
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 180px; height: 180px; }
    .ring-3 { width: 240px; height: 240px; }
    
    .ring-segment {
        width: 25px;
        height: 2px;
    }
    
    .wave-1 { width: 60px; height: 60px; }
    .wave-2 { width: 120px; height: 120px; }
    .wave-3 { width: 180px; height: 180px; }
    .wave-4 { width: 240px; height: 240px; }
    
    .data-particle {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
    }
    
    .neural-node {
        width: 4px;
        height: 4px;
    }
    
    .neural-connection {
        height: 1px;
    }
    
    .c1 { width: 100px; }
    .c2 { width: 80px; }
    .c3 { width: 90px; }
    .c4 { width: 70px; }
    
    .holographic-grid {
        background-size: 12px 12px;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
    }

    .navbar.scrolled .nav-menu {
        background: rgba(15, 20, 25, 0.98);
        border-top: 2px solid rgba(212, 175, 55, 0.3);
    }

    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        margin: 0.8rem 0;
        border-radius: 15px;
        transition: all 0.3s ease;
        width: 80%;
        position: relative;
        overflow: hidden;
        display: block;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        left: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .logo-img {
        height: 35px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Staggered animation for mobile menu items */
    .nav-menu.active .nav-link {
        animation: fadeInUp 0.5s ease forwards;
    }
    
    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu.active .nav-link:nth-child(7) { animation-delay: 0.7s; }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Mobile Navigation Animations */
@keyframes slideInFromLeft {
    0% {
        left: -100%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

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

    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Our Process Section Mobile */
    .our-process {
        padding: 3rem 1rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
    }

    .step-3d-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }

    .step-info {
        flex: 1;
    }

    .step-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

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

    /* About Section Mobile */
    .about {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: 2;
    }

    .about-text {
        order: 1;
        text-align: center;
    }

    .office-scene {
        width: 100%;
        height: 300px;
    }

    .interactive-globe {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    /* Investment Section Mobile */
    .investment {
        padding: 3rem 1rem;
    }

    .investment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .key-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .opportunity-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 3rem 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-left {
        order: 2;
    }

    .contact-right {
        order: 1;
    }

    .floating-gold-bar {
        display: none;
    }

    /* Social Proof Mobile */
    .social-proof {
        padding: 2rem 1rem;
    }

    .proof-logos {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .logo-item {
        width: 120px;
        height: 60px;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* 480px Mobile Optimizations */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        max-width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Process Section 480px */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-3d-icon {
        width: 60px;
        height: 60px;
    }

    .step-info h3 {
        font-size: 1.1rem;
    }

    .step-info p {
        font-size: 0.85rem;
    }

    /* About Section 480px */
    .office-scene {
        height: 250px;
    }

    .interactive-globe {
        width: 150px;
        height: 150px;
    }

    /* Investment Section 480px */
    .metric-card {
        padding: 1rem;
    }

    .metric-number {
        font-size: 1.8rem;
    }

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

    /* Contact Section 480px */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Social Proof 480px */
    .logo-item {
        width: 100px;
        height: 50px;
    }

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

    .valerius-edge {
        padding: 60px 0;
    }

    .interaction-hint {
        margin-bottom: 2rem;
        padding: 0.8rem 1.5rem;
        max-width: 320px;
    }

    .interaction-hint span {
        font-size: 0.8rem;
    }

    .edge-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .edge-features-left,
    .edge-features-right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .showcase-center {
        order: -1;
        margin-bottom: 1rem;
    }

    .center-decoration {
        width: 80px;
        height: 80px;
    }

    .gold-ornament {
        width: 60px;
        height: 60px;
    }

    .ornament-circle {
        width: 40px;
        height: 40px;
    }

    .line-1,
    .line-2,
    .line-3,
    .line-4 {
        width: 30px;
    }

    .line-1,
    .line-3 {
        left: 15px;
    }

    .line-2,
    .line-4 {
        right: 15px;
    }

    .feature-card {
        height: auto;
        min-height: 200px;
    }

    .card-front,
    .card-back {
        padding: 1.5rem 1.2rem;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .card-front h3,
    .card-back h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .card-front p,
    .card-back p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .card-hint {
        bottom: 0.8rem;
        right: 0.8rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .card-hint span {
        display: none;
    }

    .card-hint i {
        font-size: 0.8rem;
    }

    .our-process {
        padding: 80px 0;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
        margin-top: 3rem;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        max-width: 100%;
    }

    .step-connector {
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .step-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        max-width: none;
    }

    .step-3d-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .step-info {
        flex: 1;
    }

    .step-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .step-info p {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 400px;
        order: 2;
    }

    .about-text {
        padding-left: 0;
        order: 1;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .headline {
        font-size: 1.1rem;
    }

    .section-subtitle h3 {
        font-size: 1.2rem;
    }

    .company-logos {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .logo-item {
        padding: 0.6rem 1rem;
    }


    .about-cta {
        gap: 1rem;
    }

    .about-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .investment {
        padding: 80px 0;
    }

    .investment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .investment-header h2 {
        font-size: 2.5rem;
    }

    .investment-intro p {
        font-size: 1.1rem;
    }

    .key-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .opportunity-cards {
        gap: 1.5rem;
    }

    .metric-card {
        padding: 1.2rem;
    }

    .metric-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .metric-number {
        font-size: 1.3rem;
    }

    .opportunity-matrix h3 {
        font-size: 1.8rem;
    }

    .opportunity-card {
        padding: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-header h4 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .investment-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }

    .investment-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
        padding: 0.5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .title-line {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .hero-tagline {
        margin: 0.8rem 0;
        padding: 0.6rem 0.8rem;
    }

    .hero-tagline span {
        font-size: 0.85rem;
    }

    .hero-buttons {
        margin: 1.2rem 0;
        gap: 0.6rem;
    }

    .btn {
        max-width: 220px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin: 0 auto;
    }

    .hero-3d-scene {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .valerius-edge {
        padding: 40px 0;
    }

    .header-decoration {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .gold-line {
        max-width: 50px;
    }

    .header-icon {
        width: 45px;
        height: 45px;
    }

    .header-icon i {
        font-size: 1.1rem;
    }

    .interaction-hint {
        margin-bottom: 1.5rem;
        padding: 0.6rem 1rem;
        max-width: 280px;
    }

    .interaction-hint span {
        font-size: 0.75rem;
    }

    .hint-icon {
        width: 18px;
        height: 18px;
    }

    .hint-icon i {
        font-size: 0.6rem;
    }

    .edge-showcase {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .edge-features-left,
    .edge-features-right {
        gap: 1.2rem;
    }

    .showcase-center {
        margin-bottom: 0.5rem;
    }

    .center-decoration {
        width: 70px;
        height: 70px;
    }

    .gold-ornament {
        width: 50px;
        height: 50px;
    }

    .ornament-circle {
        width: 35px;
        height: 35px;
    }

    .line-1,
    .line-2,
    .line-3,
    .line-4 {
        width: 25px;
    }

    .line-1,
    .line-3 {
        left: 12.5px;
    }

    .line-2,
    .line-4 {
        right: 12.5px;
    }

    .feature-card {
        height: auto;
        min-height: 180px;
    }

    .card-front,
    .card-back {
        padding: 1.2rem 1rem;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .card-front h3,
    .card-back h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .card-front p,
    .card-back p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .card-hint {
        bottom: 0.6rem;
        right: 0.6rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .card-hint i {
        font-size: 0.7rem;
    }

    .our-process {
        padding: 60px 0;
    }

    .process-subtitle {
        margin-top: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .process-subtitle span {
        font-size: 1rem;
    }

    .process-timeline {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-connector {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
    }

    .step-3d-icon {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .step-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .step-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .about {
        padding: 80px 0;
    }

    .about-visual {
        height: 300px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .headline {
        font-size: 1rem;
    }

    .section-subtitle h3 {
        font-size: 1.1rem;
    }

    .intro-text p {
        font-size: 0.9rem;
    }

    .company-logos {
        flex-direction: column;
        gap: 0.8rem;
    }

    .logo-item {
        padding: 0.5rem 0.8rem;
        justify-content: center;
    }


    .about-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-cta .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        justify-content: center;
    }

    .investment {
        padding: 60px 0;
    }

    .investment-header h2 {
        font-size: 2rem;
    }

    .investment-intro p {
        font-size: 1rem;
    }

    .key-metrics {
        gap: 1rem;
    }

    .metric-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .metric-number {
        font-size: 1.4rem;
    }

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

    .metric-subtitle {
        font-size: 0.8rem;
    }

    .opportunity-matrix h3 {
        font-size: 1.5rem;
    }

    .opportunity-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .card-header h4 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }

    .feature span {
        font-size: 0.85rem;
    }

    .investment-cta {
        gap: 0.8rem;
        margin-top: 2.5rem;
    }

    .investment-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .gold-pyramid {
        width: 120px;
        height: 120px;
    }

    .pyramid-face.front,
    .pyramid-face.back,
    .pyramid-face.left,
    .pyramid-face.right {
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-bottom: 104px solid rgba(212, 175, 55, 0.8);
    }

    .ring-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    .ring-2 {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }

    .ring-3 {
        width: 220px;
        height: 220px;
        top: -110px;
        left: -110px;
    }

    .float-element {
        width: 30px;
        height: 30px;
    }

    .float-element i {
        font-size: 0.8rem;
    }


    .section-header h2 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .carousel-wrapper {
        height: 300px;
    }
    
    .service-card-3d {
        flex: 0 0 250px;
        margin: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        transform: translateX(-15px);
    }
    
    .next-btn {
        transform: translateX(15px);
    }
    
    .hero-3d-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-cube {
        width: 30px;
        height: 30px;
    }
    
    .cube-face {
        width: 30px;
        height: 30px;
    }
    
    .cube-face.front { transform: rotateY(0deg) translateZ(15px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(15px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(15px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(15px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(15px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(15px); }
    
    .hero-center-logo {
        width: 120px;
        height: 120px;
    }
    
    .gold-coin-3d {
        width: 100px;
        height: 100px;
    }
    
    .coin-face {
        width: 100px;
        height: 100px;
    }
    
    .coin-edge {
        width: 10px;
        height: 100px;
        margin-left: -5px;
    }
    
    .coin-symbol {
        font-size: 1.8rem;
    }
    
    .coin-text {
        font-size: 0.5rem;
    }
    
    .coin-purity {
        font-size: 0.4rem;
    }
    
    .hero-tagline {
        padding: 0.6rem 1rem;
    }
    
    .hero-tagline span {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}