/* ============================================================
   PRECISION BIN SOLUTIONS — Site Stylesheet
   Built from PBS Brand Voice & Visual Identity Guidelines v1.0
   Palette, typography, and usage rules per Crimson Business Consulting
   ============================================================ */

:root {
  /* --- Brand Color Palette (exact hex from guidelines) --- */
  --pbs-lime: #88C021;          /* Primary brand color */
  --pbs-lime-bright: #C7F33C;   /* Highlight accent */
  --pbs-blue-deep: #0458A0;     /* Trust / water / headlines */
  --pbs-blue-light: #59B8FC;    /* Tagline copy / water accents */
  --pbs-black: #0A0A0A;         /* Logo bg / high-impact */
  --pbs-silver: #B7B7B9;        /* Metallic accent */
  --pbs-charcoal: #2D2D2D;      /* Body text */
  --pbs-bg-light: #F5F7FA;      /* Section dividers / cards */
  --pbs-white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.08);
  --shadow-md: 0 8px 28px rgba(10, 10, 10, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.28);

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1180px;

  --font-display: 'Oswald', 'Montserrat', system-ui, sans-serif;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', 'Calibri', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--pbs-charcoal);
  background: var(--pbs-white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

a { color: var(--pbs-blue-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pbs-lime); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--pbs-blue-deep);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 700;
}

h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); }

p { margin-bottom: 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 100px 0; }
.section--alt { background: var(--pbs-bg-light); }
.section--dark { background: var(--pbs-black); color: var(--pbs-silver); }
.section--dark h2, .section--dark h3 { color: var(--pbs-white); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pbs-lime);
  margin-bottom: 14px;
  display: inline-block;
}
.section--dark .eyebrow { color: var(--pbs-lime-bright); }

.lead {
  font-size: 1.18rem;
  color: var(--pbs-charcoal);
  max-width: 760px;
}
.section--dark .lead { color: var(--pbs-silver); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}
.btn--primary {
  background: var(--pbs-lime);
  color: var(--pbs-black);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--pbs-lime-bright);
  color: var(--pbs-black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--pbs-white);
  border-color: var(--pbs-blue-light);
}
.btn--ghost:hover {
  background: var(--pbs-blue-light);
  color: var(--pbs-black);
  transform: translateY(-3px);
}
.btn--blue {
  background: var(--pbs-blue-deep);
  color: var(--pbs-white);
}
.btn--blue:hover { background: var(--pbs-blue-light); color: var(--pbs-black); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pbs-black);
  border-bottom: 3px solid var(--pbs-lime);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav__logo img { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pbs-silver);
}
.nav__links a:hover, .nav__links a.active { color: var(--pbs-lime); }
.nav__cta { background: var(--pbs-lime); color: var(--pbs-black) !important; padding: 11px 22px; border-radius: 10px; }
.nav__cta:hover { background: var(--pbs-lime-bright); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 11px 9px;
  margin-right: -9px;
}
.nav__toggle span {
  width: 100%; height: 3px;
  background: var(--pbs-lime);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(4,88,160,0.45), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(136,192,33,0.25), transparent 50%),
    var(--pbs-black);
  color: var(--pbs-white);
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(89,184,252,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89,184,252,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero--centered .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 880px;
}
.hero--centered .hero__sub { margin-left: auto; margin-right: auto; }
.hero--centered .hero__cta-row { justify-content: center; }
.hero--centered .hero__badges { justify-content: center; }
.hero h1 {
  color: var(--pbs-white);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero h1 .accent-lime { color: var(--pbs-lime); }
.hero h1 .accent-blue { color: var(--pbs-blue-light); }
.hero__sub {
  font-size: 1.22rem;
  color: var(--pbs-silver);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pbs-blue-light);
}
.hero__badges span { display: flex; align-items: center; gap: 8px; }
.hero__badges span::before { content: "✓"; color: var(--pbs-lime); font-weight: 800; }

/* Card wrapper used for content highlight panels on hero & service sections */
.ba-card {
  background: var(--pbs-black);
  border: 1px solid rgba(89,184,252,0.3);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--pbs-blue-deep);
  color: var(--pbs-white);
  padding: 22px 0;
}
.trustbar__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trustbar__item { font-family: var(--font-head); }
.trustbar__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pbs-lime-bright);
}
.trustbar__lbl { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); }

