/* ==========================================================================
   Trade Wings Capital — twcapital.ca
   Clean rebuild of the Unbounce site. Design tokens extracted from the
   original published CSS (see _reference/), layout rebuilt responsively.
   ========================================================================== */

:root {
  --navy: #081580;        /* headings on white */
  --indigo: #212968;      /* bands, footer, alt headings */
  --blue: #0490e7;        /* primary buttons, accent text */
  --blue-dark: #0378c2;
  --sky: #c6e9ff;         /* headings on navy */
  --sky-band: #cdebfe;    /* testimonial band bg */
  --card-blue: #edf8fe;   /* step cards bg */
  --ink: #003060;         /* hero subtext */
  --ink-2: #001544;       /* section subtext */
  --step-num: #9cc8e6;    /* step numbers */
  --body: #21252b;
  --grad-calc-a: #5182ef;
  --grad-calc-b: #1e43c8;
  --chip-grad-a: #ffffff;
  --chip-grad-b: #d4e0ff;
  --max: 1240px;
  --font: "Poppins", "Roboto", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: none; }

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

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  border-radius: 28px;
  padding: 17px 40px;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(4, 144, 231, .35); }

.btn-gradient {
  background: linear-gradient(180deg, var(--grad-calc-a), var(--grad-calc-b));
  color: #fff;
}
.btn-gradient:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(30, 67, 200, .35); }

.btn-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-link:hover { color: var(--blue); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}

.logo img { height: 48px; width: auto; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}
.header-contact img { height: 17px; width: auto; }
.header-contact a { color: #000; display: inline-flex; align-items: center; gap: 8px; }
.header-contact a:hover { color: var(--blue); }
.header-contact .wings { color: var(--navy); }
.header-contact .wings b { color: var(--blue); }
.header-contact .sep { color: #929292; font-weight: 400; }

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.lang a { color: var(--indigo); padding: 2px 4px; }
.lang a:hover { color: var(--blue); }
.lang .active { color: var(--blue); }
.lang .sep { color: #929292; font-weight: 400; }

.header-cta { padding: 15px 34px; }

/* ---------- hero ---------- */

.hero {
  /* per-page photo set via inline background-image */
  position: relative;
  background-color: #fff;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 32%, rgba(255, 255, 255, .55) 55%, rgba(255, 255, 255, 0) 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 78px;
  max-width: 660px;
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 55px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  max-width: 620px;
}
.hero h1 .accent { color: var(--blue); }

.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  color: var(--ink);
  max-width: 610px;
}

.hero-chip {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, var(--chip-grad-a), var(--chip-grad-b));
  border-radius: 13px;
  padding: 14px 22px;
  box-shadow: 0 4px 14px rgba(8, 21, 128, .08);
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
}
.hero-chip img { height: 38px; width: auto; }

.hero .btn { margin-top: 34px; }

/* ---------- section basics ---------- */

.section { padding: 72px 0; }

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}
.section-title.center { text-align: center; }
.section-sub { margin-top: 16px; font-size: 18px; color: var(--ink-2); }
.section-sub.center { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }

/* ---------- MCA intro (photo + copy + checklist) ---------- */

.mca {
  background: #fff url("img/cmf-banner-2.png") center / cover no-repeat;
}

.mca-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: 56px;
  align-items: center;
}

.mca-photo img {
  border-radius: 22px;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(8, 21, 128, .16);
}

.mca-copy h2 .l1 { color: var(--blue); display: block; }
.mca-copy h2 .l2 { color: var(--navy); display: block; }
.mca-copy > p { margin-top: 24px; font-size: 17px; color: var(--body); max-width: 620px; }

.mca-list {
  margin-top: 32px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(8, 21, 128, .07);
  border-radius: 14px;
  padding: 26px 30px;
  display: grid;
  gap: 22px;
  max-width: 500px;
}
.mca-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
}
.mca-list img { height: 42px; width: 42px; object-fit: contain; flex: none; }

/* ---------- qualify band ---------- */

.qualify {
  position: relative;
  background: var(--indigo);
  color: #fff;
  overflow: hidden;
}
.qualify::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: url("img/twc-icon-white.svg") center / contain no-repeat;
  opacity: .07;
  pointer-events: none;
}

