/* INDIGO — layout and UI refinements on top of the base theme */

:root {
  --indigo-navy: #111d5e;
  --indigo-blue: #2d4a9a;
  --indigo-accent: #3a37eb;
  --indigo-muted: #5c6478;
  --indigo-surface: #f4f6fb;
  --indigo-border: #e2e8f0;
  --indigo-radius: 12px;
  --indigo-shadow: 0 12px 40px rgba(17, 29, 94, 0.08);
}

/* Back-to-top button — the theme drew its arrow via an icon-font ::before/
   ::after content code ("unicons") that depended on a font never loaded by
   this project, so it rendered blank. Using a real <i class="fas"> icon
   instead and restyling to match the brand + the rest of the button system. */
.progress-wrap {
  right: 30px;
  bottom: 30px;
  height: 52px;
  width: 52px;
  box-shadow: 0 10px 28px rgba(17, 29, 94, 0.22);
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 200ms linear,
    visibility 200ms linear;
}

.progress-wrap::before,
.progress-wrap::after {
  content: none;
}

.progress-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(17, 29, 94, 0.3);
}

.progress-wrap svg {
  background: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--indigo-accent);
}

.indigo-back-to-top__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--indigo-navy);
  transition: color 0.2s ease, transform 0.2s ease;
}

.progress-wrap:hover .indigo-back-to-top__icon {
  color: var(--indigo-accent);
  transform: translateY(-2px);
}

body.inner-page {
  background: #fff;
}

/* Honeypot anti-spam field — escondido de pessoas, visível para bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Estado "sem imagem" — usado sempre que uma foto/imagem é opcional e
   não foi carregada, em vez de apontar para um ficheiro placeholder que
   pode não existir. */
.indigo-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--indigo-surface);
  color: var(--indigo-muted);
}

.indigo-img-fallback i {
  font-size: 2.25rem;
  opacity: 0.45;
}

.indigo-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--indigo-accent);
}

.indigo-section {
  padding: 4.5rem 0;
}

.indigo-section--muted {
  background: var(--indigo-surface);
}

.indigo-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.indigo-section-head .indigo-kicker {
  color: var(--indigo-accent);
}

.indigo-section-head h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--indigo-navy);
  margin-bottom: 0.75rem;
}

.indigo-section-head p {
  color: var(--indigo-muted);
  margin: 0;
}

.indigo-card {
  background: #fff;
  border: 1px solid var(--indigo-border);
  border-radius: var(--indigo-radius);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.indigo-card:hover {
  box-shadow: var(--indigo-shadow);
  transform: translateY(-2px);
}

.indigo-card h3,
.indigo-card h4,
.indigo-card h5 {
  color: var(--indigo-navy);
}

.indigo-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--indigo-surface);
  border-radius: var(--indigo-radius);
  border: 1px dashed var(--indigo-border);
}

.indigo-empty p {
  color: var(--indigo-muted);
  margin-bottom: 1.25rem;
}

.indigo-form-panel {
  background: #fff;
  border: 1px solid var(--indigo-border);
  border-radius: var(--indigo-radius);
  padding: 2rem;
  box-shadow: var(--indigo-shadow);
}

.indigo-form-panel .form-control {
  border-radius: 8px;
  border: 1.5px solid #c7cede;
  background-color: #f8fafc;
  padding: 0.75rem 1rem;
}

.indigo-form-panel .form-control:hover {
  border-color: #a7b1c7;
}

.indigo-form-panel .form-control:focus {
  border-color: var(--indigo-accent);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(58, 55, 235, 0.15);
}

.header-one.header--sticky {
  box-shadow: 0 4px 24px rgba(17, 29, 94, 0.06);
}

.header-one .thumbnail img {
  height: 44px;
  width: 71px;
  object-fit: contain;
  padding: 0;
  border-radius: 8px;
}

.sticky.header-one .thumbnail img {
  height: 36px;
  width: 58px;
}

.header-one:not(.sticky) .main-header .main-nav .mainmenu li a {
  color: #fff;
}

.header-one:not(.sticky) .main-header .main-nav .mainmenu li.current a {
  font-weight: 700;
}

