/* ============================================
   CORE ACCOUNTING INC. — GLOBAL STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --navy-deep: #060e1a;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --cream: #f5f0e8;
  --offwhite: #faf8f4;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(201,168,76,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--offwhite); color: var(--text); overflow-x: hidden; }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold);
  text-decoration: none; letter-spacing: 0.01em; flex-shrink: 0;
}
.logo span { color: #fff; font-weight: 300; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 10px 20px; border-radius: 2px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  min-width: 210px; list-style: none;
  padding: 6px 0;
  z-index: 300;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.nav-dropdown.active .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 11px 20px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65) !important;
  text-transform: none !important; letter-spacing: 0.02em !important;
  transition: all 0.15s;
}
.dropdown li a:hover { color: var(--gold) !important; background: rgba(255,255,255,0.05); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.7); transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====== TYPOGRAPHY ====== */
.section-label {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15; color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; font-weight: 300; max-width: 560px;
}
.section-sub.light { color: rgba(255,255,255,0.45); }

/* ====== BUTTONS ====== */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 34px; border-radius: 2px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-dark {
  background: var(--navy); color: var(--gold);
  padding: 15px 34px; border-radius: 2px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.25s; display: inline-block;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ====== HERO (shared) ====== */
.page-hero {
  min-height: 72vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 140px 6% 80px;
  position: relative; overflow: hidden;
}
.page-hero.dark { background: var(--navy-deep); }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 65% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 68px 68px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.76rem; color: rgba(255,255,255,0.3); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.1; color: #fff; font-weight: 900;
  margin-bottom: 22px; max-width: 640px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub-text {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.55); max-width: 500px;
  font-weight: 300; margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Pricing card in hero */
.hero-price-card {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 3px; padding: 34px 30px; min-width: 255px;
}
.hpc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hpc-from { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.hpc-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: #fff; font-weight: 900; line-height: 1; }
.hpc-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 7px; line-height: 1.5; }
.hpc-divider { height: 1px; background: var(--border); margin: 22px 0; }
.hpc-list { list-style: none; }
.hpc-list li { font-size: 0.81rem; color: rgba(255,255,255,0.55); padding: 6px 0; display: flex; gap: 9px; }
.hpc-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ====== CARDS ====== */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 50px; }
.who-card {
  background: #fff; padding: 38px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.who-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.who-card:hover::before { transform: scaleX(1); }
.who-card:hover { background: var(--navy); }
.who-card:hover .who-title { color: #fff; }
.who-card:hover .who-desc { color: rgba(255,255,255,0.5); }
.who-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.who-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; transition: color 0.3s; }
.who-desc { font-size: 0.86rem; line-height: 1.7; color: var(--muted); transition: color 0.3s; }

/* Include list */
.include-item { padding: 20px 0; border-bottom: 1px solid #ede8df; display: flex; gap: 16px; align-items: flex-start; }
.include-check { width: 26px; height: 26px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.68rem; color: var(--gold); font-weight: 700; }
.include-text strong { display: block; font-size: 0.93rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.include-text span { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* Callout box */
.callout-box {
  background: var(--navy); padding: 42px 36px;
  border-radius: 3px; position: relative; overflow: hidden;
}
.callout-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.callout-box-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 12px; font-weight: 700; }
.callout-box-body { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; margin-bottom: 26px; }
.callout-stat { padding: 16px 0; border-top: 1px solid rgba(201,168,76,0.15); display: flex; justify-content: space-between; align-items: center; }
.callout-stat-num { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--gold); font-weight: 700; }
.callout-stat-label { font-size: 0.74rem; color: rgba(255,255,255,0.35); text-align: right; line-height: 1.4; }

/* Situation cards */
.situations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 50px; }
.situation-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1);
  padding: 28px 24px; border-radius: 2px; transition: all 0.3s;
}
.situation-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.3); }
.situation-q { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: #fff; margin-bottom: 10px; font-weight: 700; font-style: italic; }
.situation-a { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.situation-tag { display: inline-block; margin-top: 14px; font-size: 0.68rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.25); padding: 3px 10px; border-radius: 20px; }

/* Process steps */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-row::before { content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.25; }
.p-step { padding: 0 18px; text-align: center; }
.p-num { width: 52px; height: 52px; background: var(--navy); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); font-weight: 700; position: relative; z-index: 1; }
.p-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 9px; font-weight: 700; }
.p-title.light { color: #fff; }
.p-desc { font-size: 0.83rem; line-height: 1.65; color: var(--muted); }
.p-desc.light { color: rgba(255,255,255,0.45); }

/* CTA strip */
.cta-strip { padding: 76px 6%; background: var(--gold); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: var(--navy); font-weight: 900; }
.cta-strip p { color: rgba(10,22,40,0.6); font-size: 0.92rem; margin-top: 8px; font-weight: 300; }

/* Testimonials */
.testimonial-card { background: #fff; padding: 38px 32px; border-radius: 2px; border-top: 3px solid var(--gold); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); opacity: 0.14; line-height: 0.5; margin-bottom: 18px; display: block; font-weight: 900; }
.testimonial-text { font-size: 0.93rem; line-height: 1.75; color: var(--text); margin-bottom: 24px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.95rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.author-role { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.stars { color: var(--gold); font-size: 0.72rem; margin-bottom: 3px; }

/* ====== FOOTER ====== */
#site-footer {
  background: var(--navy-deep); padding: 58px 6% 34px;
  border-top: 1px solid var(--border-light);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand .logo { display: inline-block; margin-bottom: 14px; font-size: 1.15rem; }
.footer-brand p { font-size: 0.81rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-row { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-row span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.81rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.16); }
.footer-bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ====== UTILITIES ====== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-pad { padding: 100px 6%; }
.section-pad-sm { padding: 70px 6%; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.two-col.center { align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-dark { background: var(--navy-deep); }
.bg-white { background: #fff; }
.bg-offwhite { background: var(--offwhite); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.sticky-col { position: sticky; top: 110px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy-deep); padding: 24px 6%; gap: 0; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
  .dropdown { display: none; position: static; border: none; background: transparent; padding: 0 0 0 16px; box-shadow: none; }
  .nav-dropdown.active .dropdown { display: block; }
  .nav-hamburger { display: flex; }
  .hero-price-card { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-strip { flex-direction: column; text-align: center; }
  .sticky-col { position: static; }
}

@media (max-width: 600px) {
  .section-pad { padding: 72px 5%; }
  .four-col { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============================================
   MOBILE RESPONSIVE — screens under 768px
   Desktop is completely unaffected
   ============================================ */

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 14px 5%;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,22,40,0.99);
    flex-direction: column;
    padding: 20px 5% 30px;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 199;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.95rem !important;
    letter-spacing: 0.04em !important;
    color: rgba(255,255,255,0.8) !important;
  }

  .nav-cta {
    margin-top: 12px;
    display: block !important;
    text-align: center;
    padding: 14px !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 2px;
  }

  .nav-hamburger {
    display: flex !important;
  }

  /* HERO */
  .page-hero {
    padding: 110px 5% 60px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: 2.2rem !important;
  }

  .hero-sub-text {
    font-size: 0.95rem;
  }

  .hero-price-card {
    display: none !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* SECTIONS */
  .section-pad {
    padding: 60px 5%;
  }

  .section-pad-sm {
    padding: 44px 5%;
  }

  .section-title {
    font-size: 1.9rem;
  }

  /* TWO COL → SINGLE COL */
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .sticky-col {
    position: static !important;
  }

  /* THREE COL → SINGLE COL */
  .three-col {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* FOUR COL → TWO COL */
  .four-col {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  /* WHO GRID */
  .who-grid {
    grid-template-columns: 1fr !important;
    gap: 2px;
  }

  .who-card {
    padding: 28px 24px;
  }

  /* SERVICE CARDS */
  .service-card, a.service-card {
    padding: 32px 24px !important;
  }

  .service-num {
    font-size: 2.5rem !important;
    top: 16px !important;
    right: 20px !important;
  }

  /* PACKAGES */
  .pkg-grid, 
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .pkg-card {
    padding: 32px 24px;
  }

  .pkg-card.featured {
    order: -1;
  }

  /* PROCESS STEPS */
  .process-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }

  .process-row::before {
    display: none;
  }

  /* TESTIMONIALS */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* SITUATIONS */
  .situations-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* STATS (hero) */
  .hero-stats {
    display: none !important;
  }

  /* TRUST BAR */
  .trust-bar {
    padding: 16px 5%;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 0.76rem;
    width: calc(50% - 6px);
  }

  /* CTA STRIP */
  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 52px 5%;
    gap: 24px;
  }

  .cta-strip .btn-dark {
    width: 100%;
    text-align: center;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  #site-footer {
    padding: 48px 5% 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* CONTACT FORM */
  .contact-layout,
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:72px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 60px 5% !important;
  }

  .contact-form-box {
    padding: 32px 24px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* BLOG */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-featured {
    grid-template-columns: 1fr !important;
  }

  .blog-featured-img {
    min-height: 160px !important;
  }

  .blog-featured-body {
    padding: 28px 24px !important;
  }

  /* BLOG POST */
  .post-layout {
    grid-template-columns: 1fr !important;
    padding: 48px 5% !important;
    gap: 36px;
  }

  .post-sidebar {
    position: static !important;
  }

  /* PACKAGES PAGE */
  .addon-grid {
    grid-template-columns: 1fr !important;
  }

  /* ABOUT */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* GENERAL INLINE GRIDS */
  div[style*="display:grid"] {
    gap: 16px;
  }

  /* BUTTONS */
  .btn-primary, .btn-dark {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  /* HERO EYEBROW */
  .hero-eyebrow {
    font-size: 0.7rem;
  }

  /* CALLOUT STATS */
  .callout-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .callout-stat-label {
    text-align: left !important;
  }

}

/* ============================================
   TABLET — screens 769px to 960px  
   ============================================ */

@media (min-width: 769px) and (max-width: 960px) {

  nav { padding: 16px 5%; }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.76rem !important;
  }

  .section-pad { padding: 72px 5%; }

  .two-col {
    gap: 40px;
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pkg-grid,
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .three-col {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .situations-grid {
    grid-template-columns: 1fr !important;
  }

  .process-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .process-row::before { display: none; }

}

/* ============================================
   CRITICAL MOBILE NAV FIX
   ============================================ */
@media screen and (max-width: 768px) {
  #desk-nav { display: none !important; }
  #mob-btn { display: block !important; }

  /* Footer fix */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  /* Footer logo size */
  #site-footer .logo-img,
  #site-footer img {
    height: 40px !important;
    width: auto !important;
  }

  /* Footer brand inline logo+text */
  #site-footer a[style*="display:flex"] {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  #site-footer a[style*="display:flex"] img {
    height: 36px !important;
  }

  #site-footer a[style*="display:flex"] span span:first-child {
    font-size: 1rem !important;
  }
}