/* ---------- Section header ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 16px; }

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--pbs-white);
  border: 1px solid #e3e8ef;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--pbs-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--pbs-lime); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--pbs-bg-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-card__icon svg { width: 32px; height: 32px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: 0.97rem; color: var(--pbs-charcoal); }
.svc-card__list { list-style: none; margin: 18px 0 0; }
.svc-card__list li {
  font-size: 0.92rem;
  padding-left: 26px;
  position: relative;
  margin-bottom: 9px;
  color: var(--pbs-charcoal);
}
.svc-card__list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--pbs-lime);
  font-weight: 800;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 12px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--pbs-lime);
  line-height: 1;
  -webkit-text-stroke: 1px var(--pbs-blue-light);
  opacity: 0.9;
}
.step h3 { font-size: 1.2rem; margin: 12px 0 8px; color: var(--pbs-white); }
.step p { font-size: 0.93rem; color: var(--pbs-silver); }

/* ---------- Why us / values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  background: var(--pbs-white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border-left: 4px solid var(--pbs-lime);
  box-shadow: var(--shadow-sm);
}
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { font-size: 0.93rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.price-card {
  background: var(--pbs-white);
  border: 2px solid #e3e8ef;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--pbs-lime);
  position: relative;
  box-shadow: var(--shadow-md);
}
.price-card__tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--pbs-lime);
  color: var(--pbs-black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 { color: var(--pbs-blue-deep); margin-bottom: 6px; }
.price-card__desc { font-size: 0.9rem; color: var(--pbs-charcoal); margin-bottom: 22px; min-height: 42px; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--pbs-charcoal);
  line-height: 1;
}
.price-card__price small { font-size: 0.95rem; color: #6b7280; font-family: var(--font-body); font-weight: 400; }
.price-card__list { list-style: none; margin: 26px 0; flex-grow: 1; }
.price-card__list li {
  font-size: 0.93rem;
  padding: 9px 0 9px 28px;
  position: relative;
  border-bottom: 1px solid #eef1f5;
}
.price-card__list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--pbs-lime); font-weight: 800;
}
.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 30px;
}

/* ---------- Add-ons (pricing page) ---------- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.addon {
  background: var(--pbs-white);
  border: 1.5px solid #e3e8ef;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.addon:hover { border-color: var(--pbs-lime); transform: translateY(-3px); }
.addon__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pbs-lime);
  line-height: 1;
}
.addon__price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b7280;
  display: inline-block;
  margin-left: 4px;
}
.addon h3 {
  font-size: 1.1rem;
  color: var(--pbs-blue-deep);
  margin: 0;
}
.addon p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--pbs-charcoal);
}
/* Add-ons responsive: 3-col desktop, 2-col tablet, 1-col phone */
@media (max-width: 900px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .addon-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.quote {
  background: var(--pbs-black);
  border: 1px solid rgba(89,184,252,0.25);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.quote__stars { color: var(--pbs-lime-bright); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.quote__text {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--pbs-white);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.quote__who {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pbs-blue-light);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(136,192,33,0.3), transparent 60%),
    var(--pbs-blue-deep);
  color: var(--pbs-white);
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { color: var(--pbs-white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ---------- Forms / Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { padding-top: 6px; }
.contact-info h3 { margin-bottom: 20px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-line__ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--pbs-lime);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.contact-line__ico svg { width: 22px; height: 22px; }
.contact-line strong {
  font-family: var(--font-head);
  display: block;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 2px;
}
.contact-line a, .contact-line span { font-size: 1.08rem; color: var(--pbs-charcoal); font-weight: 600; }
.contact-line a:hover { color: var(--pbs-lime); }

.form {
  background: var(--pbs-white);
  border: 1px solid #e3e8ef;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pbs-charcoal);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #d6dce4;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--pbs-charcoal);
  background: var(--pbs-bg-light);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pbs-lime);
  background: var(--pbs-white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__msg {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(136,192,33,0.15);
  border: 1px solid var(--pbs-lime);
  color: #4a6b13;
  font-size: 0.95rem;
}
.form__msg.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e3e8ef;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 44px 24px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--pbs-blue-deep);
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--pbs-lime);
  transition: transform .25s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 0 24px; font-size: 0.98rem; color: var(--pbs-charcoal); margin: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(4,88,160,0.5), transparent 60%),
    var(--pbs-black);
  color: var(--pbs-white);
  padding: 80px 0 70px;
  text-align: center;
}
.page-hero h1 {
  color: var(--pbs-white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}
.page-hero p { color: var(--pbs-silver); max-width: 620px; margin: 0 auto; font-size: 1.12rem; }
.crumb {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pbs-lime);
  margin-bottom: 18px;
}
.crumb a { color: var(--pbs-blue-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: #000000;
  color: var(--pbs-silver);
  padding: 70px 0 0;
  border-top: 3px solid var(--pbs-lime);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; color: var(--pbs-silver); max-width: 300px; }
.footer-contact { margin: 18px 0 14px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pbs-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
  word-break: break-word;
}
.footer-contact__line svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--pbs-lime);
}
.footer-contact__line:hover { color: var(--pbs-lime); }

