/* --- VARIABLES & RESET --- */
:root {
    --primary: #0f172a; /* Deep Navy - Authority */
    --accent: #2563eb;  /* Bright Blue - Trust */
    --gold: #d97706;    /* Dark Gold - Premium */
    --light: #f8fafc;   /* Off White - Clean background */
    --text: #334155;    /* Slate Grey - Readable text */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--light); }
img { max-width: 100%; }
a { text-decoration: none; }

/* --- LAYOUT UTILS --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }

/* --- NAVBAR --- */
.navbar { background: white; padding: 15px 0; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.25rem; color: var(--primary); letter-spacing: -0.5px; }
.logo .highlight { color: var(--accent); }
.nav-links a { color: var(--text); margin-left: 20px; font-weight: 600; font-size: 0.9rem; }
.btn-nav { background: var(--primary); color: white !important; padding: 8px 16px; border-radius: 6px; transition: 0.2s; }
.btn-nav:hover { background: var(--accent); }

/* --- HERO SECTION --- */
.hero { padding: 80px 0; background: white; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.badge { display: inline-block; background: #e0f2fe; color: #0369a1; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 { font-size: 3rem; line-height: 1.1; color: var(--primary); margin-bottom: 20px; letter-spacing: -1px; }
.lead { font-size: 1.15rem; color: #64748b; margin-bottom: 30px; }
.btn-primary { display: inline-block; background: var(--gold); color: white; padding: 16px 32px; border-radius: 8px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); transition: 0.2s; }
.btn-primary:hover { transform: translateY(-2px); background: #b45309; }
.sub-cta { display: block; margin-top: 10px; font-size: 0.85rem; color: #94a3b8; }

/* Visual Hero Card */
.hero-card { background: var(--primary); padding: 30px; border-radius: 12px; color: white; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2); transform: rotate(2deg); }
.status-item { background: rgba(255,255,255,0.1); padding: 12px; margin-bottom: 10px; border-radius: 6px; font-size: 0.9rem; }
.caption { text-align: center; margin-top: 15px; font-size: 0.8rem; opacity: 0.7; }

/* --- PAIN POINTS --- */
.pain-section { padding: 80px 0; text-align: center; background: #f1f5f9; }
.pain-section h2 { margin-bottom: 50px; color: var(--primary); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: left; transition: 0.2s; }
.card:hover { border-color: var(--accent); transform: translateY(-5px); }
.icon { font-size: 2rem; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; color: var(--primary); }

/* --- FEATURES --- */
.features-section { padding: 80px 0; background: white; }
.grid-2-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }
.grid-2-feature.reverse { direction: rtl; } /* Swaps image/text side */
.grid-2-feature.reverse .feature-text { direction: ltr; } /* Keeps text left-aligned */
.feature-visual { height: 300px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.bg-blue { background: #eff6ff; color: var(--accent); }
.bg-gold { background: #fffbeb; color: var(--gold); }
.check-list { margin-top: 20px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: bold; position: absolute; left: 0; }

/* --- LOCAL TRUST --- */
.local-trust { background: var(--primary); color: white; text-align: center; padding: 60px 0; }
.local-trust h3 { margin-bottom: 15px; }
.local-trust p { font-size: 1.1rem; font-style: italic; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.stars { color: var(--gold); margin-top: 15px; font-size: 1.2rem; }

/* --- CONTACT --- */
.contact-section { padding: 80px 0; background: #cbd5e1; }
.form-box { background: white; max-width: 500px; margin: 0 auto; padding: 40px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.form-box h2 { text-align: center; color: var(--primary); margin-bottom: 10px; }
.form-box p { text-align: center; color: #64748b; margin-bottom: 30px; font-size: 0.9rem; }
.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 1rem; }
.btn-submit { width: 100%; background: var(--accent); color: white; padding: 15px; border: none; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.2s; }
.btn-submit:hover { background: #1d4ed8; }
.secure-note { margin-top: 15px !important; font-size: 0.8rem !important; }

/* --- FOOTER --- */
footer { background: #1e293b; color: #94a3b8; padding: 40px 0; font-size: 0.9rem; border-top: 1px solid #334155; }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand h4 { color: white; margin-bottom: 10px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-grid, .grid-2-feature { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-card { transform: rotate(0deg); margin-top: 20px; }
    .grid-2-feature.reverse { direction: ltr; } /* Stack normally on mobile */
    .footer-flex { flex-direction: column; text-align: center; }
}