/* ============================================================
   MOYANO & CO. — Main Stylesheet
   Redesigned: Trusted Local Professional Firm
   Target: Trades workers in Barrie, Ontario
   ============================================================ */

/* Google Fonts — Inter + Montserrat (matches logo typeface) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

/* 1. Design Tokens
   ============================================================ */
:root {
  /* Brand Colors */
  --navy:        #062d60;   /* Deep royal navy — primary brand */
  --navy-2:      #0a3d80;   /* Lighter navy */
  --navy-3:      #0f4fa0;   /* Hover states */

  /* Gold — matches logo #ffab15 */
  --gold:        #ffab15;
  --gold-hover:  #e09500;
  --gold-light:  #fff8e6;   /* Light tint for section BG */
  --gold-border: #ffd066;

  /* Backgrounds — warm, not cold white */
  --bg:          #f7f5f1;   /* Warm off-white body background */
  --bg-alt:      #eeece7;   /* Warm alternate section BG */
  --bg-card:     #ffffff;
  --white:       #ffffff;

  /* Text */
  --text:        #062d60;
  --text-light:  #5a6475;
  --text-muted:  #8a93a0;

  /* Borders */
  --border:      #ddd8ce;
  --border-light:#eae6df;

  /* Typography */
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Montserrat', 'Inter', sans-serif;

  /* Spacing & Shape */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   10px;
  --radius-xl:   12px;

  /* Shadows — subtle, professional */
  --shadow-sm:   0 1px 4px rgba(26,35,50,0.07);
  --shadow:      0 2px 8px rgba(26,35,50,0.09);
  --shadow-md:   0 4px 16px rgba(26,35,50,0.11);
  --shadow-lg:   0 8px 28px rgba(26,35,50,0.13);

  --transition:  200ms ease;
  --max-w:       1200px;
}

/* 2. Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* 3. Container & Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.section        { padding-block: 5rem; }
.section--sm    { padding-block: 3.5rem; }
.section--lg    { padding-block: 7rem; }

/* Section background variants */
.section--white     { background: var(--white); }
.section--warm      { background: var(--bg-alt); }
.section--dark      { background: var(--navy); color: var(--white); }
.section--gold-tint { background: var(--gold-light); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* 4. Typography
   ============================================================ */

/* H1 + H2: Montserrat — matches logo typeface */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
}
h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  line-height: 1.15;
}

/* H3 and below: Inter */
h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.25;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem;     font-weight: 600; letter-spacing: 0.01em; }

p { color: var(--text-light); line-height: 1.7; }
p + p { margin-top: 1rem; }
strong { color: var(--text); font-weight: 600; }

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.text-slate { color: var(--text-light); }

/* Section Header */
.section-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header--left { text-align: left; margin-inline: 0; }

/* Section Label — uppercase text only, no pill background */
.section-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.0625rem; }

/* 5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  padding: 12px 28px;
  transition: all 200ms ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }

/* Primary — navy background */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}
.btn-primary:active { background: var(--navy-3); border-color: var(--navy-3); }

/* Dark — same as primary (unified) */
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-dark:hover { background: var(--navy-2); border-color: var(--navy-2); }

/* Outline — navy border, navy text */
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 11px 27px;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Outline Light — for dark backgrounds */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 11px 27px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* Gold button */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

