/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --purple: #7C3AED;
    --gold: #FFD700;
    --white: #ffffff;
    --gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--purple);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background: var(--purple);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, var(--purple) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--gold) 0%, transparent 50%),
                var(--black);
    animation: gradientShift 15s ease infinite;
}

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: revealText 1s ease forwards;
}

.reveal-text.delay-1 {
    animation-delay: 0.2s;
}

.reveal-text.delay-2 {
    animation-delay: 0.4s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--black);
    background: var(--gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.scroll-line {
    width: 100%;
    height: 30px;
    background: var(--purple);
    animation: scrollAnimation 2s ease infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ========== GLASS EFFECT ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

/* ========== GLOW BUTTON ========== */
.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.glow-button:hover::before {
    width: 300px;
    height: 300px;
}

/* ========== FLAGSHIP SECTION ========== */
.flagship {
    padding: 10rem 0;
    position: relative;
}

.flagship-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--purple);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flagship-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.flagship-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.flagship-card {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.flagship-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--purple), rgba(124, 58, 237, 0.5));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
}

.price-label {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.flagship-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.flagship-features {
    list-style: none;
    margin-bottom: 2rem;
}

.flagship-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--gray);
}

.flagship-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
    font-size: 1.3rem;
}

.countdown-container {
    margin: 2rem 0;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-item {
    text-align: center;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 10px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.countdown-unit {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

.waitlist-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* ========== TRUST SECTION ========== */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.1) 100%);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 10rem 0;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 4rem;
}

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

.product-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.product-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(255, 215, 0, 0.1));
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.product-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.glow-button-small {
    position: relative;
    overflow: hidden;
}

.product-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.05) 100%);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    min-height: 350px;
}

.testimonial-card {
    padding: 3rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.author-title {
    color: var(--gray);
    font-size: 0.95rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--purple);
    transform: scale(1.3);
}

/* ========== METHOD SECTION ========== */
.method-section {
    padding: 10rem 0;
}

.method-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.method-intro {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-step {
    opacity: 0;
    transform: translateY(30px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.method-step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.method-step p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.method-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-orb {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--purple), rgba(124, 58, 237, 0.3));
    box-shadow: 0 0 100px rgba(124, 58, 237, 0.5),
                inset 0 0 80px rgba(255, 215, 0, 0.3);
    animation: floating 4s ease-in-out infinite;
    position: relative;
}

.floating-orb::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
}

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

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    padding: 8rem 0;
}

.newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.newsletter-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 1.5rem 3rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== FOOTER ========== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
}

/* ========== MODAL ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--purple);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-textarea {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(255, 255, 255, 0.08);
}

.form-submit {
    padding: 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .flagship-card {
        grid-template-columns: 1fr;
    }
    
    .method-content {
        grid-template-columns: 1fr;
    }
    
    .floating-orb {
        width: 300px;
        height: 300px;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== TRUST & CREDIBILITY ELEMENTS ========== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.trust-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    color: var(--white);
    white-space: nowrap;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--gray);
}

.cohort-notice {
    background: rgba(124, 58, 237, 0.1);
    border-left: 3px solid var(--purple);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.cohort-notice p {
    margin: 0.5rem 0;
    color: var(--white);
}

.cohort-notice strong {
    color: var(--gold);
}

.preview-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.preview-link:hover {
    color: var(--gold);
}

.verified-badge {
    display: inline;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-left: 0.5rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}
