/* ==========================================================================
   FixPoint Tech Assist — Stylesheet
   Design tokens + base + components + page-specific rules
   ========================================================================== */

:root {
  /* --- Color tokens ------------------------------------------------- */
  --blue-900: #0B1F3A;   /* deep navy — headings, footer bg */
  --blue-700: #10306B;   /* secondary navy */
  --blue-600: #155EEF;   /* primary action blue */
  --blue-500: #2F6BFF;
  --blue-100: #EFF4FF;   /* tint background */
  --blue-50:  #F6F9FF;
  --ink-900:  #101828;   /* body text, near-black */
  --ink-600:  #475467;   /* muted text */
  --ink-400:  #98A2B3;   /* placeholder / faint text */
  --line:     #E4E9F2;   /* hairline borders */
  --white:    #FFFFFF;
  --paper:    #F8FAFC;   /* page background */
  --success:  #12B76A;
  --warn:     #B54708;
  --warn-bg:  #FFF6ED;

  /* --- Type ------------------------------------------------------------ */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* --- Scale ------------------------------------------------------------ */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 4px 8px rgba(16, 24, 40, 0.04), 0 12px 24px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 20px rgba(16, 24, 40, 0.05), 0 24px 48px rgba(16, 39, 89, 0.12);
  --container: 1160px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-600); }
button { font-family: inherit; cursor: pointer; }

/* --- Skip link / a11y ------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-600);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

/* --- Layout helpers --------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; gap: 24px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 600;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 18px; color: var(--ink-600); }

/* --- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--blue-900); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-ghost { background: transparent; color: var(--blue-900); }
.btn-ghost:hover { color: var(--blue-600); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* --- Navigation --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--blue-900); }
.brand .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(18,183,106, 0.6);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(18,183,106, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(18,183,106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(18,183,106, 0); }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-600); transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-600); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink-900);
  position: relative; transition: 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 68px 0 0 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 24px; gap: 4px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.2s ease; overflow-y: auto; }
  .nav-links a { padding: 14px 8px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-secondary { display: none; }
}

/* --- Hero ---------------------------------------------------------------------- */
.hero { padding: 76px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.4vw, 54px); }
.hero .lede { font-size: 19px; margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-600); }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { flex-shrink: 0; color: var(--success); }

/* Signature element: live diagnostic/session card */
.session-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  position: relative;
}
.session-card__bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.session-card__bar .traffic { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.session-card__title { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); }
.session-log { font-family: var(--font-mono); font-size: 13px; color: var(--ink-600); display: flex; flex-direction: column; gap: 10px; }
.session-log li { display: flex; align-items: center; gap: 10px; opacity: 0; animation: reveal 0.5s ease forwards; }
.session-log li:nth-child(1) { animation-delay: 0.15s; }
.session-log li:nth-child(2) { animation-delay: 0.6s; }
.session-log li:nth-child(3) { animation-delay: 1.15s; }
.session-log li:nth-child(4) { animation-delay: 1.8s; }
.session-log .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; }
.session-log li.done .status-dot { background: var(--success); }
@keyframes reveal { to { opacity: 1; } }
.session-card__meter { margin-top: 18px; height: 6px; border-radius: 100px; background: var(--blue-100); overflow: hidden; }
.session-card__meter span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue-500), var(--success)); border-radius: 100px; animation: fill 3s ease forwards; }
@keyframes fill { to { width: 100%; } }
.session-card__foot { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink-400); }
.session-card__foot .badge { display: inline-flex; align-items: center; gap: 6px; color: var(--success); font-weight: 600; }

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

/* --- Logo / brand strip -------------------------------------------------------- */
.brand-strip { padding: 32px 0; }
.brand-strip p { text-align: center; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-400); margin-bottom: 20px; }
.brand-row { display: flex; flex-wrap: wrap; gap: 36px; justify-content: center; align-items: center; color: var(--ink-400); font-weight: 600; font-size: 15px; }

/* --- Cards ----------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #D6E1FB; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--blue-600); }

.services-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid, .why-grid { grid-template-columns: 1fr; } }

/* --- Process / steps --------------------------------------------------------------- */
.steps { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--blue-600);
  background: var(--blue-100); width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* --- Testimonials ------------------------------------------------------------------ */
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; }
.stars { color: #F79009; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { font-size: 14.5px; color: var(--ink-900); }
.testimonial .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; font-family: var(--font-display); }
.who-name { font-weight: 600; font-size: 13.5px; color: var(--blue-900); }
.who-role { font-size: 12.5px; color: var(--ink-400); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* --- FAQ --------------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 4px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-weight: 600; color: var(--blue-900); font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform 0.2s ease; flex-shrink: 0; color: var(--blue-600); }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 20px; font-size: 14.5px; color: var(--ink-600); }