/* Breadcrumb inside the hero banner. A near-transparent pill picked up
   whatever was behind it (green foliage, skin tones, etc.), reading as a
   muddy smear on busy photos — only the plain-sky contacto photo looked
   clean. A solid navy pill + blur reads the same crisp way on every photo. */
.indigo-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(9, 14, 45, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.indigo-breadcrumb__link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.indigo-breadcrumb__link:hover {
  color: #fff;
}

.indigo-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

.indigo-breadcrumb__current {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 575px) {
  .indigo-breadcrumb {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
    gap: 0.4rem;
  }
}

/* Buttons — the theme's default hover relied on a ::before layer swap that
   painted behind/above the button unpredictably depending on context
   (visible via computed styles: the ::before kept its accent-purple fill
   and identity transform instead of the intended scale(0) on non-hover).
   Replaced with plain, predictable background/color transitions. */
.rts-btn::before {
  content: none;
}

.rts-btn {
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.rts-btn:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* Primary — solid navy fill, safe on light or dark/photo backgrounds */
.rts-btn.btn-primary {
  background: var(--indigo-navy);
  border: 2px solid var(--indigo-navy);
  color: #fff;
}

.rts-btn.btn-primary:hover,
.rts-btn.btn-primary:focus-visible {
  background: var(--indigo-accent);
  border-color: var(--indigo-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(58, 55, 235, 0.35);
}

.rts-btn.btn-primary:not(.rts-product-one .thumbnail-area a):hover {
  transform: translateY(-2px);
}

/* Small circular "view project" badge keeps the theme's centered reveal
   animation instead of the generic lift. */
.rts-product-one .thumbnail-area a.rts-btn.btn-primary:hover {
  transform: translate(-50%, -50%) scale(1);
}

/* Secondary — outline style. Defaults to navy-on-light; flips to
   white-on-dark automatically inside photo/dark sections. */
.rts-btn.btn-secondary {
  background: transparent;
  border: 2px solid var(--indigo-navy);
  color: var(--indigo-navy);
}

.rts-btn.btn-secondary:hover,
.rts-btn.btn-secondary:focus-visible {
  background: var(--indigo-navy);
  border-color: var(--indigo-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 29, 94, 0.25);
}

.indigo-home-hero .rts-btn.btn-secondary,
.footer-cta .rts-btn.btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.indigo-home-hero .rts-btn.btn-secondary:hover,
.footer-cta .rts-btn.btn-secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--indigo-navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* Header pills ("Fale Connosco", menu) sit on the light sticky header */
.header-right .rts-btn.btn-secondary {
  background: var(--indigo-surface);
  border: 2px solid var(--indigo-border);
  color: var(--indigo-navy);
}

.header-right .rts-btn.btn-secondary svg path {
  transition: fill 0.25s ease;
  fill: var(--indigo-accent);
}

.header-right .rts-btn.btn-secondary:hover {
  background: var(--indigo-navy);
  border-color: var(--indigo-navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17, 29, 94, 0.2);
}

.header-right .rts-btn.btn-secondary:hover svg path {
  fill: #fff;
}

/* Team card + modal action buttons (plain Bootstrap classes) get the same
   brand hover treatment as the rts-btn family for visual consistency. */
.team-social-overlay .btn-light {
  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.2s ease;
}

.team-social-overlay .btn-light:hover {
  background: var(--indigo-accent);
  color: #fff;
  transform: translateY(-2px);
}

.modal .btn-linkedin {
  background: #0a66c2;
  color: #fff;
  border: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.modal .btn-linkedin:hover {
  background: #084b8f;
  color: #fff;
  transform: translateY(-2px);
}

.modal .btn-light.border {
  transition: background-color 0.25s ease, border-color 0.25s ease,
    transform 0.2s ease;
}

.modal .btn-light.border:hover {
  background: var(--indigo-surface);
  border-color: var(--indigo-navy) !important;
  transform: translateY(-2px);
}

.modal .btn-outline-dark {
  border-color: var(--indigo-navy);
  color: var(--indigo-navy);
  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.2s ease;
}

.modal .btn-outline-dark:hover {
  background: var(--indigo-navy);
  border-color: var(--indigo-navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-close {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-close:hover {
  transform: scale(1.1);
}

.rts-single-service-one.home-three,
.rts-product-one,
.single-team-two {
  border-radius: var(--indigo-radius);
  overflow: hidden;
}

.blog-grid-inner {
  border-radius: var(--indigo-radius);
  overflow: hidden;
  border: 1px solid var(--indigo-border);
}

/* —— Homepage —— */
body.home-page {
  background: #fff;
}

.indigo-home-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rts-banner-area.three.indigo-home-hero .banner-three-wrapper {
  width: 100%;
}

.rts-banner-area.three.indigo-home-hero .banner-three-wrapper .inner span.background-text {
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  justify-content: center;
  opacity: 0.35;
  -webkit-text-stroke-width: 2.5px;
}

.indigo-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 0;
}

.indigo-home-hero .container {
  z-index: 1;
}

.indigo-home-hero .banner-three-wrapper .inner .title {
  margin-bottom: 1rem;
}

.indigo-home-hero__lead {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.indigo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.indigo-home-stats {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.indigo-stat-card {
  background: #fff;
  border: 1px solid var(--indigo-border);
  border-radius: var(--indigo-radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--indigo-shadow);
  height: 100%;
}

.indigo-stat-card__value {
  display: block;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo-navy);
  margin-bottom: 0.35rem;
}

.indigo-stat-card__label {
  display: block;
  font-size: 0.875rem;
  color: var(--indigo-muted);
  line-height: 1.4;
}

/* Landing page — alternating section backgrounds for clear visual separation */
.indigo-home #sobre {
  background: #fff;
  position: relative;
  z-index: 1;
}

.indigo-home .service-bg-color {
  background: var(--indigo-surface);
}

.indigo-home .bgproject-area {
  background: #fff;
}

.indigo-home .bg-team {
  background: var(--indigo-surface);
}

.indigo-home #contacto {
  background: #fff;
}

.indigo-home #sobre,
.indigo-home #servicos,
.indigo-home #projetos,
.indigo-home #equipa,
.indigo-home #contacto {
  border-top: 1px solid var(--indigo-border);
}

.indigo-home .service-bg-color .indigo-empty,
.indigo-home .bg-team .indigo-empty {
  background: #fff;
  box-shadow: var(--indigo-shadow);
}

.indigo-service-card,
.indigo-project-card,
.indigo-team-card {
  background: #fff;
  border: 1px solid var(--indigo-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.indigo-service-card:hover,
.indigo-project-card:hover,
.indigo-team-card:hover {
  box-shadow: var(--indigo-shadow);
  transform: translateY(-3px);
}

.indigo-blog-card a {
  color: var(--indigo-navy);
  text-decoration: none;
}

.indigo-blog-card a:hover {
  color: var(--indigo-accent);
}

.indigo-disc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--indigo-muted);
}

.indigo-sidebar-heading {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 10px;
  display: inline-block;
}

.equipa-cargo-titulo {
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.indigo-contact-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
}

.indigo-contact-card {
  border: 1px solid var(--indigo-border);
  border-radius: var(--indigo-radius);
  background: #fff;
  box-shadow: var(--indigo-shadow);
}

.indigo-contact-card .card-body {
  padding: 1.5rem;
}

.indigo-contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--indigo-border);
}

.indigo-contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.indigo-contact-row:first-child {
  padding-top: 0;
}

.indigo-contact-label {
  margin: 0 0 0.15rem;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #8b95a7;
  font-weight: 700;
}

.indigo-contact-value {
  margin: 0;
  color: var(--indigo-navy);
  font-weight: 600;
}

.indigo-form-panel .form-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d778a;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.indigo-form-panel textarea.form-control {
  min-height: 140px;
}

.indigo-form-panel .text-danger.small,
.indigo-form-panel .invalid-feedback {
  font-size: 0.78rem;
  margin-top: 0.35rem !important;
}

.privacy-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--indigo-border);
}