/* Ghost button */
.btn-ghost {
  color: var(--gold);
  padding-inline: .25rem;
  background: transparent;
}
.btn-ghost:hover { color: var(--gold-hover); }
.btn-ghost svg { transition: transform 200ms ease; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* 6. Navigation
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 200ms ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(26,35,50,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img {
  height: 34px;
  width: auto;
}
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color 200ms ease, background 200ms ease;
}
.nav-links a:hover { color: var(--navy); background: var(--bg); }
.nav-links a.active {
  color: var(--navy);
  background: var(--bg-alt);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav-links .btn-primary {
  color: var(--white);
  padding: .5rem 1.25rem;
  margin-left: .5rem;
}
.nav-links .btn-primary:hover { color: var(--white); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background 200ms ease;
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 300ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: .875rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border-light);
  transition: color 200ms ease, background 200ms ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover  { color: var(--navy); background: var(--bg); }
.mobile-menu a.active { color: var(--gold); background: var(--gold-light); font-weight: 600; }
.mobile-menu .btn-primary {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
}

/* 7. Hero (Homepage)
   ============================================================ */
.hero {
  background: var(--navy);
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}
/* Removed: gradient pseudo-element / radial effects */
.hero-content {
  position: relative;
  max-width: 760px;
}

/* Hero badge — simplified, no pulse animation */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.80);
  font-family: var(--font);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .375rem .875rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* Removed: .badge-dot pulse animation */
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Hero primary CTA — white background on dark hero */
.hero .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.hero .btn-primary:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
  color: var(--navy);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(176,125,26,0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Credential badges in hero — inline pills */
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 2rem;
}
.credential-pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}

/* 8. Page Hero (Inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding-block: 4.5rem 4rem;
  position: relative;
  overflow: hidden;
}
/* Removed: gradient pseudo-element */
.page-hero .container { position: relative; }
.page-hero .section-label { display: block; margin-bottom: .75rem; color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 600px; }

/* 9. Cards
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
/* No translateY lift on hover — subtle border highlight instead */
.card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 3px 10px rgba(26,35,50,0.10);
}

.service-card { display: flex; flex-direction: column; gap: 1rem; }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .25rem; }
.service-card p { font-size: .9375rem; }

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.industry-icon {
  font-size: 2rem;
  line-height: 1;
}
.industry-card h3 { font-size: 1.1rem; }
.industry-card p  { font-size: .9375rem; }

/* 10. Trust Badges
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
}
.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.badges-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Inline credential pills (hero + general use) */
.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}

/* 11. Testimonials
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease;
}
.testimonial-card:hover { border-color: var(--gold-border); }
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .875rem;
  letter-spacing: .05em;
}
.testimonial-card blockquote {
  font-size: .9625rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 15px; color: var(--text); font-weight: 700; }
.author-info span   { font-size: .8125rem; color: var(--text-light); }

.testimonials-section { background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

/* 12. Pricing Cards
   ============================================================ */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
/* No translateY hover lift */
.pricing-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}
/* Featured card: gold border, navy background */
.pricing-card.featured {
  border: 2px solid var(--gold);
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.pricing-card.featured .pricing-price,
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p  { color: rgba(255,255,255,0.65); }

/* Featured badge — simple, no gradient */
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-tier {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  font-family: var(--font);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .5rem;
  color: var(--text);
}
.pricing-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  font-family: var(--font-display);
}
.pricing-price .period { font-size: .9375rem; color: var(--text-light); }
.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.5); }
.pricing-desc { font-size: .9375rem; margin-bottom: 2rem; }
.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-card.featured .pricing-features { border-color: rgba(255,255,255,0.12); }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-light);
  padding-block: .5rem;
  border-bottom: 1px solid var(--border-light);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.07);
}
.pricing-features li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.pricing-card.featured .pricing-features li::before {
  background: rgba(176,125,26,0.20);
  color: var(--gold);
}

/* 13. FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 1.125rem 1rem;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.faq-question:hover { background: var(--bg-alt); color: var(--navy); }
.faq-item.open .faq-question {
  background: var(--gold-light);
  color: var(--navy);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.faq-arrow {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 300ms ease, background 200ms ease;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--gold-light);
  border-color: var(--gold-border);
}
.faq-arrow svg { width: 12px; height: 12px; color: var(--text-light); }
.faq-item.open .faq-arrow svg { color: var(--gold); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: .9375rem; }

/* 14. Blog Cards
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
/* No translateY lift */
.blog-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  padding: 1.5rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.blog-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: .25rem .625rem;
  border-radius: 4px;
}
.blog-card h3 { font-size: 1.0625rem; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: .9rem; flex: 1; }
.blog-meta {
  font-size: .8125rem;
  color: var(--text-muted);
  padding-top: .75rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 1rem;
}

