/* ===========================================================
   Technologies Evolve365 — Shared Stylesheet
   Clean, white-background SaaS/financial-services system
   (soft shadows, rounded cards, restrained accent color)
   inspired by enterprise finance-software marketing sites.
   =========================================================== */

:root {
  --paper: #ffffff;
  --paper-2: #f6f7f9;
  --ink: #182230;
  --ink-soft: #545b66;
  --ink-faint: #8a909b;
  --accent: #0f7a6b;        /* teal-green — primary CTA / links */
  --accent-deep: #0b5c50;   /* hover state */
  --accent-tint: #e6f3f0;   /* light green tint for chips/panels */
  --accent-ink: #ffffff;
  --gold: #c99a52;          /* secondary accent — tags / highlights */
  --gold-tint: #faf3e6;
  --plum: #8a6a84;          /* rare tertiary accent — quote mark */
  --white: #ffffff;
  --line: #182230;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 10px 28px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.14);
  --maxw: 1180px;

  /* legacy aliases kept so nothing breaks */
  --navy: var(--ink);
  --navy-deep: var(--ink);
  --blue: var(--accent);
  --blue-light: var(--accent-tint);
  --teal: var(--accent);
  --teal-light: var(--accent-tint);
  --slate: var(--ink-soft);
  --slate-light: var(--ink-faint);
  --bg: var(--paper-2);
  --border: #e4e7ec;
  --lime: var(--gold);
  --sky: var(--gold);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.015em;
}

a { color: inherit; text-decoration: none; }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.24); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-cta .btn-secondary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--paper);
  color: var(--ink);
  padding: 76px 0 68px;
  position: relative;
  overflow: hidden;
}
.hero::before { content: none; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 22px;
}
.hero h1 span {
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 0 8px;
  border-radius: 6px;
  display: inline-block;
}
.hero p.lead {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-stat span { font-size: 0.83rem; color: var(--ink-faint); font-weight: 500; }

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-panel h3 { color: var(--ink); font-size: 1.06rem; margin-bottom: 16px; }
.hero-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.91rem;
}
.hero-check:last-child { border-bottom: none; }
.hero-check .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.bg-white { background: var(--white); }
.bg-navy { background: var(--paper-2); color: var(--ink); }
.bg-navy h2, .bg-navy h3 { color: var(--ink); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.13rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card a.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 700; color: var(--accent-deep);
  margin-top: 16px;
}

/* ---------- Outcome / Health Check feature block ---------- */
.outcome-block {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.outcome-block::after { content: none; }
.outcome-top { position: relative; max-width: 680px; margin-bottom: 42px; }
.outcome-top .eyebrow { background: var(--white); color: var(--accent-deep); box-shadow: var(--shadow-sm); }
.outcome-top h2 { color: var(--ink); font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.outcome-top p { color: var(--ink-soft); font-size: 1.05rem; }
.outcome-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .outcome-cols { grid-template-columns: 1fr; } }
.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.outcome-card .num {
  font-family: 'Sora', sans-serif;
  font-size: 0.83rem;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.outcome-card h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: 10px; }
.outcome-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Pain / Why section (used with icons list) ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  display: flex; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.pain-item .x {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 9px;
  background: #fdeeec;
  color: #b5453a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.pain-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.pain-item p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step .step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Stats / trust badge bar ---------- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.stat-badge .tick-sm {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; flex-shrink: 0;
}

/* ---------- Comparison table (Sage-style two column) ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
}
.compare-card.is-us {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.compare-card.is-them { background: var(--paper-2); }
.compare-card h3 { font-size: 1.15rem; margin-bottom: 18px; }
.compare-card.is-us h3, .compare-card.is-us .compare-tag { color: #fff; }
.compare-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-faint); margin-bottom: 10px;
}
.compare-list { list-style: none; }
.compare-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.94rem; margin-bottom: 14px;
}
.compare-card.is-us .compare-list li { color: #e7e9ec; }
.compare-card.is-them .compare-list li { color: var(--ink-soft); }
.compare-list li .mark-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; margin-top: 1px;
}
.compare-card.is-us .mark-icon { background: rgba(15,122,107,0.35); color: #6fe0cb; }
.compare-card.is-them .mark-icon { background: #ece7e0; color: #96897a; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--ink); font-size: 1.6rem; margin-bottom: 8px; }
.cta-banner p { color: var(--ink-soft); }
.cta-banner .btn-secondary { background: var(--white); color: var(--ink); border: 1.5px solid var(--border); }
.cta-banner .btn-primary { background: var(--accent); }

/* ---------- Logos strip ---------- */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
  opacity: 0.75;
  font-weight: 700;
  color: var(--ink-faint);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* ---------- Testimonial ---------- */
.quote-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.quote-block .mark { font-size: 3rem; color: var(--accent-tint); font-family: Georgia, serif; line-height: 0; position: relative; top: 18px; }
.quote-block p.quote-text { font-size: 1.14rem; color: var(--ink); font-weight: 500; margin: 6px 0 22px; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.quote-author b { display: block; font-size: 0.92rem; }
.quote-author span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Tables (comparison) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 16px 20px; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
th { background: var(--paper-2); color: var(--ink-soft); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; }
tr:last-child td { border-bottom: none; }

/* ---------- Insights / articles ---------- */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-tag-bar { height: 4px; background: var(--accent); }
.article-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-deep); margin-bottom: 12px;
}
.article-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.article-body p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.article-meta { margin-top: 18px; font-size: 0.82rem; color: var(--ink-faint); display: flex; justify-content: space-between; align-items: center; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }
#form-success {
  display: none;
  background: var(--accent-tint);
  color: var(--accent-deep);
  border: 1px solid #bfe4dc;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ---------- Contact info cards ---------- */
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-2);
  color: var(--ink-soft);
  padding: 60px 0 26px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--ink); font-size: 0.86rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.9rem; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--accent-deep); }
.footer-brand p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 14px; max-width: 300px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.82rem; color: var(--ink-faint); flex-wrap: wrap; gap: 10px;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 50px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { background: var(--accent-tint); color: var(--accent-deep); }
.page-hero h1 { color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 760px; margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--accent-deep); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.center-text { text-align: center; }
.tag-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gold-tint);
  color: #8a6a2f;
  margin-bottom: 12px;
}
.service-anchor-nav {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.service-anchor-nav a {
  font-size: 0.85rem; font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-soft);
}
.service-anchor-nav a:hover { border-color: var(--accent); color: var(--accent-deep); }

.service-block { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .service-block-grid { grid-template-columns: 1fr; } }
.service-block h2 { font-size: 1.5rem; margin-bottom: 14px; }
.service-block .lead-text { color: var(--ink-soft); font-size: 1rem; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.94rem; color: var(--ink); margin-bottom: 12px;
}
.check-list li .tick {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; margin-top: 2px;
}

/* Fade-in animation */
.reveal { opacity: 0; transform: translateY(16px); transition: all 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
