/* Premium / Luxury Aesthetic for Belvet Models */
:root {
    /* Colors */
    --bg-dark: #0B0B0F;
    --bg-card: #15151A;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.85);
    --primary: #D4AF37; /* Metallic Gold */
    --primary-hover: #F2C94C;
    --primary-glow: rgba(212, 175, 55, 0.2);
    /* --glass: blur(20px) saturate(180%); */ /* Removed heavily */
    /* --glass-border: 1px solid rgba(255, 255, 255, 0.08); */ /* Removed */
    
    /* Gradients */
    --grad-main: linear-gradient(135deg, #D4AF37 0%, #AA8E2F 100%);
    /* --grad-glow: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%); */
    --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    
    /* Layout */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Effects */
    --border: 1px solid rgba(255, 255, 255, 0.08);
    --border-active: 1px solid #D4AF37;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    /* Subtle yellow glow background applied directly to body */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05), transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15); /* Soft glow for all text */
}

/* Removed body::before to prevent layering issues */
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Stronger glow for titles */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(11, 11, 15, 0.95); /* High opacity for readability */
    backdrop-filter: blur(10px);
    border-bottom: var(--border);
    border-radius: 0; /* Revert rounded */
    z-index: 1000;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
}

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

/* Shimmer Animation */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* Golden Shimmer Text */
    background: linear-gradient(90deg, #D4AF37 0%, #F2C94C 25%, #FFFFFF 50%, #F2C94C 75%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 3s linear infinite;
}

.logo-accent {
    color: inherit; /* Inherit gradient from parent */
    font-weight: 300;
    -webkit-text-fill-color: transparent; /* Ensure it stays transparent for gradient */
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-link-cta {
    background: linear-gradient(90deg, #D4AF37 0%, #F2C94C 25%, #FFFFFF 50%, #F2C94C 75%, #D4AF37 100%);
    background-size: 200% auto;
    border: none;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
    animation: shimmer 3s linear infinite;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-link-cta:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: var(--shadow-glow);
}

.nav-link-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    text-shadow: none; /* Removed heavy glow */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-item {
    background: #1A1A1F;
    border: var(--border);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #D4AF37 0%, #F2C94C 25%, #FFFFFF 50%, #F2C94C 75%, #D4AF37 100%);
    background-size: 200% auto;
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: shimmer 3s linear infinite;
}

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

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Sections General */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-card);
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 70px;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Cards (Company, Income, What is it) */
.company-grid, .cards, .income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.company-card, .card, .income-card {
    background: #1A1A1F; /* Solid dark background for maximum readability */
    border: var(--border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1; /* Ensure on top */
}

.company-card:hover, .card:hover, .income-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.04);
}

/* Icon Styling */
.company-icon, .card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.company-card h3, .card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.company-card p, .card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    filter: sepia(20%) contrast(1.1);
    transition: 0.4s;
}

.card:hover .card-image {
    filter: sepia(0%) contrast(1.2);
}

/* Stats */
.company-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    border-top: var(--border);
    padding-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Advertise Section */
.advertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.advertise-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: var(--border);
}

.advertise-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.advertise-allowed .advertise-badge {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.advertise-prohibited .advertise-badge {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.advertise-card ul {
    list-style: none;
}

.advertise-card li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Income Section */
.income-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.income-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.income-card-featured {
    border: 1px solid var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

/* Format Section */
.format-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.format-item {
    margin-bottom: 40px;
}

.format-item:last-child {
    margin-bottom: 0;
}

.format-item h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box {
    background: #1A1A1F;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--primary);
    position: relative;
    z-index: 1;
}

.highlight-box::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.highlight-box li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Testimonials */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: #1A1A1F; /* Solid dark */
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    margin: 0 10px; 
    box-sizing: border-box; 
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 4px;
    background: transparent;
}

.testimonial-rating {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slider-btn-prev { left: -60px; }
.slider-btn-next { right: -60px; }

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    font-family: serif;
}

.step h3 {
    color: white;
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    border-bottom: var(--border);
    margin-bottom: 0;
    padding: 25px 0;
    background: transparent;
    border-radius: 0;
}

.faq-item:first-child {
    border-top: var(--border);
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    color: white;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    color: var(--text-muted);
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    margin-top: 15px;
    max-height: 500px;
}

/* Form */
.form-wrapper {
    background: #1A1A1F;
    padding: 60px;
    border-radius: var(--border-radius-md);
    border: var(--border);
    max-width: 650px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: var(--border);
    border-radius: var(--border-radius-sm);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input-wrapper {
    display: flex;
}

.country-code-select {
    width: 120px !important;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm) !important;
    border-right: none !important;
}

.phone-number-input {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0 !important;
}

.application-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
    opacity: 0.6;
}

.success-message {
    text-align: center;
    padding: 40px;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: black;
    padding: 60px 0;
    border-top: var(--border);
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

/* Utilities */
.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: black;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: white;
}

.support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.support-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .format-content {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: var(--border);
        padding: 15px 20px;
        background: rgba(11, 11, 15, 0.95);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: black;
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.3s;
        border-top: var(--border);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        display: none; /* Hide in header, maybe show in menu if needed */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-wrapper {
        padding: 30px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-code-select, .phone-number-input {
        width: 100% !important;
        border-radius: var(--border-radius-sm) !important;
        border: var(--border) !important;
    }
}
