/* ============================================
   SKOL SOLUTIONS — v5
   EXACT colors from skol-solutions.abacusai.app
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Exact Abacus colors — sampled via JavaScript from live site */
  --purple:       #7749ab;   /* rgb(119,73,171)  — Get Started, stats bar, eyebrows, icons */
  --purple-dark:  #5e3a8a;   /* hover state */
  --purple-alpha: rgba(119,73,171,0.1); /* icon thumb bg, active nav bg */

  --tan:          #d6be85;   /* rgb(214,190,133) — Schedule a Consultation btn, "Performance" */
  --tan-light:    #e3d2ab;   /* rgb(227,210,171) — stats numbers */
  --tan-hover:    #c4ab72;   /* darker for hover */
  --tan-alpha:    rgba(214,190,133,0.2); /* hero eyebrow bg */

  --heading:      #1f1726;   /* rgb(31,23,38)    — all headings */
  --body:         #756c7f;   /* rgb(117,108,127) — body text */
  --body-dark:    #1f1825;   /* rgb(31,24,37)    — dark text, footer bg */
  --body-muted:   rgba(31,23,38,0.7); /* nav links */

  --white:        #ffffff;
  --gray-bg:      rgba(240,238,241,0.5); /* alternating section bg */
  --border:       rgb(224,221,227);

  /* Neutral scale — mapped to the Skol palette.
     These names came over from the reference site and were being used
     across every page without ever being defined. */
  --slate-50:   rgba(240,238,241,0.5);
  --slate-200:  rgb(224,221,227);
  --slate-300:  #c0b7ca;
  --slate-400:  #a79eb1;
  --slate-500:  #756c7f;
  --slate-600:  #5e5668;
  --slate-800:  #3a3244;
  --slate-900:  #1f1726;

  /* Gold bar accent */
  --gold:         #d6be85;
  --gold-light:   #e3d2ab;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--body);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--heading); }
.nav-logo-text span { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  color: var(--body-muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--heading); background: var(--purple-alpha); }
.nav-links a.active { color: var(--purple); background: var(--purple-alpha); }
.nav-cta {
  background: var(--purple); color: var(--white);
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--purple-dark); }

/* ── PAGE SHELL ── */
.page-body { padding-top: 68px; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem 3rem;
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; width: 100%; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--heading);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.page-hero p { font-size: 1.05rem; color: var(--body); line-height: 1.75; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
section.bg-white { background: var(--white); }
section.bg-gray  { background: var(--gray-bg); }
.container { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem;
}
.gold-bar { width: 36px; height: 3px; background: var(--tan); border-radius: 2px; margin-bottom: 1.25rem; }

h2.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--heading);
  line-height: 1.25; margin-bottom: 0.9rem;
}
.section-lead { font-size: 1rem; color: var(--body); line-height: 1.75; max-width: 580px; }

/* ── ICON THUMBNAIL — exact Abacus style ── */
.icon-thumb {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem; flex-shrink: 0;
  background: var(--purple-alpha);
}
/* All thumbs use same purple-alpha bg like Abacus */
.icon-thumb.indigo,
.icon-thumb.amber,
.icon-thumb.green,
.icon-thumb.blue,
.icon-thumb.purple,
.icon-thumb.rose,
.icon-thumb.teal,
.icon-thumb.orange,
.icon-thumb.gray { background: var(--purple-alpha); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.card h3 { font-size: 1rem; font-weight: 600; color: var(--heading); margin-bottom: 0.5rem; }
.card p  { font-size: 0.875rem; color: var(--body); line-height: 1.65; }

/* ── BULLET LIST ── */
.check-list { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.check-list li { font-size: 0.8rem; color: var(--body); padding-left: 1.25rem; position: relative; }
.check-list li::before { content: '✓'; color: var(--purple); position: absolute; left: 0; font-size: 0.75rem; font-weight: 700; }

/* ── CATEGORY TAGS ── */
.cat-tag {
  display: inline-block; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 0.75rem;
  background: transparent; color: var(--purple);
  border: 1.5px solid var(--purple);
}

/* ── GOLD BOX ── */
.gold-box {
  background: rgba(214,190,133,0.12); border: 1px solid rgba(214,190,133,0.4);
  border-radius: 8px; padding: 1.25rem 1.5rem;
}
.gold-box p  { font-size: 0.875rem; color: var(--heading); line-height: 1.65; }
.gold-box strong { color: var(--tan-hover); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  font-size: 0.875rem; font-weight: 600; border-radius: 7px;
  text-decoration: none; transition: background 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
/* Primary CTA sections: purple */
.btn-purple  { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--purple-dark); }
/* "Schedule a Consultation" tan */
.btn-tan     { background: var(--tan); color: var(--body-dark); font-weight: 700; }
.btn-tan:hover { background: var(--tan-hover); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── SECTION DIVIDER ── */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ── */
footer {
  background: var(--body-dark);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-logo-text { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--tan-light); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.footer-contact-item a { color: var(--tan-light); text-decoration: none; }
.footer-contact-item a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1160px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2rem; }
}
