/* ════════════════════════════════════════════════════════════
   OffshoreAccounting.com – Shared Design System
   Extracted from homepage. Applied to every page site-wide.
   ════════════════════════════════════════════════════════════ */

:root {
  --forest: #374B47;
  --forest-dark: #1e2e2b;
  --forest-deep: #2a3936;
  --sage: #8FD299;
  --sage-light: #B5E0BD;
  --sage-glow: rgba(143, 210, 153, 0.14);
  --amber: #F59E0B;
  --ivory: #f8faf9;
  --off-white: #f4f6f5;
  --text: #1a2320;
  --text-muted: #5a6b66;
  --text-light: rgba(255, 255, 255, 0.72);
  --border: #e1e8e5;
  --border-dark: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(55,75,71,0.08), 0 1px 2px rgba(55,75,71,0.05);
  --shadow-md: 0 6px 16px rgba(55,75,71,0.10), 0 3px 6px rgba(55,75,71,0.06);
  --shadow-lg: 0 18px 40px rgba(55,75,71,0.12), 0 6px 12px rgba(55,75,71,0.06);
  --shadow-xl: 0 25px 55px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--white); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ──────────── Header / Nav ──────────── */
.site-header {
  position: relative;
  background: rgba(30, 46, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.header-logo { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.3px; text-decoration: none; }
.header-logo span { color: var(--sage); }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover, .header-nav a.active { color: var(--sage); }
.header-cta {
  background: var(--sage); color: var(--forest-dark); padding: 10px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.header-cta:hover { background: var(--sage-light); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  color: var(--white); padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
@media (max-width: 900px) {
  .header-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--forest-dark); flex-direction: column;
    gap: 0; padding: 0; display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 14px 24px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: inline-flex; align-items: center; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
}

/* ──────────── Buttons ──────────── */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s; text-align: center; font-family: inherit;
  line-height: 1.2;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sage { background: var(--sage); color: var(--forest-dark); font-weight: 700; }
.btn-sage:hover { background: var(--sage-light); transform: translateY(-1px); }
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { display: block; width: 100%; }

/* ──────────── Hero (dark) ──────────── */
.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 60%, var(--forest-deep) 100%);
  padding: 64px 0 64px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-min-vh { min-height: calc(100vh - 72px); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-glow) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center; width: 100%; position: relative; z-index: 1;
}
.hero-inner-single { display: block; max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--sage); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; padding: 6px 14px;
  background: rgba(143, 210, 153, 0.1);
  border: 1px solid rgba(143, 210, 153, 0.2);
  border-radius: 50px;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 52px); font-weight: 800;
  line-height: 1.08; letter-spacing: -1px; color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--sage); }
.hero-sub {
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6;
  color: var(--text-light); margin-bottom: 24px; max-width: 540px;
}
.hero-inner-single .hero-sub { max-width: 640px; margin: 0 auto 24px; }
.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  padding: 18px 0; margin-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-inner-single .hero-trust-strip { justify-content: center; }
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.85);
}
.hero-trust-item svg { width: 16px; height: 16px; stroke: var(--sage); stroke-width: 2.5; fill: none; flex-shrink: 0; }

.hero-form {
  background: var(--white); border-radius: 14px;
  padding: 28px 28px 22px;
  box-shadow: var(--shadow-xl);
}
.hero-form-header { text-align: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.hero-form-header h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.3px; }
.hero-form-header p { font-size: 13px; color: var(--text-muted); }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text);
  margin-bottom: 6px; letter-spacing: 0.2px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(55, 75, 71, 0.1);
}
.form-submit { margin-top: 16px; }
.form-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  font-size: 11px; color: var(--text-muted);
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
}
.form-trust-item { display: inline-flex; align-items: center; gap: 4px; }
.form-trust-item svg { width: 12px; height: 12px; stroke: var(--sage); stroke-width: 3; fill: none; }
.form-reassure { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; font-style: italic; }

@media (max-width: 900px) {
  .hero { padding: 48px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ──────────── Sections (base) ──────────── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--ivory); }
.section-dark {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 60%, var(--forest-deep) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; position: relative; z-index: 1; }
.section-eyebrow {
  color: var(--forest); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 12px;
  display: inline-block; padding: 6px 14px;
  background: rgba(143, 210, 153, 0.15); border-radius: 50px;
}
.section-dark .section-eyebrow { color: var(--sage); background: rgba(143, 210, 153, 0.1); border: 1px solid rgba(143, 210, 153, 0.2); }
.section h2 {
  font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.8px;
  line-height: 1.12; color: var(--text); margin-bottom: 16px;
}
.section-dark h2 { color: var(--white); }
.section h2 em { font-style: normal; color: var(--forest); }
.section-dark h2 em { color: var(--sage); }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.55; }
.section-dark .section-sub { color: var(--text-light); }

