/* =========================================================
   BC TEAM — GLOBAL STYLESHEET v2.0
   Brand: #EC5434 #FCBC3C #05A4F4 #44BC34 #000
   Fonts: Nunito Sans (headings) + Lato (body)
   ========================================================= */

:root {
  --red:    #EC5434;
  --yellow: #FCBC3C;
  --blue:   #05A4F4;
  --green:  #44BC34;
  --black:  #111111;
  --white:  #ffffff;
  --gray-light: #f6f6f6;
  --gray-border: #e8e8e8;
  --gray-mid:   #666;
  --gray-dark:  #222;
  --max-w: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Lato', sans-serif; color: var(--gray-dark); background: #fff; line-height: 1.65; }
h1,h2,h3,h4,h5 { font-family: 'Nunito Sans', sans-serif; font-weight: 800; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 15px;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
  text-align: center; white-space: nowrap;
}
.btn-primary  { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-primary:hover  { background: #d44426; border-color: #d44426; color: #fff; }
.btn-outline  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover  { background: rgba(255,255,255,0.15); }
.btn-dark     { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover     { background: #333; border-color: #333; }
.btn-ghost    { background: transparent; color: var(--gray-dark); border-color: var(--gray-border); }
.btn-ghost:hover    { background: var(--gray-light); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ── ALERT BANNER ────────────────────────────────────── */
.bc-alert-banner {
  background: var(--black); color: #fff; padding: 12px 24px;
  text-align: center; font-family: 'Nunito Sans', sans-serif; font-size: 14px;
}
.bc-alert-banner-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.bc-alert-banner strong { color: var(--yellow); }
.alert-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; }
.alert-btn { padding: 7px 18px; border-radius: 4px; font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.alert-btn-primary { background: var(--red); color: #fff; }
.alert-btn-primary:hover { background: #d44426; }
.alert-btn-outline { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35); }
.alert-btn-outline:hover { background: rgba(255,255,255,0.1); }
.bc-alert-text { color: rgba(255,255,255,0.8); }

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #eee;
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 21px; color: var(--black); }
.navbar-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 12px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--gray-dark); border-radius: 4px; transition: color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--red); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 210px; background: #fff; border: 1px solid #eee;
  border-radius: 8px; box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 8px 0; z-index: 200;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 18px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 13px; color: var(--gray-dark); }
.dropdown a:hover { background: var(--gray-light); color: var(--red); }
.navbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.navbar-phone { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--gray-dark); white-space: nowrap; }
.navbar-phone:hover { color: var(--red); }

/* Mobile menu */
.mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--black); }
.mobile-nav {
  display: none; background: #fff; border-top: 1px solid #eee;
  padding: 16px 24px 24px; flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 12px 0; font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--gray-dark); border-bottom: 1px solid #f0f0f0; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn { margin-top: 16px; text-align: center; border-bottom: none; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d0d1a 0%, #16213e 55%, #0f3460 100%);
  color: #fff; padding: 96px 24px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(5,164,244,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5,164,244,0.15); border: 1px solid rgba(5,164,244,0.35);
  color: var(--blue); font-family: 'Nunito Sans', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; max-width: 800px; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 span { color: var(--red); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-bullets { margin-bottom: 44px; display: flex; flex-direction: column; gap: 11px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.85); }
.hero-bullets li::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page-level hero (inner pages) */
.page-hero {
  color: #fff; padding: 72px 24px 56px; text-align: center;
}
.hero-eyebrow-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 54px); margin-bottom: 16px; letter-spacing: -0.3px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }
.hero-eyebrow.eyebrow-yellow { background: rgba(252,188,60,0.2); border-color: rgba(252,188,60,0.4); color: var(--yellow); }
.hero-eyebrow.eyebrow-green  { background: rgba(68,188,52,0.2); border-color: rgba(68,188,52,0.4); color: #6ee05b; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar { background: var(--black); padding: 52px 24px; }
.stats-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; }
.stat-number { font-family: 'Nunito Sans', sans-serif; font-size: 52px; font-weight: 900; line-height: 1; color: var(--yellow); }
.stat-suffix { font-size: 28px; color: var(--red); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: 84px 24px; }
.section-label { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.3px; }
.section-sub { font-size: 17px; color: var(--gray-mid); max-width: 620px; margin-bottom: 52px; line-height: 1.7; }
.bg-light { background: var(--gray-light); }
.bg-dark  { background: var(--black); color: #fff; }
.bg-dark .section-label { color: rgba(255,255,255,0.4); }
.bg-dark .section-title { color: #fff; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES GRID ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px; }
.service-card {
  background: #fff; border-radius: 10px; padding: 36px 28px;
  border-top: 4px solid transparent; transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column; border: 1px solid var(--gray-border);
  border-top-width: 4px;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.card-red    { border-top-color: var(--red); }
.card-blue   { border-top-color: var(--blue); }
.card-green  { border-top-color: var(--green); }
.card-yellow { border-top-color: var(--yellow); }
.service-icon { font-size: 30px; margin-bottom: 18px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--gray-mid); flex: 1; margin-bottom: 24px; line-height: 1.65; }
.service-link { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ── CONTENT GRID (2-col text+stat) ─────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-mid); line-height: 1.6; }
.feature-list li::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.stat-highlight { background: var(--gray-light); border-radius: 12px; padding: 40px 32px; text-align: center; border: 1px solid var(--gray-border); }
.stat-big { font-family: 'Nunito Sans', sans-serif; font-size: 64px; font-weight: 900; line-height: 1; color: var(--red); }
.stat-big-label { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--gray-dark); margin-top: 6px; margin-bottom: 8px; }
.stat-big-sub { font-size: 14px; color: var(--gray-mid); line-height: 1.5; }
.stat-divider { border: none; border-top: 1px solid var(--gray-border); margin: 24px 0; }

