/* ============================================================
   PARAGON CSI — Shared Stylesheet  (modernised)
   Brand: Forest Green #0D5540 | Gold #C9A84C
   Font:  Plus Jakarta Sans (body) | Georgia (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --green:      #0D5540;
  --dark-green: #0a3d2b;
  --footer-bg:  #071F17;
  --gold:       #C9A84C;
  --off-white:  #f7f6f3;
  --nav-h:      68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: #222; background: #fff;
  scroll-padding-top: calc(var(--nav-h) + 3px);
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Utilities ── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}

/* ── Gold bars ── */
.gold-bar { height: 3px; background: var(--gold); position: relative; z-index: 200; }

/* ── Sticky nav ── */
.gold-bar:first-of-type { position: sticky; top: 0; z-index: 201; }
nav {
  background: var(--green);
  position: sticky; top: 3px; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
nav + .gold-bar { position: sticky; top: calc(var(--nav-h) + 3px); z-index: 200; }

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46px; object-fit: contain; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: rgba(255,255,255,.6); font-size: .8rem;
  text-decoration: none; white-space: nowrap; font-weight: 500;
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links > a {
  color: rgba(255,255,255,.82); text-decoration: none; font-size: .85rem;
  padding: 8px 14px; border-radius: 2px; transition: color .2s; font-weight: 500;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--green); padding: 9px 20px;
  border-radius: 4px; font-weight: 700; font-size: .84rem;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #b8962e; transform: translateY(-1px); }

/* ── Dropdown nav ── */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.82); text-decoration: none; font-size: .85rem;
  padding: 8px 14px; border-radius: 2px; transition: color .2s; font-weight: 500;
}
.nav-links .dropdown > a:hover,
.nav-links .dropdown > a.active { color: var(--gold); }
.nav-links .dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,.5);
  margin-top: 1px; transition: border-top-color .2s, transform .2s;
}
.nav-links .dropdown:hover > a::after {
  border-top-color: var(--gold);
  transform: rotate(180deg) translateY(2px);
}
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--dark-green); min-width: 220px;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  z-index: 200;
  animation: dropIn .15s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-menu a {
  display: block; color: rgba(255,255,255,.75) !important;
  text-decoration: none; font-size: .83rem; font-weight: 500;
  padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown-menu a:last-child { border-bottom: none; border-radius: 0 0 6px 6px; }
.dropdown-menu a:hover { background: rgba(255,255,255,.07); color: var(--gold) !important; padding-left: 22px; }
.dropdown-menu .menu-overview {
  display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold) !important; font-weight: 700;
  padding: 12px 18px 8px; border-bottom: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }

/* ── Sub-nav ── */
.sub-nav {
  background: var(--dark-green); display: flex;
  border-bottom: 1px solid rgba(255,255,255,.08); overflow-x: auto;
  position: sticky; top: calc(var(--nav-h) + 6px); z-index: 140;
}
.sub-nav a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .83rem;
  padding: 11px 20px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap; font-weight: 500;
}
.sub-nav a:hover { color: #fff; }
.sub-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Hero ── */
.page-hero {
  background: var(--green); color: #fff;
  padding: 100px 0 88px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 56px;
  background: #fff; clip-path: polygon(0 100%, 100% 100%, 100% 0);
  pointer-events: none;
}
.page-hero.alt-clip::after { background: var(--off-white); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label {
  color: var(--gold); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero .label::before {
  content: ''; display: inline-block; width: 24px; height: 2px; background: var(--gold);
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: normal; margin-bottom: 20px; line-height: 1.18; max-width: 780px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,.75); max-width: 580px;
  line-height: 1.82; margin-bottom: 32px; font-size: 1rem;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-gold {
  background: var(--gold); color: var(--green); border: none;
  padding: 13px 30px; font-size: .9rem; font-weight: 700;
  cursor: pointer; border-radius: 4px; letter-spacing: .03em;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(201,168,76,.3);
}
.btn-gold:hover { background: #b8962e; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,.35); }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3);
  padding: 13px 30px; font-size: .9rem; cursor: pointer; border-radius: 4px;
  text-decoration: none; display: inline-block; font-weight: 600;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Checklist band ── */
.check-band {
  background: var(--dark-green); color: #fff; padding: 80px 0;
  position: relative;
}
.check-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.check-band .container { position: relative; z-index: 1; }
.check-band h2 { font-family: Georgia, serif; font-size: clamp(1.6rem,3vw,1.9rem); font-weight: normal; margin-bottom: 8px; }
.check-band .sub { color: rgba(255,255,255,.6); margin-bottom: 40px; font-size: .93rem; line-height: 1.72; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.chk {
  width: 22px; height: 22px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.chk::after {
  content: ''; display: block; width: 5px; height: 9px;
  border: 2px solid var(--green); border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px,-2px);
}
.check-text strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 3px; font-weight: 600; }
.check-text span { color: rgba(255,255,255,.58); font-size: .83rem; line-height: 1.55; }

/* ── Sections ── */
.section { padding: 88px 0; }
.section.alt { background: var(--off-white); }
.section h2 { font-family: Georgia, serif; font-size: clamp(1.7rem,3vw,2rem); font-weight: normal; color: var(--green); margin-bottom: 14px; line-height: 1.3; }
.section-sub { color: #666; font-size: .95rem; line-height: 1.75; max-width: 560px; margin-bottom: 44px; }

/* ── Cards ── */
.card-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card {
  border-top: 3px solid var(--gold); padding: 28px 24px; background: #fff;
  border-radius: 0 0 6px 6px; box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.card h3 { font-family: Georgia, serif; font-size: 1.05rem; color: var(--green); margin-bottom: 10px; font-weight: normal; }
.card p { font-size: .87rem; color: #555; line-height: 1.72; }
.card-dark {
  background: var(--green); border-top: 3px solid var(--gold);
  padding: 28px 24px; border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card-dark:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.card-dark h3 { font-family: Georgia, serif; font-size: 1.05rem; color: var(--gold); margin-bottom: 10px; font-weight: normal; }
.card-dark p  { font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.72; }

/* ── Two-column ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.prose p  { color: #444; line-height: 1.85; margin-bottom: 16px; font-size: .96rem; }
.prose h3 { font-family: Georgia, serif; font-size: 1.1rem; color: var(--green); margin: 24px 0 8px; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 44px; }
.step { padding: 28px 22px; border-left: 1px solid #e8e4dc; }
.step:first-child { border-left: none; }
.step-num { font-family: Georgia, serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.step h3  { font-family: Georgia, serif; font-size: .95rem; color: var(--green); margin-bottom: 8px; font-weight: 700; }
.step p   { font-size: .84rem; color: #555; line-height: 1.65; }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: .92rem; }
.compare-table th { background: var(--green); color: #fff; padding: 15px 18px; text-align: left; font-family: Georgia,serif; font-weight: normal; }
.compare-table th:first-child { width: 40%; }
.compare-table td { padding: 14px 18px; border-bottom: 1px solid #ece9e0; vertical-align: top; line-height: 1.5; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .yes { color: var(--green); font-weight: 700; }
.compare-table .yes::before { content: "\2713"; display: inline-block; margin-right: 7px; font-weight: 700; }
.compare-table .no  { color: #656158; font-weight: 500; }
.compare-table .no::before { content: "\2715"; display: inline-block; margin-right: 7px; color: #a39c8c; font-weight: 700; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #e8e4dc; padding: 20px 0; }
.faq-q { font-family: Georgia, serif; font-size: 1rem; color: var(--green); margin-bottom: 8px; }
.faq-a { font-size: .88rem; color: #555; line-height: 1.75; }

/* ── Testimonial band ── */
.testimonial-band {
  background: var(--green); color: #fff; padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.testimonial-band::before {
  content: '\201C'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif; font-size: 18rem; color: rgba(255,255,255,.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.testimonial-band blockquote {
  font-family: Georgia, serif; font-size: clamp(1.1rem,2.5vw,1.35rem);
  font-style: italic; max-width: 720px; margin: 0 auto 22px;
  line-height: 1.75; color: rgba(255,255,255,.92); position: relative; z-index: 1;
}
.testimonial-band cite {
  font-size: .83rem; color: var(--gold); letter-spacing: .07em;
  font-style: normal; text-transform: uppercase; font-weight: 600; position: relative; z-index: 1;
}

/* ── CTA band ── */
.cta-band {
  background: var(--green); color: #fff; padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 120%, rgba(201,168,76,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: Georgia, serif; font-size: clamp(1.7rem,3vw,2.1rem); font-weight: normal; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.68); margin-bottom: 32px; font-size: .97rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Stats bar ── */
.stats-bar { background: var(--gold); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(0,0,0,.1); transition: background .2s; }
.stat-cell:hover { background: rgba(0,0,0,.06); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: Georgia, serif; font-size: 2.4rem; color: var(--green); line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--green); font-weight: 700; }

/* ── Locations ── */
.loc-card {
  border-left: 3px solid var(--gold); padding: 26px 22px; background: #fff;
  border-radius: 0 6px 6px 0; box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .22s, box-shadow .22s;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.loc-card h4 { font-family: Georgia, serif; color: var(--green); margin-bottom: 10px; font-size: 1rem; }
.loc-card address { font-style: normal; font-size: .88rem; color: #555; line-height: 1.85; }
.loc-card address a { color: var(--green); text-decoration: none; font-weight: 600; }

/* ── Contact form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { background: #fff; border: 1px solid #e8e4dc; padding: 40px; border-radius: 8px; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .78rem; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: .07em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e0dbd4; border-radius: 4px; padding: 11px 14px;
  font-size: .9rem; font-family: 'Plus Jakarta Sans', Arial, sans-serif; color: #222;
  transition: border-color .2s, box-shadow .2s; background: #fdfcfb;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,85,64,.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 15px; font-size: .95rem; font-weight: 700; cursor: pointer;
  border-radius: 4px; letter-spacing: .04em;
  transition: background .2s, transform .15s, box-shadow .2s;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}
.form-submit:hover { background: var(--dark-green); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,85,64,.25); }

/* ── Footer ── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.5); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-name { font-family: Georgia,serif; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.footer-brand-sub  { font-size: .75rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.footer-brand-desc { font-size: .82rem; line-height: 1.75; max-width: 220px; }
.footer h4 { color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); text-decoration: none; margin-left: 20px; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .card-grid  { grid-template-columns: 1fr 1fr; }
  .steps      { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .card-grid, .card-grid-2, .two-col, .check-grid,
  .form-grid, .form-row, .stats-bar { grid-template-columns: 1fr; }
  .steps      { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stat-cell  { border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); }
  .page-hero  { padding: 72px 0 60px; }
  .page-hero::after { height: 32px; }
  .section    { padding: 64px 0; }
  .check-band { padding: 64px 0; }
}

/* ── Blog article pages ── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.article-wrap h2 {
  font-family: Georgia, serif; font-size: 1.5rem; color: var(--green);
  margin: 48px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.article-wrap h3 { font-family: Georgia, serif; font-size: 1.15rem; color: var(--green); margin: 28px 0 10px; }
.article-wrap p { color: #444; line-height: 1.8; margin-bottom: 18px; font-size: 1.02rem; }
.article-wrap ul, .article-wrap ol { margin: 0 0 20px 0; padding-left: 24px; }
.article-wrap li { color: #444; line-height: 1.75; margin-bottom: 8px; font-size: 1.02rem; }
.article-wrap strong { color: var(--green); }
.callout {
  background: rgba(13,85,64,.07); border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0; padding: 20px 24px; margin: 32px 0;
}
.callout p { margin-bottom: 0; color: #333; }
.article-cta {
  background: var(--green); border-radius: 8px;
  padding: 36px 40px; margin-top: 56px; text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.75); margin-bottom: 22px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: .85rem; font-weight: 700;
  text-decoration: none; letter-spacing: .04em; margin-bottom: 40px;
}
.back-link:hover { color: var(--green); }
.article-tag {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: var(--green);
  padding: 4px 10px; border-radius: 3px; margin-bottom: 8px;
}

/* ── Blog index page ── */
.blog-grid-section { padding: 64px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid #ece9e0; transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.card-meta { font-size: .75rem; color: #999; margin-bottom: 8px; }
.blog-card-body h3 { font-family: Georgia, serif; color: var(--green); font-size: 1rem; font-weight: normal; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: .85rem; color: #555; line-height: 1.65; flex: 1; }
.read-more { color: var(--gold); font-size: .82rem; font-weight: 700; text-decoration: none; margin-top: 14px; display: inline-block; letter-spacing: .04em; }
.read-more:hover { color: var(--green); }

/* ── Featured post card ── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark-green);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 52px;
  min-height: 380px;
}
.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content h2 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.featured-content p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.75; margin-bottom: 22px; }
.featured-content .post-meta { color: rgba(255,255,255,.4); font-size: .78rem; margin-top: 0; margin-bottom: 16px; }

.post-meta { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 16px; }
.cat-bar { background: #f7f5f0; border-bottom: 1px solid #e8e4dc; padding: 0; }
.cat-bar-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; gap: 6px; overflow-x: auto; }
.cat-btn {
  background: none; border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: .8rem; font-weight: 600; color: #666; padding: 14px 16px;
  border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s, border-color .2s;
}
.cat-btn:hover { color: var(--green); }
.cat-btn.active { color: var(--green); border-bottom-color: var(--gold); }
.newsletter-band { background: var(--dark-green); padding: 64px 0; text-align: center; }
.newsletter-band h2 { font-family: Georgia, serif; color: #fff; font-size: 1.7rem; font-weight: normal; margin-bottom: 10px; }
.newsletter-band p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 28px; }
.nl-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.nl-input {
  flex: 1; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 4px;
  background: rgba(255,255,255,.08); color: #fff; font-size: .9rem;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { outline: none; border-color: var(--gold); }

/* ── Legal pages ── */
.legal-hero {
  background: var(--green); padding: 80px 0 60px;
  text-align: center; position: relative;
}
.legal-hero::before {
  content: ''; display: block; height: 3px; background: var(--gold);
  position: absolute; top: 0; left: 0; right: 0;
}
.legal-hero h1 { color: #fff; font-family: Georgia, serif; font-size: 2.4rem; font-weight: normal; margin: 0 0 12px; }
.legal-hero .meta { color: rgba(255,255,255,.6); font-size: .88rem; }
.legal-hero .meta span { color: var(--gold); }
.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-body h2 {
  font-family: Georgia, serif; color: var(--green); font-size: 1.25rem;
  font-weight: normal; margin: 48px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid #e0dbd0;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { font-family: 'Plus Jakarta Sans', Arial, sans-serif; color: #333; font-size: .95rem; line-height: 1.75; margin: 0 0 16px; }
.legal-body ul { font-family: 'Plus Jakarta Sans', Arial, sans-serif; color: #333; font-size: .95rem; line-height: 1.75; margin: 0 0 16px; padding-left: 24px; }
.legal-body ul li { margin-bottom: 6px; }
.legal-body a { color: var(--green); text-decoration: underline; }
.legal-body a:hover { color: var(--gold); }
.legal-toc { background: #f7f5f0; border: 1px solid #e0dbd0; border-radius: 6px; padding: 24px 28px; margin-bottom: 48px; }
.legal-toc p { font-weight: bold; color: var(--green); margin-bottom: 10px !important; }
.legal-toc ol { font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-size: .9rem; color: var(--green); padding-left: 20px; margin: 0; }
.legal-toc ol li { margin-bottom: 4px; }
.legal-toc ol li a { color: var(--green); text-decoration: none; }
.legal-toc ol li a:hover { color: var(--gold); text-decoration: underline; }
.legal-body .contact-block { background: #f7f5f0; border-left: 3px solid var(--gold); padding: 20px 24px; margin: 32px 0 0; border-radius: 0 4px 4px 0; }
.legal-body .contact-block p { margin: 0; }
.notice-block { background: var(--dark-green); color: rgba(255,255,255,.85); font-size: .88rem; line-height: 1.7; padding: 18px 24px; border-radius: 4px; margin-bottom: 40px; }
.notice-block strong { color: var(--gold); }
.conformance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0 32px; }
.conformance-card { border: 1px solid #e0dbd0; border-radius: 6px; padding: 20px; text-align: center; }
.conformance-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.conformance-card h3 { font-family: Georgia, serif; color: var(--green); font-size: 1rem; font-weight: normal; margin: 0 0 6px; }
.conformance-card p { font-size: .82rem; color: #666; margin: 0; }
.issues-table { width: 100%; border-collapse: collapse; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-size: .88rem; margin: 16px 0 32px; }
.issues-table th { background: var(--green); color: #fff; text-align: left; padding: 10px 14px; font-weight: normal; }
.issues-table td { padding: 10px 14px; border-bottom: 1px solid #e0dbd0; vertical-align: top; color: #333; }
.issues-table tr:nth-child(even) td { background: #f7f5f0; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 12px; font-size: .78rem; font-weight: bold; }
.badge-planned { background: #e8f4ee; color: var(--green); }
.badge-partial { background: #fef6e4; color: #8a6800; }

/* ── Contact page specifics ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-left h2 { font-family: Georgia, serif; color: var(--green); font-size: 1.7rem; font-weight: normal; margin-bottom: 14px; }
.contact-left p { color: #555; line-height: 1.8; margin-bottom: 24px; font-size: .95rem; }
.offices-block { margin-top: 32px; }
.offices-block h3 { font-family: Georgia, serif; color: var(--green); font-size: 1rem; margin-bottom: 16px; }

.office-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #ece9e0; }
.office-row:last-child { border-bottom: none; }
.office-icon { width: 36px; height: 36px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1rem; }
.office-details h4 { font-size: .88rem; color: var(--green); font-weight: 700; margin-bottom: 3px; }
.office-details address { font-style: normal; font-size: .83rem; color: #666; line-height: 1.65; }
.contact-connect { margin-top: 28px; }
.connect-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #888; margin-bottom: 10px; }
.connect-card { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid #e8e4dc; border-radius: 6px; margin-bottom: 10px; transition: border-color .2s, box-shadow .2s; }
.connect-card:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.btn-linkedin { background: #0A66C2; color: #fff; padding: 9px 18px; border-radius: 4px; font-size: .82rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: background .2s; }
.btn-linkedin:hover { background: #004182; }
.btn-phone-big { background: var(--green); color: #fff; padding: 13px 24px; border-radius: 4px; font-size: .95rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background .2s; }
.btn-phone-big:hover { background: var(--dark-green); }

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .legal-body { padding: 40px 20px 60px; }
}

/* Category filter bar */
.cat-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.cat-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.cat-btn:hover { color: var(--green); }
.cat-btn.active { color: var(--green); border-bottom-color: var(--gold); }


/* Blog grid */
.blog-grid-section {
  padding: 60px 0 80px;
  background: #fff;
}
.blog-grid-section .section-label { text-align: center; }
.blog-grid-section h2 { text-align: center; margin-bottom: 40px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,85,64,.12); }
.blog-card-img {
  height: 192px;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.post-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.tag-edi    { background: rgba(13,85,64,.1); color: var(--green); }
.tag-ibmi   { background: rgba(201,168,76,.15); color: #7a6020; }
.tag-metals { background: rgba(80,80,100,.1); color: #3a3a55; }
.tag-managed{ background: rgba(13,85,64,.08); color: var(--green); }
.tag-cloud  { background: rgba(30,100,180,.1); color: #1a5090; }
.tag-erp    { background: rgba(140,60,20,.1); color: #6a2a08; }

.blog-card-body h3 { font-size: 1.05rem; line-height: 1.35; margin-bottom: 8px; color: var(--green); }
.blog-card-body p  { font-size: .88rem; color: #666; line-height: 1.65; flex: 1; }
.card-meta { margin-top: 16px; font-size: .77rem; color: #999; display: flex; align-items: center; gap: 8px; }
.card-meta span { color: #bbb; }
.read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
}
.read-more:hover { color: var(--green); }



/* Newsletter signup */
.newsletter-band {
  background: #f7f5f0;
  padding: 56px 0;
  text-align: center;
}
.newsletter-band .section-label { margin-bottom: 8px; }
.newsletter-band h2 { margin-bottom: 12px; }
.newsletter-band p { color: #666; max-width: 480px; margin: 0 auto 28px; }
.nl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.nl-input {
  padding: 13px 18px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  font-size: .95rem;
  width: 280px;
  outline: none;
  transition: border-color .2s;
}
.nl-input:focus { border-color: var(--green); }

@media (max-width: 900px) {
  .featured-img { height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .featured-content h2 { font-size: 1.4rem; }
}

/* ── Contact page overrides ── */
/* ── Contact page layout overrides ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 0; }

/* Offices stacked as horizontal rows, not 2-up cards */
.offices-block {
  margin-bottom: 0;
}
.offices-block h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.office-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  align-items: start;
}
.office-row:first-of-type { border-top: 1px solid #eee; }
.office-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-icon svg { display: block; }
.office-details h4 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 0 0 4px;
}
.office-details address {
  font-style: normal;
  font-size: .88rem;
  color: #555;
  line-height: 1.6;
}
.office-details address a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.office-details address a:hover { color: var(--gold); }

/* LinkedIn + phone strip */
.contact-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.connect-card {
  background: #f7f5f0;
  border: 1px solid #e8e4dc;
  border-radius: 6px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.connect-card .connect-label {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}
.connect-card p {
  font-size: .83rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A66C2;
  color: #fff;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  align-self: flex-start;
}
.btn-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  align-self: flex-start;
}
.btn-phone-big:hover { background: #0a3d2b; }
.btn-linkedin:hover { background: #084d97; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-connect { grid-template-columns: 1fr; }
}

/* ── Industries page overrides ── */
.ind-jumpnav{background:#fff;border-bottom:1px solid #e8e4dc;position:sticky;top:0;z-index:50;box-shadow:0 2px 10px rgba(0,0,0,.06)}
.ind-jumpnav-inner{max-width:1180px;margin:0 auto;padding:0 24px;display:flex;gap:0;overflow-x:auto;scrollbar-width:none}
.ind-jumpnav-inner::-webkit-scrollbar{display:none}
.ind-jump{flex-shrink:0;padding:13px 18px;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:#666;text-decoration:none;border-bottom:3px solid transparent;white-space:nowrap;transition:color .2s,border-color .2s}
.ind-jump:hover{color:var(--green);border-bottom-color:var(--gold)}

.ind-section{padding:64px 0;border-bottom:1px solid #e8e4dc}
.ind-section:nth-child(even){background:#f7f5f0}
.ind-section:nth-child(odd){background:#fff}

.ind-inner{max-width:1180px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:400px 1fr;gap:52px;align-items:start}
.ind-inner.rev{grid-template-columns:1fr 400px}
.ind-inner.rev .ind-media{order:2}
.ind-inner.rev .ind-content{order:1}

.ind-photo{border-radius:6px 6px 0 0;overflow:hidden;height:240px;box-shadow:0 6px 24px rgba(0,0,0,.13)}
.ind-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.ind-photo:hover img{transform:scale(1.03)}
.ind-caption{background:var(--green);padding:9px 16px;border-radius:0 0 6px 6px;font-size:.75rem;color:rgba(255,255,255,.65);font-weight:500}

.ind-pills{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.ind-pill{font-size:.72rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:4px 11px;border:1.5px solid rgba(13,85,64,.25);border-radius:3px;color:var(--green);background:rgba(13,85,64,.05)}

.ind-content .section-label{margin-bottom:6px}
.ind-content h2{font-size:1.5rem;line-height:1.25;margin-bottom:14px}
.ind-content > p{color:#555;line-height:1.75;margin-bottom:12px;font-size:.96rem}

.ind-services{margin:18px 0 22px;display:flex;flex-direction:column}
.ind-svc{display:grid;grid-template-columns:20px 1fr;gap:12px;padding:11px 0;border-bottom:1px solid #eee;align-items:start}
.ind-svc:first-child{border-top:1px solid #eee}
.ind-dot{width:7px;height:7px;background:var(--gold);border-radius:50%;margin-top:6px;flex-shrink:0}
.ind-svc strong{display:block;font-size:.87rem;color:var(--green);font-weight:700;margin-bottom:2px}
.ind-svc span{font-size:.83rem;color:#666;line-height:1.55}

.ind-quote{background:var(--green);border-radius:6px;padding:22px 24px;margin-top:18px}
.ind-quote blockquote{font-family:Georgia,serif;font-size:.97rem;font-style:italic;color:rgba(255,255,255,.9);line-height:1.65;margin:0 0 12px}
.ind-quote cite{font-size:.77rem;color:var(--gold);font-style:normal;font-weight:700;letter-spacing:.05em;text-transform:uppercase}
.ind-quote-sub{font-size:.77rem;color:rgba(255,255,255,.5);margin-top:10px;padding-top:10px;border-top:1px solid rgba(255,255,255,.12);line-height:1.55}

.ind-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

@media(max-width:900px){
  .ind-inner,.ind-inner.rev{grid-template-columns:1fr}
  .ind-inner.rev .ind-media,.ind-inner.rev .ind-content{order:unset}
}
