/* CleanQuote Pro — pricing.css
   No inline styles in HTML = Brave-compatible (no unsafe-inline needed)
*/

:root {
  --primary:      #1565C0;
  --primary-dark: #0D47A1;
  --primary-light:#E3F2FD;
  --accent:       #00BCD4;
  --text:         #1A237E;
  --text-light:   #546E7A;
  --bg:           #F8FAFF;
  --white:        #ffffff;
  --border:       #BBDEFB;
  --success:      #2E7D32;
  --danger:       #ef4444;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(21,101,192,0.10);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(21,101,192,0.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.3rem; font-weight: 800; color: var(--primary);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--accent); }
.nav-links { display: none; gap: 0.5rem; align-items: center; }
.nav-links a {
  padding: 0.4rem 0.9rem; border-radius: 8px;
  text-decoration: none; color: var(--text-light);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--primary-light); color: var(--primary); }
.btn-nav {
  background: var(--primary); color: var(--white) !important;
  padding: 0.45rem 1.1rem !important; border-radius: 8px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; }

/* ── PAGE BODY ── */
.page-body { min-height: 60vh; }

/* ── SECTION ── */
.section { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1rem 2rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.section-title p  { color: var(--text-light); font-size: 1.05rem; }

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ── PRICING CARD ── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(21,101,192,0.15); }
.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2.5px;
  box-shadow: 0 8px 32px rgba(21,101,192,0.18);
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  padding: 3px 14px; border-radius: 20px;
  white-space: nowrap;
}
.price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-desc { font-size: 0.88rem; color: var(--text-light); }

/* ── FEATURES LIST ── */
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.pricing-features li { font-size: 0.92rem; display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text); }
.check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.cross { color: var(--danger);  font-weight: 700; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-plan {
  display: block; text-align: center;
  padding: 0.75rem 1.5rem; border-radius: 8px;
  font-weight: 700; font-size: 0.97rem;
  text-decoration: none; cursor: pointer;
  background: var(--primary); color: var(--white);
  border: 2px solid var(--primary);
  transition: all 0.2s; margin-top: 0.5rem;
}
.btn-plan:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-plan.outline { background: transparent; color: var(--primary); }
.btn-plan.outline:hover { background: var(--primary-light); }

/* ── FAQ SECTION ── */
.faq-section { max-width: 650px; margin: 4rem auto 0; }
.faq-title {
  font-size: 1.5rem; font-weight: 800;
  text-align: center; margin-bottom: 2rem;
  color: var(--primary);
}
.faq-list  { display: flex; flex-direction: column; gap: 1rem; }
.faq-item  {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border);
}
.faq-q { color: var(--primary); display: block; margin-bottom: 0.4rem; }
.faq-a { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* ── FOOTER ── */
footer {
  background: #1A237E;
  color: #fff;
  padding: 3rem 1.5rem 0;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding-bottom: 2rem;
}
.footer-inner h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.footer-inner a  { display: block; color: #90A4AE; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-inner a:hover { color: #fff; }
.footer-desc  { font-size: .88rem; line-height: 1.6; margin-bottom: .75rem; color: #B0BEC5; }
.footer-email { font-size: .83rem; color: #90A4AE; margin-bottom: .35rem; }
.footer-email a { display: inline; color: #90A4AE; }
.footer-brand { font-size: .78rem; color: #546E7A; margin-top: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; flex-direction: column; text-align: center; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.82rem; color: #78909C;
  max-width: 1100px; margin: 0 auto;
}



/* ── RESPONSIVE (DESKTOP) ── */
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; text-align: left; justify-content: space-between; }
  .section { padding: 4rem 1.5rem 3rem; }
}
