/* =====================================================
   BC&C Coverage — Shared Stylesheet
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --green:       #15803d;
  --green-dark:  #14532d;
  --green-mid:   #166534;
  --green-light: #22c55e;
  --green-pale:  #dcfce7;
  --green-bg:    #f0fdf4;
  --gold:        #d97706;
  --gold-light:  #fef3c7;
  --white:       #ffffff;
  --off:         #f8fffe;
  --text:        #111827;
  --body:        #374151;
  --muted:       #6b7280;
  --border:      #d1fae5;
  --border2:     #e5e7eb;
  --shadow:      0 4px 24px rgba(21,128,61,.10);
  --shadow-lg:   0 12px 40px rgba(21,128,61,.15);
  --ff:          'Plus Jakarta Sans', system-ui, sans-serif;
  --fb:          'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--ff); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--body); font-size: .97rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: 6px;
  font-family: var(--ff); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white  { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-pale); }
.btn-white-outline { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-gold   { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #b45309; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff); font-weight: 800; font-size: 1.15rem;
  color: var(--green); flex-shrink: 0;
}
.logo-mark { width: 34px; height: auto; }
.logo span { color: var(--green-dark); }
.logo em { color: var(--green-dark); font-style: normal; }

.site-nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.site-nav a {
  padding: .5rem .75rem; border-radius: 6px;
  font-family: var(--ff); font-weight: 600; font-size: .87rem; color: var(--body);
  transition: background .15s, color .15s;
}
.site-nav a:hover, .site-nav a.active { background: var(--green-bg); color: var(--green); }
.nav-cta { margin-left: .75rem; }

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; color: var(--green-dark);
  margin-left: auto;
}
.mobile-toggle svg { width: 24px; height: 24px; }

/* ══════════════════════════════════════
   PAGE HERO (interior pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff; padding: 5rem 0 4rem;
}
.page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 580px; font-size: 1.05rem; }

/* ══════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════ */
.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--green); background: var(--green-pale);
  padding: .3rem .85rem; border-radius: 20px; margin-bottom: .75rem;
}
.section-title { margin-bottom: .75rem; }
.section-sub { color: var(--muted); max-width: 560px; font-size: .97rem; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ══════════════════════════════════════
   ICON BOXES
══════════════════════════════════════ */
.icon-box {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale); color: var(--green); flex-shrink: 0;
  font-size: 1.4rem; margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   GRIDS
══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; padding: 5rem 0; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--green-dark); color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo em { color: #fff; }
.footer-brand .logo span { color: var(--green-light); }
.footer-brand .logo-mark { background: #fff; border-radius: 8px; padding: 3px; }
.footer-brand p { font-size: .87rem; line-height: 1.7; color: rgba(255,255,255,.75); }
.footer-col h4 {
  font-family: var(--ff); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.65); font-size: .88rem;
  margin-bottom: .55rem; transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-size: .8rem;
}
.footer-bottom .social { display: flex; gap: .75rem; }
.footer-bottom .social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: background .15s;
}
.footer-bottom .social a:hover { background: var(--green); color: #fff; }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--ff); font-weight: 600;
  font-size: .85rem; color: var(--green-dark); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border2); border-radius: 8px;
  font-family: var(--fb); font-size: .95rem; color: var(--text);
  background: #fff; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,128,61,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: .75rem; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; text-align: left;
  font-family: var(--ff); font-weight: 700; font-size: .95rem;
  color: var(--green-dark); transition: background .15s;
}
.faq-q:hover { background: var(--green-bg); }
.faq-q .faq-icon { font-size: 1.1rem; color: var(--green); flex-shrink: 0; transition: transform .2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 1.25rem;
}
.faq-a p { color: var(--muted); font-size: .92rem; padding-bottom: 1.1rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* ══════════════════════════════════════
   STAT CHIPS
══════════════════════════════════════ */
.stat-row {
  display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center;
}
.stat-item .stat-num {
  font-family: var(--ff); font-weight: 800; font-size: 2rem;
  color: var(--green); line-height: 1;
}
.stat-item .stat-label { font-size: .8rem; color: var(--muted); margin-top: .2rem; }

/* ══════════════════════════════════════
   TESTIMONIAL CARD
══════════════════════════════════════ */
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
}
.testimonial-card .stars { color: #f59e0b; font-size: .9rem; margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; color: var(--body); font-size: .93rem; margin-bottom: 1.25rem; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff); font-weight: 800; font-size: .95rem;
}
.testimonial-card .author-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-card .author-title { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-green-bg { background: var(--green-bg); }
.section-white { background: #fff; }
.section-green { background: var(--green); }

/* ══════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════ */
.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; gap: .25rem;
}
.mobile-menu a {
  padding: .7rem .75rem; border-radius: 6px;
  font-family: var(--ff); font-weight: 600; font-size: .95rem;
  color: var(--body);
}
.mobile-menu a:hover { background: var(--green-bg); color: var(--green); }
.mobile-menu .btn { margin-top: .5rem; width: 100%; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════
   PRODUCT PLAN CARD
══════════════════════════════════════ */
.plan-card {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 2rem; background: #fff; transition: all .2s;
}
.plan-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.plan-card.featured {
  border-color: var(--green); background: var(--green-bg);
  position: relative;
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: .7rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 20px;
}
.plan-card h3 { color: var(--green-dark); margin-bottom: .4rem; }
.plan-card .plan-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-card ul { margin-bottom: 1.5rem; }
.plan-card ul li {
  font-size: .88rem; color: var(--body); padding: .3rem 0;
  display: flex; align-items: flex-start; gap: .6rem;
}
.plan-card ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .site-nav, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .stat-row { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