.qualify .section-title { color: var(--sky); }
.qualify .section-sub { color: #fff; }

.qualify-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.qualify-item img { height: 84px; margin: 0 auto 18px; object-fit: contain; }
.qualify-item p { font-size: 16px; font-weight: 500; color: #fff; max-width: 210px; margin: 0 auto; }

.qualify-actions {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- how it works ---------- */

.steps-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 260px);
  justify-content: center;
  gap: 60px;
}

.step-card {
  position: relative;
  background: var(--card-blue);
  border-radius: 10px;
  padding: 66px 26px 38px;
  text-align: center;
}

.step-num {
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(8, 21, 128, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--step-num);
}

.step-card img { height: 96px; margin: 6px auto 26px; object-fit: contain; }
.step-card p { font-size: 18px; font-weight: 500; color: var(--ink); }

.steps-actions { margin-top: 48px; text-align: center; }
.steps-actions .btn-link { display: inline-block; margin-top: 20px; }

/* ---------- momentum / use cases ---------- */

.momentum { background: rgba(198, 233, 255, .1); }

.momentum-grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 64px;
  align-items: center;
}

.momentum-copy p { margin-top: 24px; font-size: 17px; max-width: 540px; }

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usecase-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(8, 21, 128, .10);
}

/* ---------- industries ---------- */

.industries { text-align: center; }
.industries-widget { margin: 44px auto 10px; min-height: 120px; }
.industries .btn { margin-top: 36px; }

/* ---------- testimonials ---------- */

.testimonials { background: var(--sky-band); }
.testimonials .section-title { color: var(--indigo); }

.carousel {
  position: relative;
  max-width: 980px;
  margin: 54px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.carousel-btn {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #fff;
  color: var(--indigo);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(8, 21, 128, .14);
  transition: background .15s ease, color .15s ease;
}
.carousel-btn:hover { background: var(--indigo); color: #fff; }

.carousel-viewport { overflow: hidden; flex: 1; }

.carousel-track {
  display: flex;
  transition: transform .45s ease;
}

.t-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 22px;
  padding: 44px 56px 40px;
  text-align: center;
  min-height: 280px;
}

.t-stars { display: flex; justify-content: center; gap: 7px; margin-bottom: 22px; }
.t-stars img { height: 26px; width: 26px; }

.t-quote { font-size: 19px; color: var(--body); max-width: 720px; margin: 0 auto; }
.t-name { margin-top: 24px; font-size: 18px; font-weight: 700; color: var(--indigo); }
.t-industry { margin-top: 4px; font-size: 15px; color: #6a7180; }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(33, 41, 104, .25);
}
.carousel-dots button.active { background: var(--indigo); }

/* ---------- CTA band + footer ---------- */

.cta-band {
  /* per-page photo set via inline background-image */
  position: relative;
  background-color: var(--indigo);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 41, 104, .6);
}

.cta-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .97);
  border-radius: 18px;
  max-width: 1080px;
  margin: 84px auto 72px;
  padding: 56px 48px;
  text-align: center;
}
.cta-card h2 { font-size: clamp(28px, 3vw, 36px); font-weight: 600; color: var(--indigo); }
.cta-card p { margin: 18px auto 0; font-size: 17px; color: var(--body); max-width: 780px; }
.cta-card .btn { margin-top: 30px; }

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--indigo);
  color: #fff;
  padding: 44px 0 34px;
}
.cta-band .site-footer { background: none; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-top .f-logo img { height: 52px; width: auto; }

.footer-contact { display: grid; gap: 12px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--sky); }
.footer-contact img { height: 20px; width: 20px; object-fit: contain; filter: brightness(0) invert(1); }

.footer-divider { border: 0; border-top: 1px solid rgba(255, 255, 255, .3); margin: 30px 0 22px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--sky); }
.footer-bottom .ssl img { height: 40px; width: auto; }

