/* --- VARIABLES --- */
:root {
    --primary: #0f172a; /* Deep Navy - Authority */
    --primary-light: #334155;
    --accent: #d97706; /* Muted Gold - Premium */
    --accent-glow: rgba(217, 119, 6, 0.15);
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #334155;
    --border-radius: 16px;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6; font-size: 17px;
}

/* --- TYPO --- */
h1, h2, h3 { color: var(--primary); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2.2rem; margin-bottom: 15px; }
p { margin-bottom: 20px; opacity: 0.9; }
.highlight { color: var(--accent); position: relative; display: inline-block; }
.highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: var(--accent-glow); z-index: -1; transform: skewX(-10deg); }

/* --- HEADER --- */
header {
    background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner {
    max-width: 1100px; margin: 0 auto; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.2rem; font-weight: 800; color: var(--primary); text-decoration: none; }
.expert-badge { background: var(--primary); color: var(--white); padding: 5px 10px; border-radius: 6px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-left: 10px; }

/* --- HERO --- */
.hero { padding: 140px 20px 80px; text-align: center; max-width: 900px; margin: 0 auto; }
.profile-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); box-shadow: var(--shadow); margin-bottom: 20px; }
.trust-bar { display: flex; justify-content: center; gap: 20px; margin-top: 30px; font-size: 0.9rem; color: #64748b; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; }

/* --- CARDS & GRID --- */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.expert-card {
    background: var(--white); padding: 30px; border-radius: var(--border-radius);
    box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s;
}
.expert-card:hover { transform: translateY(-5px); }
.card-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.warning-box { background: #fff1f2; border-left: 4px solid #e11d48; padding: 20px; border-radius: 8px; margin: 20px 0; font-size: 0.95rem; }

/* --- COMPARISON TABLE (Simplified) --- */
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); margin: 40px 0; }
.comparison-table th, .comparison-table td { padding: 15px; text-align: left; border-bottom: 1px solid #f1f5f9; }
.comparison-table th { background: #f8fafc; font-weight: 600; color: var(--primary); }
.comparison-table td:first-child { font-weight: 600; }
.check { color: #10b981; font-weight: bold; }
.cross { color: #ef4444; font-weight: bold; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: var(--white); padding: 18px 32px;
    border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4); transition: all 0.3s; width: 100%;
}
.btn:hover { transform: translateY(-2px); background: #b45309; }
.btn-small { padding: 12px 24px; font-size: 1rem; width: auto; }
.btn-pulse { animation: pulse 2s infinite; }

/* --- FORM (Lead Gen) --- */
.lead-form { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow); max-width: 600px; margin: 0 auto; }
.input-group { margin-bottom: 20px; text-align: left; }
.input-label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
input, select {
    width: 100%; padding: 16px; border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 1rem; transition: border 0.3s;
}
input:focus, select:focus { border-color: var(--primary); outline: none; }
.status-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; background: #ecfdf5; padding: 15px; border-radius: 8px; color: #047857; font-size: 0.9rem; font-weight: 500; }
.status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(217, 119, 6, 0); } 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); } }

/* Desktop */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 3.5rem; }
    .btn { width: auto; min-width: 300px; }
}