/* Zorzee — Main Styles */
:root {
  --primary: #1a56db;
  --primary-dark: #1e429f;
  --accent: #ff6b35;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; display: flex; gap: 2rem; align-items: center; }
.logo { font-weight: 700; font-size: 1.5rem; color: var(--text); }
main { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 1.4rem; font-weight: 600; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin: 1rem 0 0.5rem; }
p { margin-bottom: 1rem; }
ul { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
.investment-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; }
.inv-item { display: flex; flex-direction: column; gap: 0.25rem; }
.inv-item strong { font-size: 0.8rem; text-transform: uppercase; color: var(--muted); letter-spacing: 0.05em; }
.inv-item span { font-size: 1.2rem; font-weight: 700; }
.rank-badge, .category-badge, .founded-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin-right: 0.5rem; margin-bottom: 0.5rem; }
.rank-badge { background: #fef3c7; color: #92400e; }
.category-badge { background: #dbeafe; color: #1e40af; }
.founded-badge { background: #d1fae5; color: #065f46; }
.cta-block { background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%); color: white; border-radius: 12px; padding: 2rem; margin: 2rem 0; text-align: center; }
.cta-block h3 { color: white; }
.cta-block p { color: rgba(255,255,255,0.9); }
.btn-primary { display: inline-block; background: var(--accent); color: white; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 700; margin-top: 1rem; }
.newsletter-embed { background: var(--white); border: 2px solid var(--primary); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; }
.franchise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.franchise-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; display: flex; gap: 1rem; }
.franchise-card .rank { font-weight: 700; color: var(--muted); font-size: 0.9rem; min-width: 2rem; }
.franchise-card h3 { font-size: 1rem; margin: 0 0 0.25rem; }
.category { font-size: 0.75rem; background: #dbeafe; color: #1e40af; padding: 0.1rem 0.4rem; border-radius: 3px; }
.investment, .fee { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.learn-more { display: inline-block; margin-top: 0.5rem; font-size: 0.85rem; font-weight: 600; }
.filter-bar { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin: 1rem 0; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.filter-bar a { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 0.25rem 0.6rem; font-size: 0.85rem; }
.filter-bar a:hover { background: var(--primary); color: white; }
.showing-count { font-size: 0.9rem; color: var(--muted); margin: 1rem 0; }
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 2rem; text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 4rem; }
.intro { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.5rem; max-width: 800px; }

/* Lead form — reCAPTCHA v3 */
.zorzee-lead-form input[type="email"] { transition: border-color 0.2s; }
.zorzee-lead-form input[type="email"]:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.15); }
.zorzee-lead-form button[type="submit"]:hover:not(:disabled) { background: #e55c28; }
.zorzee-lead-form button[type="submit"]:disabled { opacity: 0.7; cursor: not-allowed; }
.zorzee-form-msg.success { color: #065f46; }
.zorzee-form-msg.error   { color: #b91c1c; }