/* ---------- documents modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 40, .6);
}
.modal-panel {
  position: relative;
  background: #ededed;
  border-radius: 14px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 38px 42px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #444;
}
.modal-close:hover { color: #000; }

.modal-panel h3 { font-size: 26px; font-weight: 700; color: #010056; padding-right: 30px; }
.modal-panel h4 { margin-top: 26px; font-size: 17px; font-weight: 600; color: #202020; }

.doc-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 9px;
  padding: 18px 22px;
  display: grid;
  gap: 16px;
}
.doc-row { display: flex; align-items: center; gap: 16px; }
.doc-row img { height: 30px; width: 30px; object-fit: contain; flex: none; }
.doc-row p { font-size: 15.5px; font-weight: 600; color: #023368; }
.doc-row p small { display: block; font-weight: 400; color: #4a5361; }

.modal-actions { margin-top: 30px; text-align: center; }

/* ---------- mobile sticky CTA ---------- */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  box-shadow: 0 -4px 18px rgba(8, 21, 128, .14);
  padding: 12px 16px;
}
.mobile-cta p { font-size: 12.5px; font-weight: 700; color: var(--indigo); line-height: 1.3; }
.mobile-cta .btn { padding: 12px 22px; font-size: 14px; flex: none; }

/* ---------- privacy page ---------- */

.legal { padding: 64px 0 80px; max-width: 900px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 3.4vw, 40px); font-weight: 600; color: var(--navy); }
.legal .effective { margin-top: 10px; font-size: 15px; color: #6a7180; }
.legal .intro { margin-top: 26px; }
.legal h2 { margin-top: 40px; font-size: 22px; font-weight: 600; color: var(--indigo); }
.legal p, .legal li { margin-top: 14px; font-size: 16px; color: var(--body); }
.legal ul { margin-top: 6px; padding-left: 24px; }
.legal address { font-style: normal; margin-top: 14px; }

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .header-contact { display: none; }
  .steps-grid { grid-template-columns: repeat(3, minmax(200px, 260px)); gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 56px 0; }

  .hero { background-position: 72% center; }
  .hero::before { background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 45%, rgba(255,255,255,.55) 100%); }

  .mca-grid, .momentum-grid { grid-template-columns: 1fr; gap: 40px; }
  .mca-photo { order: 2; }
  .mca-photo img { max-height: 420px; }

  .qualify-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .steps-grid { grid-template-columns: minmax(220px, 300px); gap: 64px; }

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

  .t-card { padding: 36px 26px 32px; }

  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  body { padding-bottom: 68px; }  /* room for sticky bar */
  .mobile-cta { display: flex; }

  .header-row { min-height: 74px; gap: 14px; }
  .logo img { height: 38px; }
  .header-cta { padding: 12px 18px; font-size: 14px; margin-left: auto; white-space: nowrap; }
  .lang { font-size: 14px; gap: 5px; }

  .hero-inner { padding: 44px 0 56px; }
  .hero-chip { font-size: 16px; padding: 12px 16px; }
  .hero-chip img { height: 30px; }

  .qualify-grid { grid-template-columns: 1fr; }
  .qualify-item p { max-width: none; }
  .qualify-actions .btn { width: 100%; }

  .carousel { gap: 8px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 20px; }

  .cta-card { margin: 56px auto 48px; padding: 38px 24px; }

  .modal-panel { padding: 28px 22px; }
}

/* ---------- trust strip ---------- */

.trust-strip {
  background: var(--card-blue);
  border-bottom: 1px solid rgba(8, 21, 128, .06);
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--indigo);
}
.trust-row svg { color: #2e9e5b; flex: none; }

/* ---------- funding fit estimator ---------- */

.fit { background: #fff; }

.fit-card {
  max-width: 720px;
  margin: 44px auto 0;
  background: linear-gradient(180deg, #fff, var(--card-blue));
  border: 1px solid rgba(8, 21, 128, .1);
  border-radius: 20px;
  padding: 34px 38px 38px;
  box-shadow: 0 18px 44px rgba(8, 21, 128, .1);
}

.fit-progress {
  height: 6px;
  border-radius: 3px;
  background: rgba(8, 21, 128, .08);
  overflow: hidden;
  margin-bottom: 26px;
}
.fit-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--grad-calc-b));
  border-radius: 3px;
  transition: width .35s ease;
}

