@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-darkest: #09090b;
    --bg-dark: #121217;
    --bg-card: #181822;
    --text-primary: #f4f4f7;
    --text-muted: #9fa0aa;
    
    --accent-gold: #cfa864;
    --accent-gold-glow: rgba(207, 168, 100, 0.2);
    --accent-gold-dark: #b8924f;
    
    --whatsapp-green: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.15);
    
    --glass-bg: rgba(18, 18, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darkest);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
    background: #272730;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

section {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.container {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    background: rgba(207, 168, 100, 0.1);
    border: 1px solid rgba(207, 168, 100, 0.25);
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 40%, #e4e4e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Glow decoration elements in background */
.radial-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(9,9,11,0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Glass Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-gold);
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1001;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    color: var(--text-primary);
    background: rgba(207, 168, 100, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-darkest);
    border: none;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(207, 168, 100, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    border: none;
    box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    background: rgba(207, 168, 100, 0.1);
    border: 1px solid rgba(207, 168, 100, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(9,9,11,0.8) 100%);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.08);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 168, 100, 0.05) 0%, rgba(0,0,0,0) 40%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 168, 100, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 1px 1px rgba(207,168,100,0.1) inset;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(207, 168, 100, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 24px;
    border: 1px solid rgba(207, 168, 100, 0.2);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-gold);
    color: var(--bg-darkest);
    transform: scale(1.05);
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Models Showcase Section */
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    z-index: 10;
    position: relative;
}

.model-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    border-color: rgba(207, 168, 100, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.model-img-container {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.model-card:hover .model-img {
    transform: scale(1.06);
}

.model-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(9, 9, 11, 0.85);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    backdrop-filter: blur(10px);
}

.model-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.model-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.model-features {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.model-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.model-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(207, 168, 100, 0.1) 100%);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-node {
    width: 82px;
    height: 82px;
    background: var(--bg-darkest);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 0 0 20px rgba(207, 168, 100, 0.1);
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.process-step:hover .process-node {
    background: var(--accent-gold);
    color: var(--bg-darkest);
    box-shadow: 0 0 25px rgba(207, 168, 100, 0.35);
}

.process-info {
    padding-top: 15px;
}

.process-step-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 650px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(207, 168, 100, 0.2);
}

.faq-question {
    padding: 24px;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--accent-gold);
}

.faq-icon::before {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-gold);
    color: var(--bg-darkest);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    z-index: 10;
    position: relative;
    align-items: start;
}

.contact-info-panel {
    padding-right: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(207, 168, 100, 0.1);
    border: 1px solid rgba(207, 168, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-detail-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-detail-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-detail-content a:hover {
    color: var(--accent-gold);
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(207, 168, 100, 0.1);
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 8px 0;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 24px;
    background-color: var(--bg-darkest);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

/* Scroll Animation classes */
.reveal {
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    transition: 1s all cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        height: 380px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-panel {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-detail-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    section {
        padding: 20px 20px;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 20px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .process-node {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Form Feedback Messages */
.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-message.success {
    display: flex;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #2be072;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.05);
}

.form-message.error {
    display: flex;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.05);
}

/* Button Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading .btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Popup Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(9,9,11,0) 70%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.modal-icon-container {
    width: 64px;
    height: 64px;
    background: rgba(207, 168, 100, 0.1);
    border: 1px solid rgba(207, 168, 100, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin: 0 auto 24px auto;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.modal-icon-container i {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 40%, #e4e4e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.modal-ok-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}