/* Chamber of Commerce membership — compact, bottom-right of footer */
.footer-member-row {
  display: flex;
  justify-content: flex-end;
  padding: 18px 0 8px;
}
.footer-member-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.footer-member-link:hover { opacity: 1; }
.footer-member-link__label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pbs-silver);
  font-weight: 600;
  white-space: nowrap;
}
.footer-member-link__logo {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .footer-member-row { justify-content: flex-start; padding: 10px 0 6px; }
  .footer-member-link__logo { height: 20px; }
  .footer-member-link__label { font-size: 0.6rem; }
}

/* Chamber section on About page */
.chamber-section { padding: 60px 0; }
.chamber-card {
  text-align: center;
  background: linear-gradient(180deg, var(--pbs-bg-light) 0%, var(--pbs-white) 100%);
  border: 1.5px solid #e3e8ef;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  max-width: 760px;
  margin: 0 auto;
}
.chamber-card h2 { color: var(--pbs-blue-deep); }
.chamber-card__logo-link {
  display: inline-block;
  transition: opacity .2s ease, transform .2s ease;
}
.chamber-card__logo-link:hover { opacity: 0.88; transform: translateY(-2px); }
.chamber-card__logo {
  height: 80px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 560px) {
  .chamber-section { padding: 48px 0; }
  .chamber-card { padding: 36px 22px; }
  .chamber-card__logo { height: 60px; }
}
.footer-col h4 {
  color: var(--pbs-white);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--pbs-silver); font-size: 0.93rem; }
.footer-col a:hover { color: var(--pbs-lime); }
.footer-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--pbs-lime);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin: 16px 0 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: #7a7a7c;
}
.footer-bottom a { color: #9a9a9c; }

/* ---------- Reveal animation ---------- */
/* Only hide for animation when JS marks the document ready.
   Without JS (or before init), content stays fully visible. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid, .values-grid, .price-grid, .quote-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav { padding: 12px 20px; }
  .nav__links {
    position: fixed;
    top: 80px; right: 0;
    height: calc(100vh - 80px);
    width: min(86vw, 340px);
    background: var(--pbs-black);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    border-left: 3px solid var(--pbs-lime);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links li { width: 100%; }
  /* Full-width links with large tap targets (>=52px tall) */
  .nav__links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 16px 28px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__links a:active { background: rgba(136,192,33,0.12); }
  .nav__cta {
    margin: 12px 24px 18px;
    width: calc(100% - 48px);
    justify-content: center;
    border-radius: 12px;
    min-height: 56px;
    font-size: 1.05rem;
    border-bottom: none;
  }
  .nav__toggle { display: flex; }

  /* Backdrop when menu open */
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 80px 0 0 0;
    background: rgba(10,10,10,0.55);
    z-index: 90;
  }
  .nav__links { z-index: 95; }

  /* Larger footer link tap areas */
  .footer-col li { margin-bottom: 4px; }
  .footer-col a {
    display: inline-block;
    padding: 9px 0;
    font-size: 0.98rem;
  }
  .footer-col li span { display: inline-block; padding: 9px 0; }

  /* Breadcrumb easier to tap */
  .crumb a { display: inline-block; padding: 6px 4px; margin: -6px 0; }

  /* Buttons comfortably tall on touch */
  .btn { min-height: 52px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form { padding: 26px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding: 64px 0 76px; }
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .hero__badges { gap: 14px 20px; }
  .trustbar__grid { gap: 18px 24px; }
  .trustbar__item { flex: 1 1 40%; }
  .price-card { padding: 34px 24px; }
  .sec-head { margin-bottom: 40px; }
  /* Tables/wide content stay inside the viewport */
  img, .ba-card, .quote, .svc-card, .price-card, .value { max-width: 100%; }
}

@media (max-width: 380px) {
  body { font-size: 16px; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.15rem; }
  .btn { padding: 15px 22px; font-size: 0.9rem; }
}
