/* ===========================================================================
   Lean Sales Group — leansalesgroup.com
   Faithful to LSG_brand_standards.html
   =========================================================================== */

:root {
  --navy-900: #081E3F;
  --navy-700: #0A2D58;
  --navy-500: #1A4F8A;
  --navy-400: #2E6BAD;
  --navy-300: #4A7AAD;
  --navy-200: #A3BFDA;
  --navy-100: #D6E6F3;
  --navy-50:  #F0F5FA;
  --white:    #FFFFFF;

  --font-display: 'Barlow Condensed', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', Helvetica, sans-serif;

  --radius: 4px;
  --container: 1280px;
  --gutter: 40px;

  /* spacing scale (8px base) */
  --s-1: 4px;  --s-2: 8px;   --s-4: 16px;  --s-6: 24px;
  --s-10: 40px; --s-16: 64px; --s-24: 96px; --s-32: 128px;
}
[data-density="compact"] {
  --s-16: 48px; --s-24: 72px; --s-32: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #FAFBFD; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy-500); text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- shared section primitives ---------- */
.lsg-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-24) var(--gutter);
}
.lsg-section-alt {
  background: var(--navy-50);
  max-width: none;
  padding: var(--s-24) 0;
  margin: 0;
}
.lsg-section-alt .lsg-section-inner,
.lsg-section-alt .lsg-section-head,
.lsg-section-alt .lsg-quotes {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lsg-section-head { max-width: 720px; margin-bottom: var(--s-16); }
.lsg-section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.lsg-section-intro {
  font-size: 17px;
  color: var(--navy-300);
  line-height: 1.7;
  max-width: 580px;
  margin-top: var(--s-4);
}

.lsg-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: var(--s-4);
}
.lsg-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  color: var(--navy-700);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

/* ---------- buttons ---------- */
.lsg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.lsg-btn-sm { padding: 10px 22px; font-size: 12px; }
.lsg-btn-lg { padding: 18px 40px; font-size: 15px; }
.lsg-btn-primary { background: var(--navy-700); color: #fff !important; }
.lsg-btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); }
.lsg-btn-primary.lsg-btn-on-dark { background: #fff; color: var(--navy-700) !important; }
.lsg-btn-primary.lsg-btn-on-dark:hover { background: var(--navy-100); }
.lsg-btn-secondary {
  background: transparent;
  color: var(--navy-700) !important;
  border: 1.5px solid var(--navy-700);
  padding: 12.5px 30.5px;
}
.lsg-btn-secondary:hover { background: var(--navy-700); color: #fff !important; }
.lsg-btn-ghost {
  background: transparent;
  color: var(--navy-500) !important;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--navy-500);
  border-radius: 0;
  letter-spacing: 1px;
}
.lsg-btn-ghost:hover { color: var(--navy-700) !important; border-color: var(--navy-700); }
.lsg-btn-ghost-on-dark {
  color: rgba(255,255,255,0.75) !important;
  border-bottom-color: rgba(255,255,255,0.45);
}
.lsg-btn-ghost-on-dark:hover { color: #fff !important; border-bottom-color: #fff; }

/* ---------- nav ---------- */
.lsg-nav {
  background: #fff;
  border-bottom: 1px solid var(--navy-100);
  position: sticky; top: 0; z-index: 50;
}
.lsg-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}
.lsg-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--navy-700);
  white-space: nowrap;
}
.lsg-nav-links {
  display: flex;
  gap: 32px;
}
.lsg-nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--navy-400);
  text-transform: uppercase;
}
.lsg-nav-link:hover, .lsg-nav-link.active { color: var(--navy-700); }

/* ---------- hero ---------- */
.lsg-hero {
  background: var(--navy-700);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lsg-hero-bg-circle, .lsg-hero-bg-circle-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.lsg-hero-bg-circle   { top: -120px; right: -120px; width: 560px; height: 560px; }
.lsg-hero-bg-circle-2 { top: 60px;   right: 80px;   width: 320px; height: 320px; }
.lsg-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 128px var(--gutter) 112px;
  position: relative;
}
.lsg-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: var(--s-6);
}
.lsg-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 800px;
  margin-bottom: var(--s-6);
}
.lsg-hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: var(--s-10);
}
.lsg-hero-cta {
  display: flex;
  gap: var(--s-6);
  align-items: center;
  flex-wrap: wrap;
}
.lsg-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: var(--s-16);
  margin-top: var(--s-16);
  padding-top: var(--s-10);
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 800px;
}
.lsg-hero-meta label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 6px;
}
.lsg-hero-meta span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
}

