/* LeftLot Landing Pages — shared stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A3352;
  --gold: #C9A84C;
  --text: #1a1a2e;
  --muted: #5a6a7a;
  --bg: #f8f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 10px;
}

body { font-family: 'Inter', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }

/* NAV */
.ll-nav { background: var(--navy); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.ll-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ll-nav-logo img { height: 32px; }
.ll-nav-logo span { color: #fff; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.ll-nav-cta { background: var(--gold); color: var(--navy); font-weight: 700; padding: 8px 20px; border-radius: 6px; text-decoration: none; font-size: 14px; white-space: nowrap; }
.ll-nav-cta:hover { opacity: .88; }

/* BREADCRUMB */
.ll-breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 24px; font-size: 13px; color: var(--muted); }
.ll-breadcrumb a { color: var(--navy); text-decoration: none; }
.ll-breadcrumb a:hover { text-decoration: underline; }
.ll-breadcrumb span { margin: 0 6px; }

/* HERO */
.ll-hero { background: var(--navy); color: #fff; padding: 56px 24px 48px; text-align: center; }
.ll-hero-badge { display: inline-block; background: rgba(201,168,76,.18); color: var(--gold); border: 1px solid rgba(201,168,76,.4); border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.ll-hero h1 { font-size: clamp(26px, 5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.ll-hero p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 28px; }
.ll-hero-cta { display: inline-block; background: var(--gold); color: var(--navy); font-weight: 800; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-size: 15px; }
.ll-hero-cta:hover { opacity: .88; }

/* CONTENT WRAPPER */
.ll-content { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.ll-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.ll-content h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.ll-content p { color: var(--muted); margin-bottom: 14px; }
.ll-content ul { padding-left: 20px; color: var(--muted); margin-bottom: 14px; }
.ll-content ul li { margin-bottom: 6px; }

/* STATS STRIP */
.ll-stats { display: flex; flex-wrap: wrap; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 32px 0; }
.ll-stat { flex: 1; min-width: 140px; background: var(--white); padding: 24px 20px; text-align: center; }
.ll-stat-num { font-size: 32px; font-weight: 800; color: var(--navy); }
.ll-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .4px; }

/* FEATURES GRID */
.ll-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.ll-feature { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.ll-feature-icon { font-size: 24px; margin-bottom: 8px; }
.ll-feature h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ll-feature p { font-size: 14px; color: var(--muted); margin: 0; }

/* RELATED LINKS */
.ll-related { background: var(--bg); border-top: 1px solid var(--border); padding: 40px 24px; }
.ll-related-inner { max-width: 820px; margin: 0 auto; }
.ll-related h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.ll-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.ll-related-links a { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 8px 16px; text-decoration: none; color: var(--navy); font-size: 14px; font-weight: 500; }
.ll-related-links a:hover { border-color: var(--navy); }

/* CTA BAND */
.ll-cta-band { background: var(--navy); color: #fff; text-align: center; padding: 48px 24px; }
.ll-cta-band h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.ll-cta-band p { color: rgba(255,255,255,.78); margin-bottom: 24px; font-size: 16px; }
.ll-cta-band a { display: inline-block; background: var(--gold); color: var(--navy); font-weight: 800; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-size: 15px; }
.ll-cta-band a:hover { opacity: .88; }

/* FOOTER */
.ll-footer { background: #0f1f30; color: rgba(255,255,255,.55); text-align: center; padding: 20px 24px; font-size: 13px; }
.ll-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.ll-footer a:hover { color: #fff; }

/* FAQ */
.ll-faq { margin: 24px 0; }
.ll-faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.ll-faq-q { font-weight: 600; font-size: 15px; color: var(--navy); padding: 16px 20px; cursor: pointer; }
.ll-faq-a { font-size: 14px; color: var(--muted); padding: 0 20px 16px; }

@media (max-width: 600px) {
  .ll-hero { padding: 40px 16px 36px; }
  .ll-content { padding: 32px 16px; }
  .ll-stat-num { font-size: 26px; }
}
