/* Minimal Bootstrap subset for public marketing pages (skip full bootstrap.min.css) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Display / flex */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.d-grid { display: grid !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }

/* Position */
.position-relative { position: relative !important; }
.sticky-top { position: sticky; top: 0; z-index: 1020; }

/* Spacing */
.me-auto { margin-right: auto !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.ps-0 { padding-left: 0 !important; }

/* Text */
.text-center { text-align: center !important; }
.text-muted { color: #6c757d !important; }
.small { font-size: 0.875em; }
.lead { font-size: 1.25rem; font-weight: 300; }
.fst-italic { font-style: italic !important; }
.border-0 { border: 0 !important; }

/* Images */
.img-fluid { max-width: 100%; height: auto; }

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y, 0));
  margin-right: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
  margin-left: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  margin-top: var(--bs-gutter-y, 0);
  box-sizing: border-box;
}
.gy-3 { --bs-gutter-y: 1rem; }
.gy-4 { --bs-gutter-y: 1.5rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

.col-12 { flex: 0 0 auto; width: 100%; }
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 576px) {
  .gap-sm-4 { gap: 1.5rem !important; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .gy-lg-5 { --bs-gutter-y: 3rem; }
  .ps-lg-3 { padding-left: 1rem !important; }
}

@media (min-width: 1200px) {
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .d-xl-none { display: none !important; }
  .d-xl-grid { display: grid !important; }
}

/* Stretched link (service cards) */
.stretched-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

/* Modal */
.fade { transition: opacity 0.15s linear; }
.fade:not(.show) { opacity: 0; }
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.show { display: block; }
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade { opacity: 0; }
.modal-backdrop.show { opacity: 0.5; }
body.modal-open { overflow: hidden; padding-right: 0; }
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-radius: 0.5rem;
  outline: 0;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.modal-title { margin: 0; line-height: 1.5; font-size: 1.25rem; }
.modal-body { position: relative; flex: 1 1 auto; padding: 1rem; }
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  cursor: pointer;
}
.btn-close:hover { opacity: 0.75; }
@media (min-width: 576px) {
  .modal-dialog { max-width: 500px; margin: 1.75rem auto; }
  .modal-dialog-centered { min-height: calc(100% - 3.5rem); }
}

/* Partners / privacy Learn More — self-contained (slim pages omit Bootstrap .btn) */
.privacy-content .btn-learn-more,
body.index-page .privacy-content .btn-learn-more {
  display: inline-block;
  padding: 10px 24px;
  margin-top: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 1px solid #62A6E7;
  border-radius: 50px;
  background-color: #62A6E7;
  color: #ffffff;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.privacy-content .btn-learn-more:hover,
body.index-page .privacy-content .btn-learn-more:hover {
  background-color: #4A90E2;
  border-color: #4A90E2;
  color: #ffffff;
  text-decoration: none;
}
.newsroom-kicker {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  background: #62a6e7;
  color: #ffffff;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Blog */
.section.blog-hero {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
}
.blog-hero__title {
  margin: 0 0 0.65rem;
  color: #606d7a;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-weight: 700;
  line-height: 1.25;
}
.blog-hero__excerpt {
  margin-bottom: 0.5rem;
}
.blog-hero__disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}
.section.blog-body {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
.blog-faq {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(96, 109, 122, 0.18);
}
.blog-faq__title {
  margin: 0 0 1rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #606d7a;
}
.blog-faq__item + .blog-faq__item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(96, 109, 122, 0.12);
}
.blog-faq__question {
  margin: 0 0 0.4rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #212529;
}
.blog-faq__answer {
  margin: 0;
  color: #495057;
  line-height: 1.6;
}
.blog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.blog-cta__secondary {
  color: #4a90e2;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-weight: 600;
  text-decoration: none;
}
.blog-cta__secondary:hover {
  color: #2f78cc;
  text-decoration: underline;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(98, 166, 231, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}
.blog-card__meta {
  font-size: 0.875rem;
  color: #6c757d;
}
.blog-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-weight: 700;
  line-height: 1.35;
}
.blog-card__title a {
  color: #606d7a;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: #62a6e7;
}
.blog-card__excerpt {
  flex: 1 1 auto;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.blog-card__link {
  font-weight: 600;
  color: #62a6e7;
  text-decoration: none;
}
.blog-card__link:hover {
  color: #4a90e2;
}
.blog-article {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #212529;
}
.blog-article__section {
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: visible;
  scroll-margin-top: 0;
}
.blog-article__section:last-of-type {
  margin-bottom: 0;
}
.blog-article h2,
.blog-article h3 {
  color: #606d7a;
  font-family: var(--heading-font, "Raleway", sans-serif);
  margin: 0 0 0.5rem;
}
.blog-article p {
  margin: 0 0 0.65rem;
}
.blog-article p:last-child {
  margin-bottom: 0;
}
.blog-article__list {
  margin: 0 0 0.65rem;
  padding-left: 1.25rem;
}
.blog-article__list li {
  margin-bottom: 0.35rem;
}
.blog-article__list li:last-child {
  margin-bottom: 0;
}
.blog-article__sub {
  margin-top: 0.75rem;
}
.blog-article__sub + .blog-article__sub {
  margin-top: 0.65rem;
}
.blog-article a {
  color: #4a90e2;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.blog-article a:hover {
  color: #2f78cc;
}
.blog-related {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(96, 109, 122, 0.18);
}
.blog-related__title {
  margin: 0 0 0.75rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #606d7a;
}
.blog-related__list {
  margin: 0;
  padding-left: 1.15rem;
}
.blog-related__list li {
  margin-bottom: 0.45rem;
}
.blog-related__list li:last-child {
  margin-bottom: 0;
}
.blog-related__list a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
}
.blog-related__list a:hover {
  color: #2f78cc;
  text-decoration: underline;
}
.blog-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 1.85rem;
  background:
    linear-gradient(135deg, rgba(98, 166, 231, 0.12) 0%, rgba(246, 251, 255, 0.95) 42%, #ffffff 100%);
  border: 0;
  border-left: 4px solid #62a6e7;
  border-radius: 0 18px 18px 0;
}
.blog-cta__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #62a6e7;
}
.blog-cta__title {
  margin: 0 0 0.65rem;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  color: #212529;
}
.blog-cta__copy {
  margin: 0 0 1.15rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #606d7a;
}
.blog-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.45rem;
  border-radius: 50px;
  background: #62a6e7;
  color: #ffffff;
  font-family: var(--heading-font, "Raleway", sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(98, 166, 231, 0.35);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.blog-cta__button:hover {
  background: #4a90e2;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(74, 144, 226, 0.4);
}
@media (max-width: 640px) {
  .blog-cta {
    padding: 1.4rem 1.15rem 1.5rem;
    border-radius: 0 14px 14px 0;
  }
  .blog-cta__button {
    width: 100%;
  }
}