/* ── ABOUT SECTION ───────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.about-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--red); color: #fff; padding: 18px 22px;
  border-radius: 10px; text-align: center; box-shadow: 0 8px 24px rgba(236,84,52,0.35);
}
.about-badge-num { display: block; font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 28px; line-height: 1; }
.about-badge-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.about-text { padding-left: 0; }
.about-text .section-title { margin-bottom: 8px; }
.about-title-sub { font-family: 'Nunito Sans', sans-serif; font-size: 14px; color: var(--red); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

/* ── CLIENTS SECTION ─────────────────────────────────── */
.clients-section { background: #fff; padding: 44px 24px; border-bottom: 1px solid #eee; }
.clients-label { text-align: center; font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #bbb; margin-bottom: 28px; }
.clients-row { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.client-name { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 16px; color: #ccc; letter-spacing: 1px; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 10px; padding: 32px 28px; border: 1px solid var(--gray-border); transition: box-shadow 0.2s; }
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.stars { color: var(--yellow); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 15px; color: var(--gray-dark); }
.testimonial-role { font-size: 13px; color: #999; margin-top: 2px; }
.testimonial-company { font-size: 13px; color: var(--blue); font-family: 'Nunito Sans', sans-serif; font-weight: 700; margin-top: 2px; }

/* ── CASE STUDY ──────────────────────────────────────── */
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin: 48px 0; }
.case-metric { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 28px 24px; border: 1px solid rgba(255,255,255,0.1); }
.case-metric-num { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 22px; color: var(--yellow); margin-bottom: 8px; }
.case-metric-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ── AUDIT / CTA SECTION ─────────────────────────────── */
.audit-section { background: linear-gradient(135deg, #0d0d1a 0%, #16213e 100%); padding: 80px 24px; }
.audit-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.audit-grid .btn { flex-shrink: 0; }

/* ── RAP FEATURE GRID ────────────────────────────────── */
.rap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.rap-card {
  background: #fff; border-radius: 10px; padding: 32px 28px;
  border: 1px solid var(--gray-border); transition: box-shadow 0.2s, border-color 0.2s;
}
.rap-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); border-color: #d0d0d0; }
.rap-card-icon { font-size: 28px; margin-bottom: 16px; }
.rap-card h4 { font-size: 18px; margin-bottom: 10px; }
.rap-card p  { font-size: 14px; color: var(--gray-mid); line-height: 1.65; }
.rap-card-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Nunito Sans', sans-serif; }
.badge-new  { background: #e8f5ff; color: #0077bb; }
.badge-hot  { background: #fef0ec; color: #c43a1b; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--black);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 22px;
  margin: 0 auto 20px; border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.how-step:nth-child(1) .how-step-num { background: var(--green); }
.how-step:nth-child(2) .how-step-num { background: var(--blue); }
.how-step:nth-child(3) .how-step-num { background: var(--red); }
.how-step h3 { font-size: 18px; margin-bottom: 10px; }
.how-step p  { font-size: 14px; color: var(--gray-mid); line-height: 1.65; }
.how-step-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; background: var(--gray-light); color: #555; font-family: 'Nunito Sans', sans-serif; letter-spacing: 0.5px; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 860px; margin: 0 auto; }
.pricing-card {
  background: #fff; border-radius: 12px; padding: 40px 36px;
  border: 2px solid var(--gray-border); transition: box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--red); box-shadow: 0 16px 48px rgba(236,84,52,0.15);
  position: relative;
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-family: 'Nunito Sans', sans-serif;
  font-weight: 800; font-size: 11px; padding: 4px 16px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.pricing-label { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 12px; }
.pricing-price { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 52px; line-height: 1; color: var(--gray-dark); margin-bottom: 4px; }
.pricing-price span { font-size: 22px; font-weight: 700; color: var(--gray-mid); vertical-align: super; }
.pricing-price sub { font-size: 18px; font-weight: 600; color: var(--gray-mid); vertical-align: baseline; }
.pricing-desc { font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-dark); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; font-size: 14px; }
.pricing-roi { background: var(--gray-light); border-radius: 8px; padding: 16px 20px; margin-top: auto; margin-bottom: 28px; }
.pricing-roi-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; font-family: 'Nunito Sans', sans-serif; margin-bottom: 6px; }
.pricing-roi-text { font-size: 14px; color: var(--gray-dark); line-height: 1.5; }
.pricing-roi-text strong { color: var(--green); }

/* ── SCORECARD SECTION ───────────────────────────────── */
.sc-section { background: var(--gray-light); padding: 84px 24px; }
.sc-section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sc-outer { max-width: 700px; margin: 0 auto; background: #fff; border-radius: 12px; border: 1px solid var(--gray-border); padding: 44px 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
@media(max-width:600px){ .sc-outer { padding: 28px 20px; } }
.sc-prog { height: 4px; background: #e5e5e5; border-radius: 2px; margin-bottom: 2rem; }
.sc-prog-fill { height: 100%; background: var(--red); border-radius: 2px; transition: width .4s ease; }
.sc-step-lbl { font-size: 11px; color: #888; margin-bottom: .5rem; letter-spacing: 1px; text-transform: uppercase; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.sc-cat { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: .75rem; background: #f0f0f0; color: #666; border: 1px solid #e0e0e0; letter-spacing: .5px; text-transform: uppercase; font-family: 'Nunito Sans', sans-serif; }
.sc-q  { font-size: 17px; font-weight: 700; color: #222; line-height: 1.5; margin-bottom: 1.5rem; font-family: 'Nunito Sans', sans-serif; }
.sc-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.sc-opt { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; border: 1px solid #ddd; border-radius: 8px; cursor: pointer; background: #fff; transition: all .15s; font-size: 14px; color: #333; font-family: 'Lato', sans-serif; text-align: left; width: 100%; }
.sc-opt:hover { border-color: var(--red); background: #fdf9f8; }
.sc-opt.sel  { border: 2px solid var(--red); background: #fdf9f8; }
.sc-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ccc; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.sc-opt.sel .sc-dot { background: var(--red); border-color: var(--red); }
.sc-opt.sel .sc-dot::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.sc-nav { display: flex; justify-content: space-between; align-items: center; }
.sc-btn { padding: 12px 28px; border-radius: 6px; font-size: 14px; font-weight: 800; cursor: pointer; transition: all .15s; border: 1px solid #ccc; background: #fff; color: #333; font-family: 'Nunito Sans', sans-serif; }
.sc-btn:hover { background: #f5f5f5; }
.sc-btn.pr { background: var(--red); color: #fff; border-color: var(--red); }
.sc-btn.pr:hover { background: #d44426; border-color: #d44426; }
.sc-btn:disabled { opacity: .3; cursor: not-allowed; pointer-events: none; }
.sc-intro { text-align: center; padding: .5rem 0 1rem; }
.sc-intro h2 { font-size: 26px; font-weight: 900; margin-bottom: 1rem; color: #222; font-family: 'Nunito Sans', sans-serif; }
.sc-intro p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.sc-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.sc-pill { font-size: 12px; padding: 5px 14px; border-radius: 20px; border: 1px solid #e0e0e0; color: #666; background: #f6f6f6; font-family: 'Nunito Sans', sans-serif; font-weight: 700; }
.sc-lead-box { background: #f6f6f6; border: 1px solid #e5e5e5; border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sc-lead-box h3 { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }
.sc-field { margin-bottom: 12px; }
.sc-field label { font-size: 12px; color: #666; display: block; margin-bottom: 4px; font-family: 'Lato', sans-serif; }
.sc-field input, .sc-field select { width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid #ccc; background: #fff; color: #222; font-size: 14px; font-family: 'Lato', sans-serif; outline: none; }
.sc-field input:focus, .sc-field select:focus { border-color: var(--red); }
.sc-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media(max-width:480px){ .sc-2col { grid-template-columns: 1fr; } }
.sc-cur { position: relative; }
.sc-cur-sym { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 14px; color: #888; pointer-events: none; }
.sc-cur input { padding-left: 22px; }
.sc-note { font-size: 12px; color: #aaa; margin-top: 6px; line-height: 1.5; }
.sc-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; }
.sc-consent input[type=checkbox] { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--red); }
.sc-consent label { font-size: 12px; color: #666; line-height: 1.5; cursor: pointer; }
.sc-consent a { color: var(--red); text-decoration: underline; }
.sc-ring-wrap { position: relative; width: 140px; height: 140px; margin: 0 auto 1rem; }
.sc-ring-wrap svg { width: 140px; height: 140px; }
.sc-ring-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.sc-ring-num { font-size: 34px; font-weight: 900; color: #222; line-height: 1; font-family: 'Nunito Sans', sans-serif; }
.sc-ring-lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .5px; }
.sc-verdict { font-size: 21px; font-weight: 900; margin-bottom: .5rem; color: #222; font-family: 'Nunito Sans', sans-serif; }
.sc-verdict-sub { font-size: 15px; color: #666; line-height: 1.7; max-width: 500px; margin: 0 auto 2rem; }
.sc-res-hdr { text-align: center; margin-bottom: 2rem; }
.sc-insight { border: 1px solid #e5e5e5; border-radius: 8px; padding: 1.25rem; margin-bottom: 1.5rem; background: #fafafa; }
.sc-insight h4 { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }
.sc-irow { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.sc-irow:last-child { border-bottom: none; }
.sc-irow span:first-child { color: #666; }
.sc-irow .val { font-weight: 700; color: #222; font-family: 'Nunito Sans', sans-serif; }
.sc-irow .val-green { font-weight: 700; color: #2a9020; font-family: 'Nunito Sans', sans-serif; }
.badge-red   { background: #FAECE7; color: #993C1D; font-size: 11px; padding: 2px 8px; border-radius: 20px; font-weight: 700; font-family: 'Nunito Sans', sans-serif; margin-left: 4px; display: inline-block; }
.badge-amber { background: #FAEEDA; color: #854F0B; font-size: 11px; padding: 2px 8px; border-radius: 20px; font-weight: 700; font-family: 'Nunito Sans', sans-serif; margin-left: 4px; display: inline-block; }
.sc-sys-note { border-left: 3px solid var(--blue); padding: 10px 14px; margin-bottom: 1.5rem; background: #f0f8ff; border-radius: 0 6px 6px 0; }
.sc-sys-note-lbl { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; font-family: 'Nunito Sans', sans-serif; }
.sc-sys-note p { font-size: 13px; color: #222; line-height: 1.6; margin: 0; }
.sc-bc-note { border-left: 3px solid var(--yellow); padding: 10px 14px; margin-bottom: 1.5rem; background: #fffbf0; border-radius: 0 6px 6px 0; }
.sc-bc-note-lbl { font-size: 11px; font-weight: 700; color: #b07d00; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; font-family: 'Nunito Sans', sans-serif; }
.sc-bc-note p { font-size: 13px; color: #333; line-height: 1.6; margin: 0; }
.sc-breakdown { margin-bottom: 2rem; }
.sc-breakdown h4 { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }
.sc-bar-row { margin-bottom: 14px; }
.sc-bar-labels { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.sc-bar-labels span:first-child { color: #333; font-weight: 600; font-family: 'Nunito Sans', sans-serif; }
.sc-bar-labels span:last-child  { color: #888; font-size: 12px; }
.sc-bar-track { height: 6px; background: #e5e5e5; border-radius: 3px; }
.sc-bar-fill { height: 100%; border-radius: 3px; transition: width .8s ease; }
.sc-flags { margin-bottom: 2rem; }
.sc-flags h4 { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }
.sc-flag { display: flex; gap: 10px; padding: 12px 14px; border-radius: 6px; border: 1px solid #e5e5e5; margin-bottom: 8px; background: #fafafa; }
.sc-flag-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.sc-flag p { font-size: 13px; color: #333; line-height: 1.6; margin: 0; }
.sc-cta { background: #111; border-radius: 10px; padding: 2rem; text-align: center; margin-top: 1.5rem; }
.sc-cta h3 { color: #fff; font-size: 20px; font-weight: 900; margin-bottom: .5rem; font-family: 'Nunito Sans', sans-serif; }
.sc-cta p  { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 1.5rem; line-height: 1.6; }
.sc-cta-btn { display: inline-block; background: var(--red); color: #fff; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 800; cursor: pointer; border: none; transition: background .15s; font-family: 'Nunito Sans', sans-serif; text-decoration: none; }
.sc-cta-btn:hover { background: #d44426; color: #fff; }
.sc-restart { text-align: center; margin-top: 1rem; }
.sc-restart button { background: none; border: none; font-size: 13px; color: #888; cursor: pointer; text-decoration: underline; font-family: 'Lato', sans-serif; }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: #fff; border-radius: 12px; padding: 44px 40px; border: 1px solid var(--gray-border); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 13px; color: var(--gray-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid #ddd;
  background: #fff; color: var(--gray-dark); font-size: 15px;
  font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-consent input[type=checkbox] { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--red); }
.form-consent label { font-size: 12px; color: #666; line-height: 1.5; cursor: pointer; }
.form-consent a { color: var(--red); text-decoration: underline; }
.contact-info { padding-top: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--gray-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--gray-dark); line-height: 1.5; }
.contact-info-value a { color: var(--red); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: #0a0a0a; color: rgba(255,255,255,0.6); padding: 72px 24px 0; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 20px; color: #fff; margin-bottom: 20px; }
.footer-logo img { height: 36px; width: auto; }
.footer-address { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s; }
.social-link:hover { background: var(--red); color: #fff; }
.footer-col h4 { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── EXIT INTENT OVERLAY ─────────────────────────────── */
.ei-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ei-overlay.visible { opacity: 1; pointer-events: all; }
.ei-box {
  background: #fff; border-radius: 16px; max-width: 520px; width: 100%; padding: 48px 44px;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.ei-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: #aaa; line-height: 1; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.ei-close:hover { background: var(--gray-light); color: #666; }
.ei-icon { font-size: 44px; margin-bottom: 16px; text-align: center; }
.ei-box h3 { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.ei-box p  { font-size: 15px; color: var(--gray-mid); text-align: center; margin-bottom: 24px; line-height: 1.6; }
.ei-form   { display: flex; flex-direction: column; gap: 12px; }
.ei-form input { padding: 12px 16px; border-radius: 6px; border: 1px solid #ddd; font-size: 15px; font-family: 'Lato', sans-serif; outline: none; }
.ei-form input:focus { border-color: var(--red); }
.ei-consent { display: flex; align-items: flex-start; gap: 8px; }
.ei-consent input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--red); }
.ei-consent label { font-size: 11px; color: #999; line-height: 1.5; }
.ei-consent a { color: var(--red); text-decoration: underline; }
.ei-skip { text-align: center; margin-top: 12px; }
.ei-skip button { background: none; border: none; font-size: 13px; color: #aaa; cursor: pointer; text-decoration: underline; }
.ei-success { text-align: center; padding: 16px 0; }
.ei-success h4 { font-size: 20px; font-weight: 900; color: var(--green); margin-bottom: 8px; }
.ei-success p  { font-size: 15px; color: var(--gray-mid); }

/* ── CLARITY / TRACKING PLACEHOLDER ─────────────────── */
/* tracking scripts inject into <head> - no CSS needed */

/* ── BLOG / RESOURCES PLACEHOLDER ───────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.blog-card { background: #fff; border-radius: 10px; border: 1px solid var(--gray-border); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, #1a1a2e, #0f3460); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); font-family: 'Nunito Sans', sans-serif; margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-card .btn { font-size: 13px; padding: 8px 18px; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: 16px 24px; display: flex; gap: 8px; align-items: center; font-size: 13px; color: #999; font-family: 'Nunito Sans', sans-serif; font-weight: 600; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #ccc; }

/* ── PRIVACY / LEGAL ─────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose p, .prose li { font-size: 16px; line-height: 1.8; color: var(--gray-mid); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .audit-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .how-steps { gap: 28px; }
}
@media (max-width: 768px) {
  .nav-links, .navbar-phone { display: none; }
  .mobile-btn { display: flex; }
  .hero { padding: 72px 24px 64px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-metrics { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 20px; }
  .sc-section { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 32px 24px; }
  .ei-box { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .navbar-right .navbar-phone { display: none; }
  .stat-number { font-size: 44px; }
}
/* ── BLOG STYLES — append to style.css ─────────────────────────────────── */

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Blog card */
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--gray-light);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: 'Nunito Sans', sans-serif;
}
.blog-card-title a {
  color: var(--gray-dark);
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--red); }
.blog-card-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  font-family: 'Nunito Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.blog-read-more:hover { color: #c43a1b; }

/* Post navigation */
.post-nav-link {
  display: flex;
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-dark);
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.15s;
  line-height: 1.4;
}
.post-nav-link:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
}
.post-nav-prev { justify-content: flex-start; }
.post-nav-next { justify-content: flex-end; text-align: right; }

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav-link { min-width: 100%; }
}