.privacy-section:first-of-type {
  margin-top: 2.5rem;
  padding-top: 0;
  border-top: none;
}

.privacy-section h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--indigo-navy);
  margin-bottom: 0;
}

.privacy-section p {
  color: var(--indigo-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.privacy-section__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.privacy-section__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--indigo-surface);
  border: 1px solid var(--indigo-border);
  color: var(--indigo-navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.privacy-section__badge--accent {
  background: var(--indigo-navy);
  border-color: var(--indigo-navy);
  color: #fff;
}

.privacy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--indigo-surface);
  border: 1px solid var(--indigo-border);
  color: var(--indigo-navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.privacy-chip i {
  color: var(--indigo-accent);
  font-size: 0.8rem;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--indigo-muted);
  line-height: 1.7;
}

.privacy-list li + li {
  margin-top: 0.5rem;
}

.privacy-list li i {
  color: var(--indigo-accent);
  margin-top: 0.4rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.privacy-highlight-box {
  background: var(--indigo-surface);
  border: 1px solid var(--indigo-border);
  border-left: 4px solid var(--indigo-accent);
  border-radius: var(--indigo-radius);
  padding: 1.75rem 2rem;
  border-top-width: 1px;
}

.privacy-highlight-box p {
  color: var(--indigo-navy);
}

.privacy-toc {
  background: #fff;
  border: 1px solid var(--indigo-border);
  border-radius: var(--indigo-radius);
  box-shadow: var(--indigo-shadow);
  padding: 1.75rem;
  position: sticky;
  top: 1.5rem;
}

.privacy-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.privacy-toc__nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--indigo-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.privacy-toc__nav a:hover {
  background: var(--indigo-surface);
  color: var(--indigo-navy);
}

.privacy-toc__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--indigo-surface);
  border: 1px solid var(--indigo-border);
  color: var(--indigo-navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.privacy-toc__nav a:hover .privacy-toc__num {
  background: var(--indigo-accent);
  border-color: var(--indigo-accent);
  color: #fff;
}

.privacy-toc__updated {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--indigo-border);
  color: var(--indigo-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .privacy-toc {
    position: static;
  }
}

.indigo-home-cta .cta-two-wrapper {
  position: relative;
  z-index: 1;
}

.image-inner-area-wrapper-three {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  height: 560px;
}

.image-inner-area-wrapper-three .inetial,
.image-inner-area-wrapper-three .not-fix {
  position: static;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  object-fit: cover;
  border-radius: 20px;
  animation: none;
}

.image-inner-area-wrapper-three .inetial {
  grid-column: 1;
  grid-row: 1 / 3;
}

.image-inner-area-wrapper-three .not-fix.one {
  grid-column: 2;
  grid-row: 1;
  position: static;
  margin: 0;
  left: auto;
}

.image-inner-area-wrapper-three .not-fix.one.two {
  grid-column: 2;
  grid-row: 2;
  position: static;
  margin: 0;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  animation: none;
}

@media (max-width: 575px) {
  .image-inner-area-wrapper-three {
    grid-template-columns: 1fr 1fr;
    height: 420px;
  }
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 0;
}

.footer-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(58, 55, 235, 0.18) 0%, rgba(58, 55, 235, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.footer-cta .container {
  position: relative;
  z-index: 1;
}

.footer-cta .title-area .title {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  opacity: 0.85;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-cta__kicker::before,
.footer-cta__kicker::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--indigo-accent);
  display: inline-block;
}

.footer-cta__btn {
  background: #fff !important;
  border: none !important;
  color: var(--indigo-navy) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta__btn::before {
  background: #fff !important;
}

.footer-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  color: var(--indigo-navy) !important;
}

.footer-cta__btn i {
  transition: transform 0.25s ease;
}

.footer-cta__btn:hover i {
  transform: translateX(4px);
}

.indigo-page .indigo-section-head.text-start {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .indigo-home-hero {
    min-height: 460px;
  }

  .indigo-home-stats {
    margin-top: -2rem;
  }

  .indigo-stat-card {
    padding: 1rem;
  }

  .indigo-home-hero__actions .rts-btn {
    width: 100%;
    max-width: 280px;
  }
}