.fit-step-label { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.fit-q { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 22px; }

.fit-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.fit-opt {
  border: 1.5px solid rgba(8, 21, 128, .18);
  background: #fff;
  color: var(--indigo);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s ease;
}
.fit-opt:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

.fit-back {
  margin-top: 20px;
  background: none;
  border: 0;
  color: #6a7180;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fit-result { text-align: center; }
.fit-result-badge {
  width: 74px; height: 74px; border-radius: 50%;
  background: #e7f7ee; color: #2e9e5b;
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 18px;
  animation: fitPop .4s ease;
}
@keyframes fitPop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.fit-result h3 { font-size: 24px; font-weight: 600; color: var(--navy); }
.fit-result > p { margin-top: 10px; font-size: 16px; color: var(--body); }

.fit-checks {
  list-style: none;
  margin: 22px auto 0;
  max-width: 420px;
  text-align: left;
  display: grid;
  gap: 10px;
}
.fit-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--ink-2); }
.fit-checks svg { color: #2e9e5b; flex: none; margin-top: 2px; }
.fit-checks li.fit-note svg { color: #d99a06; }

.fit-ctas { margin-top: 28px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.fit-disclaimer { margin-top: 16px; font-size: 12px; color: #8a91a0; }

/* ---------- industries grid ---------- */

.industries-grid {
  margin: 44px auto 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.ind-card {
  background: var(--card-blue);
  border: 1px solid rgba(8, 21, 128, .07);
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ind-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(8, 21, 128, .12); }
.ind-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); }
.ind-card p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); }

/* ---------- FAQ ---------- */

.faq { background: rgba(198, 233, 255, .1); }

.faq-list { max-width: 860px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(8, 21, 128, .1);
  border-radius: 12px;
  padding: 0 22px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 30px 18px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--indigo);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--blue); }
.faq-item p { padding: 0 0 20px; font-size: 15.5px; color: var(--body); max-width: 780px; }

.faq-resources { margin-top: 26px; text-align: center; font-size: 15px; }
.faq-resources a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .trust-row { justify-content: flex-start; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-card { padding: 26px 20px 30px; }
}
@media (max-width: 700px) {
  .industries-grid { grid-template-columns: 1fr; }
  .fit-ctas .btn { width: 100%; }
}

/* ---------- content pages (blog / FAQ / case studies) ---------- */

.crumbs { padding: 26px 0 0; font-size: 13.5px; color: #8a91a0; }
.crumbs a { color: #6a7180; text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: var(--blue); }

.article { max-width: 820px; margin: 0 auto; padding: 26px 0 40px; }
.article-wide { max-width: 1080px; }
.article h1 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 600; color: var(--navy); line-height: 1.2; }
.article-lede { margin-top: 14px; font-size: 18px; color: var(--ink-2); }
.article-meta { margin-top: 10px; font-size: 13.5px; color: #8a91a0; }
.article h2 { margin-top: 34px; font-size: 24px; font-weight: 600; color: var(--indigo); }
.article p { margin-top: 14px; font-size: 16.5px; }
.article ul { margin-top: 12px; padding-left: 24px; }
.article li { margin-top: 8px; font-size: 16.5px; }
.article a { text-decoration: underline; text-underline-offset: 3px; }
.article-links { margin-top: 30px; font-size: 15px; color: var(--ink-2); }
.faq-group-title { margin: 36px 0 14px; font-size: 21px; font-weight: 600; color: var(--navy); }
.article .faq-list { margin-top: 8px; }

.cta-inline {
  max-width: 820px;
  margin: 8px auto 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--card-blue), #fff);
  border: 1px solid rgba(8, 21, 128, .1);
  border-radius: 18px;
  padding: 36px 28px;
}
.cta-inline h2 { font-size: 24px; font-weight: 600; color: var(--navy); }
.cta-inline p { margin-top: 10px; font-size: 16px; color: var(--body); }
.cta-inline .btn { margin-top: 18px; }
.cta-inline-sub { font-size: 13.5px !important; color: #8a91a0 !important; }

.post-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.post-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(8, 21, 128, .1);
  border-radius: 14px;
  padding: 24px 26px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(8, 21, 128, .12); }
.post-card h2 { font-size: 18.5px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.post-card p { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); }
.post-more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--blue); }

.case-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  background: #fff;
  border: 1px solid rgba(8, 21, 128, .1);
  border-radius: 16px;
  padding: 26px 26px 28px;
}
.case-tag { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--blue); }
.case-card h2 { margin-top: 10px; font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.case-amt { margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--indigo); background: var(--card-blue); display: inline-block; border-radius: 999px; padding: 5px 12px; }
.case-card p { margin-top: 14px; font-size: 15px; color: var(--body); }
.case-note { margin-top: 26px; font-size: 15.5px; color: var(--ink-2); }

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14.5px; }
.footer-links a { color: #cdd6f1; text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .post-grid, .case-grid { grid-template-columns: 1fr; }
}