/* 15. CTA Section
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding-block: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Removed: gradient pseudo-element */
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
}
.cta-section .hero-ctas { justify-content: center; }

/* 16. Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item h4 { margin-bottom: .25rem; font-size: 1rem; }
.contact-item p, .contact-item a {
  font-size: .9375rem;
  color: var(--text-light);
  transition: color 200ms ease;
}
.contact-item a:hover { color: var(--gold); }

.booking-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.booking-box h3 { margin-bottom: .5rem; }
.booking-box > p { margin-bottom: 1.5rem; font-size: .9375rem; }
.calendly-placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
}
.calendly-placeholder p { font-size: .875rem; color: var(--text-muted); }

/* Contact Form */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9375rem;
  color: var(--text);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,125,26,0.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }

/* 17. About Page
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1.1fr; gap: 6rem; } }

.photo-frame {
  aspect-ratio: 3/4;
  max-width: 420px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: .875rem;
  text-align: center;
  padding: 2rem;
  margin-inline: auto;
}
.photo-frame svg { width: 64px; height: 64px; opacity: .35; }

.credentials-list { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.5rem; }
.credential-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.credential-item .cred-icon { font-size: 1.5rem; flex-shrink: 0; }
.credential-item strong { display: block; font-size: .9375rem; }
.credential-item span { font-size: .8125rem; color: var(--text-light); }

/* 18. Stat Blocks
   ============================================================ */
.stat-block { text-align: center; padding: 2rem; }
.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}
.stat-block p { font-size: .9rem; }

/* Stat label helper */
.stat-block .stat-label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: .35rem;
  font-family: var(--font);
}

/* Stats strip — horizontal strip after hero */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.stats-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.stats-strip-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.25rem 2rem;
  position: relative;
}
.stats-strip-item + .stats-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
@media (max-width: 639px) {
  .stats-strip-item + .stats-strip-item::before { display: none; }
  .stats-strip-item { border-bottom: 1px solid var(--border-light); }
}
.stats-strip-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  display: block;
  margin-bottom: .375rem;
}
.stats-strip-item .stat-label {
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-family: var(--font);
}

/* 19. Process Steps
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font);
}
.step-content h4 { margin-bottom: .375rem; }
.step-content p { font-size: .9375rem; }

/* 20. Industries Page Sections
   ============================================================ */
.industry-section {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  scroll-margin-top: 84px; /* Offset for sticky navbar (68px) + breathing room */
}
.industry-section:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .industry-section { grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
}
.industry-label {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.industry-label .icon { font-size: 2.5rem; }
.industry-label h3 { font-size: 1.0625rem; }
.industry-details h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--text); }
.industry-details p { font-size: .9375rem; margin-bottom: .875rem; }
.industry-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.tag:hover {
  background: var(--gold-light);
  border-color: var(--gold-border);
  color: var(--navy);
}

/* 21. Footer
   ============================================================ */
.footer {
  background: var(--navy);
  padding-block: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { height: 64px; width: auto; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-certs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.footer-cert {
  background: rgba(176,125,26,0.12);
  border: 1px solid rgba(176,125,26,0.25);
  border-radius: 4px;
  padding: .3rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font);
}

/* Footer column headings — small uppercase label style */
.footer-col h5 {
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,0.60);
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p,
.footer-bottom a { font-size: .8125rem; color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* Footer trust line */
.footer-trust-line {
  font-size: .8125rem;
  color: rgba(255,255,255,0.40);
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1rem;
}

/* 22. Utility
   ============================================================ */
.bg-bg       { background: var(--bg); }
.bg-navy     { background: var(--navy); }
.bg-white    { background: var(--white); }
.bg-gold     { background: var(--gold); }
.bg-warm     { background: var(--bg-alt); }
.border-top  { border-top: 1px solid var(--border); }

.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .8125rem; }
.text-lg { font-size: 1.0625rem; }

.max-600 { max-width: 600px; }
.max-720 { max-width: 720px; }
.mx-auto { margin-inline: auto; }

.flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; }

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin-block: 3rem;
}

