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

:root {
    --primary: #0a0f1d;
    --secondary: #1a2236;
    --accent: #d4af37; /* Premium Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Header & Nav */
header {
    padding: 24px 0;
    background: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

/* Hero Section - Matching the Mockup */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px var(--accent-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px var(--accent-glow);
    background: #eec14d;
}

/* Features / Services */
.features {
    padding: 100px 0;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 32px;
    transition: 0.4s;
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.feat-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 32px;
    display: block;
}

.feat-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feat-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* Trust Section (Stars) */
.trust-section {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
}

.stars {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.trust-section h2 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.trust-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Utility Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeInUp 1s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.75rem; }
    .hero { padding: 100px 0 60px; }
    .feat-card { padding: 32px; }
}