/* --- CTA banner ---------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; font-size: 28px; }
.cta-banner p { color: #C7D5F5; margin-bottom: 0; }
.cta-banner .btn-secondary { background: #fff; border-color: #fff; }

/* --- Contact section on home ----------------------------------------------------------- */
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row .card-icon { margin-bottom: 0; }
.info-row h4 { margin: 0 0 2px; font-size: 15px; color: var(--blue-900); }
.info-row p { margin: 0; font-size: 14px; }

/* --- Forms ------------------------------------------------------------------------------ */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--blue-900); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  font-family: inherit; font-size: 14.5px; background: var(--white); color: var(--ink-900);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 12.5px; color: var(--ink-400); margin-top: -10px; margin-bottom: 18px; }
.form-note { font-size: 12.5px; color: var(--ink-400); margin-top: 14px; }
.form-success { display: none; background: var(--blue-100); border: 1px solid #C7D9FF; border-radius: 12px; padding: 16px; color: var(--blue-700); font-size: 14px; font-weight: 500; }
.form-success.show { display: block; }

/* --- Map placeholder ------------------------------------------------------------------- */
.map-placeholder {
  border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--blue-50);
  min-height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 10px; color: var(--ink-400); font-size: 13.5px; text-align: center; padding: 24px;
}

/* --- Disclaimer band --------------------------------------------------------------------- */
.disclaimer {
  background: var(--warn-bg); border: 1px solid #FEDF89; border-radius: var(--radius-md);
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start; font-size: 13.5px; color: #93370D;
}
.disclaimer svg { flex-shrink: 0; margin-top: 2px; }
.disclaimer strong { color: #7A2E0E; }

/* --- Pricing --------------------------------------------------------------------------- */
.pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--blue-600); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before {
  content: "Most booked"; position: absolute; top: -12px; left: 24px; background: var(--blue-600); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.03em;
}
.price-card h3 { font-size: 17px; margin-bottom: 4px; }
.price-card .price-sub { font-size: 13px; color: var(--ink-400); margin-bottom: 18px; }
.price-amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--blue-900); }
.price-amount span { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink-400); }
.price-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-list li { display: flex; gap: 8px; font-size: 13.5px; color: var(--ink-600); align-items: flex-start; }
.price-list li svg { flex-shrink: 0; margin-top: 3px; }
.price-list li.no svg { color: var(--ink-400); }
.price-list li.no { color: var(--ink-400); }

.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.compare-table th { background: var(--blue-50); font-family: var(--font-display); color: var(--blue-900); font-size: 13px; }
.compare-table tr:last-child td { border-bottom: none; }

/* --- About page ------------------------------------------------------------------------- */
.value-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.team-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-photo { width: 84px; height: 84px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); font-family: var(--font-display); font-weight: 700; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.stat-row { grid-template-columns: repeat(4, 1fr); text-align: center; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--blue-900); }
.stat-label { font-size: 13px; color: var(--ink-600); }

/* --- Service page detail ------------------------------------------------------------------ */
.service-detail { grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
@media (max-width: 880px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail:nth-of-type(even) .service-visual { order: -1; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.checklist li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-600); align-items: flex-start; }
.checklist svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.visual-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; position: sticky; top: 78px; background: var(--paper); padding: 14px 0; z-index: 10; }
.anchor-nav a { font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-600); background: var(--white); }
.anchor-nav a:hover { color: var(--blue-600); border-color: var(--blue-500); }

/* --- Legal pages ------------------------------------------------------------------------- */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap h2 { font-size: 22px; margin-top: 40px; }
.legal-wrap h3 { font-size: 17px; margin-top: 24px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-600); font-size: 15px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 20px; list-style: disc; }
.legal-toc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 40px; }
.legal-toc h2 { font-size: 15px; margin-bottom: 10px; }
.legal-toc ol { list-style: decimal; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-toc a { font-size: 14px; color: var(--blue-600); font-weight: 500; }
.updated-badge { display: inline-block; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-400); margin-bottom: 20px; }

/* --- Footer ------------------------------------------------------------------------------- */
.site-footer { background: var(--blue-900); color: #B9C6E3; padding: 64px 0 28px; margin-top: 100px; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 13.5px; color: #92A2C4; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: #B9C6E3; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: #92A2C4; border: 1px solid #24365E; padding: 6px 10px; border-radius: 100px; }
.footer-disclaimer {
  border-top: 1px solid #1D2E52; padding-top: 24px; font-size: 12.5px; color: #7E8FB4; line-height: 1.6;
}
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 20px; font-size: 12.5px; color: #7E8FB4; }
.footer-bottom a { color: #92A2C4; }

/* --- Reveal-on-scroll utility -------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* --- Misc ------------------------------------------------------------------------------------ */
.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.text-sm { font-size: 13.5px; }