/* 23. Animations
   ============================================================ */
/* opacity: 0.01 so content is never fully invisible/broken looking */
.fade-up {
  opacity: 0.01;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }

/* 24. Icon Boxes
   ============================================================ */
.icon-box {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; color: var(--gold); stroke-width: 1.75; }
.icon-box--lg {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
}
.icon-box--lg svg { width: 26px; height: 26px; }
.icon-box--dark {
  background: rgba(176,125,26,0.12);
  border-color: rgba(176,125,26,0.25);
}
.icon-box--dark svg { color: var(--gold); }

/* 25. Hero Two-Column Layout
   ============================================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 4rem; }
}
.hero-proof-panel { display: none; }
@media (min-width: 1024px) {
  .hero-proof-panel {
    display: flex;
    flex-direction: column;
    gap: .875rem;
  }
}

/* Proof items in hero panel */
.proof-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  transition: background 200ms ease, border-color 200ms ease;
}
.proof-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(176,125,26,0.30);
}
.proof-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(176,125,26,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-item-icon svg { width: 20px; height: 20px; color: var(--gold); stroke-width: 1.75; }
.proof-item-text strong { display: block; font-size: .9375rem; color: var(--white); font-weight: 600; }
.proof-item-text span  { font-size: .8125rem; color: rgba(255,255,255,0.50); }

/* 26. Stat Banner (top of page social proof strip)
   ============================================================ */
.stat-banner {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.25rem;
}
.stat-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.stat-banner-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.stat-banner-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.stat-banner-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.14);
}
@media (max-width: 639px) { .stat-banner-divider { display: none; } }

/* 27. Pricing Disclaimer
   ============================================================ */
.pricing-disclaimer {
  text-align: center;
  font-size: .875rem;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .875rem 1.5rem;
  max-width: 680px;
  margin-inline: auto;
  margin-top: 2rem;
}

/* 28. Privacy / Legal Prose
   ============================================================ */
.prose h2 { font-size: 1.375rem; margin: 2.5rem 0 .875rem; color: var(--text); }
.prose h3 { font-size: 1.125rem; margin: 1.75rem 0 .625rem; color: var(--text); }
.prose p   { font-size: .9625rem; margin-bottom: 1rem; }
.prose ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { font-size: .9625rem; color: var(--text-light); padding-block: .25rem; }
.prose a   { color: var(--gold); text-decoration: underline; }

/* 29. Aliases & Missing Classes
   ============================================================ */

/* stat-strip — alias for stats-strip used in index.html */
.stat-strip                { background: var(--white); border-bottom: 1px solid var(--border); padding-block: 2.75rem; }
.stat-strip-inner          { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 0; }
.stat-strip-item           { flex: 1; min-width: 160px; text-align: center; padding: 1.25rem 2rem; position: relative; }
.stat-strip-item + .stat-strip-item::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.stat-strip-number         { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: .4rem; }
.stat-strip-label          { font-size: .875rem; color: var(--text-light); line-height: 1.4; }
.stat-strip-divider        { width: 1px; background: var(--border); align-self: stretch; margin: .5rem 0; flex-shrink: 0; }
@media (max-width: 639px)  { .stat-strip-item + .stat-strip-item::before { display: none; } .stat-strip-divider { display: none; } .stat-strip-item { border-bottom: 1px solid var(--border-light); } }

/* hero-content-centered — centered hero layout */
.hero-content-centered     { text-align: center; max-width: 760px; margin-inline: auto; position: relative; }
.hero-content-centered h1  { max-width: 100%; }
.hero-content-centered .hero-sub { margin-inline: auto; }
.hero-content-centered .hero-ctas { justify-content: center; }
.hero-content-centered .hero-trust { justify-content: center; }

/* hero-location — subtle location label above H1 */
.hero-location { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }

/* btn-white — white bg, navy text (for use on dark/navy backgrounds) */
.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.92); color: var(--navy); }

/* 30. Software Dashboard Mockups
   ============================================================ */
.software-mockup {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  max-width: 540px;
  margin-inline: auto;
}
.mockup-chrome {
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: .625rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.mockup-chrome-dots { display: flex; gap: .375rem; }
.mockup-chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-chrome-dots span:nth-child(1) { background: #ff5f57; }
.mockup-chrome-dots span:nth-child(2) { background: #febc2e; }
.mockup-chrome-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: .25rem .75rem;
  font-size: .75rem;
  color: #888;
  font-family: var(--font);
}
.mockup-body { padding: 1.5rem; }
.mockup-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.mockup-app-logo {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mockup-app-logo .logo-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.mockup-report-title { font-size: .8rem; font-weight: 700; color: var(--text); margin-bottom: .125rem; }
.mockup-report-sub { font-size: .7rem; color: var(--text-light); }
.mockup-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.mockup-table th {
  text-align: left;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .375rem .5rem;
  border-bottom: 1px solid var(--border);
}
.mockup-table th:last-child { text-align: right; }
.mockup-table td {
  padding: .5rem .5rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}
.mockup-table td:last-child { text-align: right; font-weight: 600; color: var(--text); }
.mockup-table tr.section-header td {
  font-weight: 700;
  color: var(--text);
  font-size: .75rem;
  background: var(--bg);
  padding-top: .75rem;
  border-bottom: 1px solid var(--border);
}
.mockup-table tr.total td {
  font-weight: 800;
  color: var(--navy);
  font-size: .85rem;
  border-top: 2px solid var(--border);
  border-bottom: none;
  padding-top: .75rem;
}
.mockup-table tr.positive td:last-child { color: #16a34a; }
.mockup-table tr.negative td:last-child { color: #dc2626; }
.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: #dcfce7;
  color: #16a34a;
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 100px;
}

/* Mockup section layout */
.mockup-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .mockup-section { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.mockup-section--reverse { }
@media (min-width: 1024px) {
  .mockup-section--reverse { }
}

/* Job costing mockup */
.job-costing-mockup {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.job-costing-header {
  background: var(--navy);
  color: var(--white);
  padding: .875rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.job-costing-header strong { font-size: .875rem; }
.job-costing-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: .8rem;
  align-items: center;
}
.job-costing-row.header-row {
  background: var(--bg);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-block: .5rem;
}
.job-costing-row .job-name { font-weight: 600; color: var(--text); }
.job-costing-row .amount { font-weight: 600; color: var(--text); text-align: right; min-width: 70px; }
.job-costing-row .margin { text-align: right; min-width: 55px; font-weight: 700; }
.margin-good { color: #16a34a; }
.margin-ok { color: var(--gold); }
.margin-bad { color: #dc2626; }
.job-bar {
  height: 6px;
  border-radius: 100px;
  background: var(--border);
  overflow: hidden;
  width: 80px;
}
.job-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--gold);
}
.job-bar-fill.good { background: #16a34a; }
.job-bar-fill.ok { background: var(--gold); }
.job-bar-fill.bad { background: #dc2626; }

/* 31. Responsive Helpers
   ============================================================ */
@media (max-width: 639px) {
  .section     { padding-block: 3.5rem; }
  .section--lg { padding-block: 4rem; }
  .cta-section { padding-block: 4rem; }
  .hero        { padding-block: 4rem 3.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
