@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
    /* "Approachable Next-Gen" Palette */
    --bg-dark: #0f172a;         /* Deep Navy Base */
    --purple-muted: #4c1d95;    /* Depth/Accents */
    --gold-warm: #f59e0b;       /* Metallic Action */
    --gold-hover: #d97706;
    
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --radius-bento: 24px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header - Dark Theme for Logo Contrast */
header {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

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

.logo-header { height: 48px; width: auto; display: block; filter: brightness(0) invert(1); }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

nav ul { display: flex; list-style: none; gap: 32px; align-items: center; }
nav a { 
    text-decoration: none; color: rgba(255,255,255,0.8); 
    font-weight: 600; font-size: 15px; 
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}
nav a:hover, nav a.active { color: white; }
nav a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold);
}

.cta-header {
    background: var(--gold);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

/* Forms */
.form-group { margin-bottom: 24px; }
.form-group label { 
    display: block; margin-bottom: 8px; font-weight: 600; 
    font-size: 14px; color: var(--text-main); 
}

.form-control {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1); background: #fcfcfd;
    font-family: inherit; font-size: 16px; transition: var(--transition);
}

.form-control:focus {
    outline: none; border-color: var(--purple-mid);
    box-shadow: 0 0 0 4px rgba(76, 29, 149, 0.1);
    background: white;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.bento-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-bento);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.bento-col-2 { grid-column: span 2; }
.bento-row-2 { grid-row: span 2; }

/* Glassmorphism Accents */
.glass-pill {
    background: rgba(76, 29, 149, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
}

/* Trust Bar */
.trust-bar {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
    text-align: center;
}

.trust-bar p {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-warm);
}

/* Updated Hero for Dark Mode */
.hero {
    padding: 220px 0 140px;
    background: var(--bg-dark);
    text-align: left;
}

.hero::before {
    content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(76, 29, 149, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 1;
}

.btn-primary { 
    background: var(--gold-warm); 
    color: #000; 
    padding: 18px 40px;
    font-size: 16px;
}
.btn-primary:hover { 
    background: var(--gold-hover); 
}

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-col-2 { grid-column: span 1; }
    .hero { text-align: center; }
}

/* Footer */
footer { background: #020617; color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-col h4 { margin-bottom: 24px; color: var(--gold-vibrant); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }
