/* ==========================================================================
   BUSIGEEK — SHARED BASE
   --------------------------------------------------------------------------
   Reset, base typography, buttons and section primitives shared by the
   About, Services and Contact pages. These 114 rules used to be copy-pasted
   into all three page stylesheets; they now live here once.

   Load order on those pages:
     1. busigeek-tokens.css   colours, fonts, radii, shadows
     2. busigeek-base.css     this file
     3. busigeek-<page>.css   that page's own sections
     4. busigeek-nav.css      shared header, loads last so it wins

   NOTE: the homepage does not use this file. It carries its own base layer
   with slightly different values, so folding it in here would change how the
   homepage looks. Unifying the two is a worthwhile follow-up.
   ========================================================================== */

/* Header, navigation and .container styles now live in busigeek-nav.css (loaded last).
   Do not re-add them here. */
/* PAGE TOKEN OVERRIDE
   These differ from the other pages. Shared tokens live in
   busigeek-tokens.css. See the note at the bottom of that file. */

:root {
  --surface: #fff;
  --surface-2: #eef5f1;
  --dark: #08110e;
  --shadow-md: 0 18px 42px rgba(7, 19, 15, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

#busigeek-site {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#busigeek-site :where(h1,
h2,
h3,
h4,
p,
blockquote) {
  margin: 0;
}

#busigeek-site :where(h1,
h2,
h3,
h4) {
  font-family: Manrope, Inter, system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -.045em;
  word-break: normal;
  hyphens: none;
  overflow-wrap: normal;
}

#busigeek-site :where(p,
li,
blockquote,
strong,
small) {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

#busigeek-site :where([class*="grid"]>*,
[class*="row"]>*,
[class*="card"]>*,
[class*="panel"]>*,
[class*="layout"]>*) {
  min-width: 0;
  max-width: 100%;
}

#busigeek-site :focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

#busigeek-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  white-space: normal;
  text-decoration: none!important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

#busigeek-site .btn:hover {
  transform: translateY(-2px);
}

#busigeek-site .btn-primary {
  background: var(--green);
  color: #04130c;
  box-shadow: 0 14px 30px rgba(19, 199, 121, .22);
}

#busigeek-site .btn-primary:hover {
  box-shadow: 0 18px 36px rgba(19, 199, 121, .28);
}

#busigeek-site .btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

#busigeek-site .section-dark .btn-secondary {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

#busigeek-site .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(7, 19, 15, .22);
}

#busigeek-site .text-link:hover {
  border-color: var(--green);
}

#busigeek-site .section {
  padding: 88px 0;
}

#busigeek-site .section-sm {
  padding: 70px 0;
}

#busigeek-site .section-dark {
  background: var(--dark);
  color: #eff6f2;
}

#busigeek-site .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#busigeek-site .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

#busigeek-site .section-dark .eyebrow {
  color: #c8ded5;
}

#busigeek-site .section-title {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.02;
  font-weight: 800;
}

#busigeek-site .section-dark .section-title {
  color: #fff;
}

#busigeek-site .section-copy {
  margin-top: 18px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 600;
}

#busigeek-site .section-dark .section-copy {
  color: rgba(255, 255, 255, .74);
}

#busigeek-site .center {
  text-align: center;
}

#busigeek-site .center .section-copy {
  margin-inline: auto;
}

#busigeek-site .page-hero {
  padding: 72px 0 82px;
  background: radial-gradient(circle at 90% 12%, rgba(19, 199, 121, .10), transparent 28%), var(--bg);
}

#busigeek-site .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  gap: 56px;
  align-items: center;
}

#busigeek-site .hero-title {
  font-size: clamp(48px, 5vw, 74px);
  line-height: .98;
  font-weight: 800;
  max-width: 13ch;
}

#busigeek-site .hero-title .accent {
  color: var(--green);
}

#busigeek-site .hero-support {
  margin-top: 24px;
  max-width: 680px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.6;
  font-weight: 600;
}

#busigeek-site .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  align-items: center;
}

#busigeek-site .hero-process {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

#busigeek-site .hero-panel {
  padding: 30px;
  border-radius: 30px;
  background: radial-gradient(circle at 90% 10%, rgba(19, 199, 121, .16), transparent 38%), linear-gradient(145deg, #07130f, #12261f);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}

#busigeek-site .hero-panel h2,
#busigeek-site .hero-panel h3 {
  color: #fff;
}

#busigeek-site .hero-panel h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 800;
}

#busigeek-site .hero-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 600;
}

#busigeek-site .check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

#busigeek-site .check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  line-height: 1.45;
}

#busigeek-site .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

#busigeek-site .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

#busigeek-site .card {
  padding: 26px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

#busigeek-site .card-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 20px;
}

#busigeek-site .card h3 {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
}

#busigeek-site .card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 600;
}

#busigeek-site .split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

#busigeek-site .rich-copy {
  display: grid;
  gap: 16px;
}

#busigeek-site .rich-copy p {
  font-size: 18px;
  line-height: 1.68;
  color: var(--text);
  font-weight: 550;
}

#busigeek-site .rich-copy strong {
  color: var(--ink);
}

#busigeek-site .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

#busigeek-site .stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

#busigeek-site .stat strong {
  display: block;
  color: var(--green);
  font-family: Manrope, Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

#busigeek-site .stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

#busigeek-site .quote-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

#busigeek-site .quote-card blockquote {
  font-family: Manrope, Inter, sans-serif;
  font-size: 23px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -.025em;
}

#busigeek-site .quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

#busigeek-site .quote-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

#busigeek-site .quote-person strong {
  display: block;
  color: var(--ink);
}

#busigeek-site .quote-person span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

#busigeek-site .process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

#busigeek-site .process-step {
  padding: 28px;
  background: #fff;
}

#busigeek-site .process-step small {
  display: block;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

#busigeek-site .process-step h3 {
  margin-top: 9px;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 800;
}

#busigeek-site .process-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

#busigeek-site .dark-band {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #07130f, #12261f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-md);
}

#busigeek-site .dark-band h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

#busigeek-site .dark-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 760px;
}

#busigeek-site .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

#busigeek-site details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

#busigeek-site summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 20px;
  font-weight: 850;
  color: var(--ink);
  position: relative;
}

#busigeek-site summary::-webkit-details-marker {
  display: none;
}

#busigeek-site summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-2);
  font-size: 22px;
  font-weight: 900;
}

#busigeek-site details[open] summary::after {
  content: "–";
}

#busigeek-site details>div {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

#busigeek-site .final-cta {
  padding: 46px;
  border-radius: 30px;
  background: radial-gradient(circle at 92% 12%, rgba(19, 199, 121, .15), transparent 36%), #07130f;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

#busigeek-site .final-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 800;
}

#busigeek-site .final-cta p {
  margin-top: 14px;
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

#busigeek-site .footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #08110e;
  color: rgba(255, 255, 255, .72);
}

#busigeek-site .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

#busigeek-site .footer-logo-image {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(320px, 58vw);
  object-fit: contain;
}

#busigeek-site .footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
}

@media(max-width:980px) {
  #busigeek-site .hero-grid,
#busigeek-site .split-grid {
    grid-template-columns: 1fr;
  }
  #busigeek-site .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  #busigeek-site .hero-title {
    max-width: 16ch;
  }
}

@media(max-width:780px) {
  :root {
  }
  #busigeek-site .section {
    padding: 64px 0;
  }
  #busigeek-site .section-sm {
    padding: 54px 0;
  }
  #busigeek-site .page-hero {
    padding: 52px 0 62px;
  }
  #busigeek-site .hero-grid {
    gap: 36px;
  }
  #busigeek-site .hero-title {
    font-size: clamp(42px, 11vw, 60px);
    max-width: 100%;
  }
  #busigeek-site .hero-support {
    font-size: 18px;
  }
  #busigeek-site .hero-process {
    display: grid;
    gap: 5px;
  }
  #busigeek-site .hero-actions {
    align-items: stretch;
  }
  #busigeek-site .hero-actions .btn {
    width: 100%;
  }
  #busigeek-site .card-grid,
#busigeek-site .faq-grid {
    grid-template-columns: 1fr;
  }
  #busigeek-site .process-strip {
    grid-template-columns: 1fr;
  }
  #busigeek-site .dark-band {
    align-items: stretch;
    flex-direction: column;
  }
  #busigeek-site .dark-band .btn {
    width: 100%;
  }
  #busigeek-site .final-cta {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  #busigeek-site .final-cta .btn {
    width: 100%;
  }
  #busigeek-site .footer-logo-image {
    height: 44px;
    max-width: 220px;
  }
}

@media(max-width:480px) {
  #busigeek-site .card {
    padding: 22px;
  }
  #busigeek-site .hero-panel {
    padding: 24px;
  }
  #busigeek-site .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto!important;
  }
  #busigeek-site .btn {
    transition: none;
  }
  #busigeek-site .btn:hover {
    transform: none;
  }
}
