/*
Theme Name: AIMOUR
Theme URI: https://aimour.ai
Author: AIMOUR
Author URI: https://aimour.ai
Description: Premium AI Girlfriend Experience - Realistic AI Companionship Platform
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aimour
Tags: dark, luxury, ai, companion
*/

/* ============================================
   AIMOUR Design System — "Midnight Luxury"
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8960E;
    --gold-rgb: 212, 175, 55;
    --black: #0A0A0A;
    --black-pure: #000000;
    --charcoal: #1A1A1A;
    --charcoal-light: #242424;
    --charcoal-lighter: #2E2E2E;
    --white: #F5F5F5;
    --white-dim: #CCCCCC;
    --gray: #888888;
    --gray-dark: #555555;
    --crimson: #B22222;
    --crimson-dark: #8B0000;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: all 0.2s ease;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-gold: 0 0 30px rgba(var(--gold-rgb), 0.25);
    --shadow-gold-intense: 0 0 50px rgba(var(--gold-rgb), 0.4);
    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 25px 60px rgba(0, 0, 0, 0.8);

    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 70%, var(--black) 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.95) 100%);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --container: 1280px;
    --container-wide: 1440px;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: var(--gold); transition: var(--transition-fast); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }

/* ============ UTILITY ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-dim { color: var(--white-dim); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.section-padding-lg { padding: 140px 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.8;
}
.section-subtitle.centered { margin: 20px auto 0; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-intense);
    color: var(--black);
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}
.btn-gold:hover::after {
    transform: rotate(45deg) translateX(100%);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-crimson {
    background: var(--crimson);
    color: var(--white);
    border: none;
}
.btn-crimson:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-lg { padding: 18px 48px; font-size: 1rem; }

/* ============ HEADER / NAV ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}
.site-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.site-logo span { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: var(--transition-fast);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta .btn { padding: 10px 28px; }

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
}
.mobile-menu a:hover { color: var(--gold); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--crimson);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Hero model strip */
.hero-models-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
}
.hero-model-thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    margin-left: -12px;
    transition: var(--transition-fast);
    cursor: pointer;
}
.hero-model-thumb:first-child { margin-left: 0; }
.hero-model-thumb:hover { transform: scale(1.15); z-index: 2; }
.hero-model-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-model-more {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(var(--gold-rgb), 0.4);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.1);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============ MODEL CARDS ============ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.model-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--charcoal);
    transition: var(--transition);
    cursor: pointer;
    group: true;
}
.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}
.model-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.model-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.model-card:hover .model-card-image img {
    transform: scale(1.08);
}
.model-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0.7;
    transition: var(--transition);
}
.model-card:hover .model-card-overlay { opacity: 0.9; }
.model-card-status {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}
.model-card-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse-dot 2s infinite;
}
.model-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}
.model-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.model-card-traits {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
}
.model-card-actions {
    display: flex;
    gap: 10px;
}
.model-card-actions .btn { flex: 1; padding: 10px 16px; font-size: 0.75rem; }

/* ============ FEATURES SECTION ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.feature-card {
    padding: 40px 32px;
    background: var(--charcoal);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.15); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.08);
    margin-bottom: 24px;
    font-size: 1.5rem;
}
.feature-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ SPOTLIGHT ============ */
.spotlight-section { background: var(--charcoal); }
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.spotlight-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.spotlight-content { padding: 20px 0; }
.spotlight-content h2 { margin-bottom: 20px; }
.spotlight-content p { color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.spotlight-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.spotlight-trait {
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step;
}
.step-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--charcoal);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    counter-increment: step;
}
.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    margin-bottom: 20px;
    line-height: 1;
}
.step-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============ CHAT PREVIEW ============ */
.chat-preview-section {
    background: var(--gradient-dark);
}
.chat-mockup {
    max-width: 500px;
    margin: 0 auto;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.chat-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--charcoal-light);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.chat-name { font-weight: 600; font-size: 0.95rem; }
.chat-online {
    font-size: 0.75rem;
    color: #22C55E;
}
.chat-messages { padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-msg.received {
    background: var(--charcoal-lighter);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg.sent {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 12px 16px;
    align-self: flex-start;
}
.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.testimonial-card {
    padding: 36px;
    background: var(--charcoal);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.04);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============ STATS ============ */
.stats-section {
    background: var(--charcoal);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}
.cta-section p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ SINGLE MODEL PAGE ============ */
.single-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}
.single-hero-bg {
    position: absolute;
    inset: 0;
}
.single-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--black) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%);
}
.single-hero-content {
    position: relative;
    z-index: 2;
}
.single-hero-content h1 { margin-bottom: 8px; }
.single-hero-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
}

.single-model-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    padding: 80px 0;
}
.model-main-content p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}
.model-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.sidebar-card {
    background: var(--charcoal);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 24px;
}
.sidebar-card h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--gray); }
.stat-value { color: var(--white); font-weight: 500; }

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    transform: translateY(100%);
    transition: var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============ ARCHIVE MODELS ============ */
.archive-header {
    padding: 160px 0 60px;
    text-align: center;
    background: var(--gradient-dark);
}
.archive-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
    transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}
.archive-grid-section { padding: 60px 0 120px; }

/* ============ LEGAL PAGES ============ */
.legal-page {
    padding: 160px 0 100px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}
.legal-content h2 {
    font-size: 1.3rem;
    margin: 36px 0 16px;
    color: var(--gold);
}
.legal-content p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
}
.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}
.legal-content ul li {
    color: var(--gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}
.legal-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============ ABOUT PAGE ============ */
.about-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-dark);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    padding: 80px 0;
}

/* ============ CONTACT PAGE ============ */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white-dim);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 300px; }
.footer-col h2 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col a {
    display: block;
    padding: 6px 0;
    color: var(--gray);
    font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-dark);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-dark); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Shimmer effect for gold elements */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .spotlight-grid { grid-template-columns: 1fr; gap: 40px; }
    .single-model-layout { grid-template-columns: 1fr; }
    .model-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .models-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section-padding { padding: 60px 0; }
    .section-padding-lg { padding: 80px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .single-hero { min-height: 60vh; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .model-card-actions { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .archive-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}
