/* Global styles for the /features area — landing, category and detail pages.
   Previously these lived in Views/Features/Index.cshtml.css which is Razor
   scoped CSS and therefore only applied to the landing page. */

/* Feature category grid */
.features-categories {
  background: #f8fbfc;
  border-top: 1px solid #e3edef;
  padding: clamp(64px, 5vw, 96px) 0;
}

.features-section-heading {
  margin: 0 auto clamp(44px, 4vw, 70px);
  max-width: 820px;
  text-align: center;
}

.features-section-heading h2 {
  color: #171d24;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 2.3vw, 46px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0 0 14px;
}

.features-section-heading > p:last-child { color: #52646d; font-size: 16px; margin: 0; }

.features-section-heading .eyebrow {
  color: #119DA4;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(14px, .82vw, 17px);
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.features-section-heading .features-lead {
  color: #119DA4;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(14px, .82vw, 17px);
  font-weight: 800;
  letter-spacing: .06em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.features-category-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1199.98px) { .features-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767.98px)  { .features-category-grid { grid-template-columns: 1fr; } }

.feature-category-card {
  background: #fff;
  border: 1px solid #8f989c;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 2vw, 36px);
  scroll-margin-top: 90px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

@media (max-width: 767.98px) { .feature-category-card { padding: 26px 22px; } }

.feature-category-card:hover { border-color: #119DA4; box-shadow: 0 8px 24px rgba(17,56,63,.09); }

.feature-category-icon { align-items: center; display: flex; height: 92px; margin-bottom: 24px; width: 104px; }
.feature-category-icon img { height: 92px; object-fit: contain; width: 104px; }

.feature-category-card h2 {
  color: #171d24;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(21px, 1.3vw, 27px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.22;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.feature-category-card h2 a,
.feature-category-card h2 a:visited {
  color: #171d24 !important;
  text-decoration: none !important;
}

.feature-category-card h2 a:hover,
.feature-category-card h2 a:focus {
  color: #119DA4 !important;
  text-decoration: none !important;
}

.feature-category-card > p { color: #52646d; font-size: clamp(14px, .88vw, 18px); line-height: 1.45; margin: 0 0 22px; min-height: 4.8em; }
@media (max-width: 767.98px) { .feature-category-card > p { min-height: 0; } }

.feature-category-card ul { display: grid; gap: 11px; list-style: none; margin: 0 0 28px; padding: 0; }

.feature-category-card li {
  align-items: flex-start;
  color: #33464e;
  display: flex;
  font-size: clamp(15px, 1vw, 18px);
  gap: 10px;
  line-height: 1.45;
}

.feature-category-card li::before {
  align-items: center;
  border: 1.5px solid #119DA4;
  border-radius: 50%;
  color: #119DA4;
  content: "v";
  display: inline-flex;
  flex: 0 0 16px;
  font-size: 10px;
  font-weight: 800;
  height: 16px;
  justify-content: center;
  margin-top: 2px;
  width: 16px;
}

.feature-category-card li a { color: #119DA4; font-weight: 700; text-decoration: none; }
.feature-category-card li a:hover, .feature-category-card li a:focus { color: #087b82; text-decoration: underline; text-underline-offset: 3px; }

.feature-category-link { color: #119DA4; font-size: clamp(13px, .85vw, 17px); font-weight: 500; margin-top: auto; text-decoration: none; }
.feature-category-link:hover, .feature-category-link:focus { color: #087b82; }

/* Bottom CTA */
.features-cta { background: #eff8ff url('/images/light-blue-background.png') center / cover no-repeat; color: #171d24; margin: 0; }

.features-cta-grid { align-items: center; display: grid; gap: 34px; grid-template-columns: minmax(240px, .8fr) minmax(0, 2fr) auto; min-height: 260px; padding-block: 38px; }

@media (max-width: 1199.98px) { .features-cta-grid { grid-template-columns: 1fr; padding-block: 50px; } }

.features-cta-copy h2 {
  color: #119DA4;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 2.4vw, 45px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 18px;
}
.features-cta-copy p { color: #33464e; font-size: 15px; line-height: 1.55; margin: 0; max-width: 390px; }

.features-demo-action { background: #F58906; border: 2px solid #F58906; border-radius: 5px; color: #fff; font-size: 14px; font-weight: 700; padding: 13px 30px; white-space: nowrap; }
.features-demo-action:hover, .features-demo-action:focus { background: #d97300; border-color: #d97300; color: #fff; }

@media (max-width: 1199.98px) { .features-demo-action { justify-self: start; } }
@media (max-width: 767.98px)  { .features-demo-action { justify-self: stretch; text-align: center; } }

.features-stat-grid { border: 1px solid rgba(17, 157, 164, .35); border-radius: 14px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); overflow: hidden; }
.features-stat-grid > div { align-items: center; border-left: 1px solid rgba(17, 157, 164, .25); color: #171d24; display: grid; grid-template-columns: 52px 1fr; min-height: 100px; padding: 14px; }
.features-stat-grid > div:first-child { border-left: 0; }
.features-stat-grid img { grid-row: 1 / 3; height: 44px; object-fit: contain; width: 46px; }
.features-stat-grid strong { color: #087b82; font-size: 21px; line-height: 1.1; }
.features-stat-grid span { color: #33464e; font-size: 12px; line-height: 1.25; }

@media (max-width: 767.98px) {
  .features-stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .features-stat-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(17, 157, 164, .25); }
  .features-stat-grid > div:nth-child(4) { border-top: 1px solid rgba(17, 157, 164, .25); }
}

@media (max-width: 420px) {
  .features-stat-grid { grid-template-columns: 1fr; }
  .features-stat-grid > div { border-left: 0; border-top: 1px solid rgba(17, 157, 164, .25); }
  .features-stat-grid > div:first-child { border-top: 0; }
}

/* ?? Features content blocks & FAQs ??????????????????????????????? */
.features-content,
.features-content-sections,
.features-faqs { background: #ffffff; text-align: left; }
.features-content-inner { max-width: none; margin: 0; text-align: left; }
.features-content-intro p { font-size: 1.25rem; line-height: 1.75; color: #2b3947; margin: 0 0 1.25rem; }
.features-content-heading { font-size: 2rem; margin: 2rem 0 1.25rem; color: #0b2f4a; text-align: left; }
.features-content-benefits { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .75rem; }
.features-content-benefits li {
  position: relative; padding: .75rem 0 .75rem 2.1rem;
  font-size: 1.2rem; color: #2b3947; line-height: 1.6;
  border-bottom: 1px solid #eef2f5;
  text-align: left;
}
.features-content-benefits li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: #119DA4; box-shadow: inset 0 0 0 3px #ffffff, 0 0 0 2px #119DA4;
}
.features-content-section { margin-bottom: 2.5rem; text-align: left; }
.features-content-section h2 { font-size: 1.75rem; color: #0b2f4a; margin: 0 0 1rem; text-align: left; }
.features-content-section p { font-size: 1.2rem; line-height: 1.75; color: #2b3947; margin: 0 0 1.1rem; }

.features-faqs h2 { font-size: 2.1rem; color: #0b2f4a; margin: 0 0 1.5rem; text-align: left; }
.features-faq-list { display: grid; gap: .85rem; }
.features-faq {
  border: 1px solid #e3e9ee; border-radius: 12px;
  background: #f7fafc; overflow: hidden; transition: box-shadow .2s ease;
}
.features-faq[open] { box-shadow: 0 6px 22px -14px rgba(11,47,74,.35); background: #ffffff; }
.features-faq summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 1.35rem; font-weight: 600; color: #0b2f4a;
  font-size: 1.2rem; line-height: 1.4;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left;
}
.features-faq summary::-webkit-details-marker { display: none; }
.features-faq summary::after {
  content: "+"; font-weight: 400; font-size: 1.6rem; color: #119DA4;
  transition: transform .2s ease; flex: 0 0 auto;
}
.features-faq[open] summary::after { content: "–"; }
.features-faq-answer { padding: 0 1.35rem 1.25rem; color: #2b3947; line-height: 1.75; font-size: 1.1rem; text-align: left; }
.features-faq-answer p { margin: 0 0 .85rem; }

/* ?? Feature detail page (sidebar + main) ????????????????????????? */
.feature-detail { background: #ffffff; padding: 2rem 0 4rem; }
.feature-detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.feature-detail-sidebar { position: sticky; top: 96px; align-self: start; }
.feature-detail-sidebar-eyebrow {
  font-size: .8rem; letter-spacing: .12em; font-weight: 700;
  color: #6a7a89; margin: 0 0 1rem;
}
.feature-detail-sidebar-nav { list-style: none; padding: 0; margin: 0 0 2rem; }
.feature-detail-sidebar-nav li { margin: 0; }
.feature-detail-sidebar-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .85rem; border-radius: 8px;
  color: #2b3947; text-decoration: none; font-size: 1rem;
  transition: background .15s ease, color .15s ease;
}
.feature-detail-sidebar-nav a:hover { background: #eef7fa; color: #0b2f4a; }
.feature-detail-sidebar-nav .is-current > a,
.feature-detail-sidebar-nav .is-current > a:hover,
.feature-detail-sidebar-nav .is-current > a:focus {
  background: #119DA4 !important; color: #ffffff !important; font-weight: 600;
}
.feature-detail-sidebar-nav .is-current > a .feature-detail-sidebar-icon {
  background: #ffffff; color: #119DA4;
}
.feature-detail-sidebar-nav .is-current > a .feature-detail-sidebar-icon svg { stroke: #119DA4; }
.feature-detail-sidebar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: #119DA4; color: #ffffff;
  flex: 0 0 auto;
}
.feature-detail-sidebar-icon svg { width: .85rem; height: .85rem; stroke: #ffffff; }

.feature-detail-sidebar-cta {
  background: #f2f6f8; border-radius: 12px;
  padding: 1.25rem; text-align: center;
}
.feature-detail-sidebar-cta-icon img { width: 56px; height: auto; margin: 0 auto .5rem; display: block; }
.feature-detail-sidebar-cta-title { font-weight: 600; color: #0b2f4a; margin: 0 0 .35rem; }
.feature-detail-sidebar-cta-copy { font-size: .9rem; color: #4a5866; margin: 0 0 1rem; line-height: 1.5; }
.feature-detail-sidebar-cta .btn { padding: .55rem 1rem; font-size: .95rem; }

.feature-detail-main { min-width: 0; }

.feature-detail-header { display: flex; gap: 1.5rem; align-items: flex-start; margin: 0 0 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid #eef2f5; }
.feature-detail-header-image { flex: 0 0 auto; max-width: 120px; height: auto; display: block; }
.feature-detail-header-body { min-width: 0; }
.feature-detail-title { font-size: 2.6rem; line-height: 1.15; color: #0b2f4a; margin: 0 0 .5rem; font-weight: 700; }
.feature-detail-tagline { font-size: 1.2rem; color: #119DA4; font-weight: 600; margin: 0 0 1rem; }
.feature-detail-intro { font-size: 1.1rem; line-height: 1.7; color: #2b3947; margin: 0 0 1rem; }

.feature-detail-benefits { margin: 0 0 3rem; padding-bottom: 2rem; border-bottom: 1px solid #eef2f5; }
.feature-detail-benefits h2 { font-size: 1.75rem; color: #0b2f4a; margin: 0 0 1.25rem; }
.feature-detail-benefits-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2.5rem;
}
.feature-detail-benefits-grid li {
  display: grid; grid-template-columns: 2.25rem 1fr; gap: 1rem; align-items: start;
}
.feature-detail-benefits-grid li > div { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.feature-detail-benefits-grid strong { font-size: 1.1rem; color: #0b2f4a; font-weight: 700; }
.feature-detail-benefits-grid span { font-size: 1rem; color: #4a5866; line-height: 1.55; }
.feature-detail-benefit-check {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: #119DA4; color: #ffffff; display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(34, 163, 193, .25);
}
.feature-detail-benefit-check svg { width: 1.15rem; height: 1.15rem; stroke: #ffffff; }

.feature-detail-how { margin: 0 0 3rem; padding-bottom: 1.5rem; }
.feature-detail-how > h2 { font-size: 1.75rem; color: #0b2f4a; margin: 0 0 .5rem; }
.feature-detail-how-block {
  margin: 0 0 1.5rem;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(11, 47, 74, .04);
}
.feature-detail-how-block > :first-child { margin-top: 0; }
.feature-detail-how-block > :last-child  { margin-bottom: 0; }
.feature-detail-how-block h3 { font-size: 1.3rem; color: #0b2f4a; margin: 1.25rem 0 .5rem; font-weight: 600; }
.feature-detail-how-block p { font-size: 1.05rem; line-height: 1.7; color: #4a5866; margin: 0 0 1rem; }
.feature-detail-how-figure {
  margin: 1rem 0 0; padding: 0;
  border: 1px solid #eef2f5; border-radius: 12px; overflow: hidden;
  background: #f8fbfc;
}
.feature-detail-how-figure img { display: block; width: 100%; height: auto; }
.feature-detail-how-figure figcaption {
  padding: .85rem 1.1rem; font-size: .95rem; color: #4a5866;
  background: #ffffff; border-top: 1px solid #eef2f5;
}

.feature-detail-sections { margin: 0 0 3rem; }
.feature-detail-section { margin: 0 0 2rem; }
.feature-detail-section h2 { font-size: 1.6rem; color: #0b2f4a; margin: 0 0 .75rem; }
.feature-detail-section p { font-size: 1.05rem; line-height: 1.7; color: #2b3947; margin: 0 0 1rem; }

.feature-detail-faqs { margin: 0 0 3rem; }
.feature-detail-faqs h2 { font-size: 1.75rem; color: #0b2f4a; margin: 0 0 1.25rem; }

.feature-detail-explore {
  background: #f2f6f8; border-radius: 14px;
  padding: 1.75rem; margin: 0;
}
.feature-detail-explore h2 { font-size: 1.15rem; color: #0b2f4a; margin: 0 0 1rem; font-weight: 600; }
.feature-detail-explore-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.feature-detail-explore-card {
  background: #ffffff; border: 1px solid #d8e2e8; border-radius: 8px;
  padding: .7rem 1rem; color: #119DA4; font-weight: 600; text-decoration: none;
  font-size: .95rem; transition: border-color .15s, color .15s, background .15s;
}
.feature-detail-explore-card:hover { border-color: #119DA4; background: #eef7fa; color: #0b2f4a; }

@media (max-width: 992px) {
  .feature-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .feature-detail-sidebar { position: static; }
  .feature-detail-benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .feature-detail-header { flex-direction: column; gap: 1rem; }
  .feature-detail-title { font-size: 2rem; }
}

/* Pricing panel - global (same visual as scoped .pricing on home page) */
.pricing { padding: 3.5rem 0; }
.pricing .eyebrow { color: #119DA4; font-family: 'Inter', Arial, sans-serif; font-size: clamp(14px,.82vw,17px); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 2rem; }
.pricing .text-center { text-align: center; }
.pricing-grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.pricing-grid article { background: #fff; border: 1px solid #7f8a90; border-radius: .8rem; display: flex; flex-direction: column; min-height: 25rem; padding: 1.4rem; position: relative; text-align: center; }
.pricing-grid h3 { color: #171d24; font-family: 'Manrope', Arial, sans-serif; font-size: 1.35rem; font-weight: 700; margin: .5rem 0 .75rem; }
.pricing-grid article > p { color: #52646d; font-size: .95rem; min-height: 3rem; margin: 0 0 1rem; }
.pricing-grid dl { margin: 1.25rem 0; text-align: left; }
.pricing-grid dl div { align-items: baseline; display: flex; justify-content: space-between; margin: .9rem 0; }
.pricing-grid dt { color: #171d24; font-family: 'Inter', Arial, sans-serif; font-size: 1rem; font-weight: 700; }
.pricing-grid dd { color: #119DA4; font-family: 'Manrope', Arial, sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; margin: 0; text-align: right; }
.pricing-grid dd small { color: #171d24; display: block; font-size: .75rem; font-weight: 600; margin-top: .15rem; }
.pricing-grid .btn { margin-top: auto; width: 100%; }
.pricing-grid .featured { border: 2px solid #f5a623; }
.pricing-grid .plan-label { background: #f5a623; border-radius: 0 0 .5rem .5rem; color: #fff; font-size: .7rem; font-weight: 800; left: 50%; padding: .45rem .9rem; position: absolute; text-transform: uppercase; top: 0; transform: translateX(-50%); letter-spacing: .05em; }
.pricing-grid .custom-price { color: #171d24; font-family: 'Manrope', Arial, sans-serif; font-size: 1.75rem; font-weight: 800; margin: 4rem 0; }
.pricing-grid .btn-orange { background: #f5a623; border-color: #f5a623; color: #fff; }
.pricing-grid .btn-orange:hover { background: #e29416; border-color: #e29416; color: #fff; }
@media (max-width: 1199.98px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px)  { .pricing-grid { grid-template-columns: 1fr; } }


/* ============================================================
   Blog: /blog list and /blog/{slug} detail
   ============================================================ */
.blog-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 991.98px) { .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px)  { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border: 1px solid #e3edef; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.blog-card:hover { border-color: #119DA4; box-shadow: 0 8px 24px rgba(17,56,63,.09); transform: translateY(-2px); }
.blog-card-media { display: block; aspect-ratio: 16/9; background: #f8fbfc; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.blog-card-eyebrow { color: #119DA4; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .08em; margin: 0 0 8px; text-transform: uppercase; }
.blog-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin: 0 0 12px; }
.blog-card h3 a { color: #171d24; text-decoration: none; }
.blog-card h3 a:hover { color: #119DA4; }
.blog-card-body > p { color: #52646d; font-size: .95rem; margin: 0 0 14px; }
.blog-card-meta { color: #7b8b93; font-size: .85rem; margin: auto 0 12px; }
.blog-card-cta { align-self: flex-start; background: #F58906; border: 2px solid #F58906; border-radius: 5px; color: #fff !important; display: inline-block; font-size: 14px; font-weight: 700; padding: 10px 22px; text-decoration: none !important; transition: background .15s ease-in-out, border-color .15s ease-in-out; }
.blog-card-cta:hover, .blog-card-cta:focus { background: #d97300; border-color: #d97300; color: #fff !important; text-decoration: none !important; }
.blog-pagination { align-items: center; display: flex; gap: 20px; justify-content: center; margin-top: 40px; color: #52646d; }
.blog-pagination a { color: #119DA4; font-weight: 600; text-decoration: none; }
.blog-pagination a:hover { text-decoration: underline; }
.blog-article { color: #2c3a42; font-size: 1.05rem; line-height: 1.75; margin: 0; max-width: 1180px; padding: 40px 0; text-align: left; }
.blog-article h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.6rem, 2vw, 2rem); margin: 2.2rem 0 .8rem; }
.blog-article h3 { font-family: 'Manrope', sans-serif; font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.blog-article p { margin: 0 0 1.2rem; }
.blog-article img { border-radius: 8px; height: auto; max-width: 100%; }
.blog-article a { color: #119DA4; text-decoration: underline; }
.blog-article ul, .blog-article ol { margin: 0 0 1.2rem 1.2rem; }
.blog-article blockquote { border-left: 4px solid #119DA4; color: #171d24; font-style: italic; margin: 1.6rem 0; padding: .4rem 0 .4rem 1.2rem; }
.blog-article-tags { border-top: 1px solid #e3edef; color: #52646d; font-size: .9rem; margin: 40px 0 0; padding-top: 20px; }
.blog-article-tags a { color: #119DA4; margin: 0 4px; text-decoration: none; }
.blog-article-tags a:hover { text-decoration: underline; }
.blog-share { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; padding: 20px 0 0; border-top: 1px solid #e3edef; }
.blog-share-label { color: #52646d; font-size: .9rem; font-weight: 600; margin-right: 4px; }
.blog-share-btn { background: #119DA4; border: 2px solid #119DA4; border-radius: 5px; color: #fff !important; font-size: .85rem; font-weight: 700; padding: 8px 16px; text-decoration: none !important; transition: background .15s ease-in-out, border-color .15s ease-in-out; }
.blog-share-btn:hover, .blog-share-btn:focus { background: #087b82; border-color: #087b82; color: #fff !important; text-decoration: none !important; }
.blog-share .sharethis-inline-share-buttons { margin-left: 4px; }
.blog-related { border-top: 1px solid #e3edef; margin-top: 60px; padding-top: 60px; }
.blog-related h2 { font-family: 'Manrope', sans-serif; font-size: 1.6rem; margin: 0 0 28px; }

/* ============ Case Studies ============ */
.cs-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2rem; margin: 1.5rem 0 0; }
.cs-facts div { margin: 0; }
.cs-facts dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: #52646d; margin-bottom: .15rem; }
.cs-facts dd { margin: 0; font-weight: 600; color: #0f2027; }
.cs-hero-image { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 22px 60px -30px rgba(15,32,39,.35); }
.cs-metrics-band { background: #f4f8f9; }
.cs-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: center; }
.cs-metric { background: #fff; border-radius: 18px; padding: 1.75rem 1rem; box-shadow: 0 12px 32px -20px rgba(15,32,39,.25); }
.cs-metric strong { display: block; font-family: 'Manrope', sans-serif; font-size: 2.4rem; color: #119DA4; line-height: 1.1; }
.cs-metric span { display: block; color: #52646d; font-weight: 500; margin-top: .35rem; }
.cs-card-metrics { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin: .5rem 0 1rem; }
.cs-card-metrics li { font-size: .85rem; color: #52646d; }
.cs-card-metrics li strong { color: #119DA4; margin-right: .25rem; font-size: 1rem; }
.cs-article section { margin-bottom: 2.5rem; }
.cs-article h2 { font-family: 'Manrope', sans-serif; font-size: 1.6rem; margin-bottom: .85rem; color: #0f2027; }
.cs-article p, .cs-article li { color: #33474f; line-height: 1.7; }
.cs-quote { margin: 2rem 0; padding: 1.75rem 2rem; border-left: 4px solid #119DA4; background: #f4f8f9; border-radius: 0 16px 16px 0; }
.cs-quote blockquote { margin: 0 0 .75rem; font-size: 1.15rem; font-style: italic; color: #0f2027; }
.cs-quote figcaption strong { display: block; color: #0f2027; }
.cs-quote figcaption span { color: #52646d; font-size: .9rem; }
.cs-sidebar-card { background: #fff; border: 1px solid #e2ecef; border-radius: 18px; padding: 1.5rem; margin-bottom: 1.25rem; }
.cs-sidebar-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.05rem; margin-bottom: .75rem; color: #0f2027; }
.cs-sidebar-card ul li { margin-bottom: .5rem; color: #33474f; }
.cs-sidebar-cta { background: linear-gradient(135deg, #119DA4, #0d7a80); color: #fff; }
.cs-sidebar-cta h3, .cs-sidebar-cta p { color: #fff; }
.cs-sidebar-cta .btn-demo { background: #fff; color: #0d7a80; }
.cs-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.cs-tags li { background: #eef4f5; color: #0f2027; padding: .25rem .75rem; border-radius: 999px; font-size: .85rem; }
.cs-tags li a { color: inherit; text-decoration: none; }
.cta-band { background: linear-gradient(135deg, #0f2027 0%, #133540 100%); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); }

/* Request-a-demo helpers */
.cs-steps { padding-left: 1.25rem; margin: 0 0 1.5rem; }
.cs-steps li { margin-bottom: .75rem; color: #33474f; line-height: 1.6; }
.cs-faq { border: 1px solid #e2ecef; border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: .75rem; background: #fff; }
.cs-faq summary { cursor: pointer; font-weight: 600; color: #0f2027; }
.cs-faq[open] summary { margin-bottom: .5rem; }
.cs-faq p { margin: 0; color: #33474f; }


/* Request Demo — choice cards */
.cs-demo-choice { display: grid; gap: 12px; margin-top: 8px; }
.cs-demo-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid #d9e3e6; border-radius: 12px; background: #fff; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.cs-demo-option:hover { border-color: #119DA4; background: #f4fbfc; }
.cs-demo-option input[type="radio"] { margin-top: 4px; accent-color: #119DA4; }
.cs-demo-option span { display: flex; flex-direction: column; gap: 2px; }
.cs-demo-option strong { color: #171d24; font-weight: 600; }
.cs-demo-option small { color: #556069; font-size: .9rem; }
.cs-demo-option:has(input:checked) { border-color: #119DA4; box-shadow: 0 0 0 2px rgba(17,157,164,.15); background: #f4fbfc; }

/* Request Demo — sending overlay + button spinner */
.cs-sending-overlay { position: fixed; inset: 0; background: rgba(23, 29, 36, 0.55); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .15s ease; }
.cs-sending-overlay.is-visible { opacity: 1; pointer-events: auto; }
.cs-sending-card { background: #fff; border-radius: 14px; padding: 32px 40px; max-width: 420px; width: calc(100% - 32px); text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.cs-sending-card h2 { margin: 12px 0 6px; font-size: 1.3rem; color: #171d24; }
.cs-sending-card p { margin: 0; color: #556069; font-size: .95rem; }
.cs-sending-spinner { width: 44px; height: 44px; margin: 0 auto; border-radius: 50%; border: 4px solid #e3edef; border-top-color: #119DA4; animation: cs-spin .8s linear infinite; }
.submit-spinner { display: none; width: 16px; height: 16px; margin-left: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: cs-spin .8s linear infinite; vertical-align: middle; }
.btn-demo.is-loading .submit-spinner { display: inline-block; }
.btn-demo.is-loading { opacity: .85; cursor: progress; }
@keyframes cs-spin { to { transform: rotate(360deg); } }

/* Contact page */
.cs-contact-grid .cs-sidebar-card { height: 100%; }
.cs-contact-cta { margin-top: 2rem; padding: 24px 28px; border-radius: 14px; background: #f4fbfc; border: 1px solid #e3edef; }
.cs-contact-cta h3 { margin-top: 0; }
.cs-contact-brand { text-align: center; }
.cs-map-wrap { margin-top: 24px; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.06); background: #fff; padding: 8px 8px 14px; }
.cs-map-wrap iframe { display: block; border-radius: 10px; }
