/* Welcome Page */

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-2xl);
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(193, 127, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px var(--space-md);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--brand-purple-light);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    animation: badgeFade 0.8s ease both;
}
.hero-badge i { font-size: 0.75rem; }

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: subtitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

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

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    animation: ctaReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    animation: statsReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes statsReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stat-item { text-align: center; }
.stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-primary);
    line-height: 1.2;
}
.stat-item .stat-label {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: var(--space-xs);
}

/* Divider between stats */
.stat-item + .stat-item {
    position: relative;
    padding-left: var(--space-2xl);
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-primary);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-primary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.service-card:hover {
    border-color: rgba(193, 127, 78, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(193, 127, 78, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}
.service-card:hover .service-icon { transform: scale(1.08); }

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.service-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: gap var(--transition-fast);
}
.service-link:hover {
    gap: var(--space-sm);
}

/* ============================================
   MODELS
   ============================================ */

.models {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-secondary);
    position: relative;
}

/* Subtle divider line between sections */
.models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-secondary), transparent);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.model-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.model-card:hover {
    border-color: rgba(193, 127, 78, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.model-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}
.model-card:hover .model-logo { transform: scale(1.1) rotate(-3deg); }

.model-name { font-weight: 600; margin-bottom: var(--space-xs); font-size: 0.9375rem; }
.model-desc { font-size: 0.8125rem; color: var(--text-tertiary); }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-2xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accents */
.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(193, 127, 78, 0.15);
    pointer-events: none;
}
.cta-box::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: var(--radius-xl) 0 0 0;
}
.cta-box::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--radius-xl) 0;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}
.cta-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero { padding-top: 100px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-direction: column; gap: var(--space-lg); }
    .stat-item + .stat-item { padding-left: 0; }
    .stat-item + .stat-item::before { display: none; }
    .services { padding: var(--space-2xl) var(--space-md); }
    .models { padding: var(--space-2xl) var(--space-md); }
    .cta-section { padding: var(--space-2xl) var(--space-md); }
    .cta-box { padding: var(--space-xl); }
}