/* ──────────── Cards (universal) ──────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; position: relative; z-index: 1; }
.card {
  background: var(--white); padding: 32px 26px; border-radius: 14px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--sage); }
.card-icon {
  width: 52px; height: 52px; background: rgba(143, 210, 153, 0.18); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--forest); stroke-width: 2; fill: none; }
.card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.3px; }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
.card-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--forest);
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 5px 12px; background: rgba(143, 210, 153, 0.18);
  border-radius: 50px; margin-bottom: 14px;
}
.card-badge {
  display: inline-block; background: rgba(143, 210, 153, 0.18); color: var(--forest);
  padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.3px; margin-top: 14px;
}
.card ul.check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
  font-size: 13.5px; color: var(--text);
}
.card ul.check-list li { padding-left: 18px; position: relative; line-height: 1.5; }
.card ul.check-list li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FD299' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .card-grid-3, .card-grid-4, .card-grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .card ul.check-list { grid-template-columns: 1fr; }
}

/* ──────────── Check list (inline) ──────────── */
.check-list-block {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.check-list-block li {
  padding-left: 28px; position: relative; line-height: 1.6;
  margin-bottom: 10px; font-size: 15.5px; color: var(--text);
}
.check-list-block li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FD299' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}

/* ──────────── Vertical timeline ──────────── */
.vtl-wrap {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.vtl-item {
  display: grid; grid-template-columns: 160px 1fr; gap: 36px;
  padding: 32px 40px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.vtl-item:last-child { border-bottom: none; }
.vtl-item:hover { background: rgba(143, 210, 153, 0.04); }
.vtl-left { display: flex; align-items: center; gap: 16px; }
.vtl-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage); color: var(--forest-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(143, 210, 153, 0.3);
}
.vtl-time {
  font-size: 12px; font-weight: 700; color: var(--forest);
  text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.3;
}
.vtl-content h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.vtl-content p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 700px) {
  .vtl-item { grid-template-columns: 1fr; gap: 14px; padding: 24px 22px; }
}

/* ──────────── Pricing / model cards ──────────── */
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.models-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 14px;
  padding: 32px 26px; text-align: left; position: relative;
  transition: all 0.25s;
}
.model-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.model-card.featured { border-color: var(--sage); box-shadow: var(--shadow-lg); }
.model-card.featured::before {
  content: 'Most popular'; position: absolute; top: -13px; right: 24px;
  background: var(--sage); color: var(--forest-dark); font-size: 11px;
  font-weight: 700; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 10px;
}
.model-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.2px; }
.model-card .model-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.model-price {
  font-size: 28px; font-weight: 800; color: var(--forest);
  letter-spacing: -0.5px; margin-bottom: 4px; line-height: 1.1;
}
.model-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.model-card ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.model-card ul li { padding-left: 22px; position: relative; font-size: 14px; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.model-card ul li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FD299' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.model-best { font-size: 12px; color: var(--text-muted); font-style: italic; padding-top: 16px; border-top: 1px solid var(--border); }
@media (max-width: 900px) {
  .models-grid, .models-grid-3 { grid-template-columns: 1fr; gap: 16px; }
}

/* ──────────── Stat strip ──────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 28px; border-radius: 12px;
  background: var(--ivory); border: 1px solid var(--border);
  margin: 32px 0;
}
.stat-strip-3 { grid-template-columns: repeat(3, 1fr); }
.stat-item { text-align: center; }
.stat-num {
  font-size: 32px; font-weight: 800; color: var(--forest);
  letter-spacing: -0.8px; margin-bottom: 6px; line-height: 1.05;
}
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.45; }
@media (max-width: 700px) {
  .stat-strip, .stat-strip-3 { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ──────────── Depth (SEO) content ──────────── */
.depth-wrap { max-width: 860px; margin: 0 auto; }
.depth-wrap h2 {
  font-size: clamp(28px, 3.2vw, 36px); font-weight: 800;
  letter-spacing: -0.5px; color: var(--text);
  margin: 40px 0 18px; line-height: 1.18;
}
.depth-wrap h2:first-child { margin-top: 0; }
.depth-wrap h3 {
  font-size: 21px; font-weight: 700; color: var(--forest);
  margin: 36px 0 12px; letter-spacing: -0.2px;
}
.depth-wrap h4 {
  font-size: 17px; font-weight: 700; color: var(--text);
  margin: 22px 0 10px; letter-spacing: -0.2px;
}
.depth-wrap p { font-size: 16px; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.depth-wrap ul, .depth-wrap ol { margin: 0 0 18px 24px; color: var(--text); font-size: 16px; line-height: 1.75; }
.depth-wrap li { margin-bottom: 8px; }
.depth-wrap strong { font-weight: 700; color: var(--text); }
.depth-wrap a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.depth-wrap a:hover { color: var(--sage); }
.depth-badge {
  display: inline-block; background: rgba(143, 210, 153, 0.2);
  color: var(--forest); padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 18px;
}
.depth-pull {
  border-left: 4px solid var(--sage);
  padding: 20px 26px; margin: 28px 0;
  background: rgba(143, 210, 153, 0.08);
  font-size: 17px; font-style: italic; color: var(--text);
  line-height: 1.6; border-radius: 0 8px 8px 0;
}
.depth-pull strong { color: var(--forest); }
.depth-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 24px; font-size: 14.5px;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.depth-table th {
  background: var(--forest); color: var(--white);
  padding: 12px 14px; text-align: left; font-weight: 700;
  font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
.depth-table td { padding: 12px 14px; border-top: 1px solid var(--border); vertical-align: top; }
.depth-table tr:nth-child(even) td { background: var(--ivory); }
.depth-table strong { color: var(--forest); }
@media (max-width: 700px) {
  .depth-table { display: block; overflow-x: auto; }
}

/* ──────────── FAQ ──────────── */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 17px; font-weight: 700; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.2px; padding-right: 32px; position: relative;
  line-height: 1.35;
}
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: -2px;
  font-size: 24px; font-weight: 400; color: var(--forest); transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ──────────── CTA strip ──────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  padding: 64px 0; color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--white); font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.85); font-size: 16px;
  max-width: 640px; margin: 0 auto 28px; line-height: 1.55;
}