/* ---------- stats ---------- */
.lsg-stats {
  background: #fff;
  border-bottom: 1px solid var(--navy-100);
}
.lsg-stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-10) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.lsg-stat { text-align: left; }
.lsg-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.lsg-stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 500;
}

/* ---------- programs ---------- */
.lsg-card {
  background: #fff;
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
}
.lsg-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.lsg-program-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s ease, transform .15s ease;
}
.lsg-program-card:hover {
  border-color: var(--navy-300);
  transform: translateY(-2px);
}
.lsg-program-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
  margin-bottom: 8px;
}
.lsg-program-icon svg { width: 32px; height: 32px; fill: currentColor; }
.lsg-program-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-400);
}
.lsg-program-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-700);
  line-height: 1.2;
  letter-spacing: -0.2px;
}
.lsg-program-desc {
  font-size: 14px;
  color: var(--navy-300);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 6px;
}
.lsg-program-card .lsg-btn-ghost { align-self: flex-start; padding: 8px 0; font-size: 12px; }

/* ---------- method ---------- */
.lsg-method {
  list-style: none;
  border-top: 1px solid var(--navy-200);
}
.lsg-method-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-10);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--navy-100);
  align-items: baseline;
}
.lsg-method-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--navy-700);
  letter-spacing: -0.5px;
  line-height: 1;
}
.lsg-method-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--navy-700);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.lsg-method-body p {
  color: var(--navy-300);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- testimonials ---------- */
.lsg-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.lsg-quote {
  background: #fff;
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lsg-quote-rule {
  width: 36px;
  height: 3px;
  background: var(--navy-700);
}
.lsg-quote blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.35;
  color: var(--navy-700);
  letter-spacing: -0.2px;
  flex: 1;
}
.lsg-quote figcaption {
  border-top: 1px solid var(--navy-100);
  padding-top: 14px;
}
.lsg-quote-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy-900);
  letter-spacing: 0.4px;
}
.lsg-quote-co {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-300);
  font-weight: 500;
  margin-top: 2px;
}

/* ---------- about ---------- */
.lsg-about {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.lsg-portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
}
.lsg-portrait-frame svg { width: 100%; height: auto; }
.lsg-about-card {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-4);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
}
.lsg-about-card td {
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-100);
  color: var(--navy-700);
}
.lsg-about-card td:first-child {
  color: var(--navy-300);
  width: 80px;
}
.lsg-about-copy h2 { margin-top: var(--s-2); }
.lsg-about-copy p {
  margin-top: var(--s-6);
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
}
.lsg-about-actions {
  display: flex; gap: var(--s-4);
  margin-top: var(--s-10);
  flex-wrap: wrap;
}

/* ---------- CTA band ---------- */
.lsg-cta-band {
  background: var(--navy-700);
  color: #fff;
  padding: var(--s-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lsg-cta-bg-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.lsg-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.lsg-cta-band .lsg-hero-eyebrow { margin-bottom: var(--s-6); }
.lsg-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: var(--s-6);
}
.lsg-cta-body {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto var(--s-10);
  line-height: 1.7;
}
.lsg-cta-mail {
  margin-top: var(--s-6);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ---------- footer ---------- */
.lsg-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: var(--s-16) 0 var(--s-6);
}
.lsg-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lsg-footer-top {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: var(--s-16);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lsg-footer-brand {
  display: flex; align-items: center; gap: 16px;
}
.lsg-footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: 2px;
}
.lsg-footer-url {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 4px;
}
.lsg-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.lsg-footer-cols a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 8px;
  transition: color .15s;
}
.lsg-footer-cols a:hover { color: #fff; }
.lsg-foot-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 14px;
}
.lsg-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--s-6);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .lsg-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .lsg-programs-grid, .lsg-quotes { grid-template-columns: repeat(2, 1fr); }
  .lsg-about, .lsg-footer-top { grid-template-columns: 1fr; }
  .lsg-nav-links { display: none; }
  .lsg-hero-meta { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .lsg-stats-inner, .lsg-programs-grid, .lsg-quotes, .lsg-footer-cols {
    grid-template-columns: 1fr;
  }
  .lsg-method-row { grid-template-columns: 1fr; gap: var(--s-2); }
  .lsg-method-title { font-size: 26px; }
  .lsg-hero-inner { padding: 80px var(--gutter) 72px; }
  .lsg-footer-bottom { flex-direction: column; gap: 8px; }
}
