/* ===================================
   PREMIUM SECTIONS - Additional Styles
   =================================== */

/* Hero Highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.75rem;
    color: #8A8A8A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-trust {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-text {
    color: #C4C4C4;
    font-size: 0.875rem;
    margin: 0;
}

.trust-text strong {
    color: #F4E4C1;
}

/* Premium Token Card */
.token-card-premium {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.token-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.token-card-content {
    position: relative;
    z-index: 1;
}

.token-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.token-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #0D0D0D;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    font-family: 'Cinzel', serif;
    flex-shrink: 0;
}

.token-title h3 {
    font-size: 1.5rem;
    color: #F4E4C1;
    margin-bottom: 0.25rem;
}

.token-title p {
    font-size: 0.875rem;
    color: #8A8A8A;
    margin: 0;
}

.price-display {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.75rem;
    color: #8A8A8A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-subtext {
    font-size: 0.75rem;
    color: #C4C4C4;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: #8A8A8A;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.detail-row strong {
    color: #F4E4C1;
    font-weight: 700;
    font-size: 1rem;
}

.token-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-icon {
    background: none;
    border: none;
    color: #D4AF37;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.4s ease;
}

.btn-icon:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(180deg);
}

/* Stats Showcase */
.stats-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
    position: relative;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-large {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card-large:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    word-break: break-word;
}

.stat-label {
    font-size: 1.125rem;
    color: #F4E4C1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #8A8A8A;
    line-height: 1.6;
}

/* Gold Backing Section */
.gold-backing-section {
    padding: 6rem 0;
    background: #0D0D0D;
}

.gold-backing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.backing-visual {
    position: relative;
}

.backing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backing-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    transition: all 0.4s ease;
}

.backing-list li:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

.backing-list .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.backing-list .content h4 {
    font-size: 1.125rem;
    color: #F4E4C1;
    margin-bottom: 0.5rem;
}

.backing-list .content p {
    color: #C4C4C4;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    position: relative;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD700, #D4AF37);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #D4AF37, #B8941E);
    bottom: -100px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #C4C4C4;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Enhancements */
.footer-about {
    max-width: 400px;
}

.footer-company-info,
.footer-address,
.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-disclaimer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
}

.footer-disclaimer h5 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: #C4C4C4;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: #F4E4C1;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .gold-backing-content {
        grid-template-columns: 1fr;
    }

    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .stat-card-large {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .token-card-premium {
        max-width: 100%;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-disclaimer {
        padding: 1.5rem;
    }
}