/* ──────────── Footer ──────────── */
.site-footer {
  background: var(--text); color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand { max-width: 320px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.3px; margin-bottom: 10px; display: inline-block; text-decoration: none; }
.footer-logo span { color: var(--sage); }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 14px; }
.footer-contact-row { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.footer-contact-row a {
  color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.footer-contact-row a:hover { color: var(--sage); }
.footer-contact-row svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.footer-col h4 {
  font-size: 12.5px; color: var(--white); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--sage); }
.footer-disclaimer {
  max-width: 920px; margin: 0 auto 18px; text-align: center;
  font-size: 11.5px; color: rgba(255, 255, 255, 0.4);
  line-height: 1.65; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom { text-align: center; font-size: 12.5px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }
.footer-bottom .footer-links { margin-top: 8px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage); }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-contact-row { align-items: center; }
  .footer-brand { max-width: none; }
}

/* ──────────── Back to top ──────────── */
.back-to-top {
  position: fixed !important;
  bottom: 28px !important; right: 28px !important;
  width: 48px !important; height: 48px !important;
  border-radius: 50% !important;
  background: #374B47 !important; color: #ffffff !important;
  border: none !important; cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  box-shadow: 0 6px 20px rgba(55, 75, 71, 0.35) !important;
  z-index: 9999 !important; padding: 0 !important;
  font-family: inherit; opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.back-to-top:hover {
  background: #1e2e2b !important; transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(55, 75, 71, 0.45) !important;
}
.back-to-top svg { width: 20px; height: 20px; stroke: #ffffff; stroke-width: 2.5; fill: none; display: block; }
.back-to-top.hidden-until-scroll { opacity: 0; transform: translateY(12px); }
@media (max-width: 700px) {
  .back-to-top { bottom: 20px !important; right: 20px !important; width: 44px !important; height: 44px !important; }
}

/* ──────────── Breadcrumb ──────────── */
.breadcrumb {
  font-size: 13px; color: var(--text-muted);
  padding: 16px 0; background: var(--ivory);
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { padding: 0 24px; }
.breadcrumb a { color: var(--forest); text-decoration: none; }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb .sep { margin: 0 8px; color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ──────────── Page hero (lighter for non-homepage) ──────────── */
.page-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white); padding: 72px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 46px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.8px; color: var(--white);
  margin-bottom: 18px; max-width: 820px;
}
.page-hero h1 em { font-style: normal; color: var(--sage); }
.page-hero-sub {
  font-size: 17px; color: var(--text-light);
  line-height: 1.6; max-width: 680px;
}
.page-hero-center { text-align: center; }
.page-hero-center h1, .page-hero-center .page-hero-sub { margin-left: auto; margin-right: auto; }

/* ──────────── Industry / task tables ──────────── */
.task-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 24px 0;
}
.task-item {
  padding: 18px 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; gap: 12px; align-items: flex-start;
}
.task-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
}
.task-check svg { width: 12px; height: 12px; stroke: var(--forest-dark); stroke-width: 3.5; fill: none; }
.task-item strong { display: block; color: var(--text); font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.task-item span { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 700px) { .task-grid { grid-template-columns: 1fr; } }

/* ──────────── Software logo tiles ──────────── */
.sw-tile-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  margin: 24px 0;
}
.sw-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 14px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.sw-tile:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.sw-tile img { width: 36px; height: 36px; object-fit: contain; }
.sw-tile span { font-size: 13px; font-weight: 600; color: var(--text); }
@media (max-width: 700px) { .sw-tile-grid { grid-template-columns: repeat(3, 1fr); } }

/* ──────────── Related pages grid ──────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-decoration: none; color: var(--text);
  display: block; transition: all 0.2s;
}
.related-card:hover { border-color: var(--sage); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-card .related-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--forest);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.related-card h4 { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; margin-bottom: 6px; line-height: 1.3; }
.related-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
