/* ==========================================================================
   Floatr — styles-core.css
   Generated by scripts/build_styles.py — do not edit by hand.
   Page bundle. Load after global.css.
   ========================================================================== */
@media (min-width: 768px) {.edvisor-deliver-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1100px) {.edvisor-deliver-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 768px) {.corp-program-cards--goals {
  grid-template-columns: repeat(3, 1fr);
}
}

.corp-program-card--loan::before {
  background: #ea580c;
}

.corp-program-card--lease::before {
  background: #7c3aed;
}

.corp-program-card--wealth::before {
  background: #2563eb;
}

.corp-program-card--retire::before {
  background: #0891b2;
}

.corp-program-card--gold::before {
  background: #ca8a04;
}

.corp-program-card--loan .corp-program-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.corp-program-card--lease .corp-program-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.corp-program-card--wealth .corp-program-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.corp-program-card--retire .corp-program-card__icon {
  background: #cffafe;
  color: #0891b2;
}

.corp-program-card--gold .corp-program-card__icon {
  background: #fef9c3;
  color: #ca8a04;
}

.calc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.calc-hero-stat {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.calc-hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-hover);
  border-color: #dbeafe;
}

.calc-hero-stat strong {
  display: block;
  font-size: var(--text-xl);
  color: var(--primary);
  line-height: 1.2;
}

.calc-hero-stat span {
  font-size: var(--text-sm);
  color: #6b7280;
  font-weight: 500;
}

.calc-hero-visual-wrap {
  position: relative;
}

.calc-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #111827;
  z-index: 3;
  animation: calc-float 4s ease-in-out infinite;
}

.calc-float-chip svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.calc-float-chip--1 {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}

.calc-float-chip--2 {
  bottom: 18%;
  left: -6%;
  animation-delay: 1.2s;
}

@keyframes calc-float {
}

.calc-preview {
  background: #fff;
  border: 2px solid #e0ecff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #111827;
  box-shadow: var(--gr-shadow);
  position: relative;
  overflow: hidden;
}

.calc-preview::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 244, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.calc-preview__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.calc-preview__head-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-preview__head-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.calc-preview__head h3 {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 600;
  color: #111827;
}

.calc-preview__head p {
  margin: 0;
  font-size: var(--text-xs);
  color: #6b7280;
}

.calc-preview__fields {
  display: grid;
  gap: 0.85rem;
  position: relative;
}

.calc-preview__field label {
  display: block;
  font-size: var(--text-xs);
  color: #6b7280;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.calc-preview__field input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-preview__field-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #111827;
}

.calc-preview__result {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 2px solid #dbeafe;
  border-radius: 0.85rem;
  text-align: center;
  position: relative;
}

.calc-preview__result-label {
  font-size: var(--text-xs);
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.calc-preview__result-value {
  font-size: var(--heading-title);
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.calc-preview__result-value.is-updating {
  transform: scale(1.05);
}

.calc-preview__disclaimer {
  font-size: var(--text-xs);
  color: #9ca3af;
  margin-top: 0.75rem;
  text-align: center;
}

.calc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.calc-filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
}

.calc-filter-btn:hover {
  border-color: #93c5fd;
  color: var(--primary);
  transform: translateY(-2px);
}

.calc-filter-btn.is-active {
  background: #fff;
  border-color: var(--primary);
  color: #111827;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.12);
}

.calc-need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {.calc-need-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 900px) {.calc-need-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

.calc-need-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition);
}

.calc-need-card:hover {
  transform: translateY(-4px) translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--gr-shadow-hover);
}

.calc-need-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--gr-accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-need-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.calc-need-card__text strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
  margin-bottom: 0.15rem;
}

.calc-need-card__text span {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
}

.calc-mistake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {.calc-mistake-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 900px) {.calc-mistake-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

.calc-mistake-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.calc-mistake-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-hover);
}

.calc-mistake-item__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-mistake-item__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.calc-mistake-item p {
  margin: 0;
  font-size: var(--text-body);
  color: #374151;
  line-height: 1.45;
  font-weight: 500;
}

.calc-time-bars {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.calc-time-bar {
  display: grid;
  gap: 0.5rem;
}

.calc-time-bar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-body);
}

.calc-time-bar__head strong {
  color: #111827;
}

.calc-time-bar__head span {
  color: var(--primary);
  font-weight: 700;
}

.calc-time-bar__track {
  height: 0.65rem;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.calc-time-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #93c5fd);
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.calc-time-bar.animated .calc-time-bar__fill {
  width: var(--bar-width);
}

.calc-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {.calc-features {
  grid-template-columns: repeat(5, 1fr);
}
}

.calc-feature {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.calc-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--gr-shadow-hover);
}

.calc-feature__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.65rem;
  border-radius: 0.75rem;
  background: var(--gr-accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-feature__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.calc-feature h3 {
  margin: 0 0 0.25rem;
  font-size: var(--text-sm);
  color: #111827;
}

.calc-feature p {
  margin: 0;
  font-size: var(--text-xs);
  color: #6b7280;
  line-height: 1.4;
}

.calc-questions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.calc-question-pill {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: var(--text-sm);
  color: #4b5563;
  font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.calc-question-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.03);
}

@media (max-width: 767px) {.calc-float-chip {
  display: none;
}

.calc-hero-stats {
  flex-direction: column;
}

.calc-preview {
  margin-top: 0.5rem;
}
}

@media (prefers-reduced-motion: reduce) {.calc-float-chip,
  .calc-preview__result-value,
  .calc-time-bar__fill,
  .calc-filter-btn {
  animation: none;
  transition: none;
}

.calc-card.animate-on-scroll {
  opacity: 1;
  transform: none;
}
}

@keyframes calc-finder-bounce {50% {
  transform: translateY(-3px);
}
}

.corp-models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.corp-model-card {
  background: #fff;
  border-radius: var(--gr-radius);
  overflow: hidden;
  border: 2px solid #f3f4f6;
  box-shadow: var(--gr-shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.corp-model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gr-shadow-hover);
}

.corp-model-card__visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.corp-model-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.corp-model-card:hover .corp-model-card__visual img {
  transform: scale(1.05);
}

.corp-model-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.95);
}

.corp-model-card--elevate .corp-model-card__tag {
  color: #2563eb;
}

.corp-model-card--gig .corp-model-card__tag {
  color: #059669;
}

.corp-model-card--edvisor .corp-model-card__tag {
  color: #7c3aed;
}

.corp-model-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.corp-model-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: var(--text-xl);
  color: #111827;
}

.corp-model-card__desc {
  margin: 0 0 1rem;
  font-size: var(--text-body);
  color: #6b7280;
  line-height: 1.6;
}

.corp-model-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin: 0 0 0.5rem;
}

.corp-model-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.corp-model-card__list li {
  font-size: var(--text-body);
  color: #4b5563;
  padding: 0.25rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.corp-model-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gr-accent);
}

.corp-model-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--gr-accent);
  text-decoration: none;
  margin-top: auto;
}

.corp-model-card__cta:hover {
  gap: 0.55rem;
}

.corp-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.corp-decision-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: var(--gr-radius);
  text-decoration: none;
  color: inherit;
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition);
}

.corp-decision-card:hover {
  transform: translateX(6px);
  border-color: var(--gr-accent);
  box-shadow: var(--gr-shadow);
}

.corp-decision-card strong {
  display: block;
  color: #111827;
  font-size: var(--text-body);
  margin-bottom: 0.2rem;
}

.corp-decision-card span {
  font-size: var(--text-sm);
  color: #6b7280;
}

.corp-decision-card i {
  color: var(--gr-accent);
  flex-shrink: 0;
}

@media (min-width: 900px) {.corp-models-grid {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 640px) {.corp-decision-grid {
  gap: 1.25rem;
}
}

.corp-block {
  padding: clamp(2.75rem, 4vw, 3.5rem) var(--page-gutter-x);
}

.corp-block--white {
  background: #fff;
}

.corp-block--muted {
  background: #f9fafb;
}

.corp-block__head {
  margin-bottom: 1.75rem;
  text-align: left;
}

.corp-block__head--stacked .solution-badge {
  margin-bottom: 0.65rem;
}

.corp-block__head--stacked .corp-block__title {
  margin-bottom: 0.5rem;
}

.corp-block__title {
  margin: 0;
  font-size: var(--heading-title);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.corp-block__lead {
  margin: 0;
  max-width: 52rem;
  font-size: var(--text-body);
  line-height: 1.5;
  color: #6b7280;
}

.corp-personal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {.corp-personal-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 768px) {.corp-personal-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
}

.corp-personal-card {
  padding: 1rem 1rem 1.1rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.corp-block--white .corp-personal-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.corp-personal-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow-hover);
}

.corp-personal-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  border-radius: 0.65rem;
  background: var(--gr-accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-personal-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.corp-personal-card h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.corp-personal-card p {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: #6b7280;
}

.corp-program-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1.25rem;
  box-shadow: var(--gr-shadow);
}

.corp-program-panel__head {
  margin-bottom: 1.25rem;
}

.corp-program-panel__head .solution-badge {
  margin-bottom: 0.65rem;
}

.corp-program-panel__lead {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  font-size: var(--text-body);
  line-height: 1.55;
  color: #6b7280;
}

.corp-program-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {.corp-program-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
}

.corp-program-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.corp-program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.corp-program-card--elevate::before {
  background: #2563eb;
}

.corp-program-card--gig::before {
  background: #059669;
}

.corp-program-card--edvisor::before {
  background: #7c3aed;
}

.corp-program-card:hover {
  transform: translateY(-5px);
  border-color: #dbeafe;
  box-shadow: var(--gr-shadow-hover);
  background: #fff;
}

.corp-program-card:hover::before {
  opacity: 1;
}

.corp-program-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.corp-program-card--elevate .corp-program-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.corp-program-card--gig .corp-program-card__icon {
  background: #d1fae5;
  color: #059669;
}

.corp-program-card--edvisor .corp-program-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.corp-program-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.corp-program-card__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.corp-program-card h3 {
  margin: 0;
  font-size: var(--text-body);
  color: #111827;
}

.corp-program-card p {
  margin: 0;
  flex: 1;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: #6b7280;
}

.corp-program-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

.corp-program-card__cta svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.25s ease;
}

.corp-program-card:hover .corp-program-card__cta svg {
  transform: translateX(3px);
}

.corp-india-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {.corp-india-layout {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.75rem;
}
}

.corp-india-visual__frame {
  position: relative;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-hover);
  border: 2px solid #e5e7eb;
  aspect-ratio: 4 / 3;
  min-height: 16rem;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 45%, #1e3a5f 100%);
}

@media (min-width: 900px) {.corp-india-visual__frame {
  aspect-ratio: auto;
  height: 100%;
  min-height: 20rem;
}
}

.corp-india-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.corp-india-visual:hover .corp-india-visual__frame img {
  transform: scale(1.04);
}

.corp-india-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.12) 0%,
    rgba(15, 23, 42, 0.08) 40%,
    rgba(15, 23, 42, 0.65) 100%
  );
  pointer-events: none;
}

.corp-india-visual__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #fff;
  background: rgba(37, 99, 235, 0.9);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.corp-india-visual__badge svg {
  width: 0.85rem;
  height: 0.85rem;
}

.corp-india-visual__stats {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.corp-india-stat {
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 0.65rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.corp-india-stat strong {
  display: block;
  font-size: var(--text-body);
  color: var(--primary);
  line-height: 1.2;
}

.corp-india-stat span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.corp-india-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-content: start;
}

@media (min-width: 1100px) {.corp-india-grid {
  gap: 0.75rem;
}
}

.corp-india-card {
  padding: 0.9rem 0.95rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.corp-india-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow-hover);
}

.corp-india-card__icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
}

.corp-india-card__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.corp-india-card--tech .corp-india-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.corp-india-card--mfg .corp-india-card__icon {
  background: #e5e7eb;
  color: #4b5563;
}

.corp-india-card--retail .corp-india-card__icon {
  background: var(--purple-bg);
  color: var(--purple);
}

.corp-india-card--logistics .corp-india-card__icon {
  background: #d1fae5;
  color: #059669;
}

.corp-india-card--health .corp-india-card__icon {
  background: var(--purple-bg);
  color: var(--purple);
}

.corp-india-card--edu .corp-india-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.corp-india-card--startup .corp-india-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.corp-india-card--services .corp-india-card__icon {
  background: #fef9c3;
  color: #ca8a04;
}

.corp-india-card h3 {
  margin: 0 0 0.2rem;
  font-size: var(--text-body);
  color: #111827;
}

.corp-india-card p {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: #6b7280;
}

@media (max-width: 899px) {.corp-india-visual {
  order: -1;
}

.corp-india-visual__frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
}
}

.edvisor-deliver-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {.edvisor-deliver-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

.edv-ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.edv-ecosystem-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.edv-ecosystem-pill:hover {
  transform: translateY(-3px);
  border-color: #7c3aed;
  box-shadow: var(--gr-shadow);
  color: #7c3aed;
}

.edv-ecosystem-pill svg {
  width: 1rem;
  height: 1rem;
}

.edv-ecosystem-pill--static {
  cursor: default;
}

.edv-ecosystem-pill--static:hover {
  transform: none;
  border-color: #e5e7eb;
  color: #374151;
  box-shadow: none;
}

.corp-elev-philo-content {
  min-width: 0;
}

.corp-elev-philo-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {.corp-elev-philo-layout {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
}
}

.corp-elev-philo-content__intro,
.corp-elev-philo-content__outro {
  margin: 0 0 1rem;
  font-size: var(--text-body);
  line-height: 1.6;
  color: #4b5563;
}

.corp-elev-philo-content__outro {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #374151;
}

.corp-elev-philo-quote {
  margin: 0;
}

.corp-elev-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 520px) {.corp-elev-goals-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (min-width: 900px) {.corp-elev-goals-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (min-width: 1100px) {.corp-elev-goals-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

.corp-elev-goal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 0.9rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #374151;
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition);
}

.corp-elev-goal-card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
  box-shadow: var(--gr-shadow);
}

.corp-elev-goal-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-elev-goal-card__icon svg {
  width: 1rem;
  height: 1rem;
}

.corp-elev-goal-card--wealth .corp-elev-goal-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.corp-elev-goal-card--family .corp-elev-goal-card__icon {
  background: var(--purple-bg);
  color: var(--purple);
}

.corp-elev-goal-card--tax .corp-elev-goal-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.corp-elev-goal-card--retire .corp-elev-goal-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.corp-elev-goal-card--stable .corp-elev-goal-card__icon {
  background: #d1fae5;
  color: #059669;
}

.corp-elev-goal-card--stable {
  grid-column: 1 / -1;
}

@media (min-width: 520px) {.corp-elev-goal-card--stable {
  grid-column: auto;
}
}

.corp-elev-philo-visual__frame {
  position: relative;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-hover);
  border: 2px solid #e5e7eb;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 45%, #1e3a5f 100%);
}

.corp-elev-philo-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.corp-elev-philo-visual:hover .corp-elev-philo-visual__frame img {
  transform: scale(1.04);
}

.corp-elev-philo-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.08) 0%,
    rgba(15, 23, 42, 0.48) 100%
  );
  pointer-events: none;
}

.corp-elev-philo-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 0.7rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.corp-elev-philo-chip__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-elev-philo-chip__icon svg {
  width: 1rem;
  height: 1rem;
}

.corp-elev-philo-chip strong {
  display: block;
  font-size: var(--text-xs);
  color: #111827;
}

.corp-elev-philo-chip span {
  display: block;
  font-size: var(--text-xs);
  color: #6b7280;
}

.corp-elev-philo-chip--today {
  top: 0.75rem;
  left: 0.75rem;
  max-width: 11rem;
}

.corp-elev-philo-chip--today .corp-elev-philo-chip__icon {
  background: #f3f4f6;
  color: #4b5563;
}

.corp-elev-philo-chip--tomorrow {
  bottom: 0.75rem;
  right: 0.75rem;
  max-width: 11rem;
}

.corp-elev-philo-chip--tomorrow .corp-elev-philo-chip__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.corp-elev-philo-chip--loyalty {
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.45rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #111827;
  border-radius: 999px;
}

.corp-elev-philo-chip--loyalty svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #7c3aed;
}

.corp-elev-philo-flow {
  position: absolute;
  left: 50%;
  top: 26%;
  bottom: 30%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.corp-elev-philo-flow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #9ca3af;
  flex-shrink: 0;
}

.corp-elev-philo-flow__dot--end {
  border-color: #7c3aed;
  background: #ede9fe;
}

.corp-elev-philo-flow__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, #9ca3af 0%, #7c3aed 55%, #2563eb 100%);
  margin: 0.2rem 0;
}

@media (max-width: 899px) {.corp-elev-philo-visual {
  order: -1;
}
}

@media (max-width: 767px) {.corp-elev-philo-chip--tomorrow {
  bottom: 3.25rem;
  right: 0.65rem;
}
}

@media (min-width: 640px) {.gr-icon-card-grid:has(> :nth-child(3):last-child),
  .gr-icon-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 768px) {.gr-icon-card-grid:has(> :nth-child(4):last-child),
  .gr-icon-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
}

@media (min-width: 768px) {.gr-icon-card-grid:has(> :nth-child(6):last-child),
  .gr-icon-card-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 900px) {.gr-icon-card-grid:has(> :nth-child(5):last-child),
  .gr-icon-card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
}

@media (min-width: 640px) {.gr-impact-row:has(> :nth-child(3):last-child),
  .gr-feel-grid:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 640px) {.gr-compare-grid:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 900px) {.gr-compare-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}
}

.home-hero-ctas {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.home-hero-ctas a {
  text-decoration: none;
}

.home-hero-pills {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.home-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #4b5563;
}

.home-hero-pills svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.home-hero-stats {
  margin-top: 0.5rem;
}

.home-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {.home-impact-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1140px) {.home-impact-grid {
  grid-template-columns: repeat(4, 1fr);
}
}

.home-impact-card {
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.home-impact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.home-impact-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-impact-card__icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.home-impact-card__icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.home-impact-card__icon--yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.home-impact-card__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.home-impact-card h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.home-impact-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.home-model-compare {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

@media (min-width: 520px) {.home-model-compare {
  grid-template-columns: 1fr 1fr;
}
}

.home-model-card {
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 2px solid #e5e7eb;
}

.home-model-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.home-model-card p {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 600;
  color: #111827;
}

.home-model-card--old {
  background: #fef2f2;
  border-color: #fecaca;
}

.home-model-card--old .home-model-card__tag {
  color: #b91c1c;
}

.home-model-card--old em {
  color: #9ca3af;
  font-style: normal;
  font-weight: 500;
}

.home-model-card--new {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #6ee7b7;
}

.home-model-card--new .home-model-card__tag {
  color: #047857;
}

.home-model-card--new strong {
  color: #059669;
}

.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-steps li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}

.home-steps__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-steps li strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
}

.home-steps li > div span {
  display: block;
  font-size: var(--text-sm);
  color: #6b7280;
  margin-top: 0.15rem;
}

.home-platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {.home-platform-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

.home-platform-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.home-platform-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.home-platform-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-platform-card:hover .home-platform-card__media img {
  transform: scale(1.04);
}

.home-platform-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
}

.home-platform-card__badge--green {
  color: #059669;
}

.home-platform-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-platform-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: var(--text-xl);
  font-weight: 700;
  color: #111827;
}

.home-platform-card__body > p {
  margin: 0 0 1rem;
  font-size: var(--text-body);
  line-height: 1.5;
  color: #6b7280;
}

.home-platform-card__body ul {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.home-platform-card__body li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: #4b5563;
}

.home-platform-card__body li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.home-platform-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: var(--text-body);
  color: var(--primary);
  text-decoration: none;
}

.home-platform-card__link--alt {
  color: #059669;
}

.home-platform-card__link:hover {
  gap: 0.55rem;
}

.home-edvisor-banner {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
}

@media (min-width: 768px) {.home-edvisor-banner {
  grid-template-columns: auto 1fr auto;
}
}

.home-edvisor-banner__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: #fff;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-edvisor-banner__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-edvisor-banner h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.home-edvisor-banner p {
  margin: 0;
  font-size: var(--text-sm);
  color: #6b7280;
  line-height: 1.45;
}

.home-edvisor-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  background: #7c3aed;
  color: #fff;
  font-weight: 500;
  font-size: var(--text-body);
  line-height: 1.25;
  border-radius: 2.5rem;
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.home-edvisor-banner__btn:hover {
  background: #6d28d9;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.home-product-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {.home-product-rail {
  grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 900px) {.home-product-rail {
  grid-template-columns: repeat(6, 1fr);
}
}

.home-product-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.15rem 0.75rem;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  color: #111827;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-product-tile svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.home-product-tile span {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.25;
}

.home-product-tile:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
}

.home-product-tile--all {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
}

.home-planning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {.home-planning-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1140px) {.home-planning-grid {
  grid-template-columns: repeat(4, 1fr);
}
}

.home-planning-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.15rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-planning-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.home-planning-card h3 {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.home-planning-card p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.home-planning-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.1);
}

.home-metrics-band {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #0c121a 0%, #1e3a5f 100%);
  color: #fff;
}

.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {.home-metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}
}

.home-metrics-grid strong {
  display: block;
  font-size: var(--heading-title);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.home-metrics-grid span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}

.home-careers {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 1.15rem;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.home-careers__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 18, 26, 0.92) 0%, rgba(59, 130, 246, 0.85) 100%),
    url("https://images.unsplash.com/photo-1577962917302-cd874c4e31d2?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  transition: transform 8s ease;
}

.home-careers:hover .home-careers__bg {
  transform: scale(1.03);
}

.home-careers__inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
}

.home-careers__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-careers__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.home-careers h2 {
  margin: 0 0 0.5rem;
  font-size: var(--heading-title);
  font-weight: 700;
  line-height: 1.25;
}

.home-careers p {
  margin: 0 0 1.25rem;
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.88);
}

.home-careers__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 2rem;
  background: #fff;
  color: #111827;
  font-weight: 500;
  font-size: var(--text-body);
  line-height: 1.25;
  border-radius: 2.5rem;
  box-sizing: border-box;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-careers__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-careers__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {.home-edvisor-banner__btn {
  justify-self: start;
}
}

.home-cert-band {
  padding: 1.75rem 0 2rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.home-cert-band__eyebrow {
  margin: 0 0 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  text-align: left;
}

.home-cert-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.home-metrics-band.home-cert-band--dark {
  padding: 1.75rem 0 2rem;
}

.home-metrics-band.home-cert-band--dark .home-cert-band__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) and (max-width: 1139px) {
  .home-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
  }

.home-cert-grid > li {
    display: flex;
    min-width: 0;
  }

.home-cert-grid .home-cert-card--link {
    flex: 1;
    width: 100%;
  }

.home-cert-card {
    height: 100%;
  }
}

@media (min-width: 1140px) {
  .home-cert-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.home-cert-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-cert-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.home-cert-card--link {
  text-decoration: none;
  color: inherit;
}

.home-cert-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-cert-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.home-cert-card__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.home-cert-card__icon--indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.home-cert-card__icon--teal {
  background: #ccfbf1;
  color: #0d9488;
}

.home-cert-card__icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.home-cert-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.home-cert-card__text strong {
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.home-cert-card__text span {
  font-size: var(--text-xs);
  line-height: 1.4;
  color: #6b7280;
}

.home-products-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1140px) {.home-products-layout {
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
}

.home-products-group__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.home-products-group__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-products-group__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.home-products-group__icon--wealth {
  background: #dbeafe;
  color: #2563eb;
}

.home-products-group__icon--shield {
  background: #dcfce7;
  color: #16a34a;
}

.home-products-group__head h3 {
  margin: 0 0 0.2rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.home-products-group__head p {
  margin: 0;
  font-size: var(--text-sm);
  color: #6b7280;
  line-height: 1.4;
}

.home-products-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 560px) {.home-products-bento {
  grid-template-columns: repeat(2, 1fr);
}

.home-prod-card--wide {
  grid-column: 1 / -1;
}
}

.home-prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem 1rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-prod-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.12);
}

.home-prod-card--wide {
  padding: 1.35rem 1.35rem 1.15rem;
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  border-color: #bfdbfe;
}

.home-prod-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.home-prod-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.home-prod-card__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.home-prod-card__icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.home-prod-card__icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.home-prod-card__icon--indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.home-prod-card__icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.home-prod-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
}

.home-prod-card h4 {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.home-prod-card p {
  margin: 0;
  flex: 1;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.home-prod-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.home-prod-card__go svg {
  width: 0.9rem;
  height: 0.9rem;
}

.home-prod-card:hover .home-prod-card__go {
  gap: 0.5rem;
}

.home-prod-card--shield {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.1rem;
  background: linear-gradient(160deg, #ffffff 0%, #ecfdf5 100%);
  border-color: #86efac;
  min-height: 100%;
}

.home-prod-card--shield:hover {
  border-color: #4ade80;
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.12);
}

.home-prod-card--shield__main {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.home-prod-card--shield__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.home-prod-card--shield__chips li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #374151;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
}

.home-prod-card--shield__chips li svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #16a34a;
  flex-shrink: 0;
}

.home-products-footer {
  margin-top: 1.75rem;
  text-align: center;
}

.home-products-footer__link {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  font-size: var(--text-body);
  color: #111827;
  text-decoration: none;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-products-footer__link svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
}

.home-products-footer__link:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.14);
}

@media (max-width: 1023px) {.home-prod-card--shield {
  min-height: 0;
}
}

.home-products-lanes {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

@media (min-width: 900px) {.home-products-lanes {
  display: flex;
}
}

.home-products-lane {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.home-products-lane svg {
  width: 0.85rem;
  height: 0.85rem;
}

.home-products-lane--wealth {
  background: #dbeafe;
  color: #1d4ed8;
}

.home-products-lane--protect {
  background: #dcfce7;
  color: #15803d;
}

.home-products-lanes__bridge {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #93c5fd 0%, #86efac 100%);
  opacity: 0.65;
}

.home-products-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {.home-products-mosaic {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 900px) {.home-products-mosaic {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.05fr);
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 22rem;
}

.home-p-tile--hero {
  grid-column: 1;
  grid-row: 1 / 3;
}

.home-p-tile--compact:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.home-p-tile--compact:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1;
}

.home-p-tile--compact:nth-of-type(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.home-p-tile--protect {
  grid-column: 4;
  grid-row: 1 / 3;
}
}

.home-p-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.2rem 1.25rem 1.1rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1.1rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-p-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.home-p-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.home-p-tile__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  transition: transform 0.25s ease, background 0.25s ease;
}

.home-p-tile__arrow svg {
  width: 1rem;
  height: 1rem;
}

.home-p-tile:hover .home-p-tile__arrow {
  transform: translate(2px, -2px);
}

.home-p-tile__badge {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-p-tile__badge--green {
  background: rgba(255, 255, 255, 0.9);
  color: #15803d;
  border-color: #bbf7d0;
}

.home-p-tile__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-p-tile__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.home-p-tile__icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.home-p-tile__icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.home-p-tile__icon--indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.home-p-tile__icon--green {
  background: rgba(255, 255, 255, 0.95);
  color: #16a34a;
}

.home-p-tile h3 {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.2;
}

.home-p-tile__desc {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  flex: 1;
}

.home-p-tile__hook {
  margin: 0.35rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.95);
}

.home-p-tile--hero {
  padding: 1.5rem 1.4rem 1.35rem;
  padding-right: 3.25rem;
  background: linear-gradient(165deg, var(--color-primary-50) 0%, var(--color-primary-50) 55%, var(--white) 100%);
  border-color: var(--color-primary-100);
  color: var(--neutral-900);
}

.home-p-tile--hero::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.home-p-tile--hero:hover {
  border-color: var(--color-primary);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.18);
}

.home-p-tile--hero h3 {
  color: var(--neutral-900);
}

.home-p-tile--hero .home-p-tile__badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-hover);
  border-color: var(--color-primary-100);
}

.home-p-tile--hero .home-p-tile__icon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
}

.home-p-tile--hero .home-p-tile__desc {
  color: var(--neutral-600);
  max-width: 18rem;
}

.home-p-tile--hero .home-p-tile__hook {
  background: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--color-primary-200);
  color: var(--neutral-700);
}

.home-p-tile--hero .home-p-tile__arrow {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary);
}

.home-p-tile--hero:hover .home-p-tile__arrow {
  background: var(--color-primary);
  color: var(--white);
}

.home-p-tile--compact {
  padding-right: 3.25rem;
}

.home-p-tile--compact h3 {
  color: #111827;
}

.home-p-tile--compact .home-p-tile__desc {
  color: #6b7280;
}

.home-p-tile--compact .home-p-tile__arrow {
  background: #f3f4f6;
  color: #6b7280;
}

.home-p-tile--compact:hover {
  border-color: #bfdbfe;
}

.home-p-tile--compact:hover .home-p-tile__arrow {
  background: var(--primary);
  color: #fff;
}

.home-p-tile--compact:nth-of-type(4) {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

@media (min-width: 900px) {.home-p-tile--compact:nth-of-type(4) {
  flex-direction: column;
  align-items: flex-start;
}
}

.home-p-tile--compact:nth-of-type(4) h3,
.home-p-tile--compact:nth-of-type(4) .home-p-tile__desc {
  flex: 1;
  min-width: 8rem;
}

.home-p-tile--protect {
  padding: 1.35rem 1.3rem 1.2rem;
  padding-right: 3.25rem;
  background: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 55%, #fff 100%);
  border-color: #6ee7b7;
  color: #111827;
}

.home-p-tile--protect::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-p-tile--protect:hover {
  border-color: #34d399;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.18);
}

.home-p-tile--protect h3 {
  color: #111827;
}

.home-p-tile--protect .home-p-tile__desc {
  color: #4b5563;
}

.home-p-tile--protect .home-p-tile__arrow {
  background: rgba(255, 255, 255, 0.85);
  color: #16a34a;
}

.home-p-tile--protect:hover .home-p-tile__arrow {
  background: #16a34a;
  color: #fff;
}

.home-p-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.home-p-tile__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #a7f3d0;
  color: #374151;
}

.home-p-tile__tags span svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #16a34a;
}

.home-p-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #15803d;
}

.home-p-tile__cta svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}

.home-p-tile--protect:hover .home-p-tile__cta svg {
  transform: translateX(3px);
}

.home-products-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

@media (min-width: 640px) {.home-products-bar {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem 0.85rem 1.25rem;
}
}

.home-products-bar__note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #6b7280;
}

.home-products-bar__note svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.home-products-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 2rem;
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  text-decoration: none;
  background: var(--color-primary);
  border-radius: 2.5rem;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s;
}

.home-products-bar__cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-products-bar__cta:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 15px 35px var(--color-primary-shadow-md);
  transform: scale(1.05);
}

.gr-split-content .gr-hook,
.gr-split-content blockquote.gr-hook {
  width: 100%;
}

.prod-disclaimer {
  font-size: var(--text-sm);
  color: #6b7280;
  font-style: italic;
  margin-top: 1rem;
  text-align: center;
}

.prod-disclaimer--left {
  text-align: left;
}

.prod-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--gr-radius);
  border: 2px solid #f3f4f6;
  box-shadow: var(--gr-shadow);
}

.prod-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 520px;
}

.prod-table th,
.prod-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.prod-table th {
  background: #e0ecff;
  color: var(--primary-dark);
  font-weight: 600;
}

.prod-table tr:last-child td {
  border-bottom: none;
}

.prod-table tbody tr:hover td {
  background: #f9fafb;
}

.prod-goal-picker {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.prod-goal-picker__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: var(--gr-radius);
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition);
}

.prod-goal-picker__label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 200px;
}

.prod-goal-picker__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-goal-picker__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-goal-picker__row:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--gr-shadow-hover);
}

.prod-goal-picker__row strong {
  color: #111827;
}

.prod-goal-picker__row a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.prod-goal-picker__row a svg {
  width: 0.9rem;
  height: 0.9rem;
}

.prod-goal-picker__row a:hover {
  color: var(--primary-dark);
}

.prod-faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.prod-faq-block {
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  background: #fff;
  border-radius: var(--gr-radius);
  border: 2px solid #f3f4f6;
  border-left: 4px solid var(--gr-accent);
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.prod-faq-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-faq-block__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.prod-faq-block__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-faq-block__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-faq-block h3 {
  margin: 0 0 0.5rem;
  font-size: var(--text-body);
  color: #111827;
  line-height: 1.4;
}

.prod-faq-block p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: var(--text-body);
}

.prod-ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.prod-ecosystem-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition), color 0.3s ease;
}

.prod-ecosystem-pill:hover {
  transform: translateY(-4px);
  border-color: var(--gr-accent);
  box-shadow: var(--gr-shadow);
  color: var(--primary-dark);
}

.prod-ecosystem-pill svg {
  width: 1rem;
  height: 1rem;
  color: var(--gr-accent);
}

.prod-feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {.prod-feature-strip {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1140px) {.prod-feature-strip--3 {
  grid-template-columns: repeat(3, 1fr);
}
}

.prod-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: var(--gr-radius);
  box-shadow: var(--gr-shadow);
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.prod-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-feature-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-feature-item__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.prod-feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-body);
  color: #111827;
}

.prod-feature-item p {
  margin: 0;
  font-size: var(--text-body);
  color: #6b7280;
  line-height: 1.6;
}

.prod-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.prod-tag svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.prod-access-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 640px) {.prod-access-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
}

.prod-access-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease, background 0.3s ease;
}

.section.bg-white .prod-access-card {
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.prod-access-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow-hover);
  background: #fff;
}

.prod-access-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-access-card--loan .prod-access-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.prod-access-card--lease .prod-access-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.prod-access-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.prod-access-card__body h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: var(--text-body);
  color: #111827;
}

.prod-access-card__body p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: #6b7280;
}

.prod-access-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

.prod-access-card__link svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.25s ease;
}

.prod-access-card:hover .prod-access-card__link svg {
  transform: translateX(3px);
}

.prod-users-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {.prod-users-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (min-width: 900px) {.prod-users-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
}

.prod-user-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.prod-user-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow-hover);
}

.prod-user-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.prod-user-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-user-card--company .prod-user-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.prod-user-card--employee .prod-user-card__icon {
  background: #d1fae5;
  color: #059669;
}

.prod-user-card--individual .prod-user-card__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.prod-user-card--frontline .prod-user-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.prod-user-card h3 {
  margin: 0;
  font-size: var(--text-body);
  color: #111827;
}

.prod-user-card p {
  margin: 0;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: #6b7280;
}

.prod-goal-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 100%;
}

.prod-goal-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.875rem;
  border: 2px solid #f3f4f6;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition), background 0.3s ease;
}

.section.bg-white .prod-goal-row {
  background: #fff;
  border-color: #e5e7eb;
}

.prod-goal-row:hover {
  transform: translateX(6px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow);
  background: #fff;
}

.prod-goal-row__num {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #d1d5db;
  font-variant-numeric: tabular-nums;
  min-width: 1.5rem;
}

.prod-goal-row:hover .prod-goal-row__num {
  color: var(--primary);
}

.prod-goal-row__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-goal-row__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.prod-goal-row--wealth .prod-goal-row__icon {
  background: #dbeafe;
  color: #2563eb;
}

.prod-goal-row--retire .prod-goal-row__icon {
  background: #cffafe;
  color: #0891b2;
}

.prod-goal-row--gold .prod-goal-row__icon {
  background: #fef9c3;
  color: #ca8a04;
}

.prod-goal-row--loan .prod-goal-row__icon {
  background: #ffedd5;
  color: #ea580c;
}

.prod-goal-row--lease .prod-goal-row__icon {
  background: #ede9fe;
  color: #7c3aed;
}

.prod-goal-row__copy strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
  margin-bottom: 0.1rem;
}

.prod-goal-row__copy span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

.prod-goal-row__arrow {
  width: 1.1rem;
  height: 1.1rem;
  color: #9ca3af;
  transition: transform 0.25s ease, color 0.25s ease;
}

.prod-goal-row:hover .prod-goal-row__arrow {
  color: var(--primary);
  transform: translateX(3px);
}

@media (max-width: 479px) {.prod-goal-row__num {
  display: none;
}

.prod-goal-row {
  grid-template-columns: auto 1fr auto;
}
}

.prod-eco-split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {.prod-eco-split {
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
}

.prod-eco-group {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
}

.prod-eco-group--work {
  background: linear-gradient(160deg, #fff 0%, #f0f9ff 100%);
  border-color: #dbeafe;
}

.prod-eco-group__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.prod-eco-group__title svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
}

.prod-eco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.prod-eco-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  border: 2px solid #f3f4f6;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.prod-eco-chip svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--primary);
}

.prod-eco-chip:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--primary-dark);
}

.prod-eco-chip--elevate:hover {
  border-color: #93c5fd;
}

.prod-eco-chip--gig:hover {
  border-color: #6ee7b7;
}

.prod-ins-peace-visual__frame,
.prod-ins-corporate-visual__frame {
  position: relative;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-hover);
  border: 2px solid #e5e7eb;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 50%, #1e3a5f 100%);
}

.prod-ins-peace-visual__frame img,
.prod-ins-corporate-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.prod-ins-peace-visual:hover .prod-ins-peace-visual__frame img,
.prod-ins-corporate-visual:hover .prod-ins-corporate-visual__frame img {
  transform: scale(1.04);
}

.prod-ins-peace-visual__frame::after,
.prod-ins-corporate-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.5) 100%
  );
  pointer-events: none;
}

.prod-ins-peace-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 0.7rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  max-width: 11rem;
}

.prod-ins-peace-chip__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #dbeafe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-ins-peace-chip__icon svg {
  width: 1rem;
  height: 1rem;
}

.prod-ins-peace-chip strong {
  display: block;
  font-size: var(--text-xs);
  color: #111827;
}

.prod-ins-peace-chip span {
  display: block;
  font-size: var(--text-xs);
  color: #6b7280;
}

.prod-ins-peace-chip--calm {
  top: 0.75rem;
  left: 0.75rem;
}

.prod-ins-peace-chip--plan {
  top: 38%;
  right: 0.65rem;
}

.prod-ins-peace-chip--conf {
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  max-width: none;
}

.prod-ins-corporate-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {.prod-ins-corporate-layout {
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
}
}

.prod-ins-corporate-visual {
  position: relative;
}

.prod-ins-corporate-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.prod-ins-corporate-chip svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--primary);
}

.prod-ins-corporate-chip--retention {
  top: 0.75rem;
  left: 0.75rem;
}

.prod-ins-corporate-chip--trust {
  top: 42%;
  right: 0.65rem;
}

.prod-ins-corporate-chip--brand {
  bottom: 0.75rem;
  left: 0.75rem;
}

.prod-ins-corporate-content {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: var(--gr-shadow);
}

.prod-ins-corporate-content__title {
  margin: 0 0 0.85rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.prod-ins-cover-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.prod-ins-cover-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.prod-ins-cover-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prod-ins-cover-list strong {
  color: #374151;
}

.prod-ins-corporate-content__hook {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-dark);
  padding: 0.65rem 0.75rem;
  background: #eff6ff;
  border-radius: 0.65rem;
  border-left: 3px solid var(--primary);
}

.prod-ins-corporate-content__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: var(--text-body);
}

.prod-ins-corporate-content__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.prod-ins-corporate-content__cta:hover {
  color: var(--primary-dark);
}

.prod-ins-corporate-content__cta:hover svg {
  transform: translateX(3px);
}

.prod-ins-protect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 520px) {.prod-ins-protect-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
}

.prod-ins-protect-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition), background 0.3s ease;
}

.prod-ins-protect-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: var(--gr-shadow-hover);
  background: #fff;
}

.prod-ins-protect-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-ins-protect-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.prod-ins-protect-card--health .prod-ins-protect-card__icon {
  background: var(--purple-bg);
  color: var(--purple);
}

.prod-ins-protect-card--life .prod-ins-protect-card__icon {
  background: var(--purple-bg);
  color: var(--purple);
}

.prod-ins-protect-card--motor .prod-ins-protect-card__icon {
  background: #ffedd5;
  color: #ea580c;
}

.prod-ins-protect-card--corp .prod-ins-protect-card__icon {
  background: #dbeafe;
  color: #2563eb;
}

.prod-ins-protect-card__copy strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
  margin-bottom: 0.1rem;
}

.prod-ins-protect-card__copy span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

.prod-ins-protect-card__arrow {
  width: 1.1rem;
  height: 1.1rem;
  color: #9ca3af;
  transition: transform 0.25s ease, color 0.25s ease;
}

.prod-ins-protect-card:hover .prod-ins-protect-card__arrow {
  color: var(--primary);
  transform: translateX(3px);
}

@media (max-width: 767px) {.prod-ins-peace-chip--plan {
  top: auto;
  bottom: 4.5rem;
  right: 0.65rem;
}

.prod-ins-corporate-chip--trust {
  top: auto;
  bottom: 3.25rem;
  right: 0.65rem;
}
}

.prod-cnps-tax-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {.prod-cnps-tax-layout {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}
}

.prod-cnps-tax-regimes {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {.prod-cnps-tax-regimes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

.prod-cnps-regime-card {
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.prod-cnps-regime-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-cnps-regime-card--old {
  border-top: 3px solid #6366f1;
}

.prod-cnps-regime-card--new {
  border-top: 3px solid var(--primary);
}

.prod-cnps-regime-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.prod-cnps-regime-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-cnps-regime-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-cnps-regime-card--old .prod-cnps-regime-card__icon {
  background: #eef2ff;
  color: #4f46e5;
}

.prod-cnps-regime-card h3 {
  margin: 0;
  font-size: var(--text-body);
  color: #111827;
}

.prod-cnps-tax-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.prod-cnps-tax-points__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.prod-cnps-tax-points__item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.prod-cnps-tax-points__item--yes svg {
  color: #16a34a;
}

.prod-cnps-tax-points__item--muted svg {
  color: #9ca3af;
}

.prod-cnps-tax-points__item strong {
  color: #374151;
}

.prod-cnps-tax-aside {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem;
  background: linear-gradient(160deg, #eff6ff 0%, #fff 55%);
  border: 2px solid #bfdbfe;
  border-radius: 1rem;
  box-shadow: var(--gr-shadow);
}

.prod-cnps-tax-aside__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  margin-bottom: 0.75rem;
}

.prod-cnps-tax-aside__badge svg {
  width: 0.85rem;
  height: 0.85rem;
}

.prod-cnps-tax-aside__lead {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: #374151;
}

.prod-cnps-tax-example {
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 0.85rem;
}

.prod-cnps-tax-example__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.prod-cnps-tax-example__label {
  font-size: var(--text-xs);
  color: #6b7280;
}

.prod-cnps-tax-example__value {
  font-size: var(--text-body);
  color: #111827;
}

.prod-cnps-tax-example__row--highlight .prod-cnps-tax-example__value {
  font-size: var(--text-xl);
  color: var(--primary);
}

.prod-cnps-tax-example__arrow {
  display: flex;
  justify-content: center;
  padding: 0.35rem 0;
  color: var(--primary);
}

.prod-cnps-tax-example__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-cnps-tax-aside__note {
  margin: 0;
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: #9ca3af;
}

.prod-cnps-tax-aside__note svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prod-cnps-cash-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {.prod-cnps-cash-layout {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
}

.prod-cnps-cash-visual__frame {
  position: relative;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-hover);
  border: 2px solid #e5e7eb;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 40%, #1e3a5f 100%);
}

.prod-cnps-cash-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.prod-cnps-cash-visual:hover .prod-cnps-cash-visual__frame img {
  transform: scale(1.04);
}

.prod-cnps-cash-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
}

.prod-cnps-cash-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 0.7rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  max-width: 12rem;
}

.prod-cnps-cash-chip__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-cnps-cash-chip__icon svg {
  width: 1rem;
  height: 1rem;
}

.prod-cnps-cash-chip__icon--spend {
  background: #ffedd5;
  color: #ea580c;
}

.prod-cnps-cash-chip__icon--grow {
  background: #dbeafe;
  color: var(--primary);
}

.prod-cnps-cash-chip__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.prod-cnps-cash-chip strong {
  display: block;
  font-size: var(--text-xs);
  color: #111827;
}

.prod-cnps-cash-chip span:last-child {
  display: block;
  font-size: var(--text-xs);
  color: #6b7280;
}

.prod-cnps-cash-chip--spend {
  top: 0.75rem;
  left: 0.75rem;
}

.prod-cnps-cash-chip--grow {
  bottom: 0.75rem;
  right: 0.75rem;
  max-width: 13rem;
}

.prod-cnps-cash-flow {
  position: absolute;
  left: 50%;
  top: 28%;
  bottom: 28%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.prod-cnps-cash-flow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.prod-cnps-cash-flow__dot--end {
  border-color: #16a34a;
  background: #dcfce7;
}

.prod-cnps-cash-flow__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, #fdba74 0%, var(--primary) 50%, #22c55e 100%);
  margin: 0.2rem 0;
}

.prod-cnps-cash-compare {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.prod-cnps-cash-panel {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.prod-cnps-cash-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-cnps-cash-panel--cash {
  border-top: 3px solid #f97316;
}

.prod-cnps-cash-panel--nps {
  border-top: 3px solid var(--primary);
}

.prod-cnps-cash-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.prod-cnps-cash-panel__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-cnps-cash-panel__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-cnps-cash-panel--cash .prod-cnps-cash-panel__icon {
  background: #ffedd5;
  color: #ea580c;
}

.prod-cnps-cash-panel--nps .prod-cnps-cash-panel__icon {
  background: #dbeafe;
  color: var(--primary);
}

.prod-cnps-cash-panel h3 {
  margin: 0;
  font-size: var(--text-body);
  color: #111827;
}

.prod-cnps-cash-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.prod-cnps-cash-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: #6b7280;
}

.prod-cnps-cash-panel__list li svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.prod-cnps-cash-panel--cash .prod-cnps-cash-panel__list li svg {
  color: #f97316;
}

.prod-cnps-cash-panel--nps .prod-cnps-cash-panel__list li svg {
  color: #16a34a;
}

.prod-cnps-hr-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {.prod-cnps-hr-layout {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
}

.prod-cnps-hr-lane__label,
.prod-cnps-emp-lane__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.prod-cnps-hr-lane__label svg,
.prod-cnps-emp-lane__label svg {
  width: 0.9rem;
  height: 0.9rem;
}

.prod-cnps-emp-lane__label {
  color: #7c3aed;
  margin-top: var(--space-5);
}

.prod-cnps-hr-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.prod-cnps-hr-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.05rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition), background 0.3s ease;
}

.prod-cnps-hr-step:hover {
  transform: translateX(4px);
  border-color: #bfdbfe;
  background: #fff;
  box-shadow: var(--gr-shadow);
}

.prod-cnps-hr-step__num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-cnps-hr-step__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-cnps-hr-step__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-cnps-hr-step strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
  margin-bottom: 0.15rem;
}

.prod-cnps-hr-step p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.prod-cnps-emp-visual__frame {
  position: relative;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow-hover);
  border: 2px solid #e5e7eb;
  aspect-ratio: 16 / 10;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 50%, #1e3a5f 100%);
}

.prod-cnps-emp-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.prod-cnps-emp-visual:hover .prod-cnps-emp-visual__frame img {
  transform: scale(1.04);
}

.prod-cnps-emp-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.42) 100%);
  pointer-events: none;
}

.prod-cnps-emp-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.prod-cnps-emp-chip svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #7c3aed;
}

.prod-cnps-emp-chip--edu {
  top: 0.65rem;
  left: 0.65rem;
}

.prod-cnps-emp-chip--save {
  top: 40%;
  right: 0.55rem;
}

.prod-cnps-emp-chip--care {
  bottom: 0.65rem;
  left: 0.65rem;
}

.prod-cnps-emp-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.prod-cnps-emp-perks li {
  display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 1.05rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.875rem;
    transition: transform var(--gr-transition), border-color 0.3s ease, box-shadow var(--gr-transition), background 0.3s ease;
}

.prod-cnps-emp-perks li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #7c3aed;
  flex-shrink: 0;
  /* margin-top: 0.1rem; */
}

.prod-cnps-emp-perks strong {
  display: block;
    font-size: var(--text-body);
    color: #111827;
    margin-bottom: 0.15rem;
}

.prod-cnps-emp-perks span {
  margin: 0;
    font-size: var(--text-sm);
    line-height: 1.45;
    color: #6b7280;
}

@media (max-width: 767px) {.prod-cnps-cash-chip--grow {
  max-width: 11rem;
  font-size: var(--text-body);
}

.prod-cnps-emp-chip--save {
  top: auto;
  bottom: 3rem;
  right: 0.55rem;
}
}

.prod-fv-section .prod-section-head__lead {
  max-width: 42rem;
}

.prod-fv-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {.prod-fv-grid {
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
}
}

.prod-fv-story__title {
  margin: 0 0 0.85rem;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.prod-fv-habit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.prod-fv-habit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition), border-color 0.3s ease;
}

.prod-fv-habit-item:hover {
  transform: translateX(4px);
  border-color: #fde68a;
  box-shadow: var(--gr-shadow);
}

.prod-fv-habit-item__step {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  color: #a16207;
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-fv-habit-item strong {
  display: block;
  font-size: var(--text-body);
  color: #111827;
  margin-bottom: 0.2rem;
}

.prod-fv-habit-item p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: #6b7280;
}

.prod-fv-outcomes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.prod-fv-outcomes__label {
  margin: 0 0 0.15rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

.prod-fv-outcome {
  padding: 1rem 1.05rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.prod-fv-outcome:hover {
  transform: translateY(-3px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-fv-outcome__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.prod-fv-outcome__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.6rem;
  background: #fef9c3;
  color: #ca8a04;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-fv-outcome__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prod-fv-outcome__sip {
  display: block;
  font-size: var(--text-body);
  font-weight: 700;
  color: #111827;
}

.prod-fv-outcome__term {
  display: block;
  font-size: var(--text-xs);
  color: #6b7280;
  margin-top: 0.1rem;
}

.prod-fv-outcome__bar-wrap {
  height: 0.4rem;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.prod-fv-outcome__bar {
  display: block;
  height: 100%;
  width: calc(var(--fv-pct, 50) * 1%);
  border-radius: 999px;
  background: linear-gradient(90deg, #ca8a04 0%, #fbbf24 55%, #fde68a 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-fv-outcome.animated .prod-fv-outcome__bar {
  transform: scaleX(1);
}

.prod-fv-outcome__value {
  margin: 0;
  font-size: var(--text-sm);
  color: #6b7280;
}

.prod-fv-outcome__value strong {
  color: #a16207;
  font-size: var(--text-body);
}

.prod-fv-outcome--10 .prod-fv-outcome__bar {
  background: linear-gradient(90deg, #ca8a04 0%, #fbbf24 55%, #fde68a 100%);
}

.prod-fv-outcome--15 .prod-fv-outcome__bar {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 55%, #fcd34d 100%);
}

.prod-fv-outcome--20 .prod-fv-outcome__bar {
  background: linear-gradient(90deg, #b45309 0%, #ea580c 55%, #fdba74 100%);
}

.prod-fv-outcome--15 .prod-fv-outcome__value strong,
.prod-fv-outcome--20 .prod-fv-outcome__value strong {
  color: #b45309;
}

.prod-rnps-goals-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 768px) {.prod-rnps-goals-layout {
  grid-template-columns: 1fr auto 1fr;
  gap: 0.85rem;
}
}

.prod-rnps-goal-pillar {
  padding: 1.2rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  transition: transform var(--gr-transition), box-shadow var(--gr-transition);
}

.prod-rnps-goal-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-hover);
}

.prod-rnps-goal-pillar--retirement {
  border-top: 3px solid #f59e0b;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 35%);
}

.prod-rnps-goal-pillar--tax {
  border-top: 3px solid var(--primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 35%);
}

.prod-rnps-goal-pillar__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.prod-rnps-goal-pillar__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.prod-rnps-goal-pillar--retirement .prod-rnps-goal-pillar__icon {
  background: #fef3c7;
  color: #d97706;
}

.prod-rnps-goal-pillar--tax .prod-rnps-goal-pillar__icon {
  background: #dbeafe;
  color: var(--primary);
}

.prod-rnps-goal-pillar h3 {
  margin: 0 0 0.45rem;
  font-size: var(--text-body);
  color: #111827;
}

.prod-rnps-goal-pillar > p {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: #6b7280;
}

.prod-rnps-goal-pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prod-rnps-goal-pillar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: #374151;
}

.prod-rnps-goal-pillar__list li svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prod-rnps-goals-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {.prod-rnps-goals-bridge {
  flex-direction: column;
  padding: 0;
}
}

.prod-rnps-goals-bridge__line {
  flex: 1;
  height: 2px;
  min-width: 2rem;
  background: linear-gradient(90deg, #fde68a 0%, var(--primary) 100%);
}

@media (min-width: 768px) {.prod-rnps-goals-bridge__line {
  width: 2px;
  min-width: 0;
  min-height: 2rem;
  height: auto;
  background: linear-gradient(180deg, #fde68a 0%, var(--primary) 100%);
}
}

.prod-rnps-goals-bridge__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: var(--gr-shadow);
}

.prod-rnps-goals-bridge__icon svg {
  width: 1rem;
  height: 1rem;
}

.prod-rnps-goals-support {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {.prod-rnps-goals-support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
}

.prod-rnps-goals-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: #6b7280;
}

.prod-rnps-goals-chip svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prod-rnps-goals-chip strong {
  color: #374151;
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  }

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

}

@media (min-width: 768px) and (max-width: 1139px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

.prod-section-head {
  margin-bottom: var(--space-5);
  text-align: left;
}

.prod-section-head .solution-badge {
  margin-bottom: var(--space-3);
}

.prod-section-head .corp-block__title {
  margin-bottom: var(--space-2);
}

.prod-section-head__lead {
  margin: 0;
  max-width: 40rem;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.prod-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neutral-400);
}

@media (max-width: 767px) {
  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image,
.companies-hero.gr-hero .companies-hero-grid {
  min-width: 0;
}

.companies-hero.gr-hero .companies-hero-content,
.companies-hero.gr-hero .companies-hero-image {
  width: 100%;
}

@media (max-width: 767px) {
  .companies-hero.gr-hero {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    padding-inline: 0;
  }

#main-content > .gr-breadcrumb + .companies-hero.gr-hero,
  #main-content > .gr-breadcrumb + section.companies-hero.gr-hero,
  .home-page #main-content > .companies-hero.gr-hero:first-child,
  .home-page #main-content > section.companies-hero.gr-hero:first-child {
    padding-top: 1.25rem;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .companies-hero-grid {
    gap: 1.75rem;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main {
    margin: 0.5rem 0;
    font-size: var(--text-sm);
    line-height: 1.45;
  }

.companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    margin-bottom: 1.15rem;
    font-size: var(--text-sm);
    line-height: 1.55;
  }

.companies-hero.gr-hero .hero-buttons,
  .companies-hero.gr-hero .home-hero-ctas,
  .companies-hero.gr-hero .companies-hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

.companies-hero.gr-hero .hero-buttons .btn-hero-primary,
  .companies-hero.gr-hero .hero-buttons .btn-hero-outline,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-primary,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-outline,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-primary,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-outline {
    flex: 1 1 calc(50% - 0.25rem);
    width: auto;
    min-width: 0;
    justify-content: center;
    min-height: 3rem;
    padding: 0 0.85rem;
    font-size: var(--text-sm);
    gap: 0.35rem;
    border-radius: 2.5rem;
    box-sizing: border-box;
  }

.companies-hero.gr-hero .hero-buttons .btn-hero-primary svg,
  .companies-hero.gr-hero .hero-buttons .btn-hero-outline svg,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-primary svg,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-outline svg,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-primary svg,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-outline svg {
    width: 1rem;
    height: 1rem;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.35rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .stat-number-hero {
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.companies-hero.gr-hero .gr-hero-image-badge {
    font-size: var(--text-xs);
    padding: 0.5rem 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

@media (max-width: 479px) {
  .companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-body);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (max-width: 479px) {
  .corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (max-width: 767px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 5.25vw, 1.625rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.65rem 0.85rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 479px) {
  .section-title,
  h2.section-title {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }

.gr-forward-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.4375rem);
  }
}

@media (min-width: 768px) and (max-width: 1139px) {

  .section:has(> .container),
  .section:has(> .container-narrow),
  .corp-block:has(> .container),
  .corp-block:has(> .container-narrow),
  .footer:has(> .container),
  .footer:has(> .container-narrow) {
    padding-left: 0;
    padding-right: 0;
  }

.section > .container,
  .section > .container-narrow,
  .corp-block > .container,
  .corp-block > .container-narrow,
  .footer > .container,
  .footer > .container-narrow {
    padding-inline: var(--page-gutter-x);
  }

.section:not(:has(> .container)):not(:has(> .container-narrow)),
  .corp-block:not(:has(> .container)):not(:has(> .container-narrow)) {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero {
    padding-inline: 0;
  }

.companies-hero.gr-hero > .container {
    padding-inline: var(--page-gutter-x);
  }

.companies-hero.gr-hero .hero-buttons,
  .companies-hero.gr-hero .home-hero-ctas,
  .companies-hero.gr-hero .companies-hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.5rem;
  }

.companies-hero.gr-hero .hero-buttons .btn-hero-primary,
  .companies-hero.gr-hero .hero-buttons .btn-hero-outline,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-primary,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-outline,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-primary,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-outline {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 0 0.65rem;
    font-size: var(--text-xs);
    line-height: 1.2;
    gap: 0.3rem;
  }

.companies-hero.gr-hero .hero-buttons .btn-hero-primary svg,
  .companies-hero.gr-hero .hero-buttons .btn-hero-outline svg,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-primary svg,
  .companies-hero.gr-hero .home-hero-ctas .btn-hero-outline svg,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-primary svg,
  .companies-hero.gr-hero .companies-hero-buttons .btn-hero-outline svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
  }

.companies-hero.gr-hero .companies-hero-stats,
  .companies-hero.gr-hero .gr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

.companies-hero.gr-hero .companies-hero-stats .hero-stat-divider,
  .companies-hero.gr-hero .gr-hero-stats .hero-stat-divider {
    display: none;
  }

.companies-hero.gr-hero .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
  }

.companies-hero.gr-hero .stat-number-hero {
    margin-bottom: 0;
    font-size: var(--text-lg);
  }

.companies-hero.gr-hero .stat-label-hero {
    font-size: var(--text-xs);
    line-height: 1.3;
  }

.section-title,
  h2.section-title {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-block__title,
  .prod-section-head .corp-block__title,
  .corp-faq-intro .corp-block__title,
  .about-page .prod-section-head .corp-block__title,
  .careers-page .prod-section-head .corp-block__title,
  .contact-page .prod-section-head .corp-block__title {
    font-size: clamp(1.375rem, 3.25vw, 1.625rem);
    line-height: 1.22;
  }

.gr-split,
  .gr-split > *,
  .gr-split-content,
  .gr-split-visual,
  .section-header,
  .corp-faq-layout,
  .corp-faq-layout > *,
  .gr-compare-grid,
  .gr-icon-card-grid,
  .gr-feel-grid,
  .prod-fv-grid,
  .prod-fv-grid > *,
  .prod-stat-grid,
  .prod-offering-grid,
  .prod-hub-grid {
    min-width: 0;
  }

.gr-split-content {
    max-width: none;
  }

.gr-split-visual img,
  .gr-split-visual--tall img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

.prod-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

.gr-forward-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

.gr-forward-banner h2 {
    font-size: clamp(1.375rem, 3.25vw, 1.75rem);
    line-height: 1.22;
  }

.corp-faq-entry summary {
    gap: 0.65rem;
  }

.corp-faq-entry__q {
    min-width: 0;
  }

.final-cta-title,
  .gr-final-cta .final-cta-title {
    font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

.final-cta-subtitle,
  .gr-final-cta .final-cta-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

.final-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

.final-cta-buttons .btn-cta-primary,
  .final-cta-buttons .btn-cta-secondary {
    flex: 0 1 auto;
    min-width: 0;
  }

.companies-hero.gr-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.12;
  }

.companies-hero.gr-hero .hero-main,
  .companies-hero.gr-hero .home-main,
  .companies-hero.gr-hero .hero-subtitle,
  .companies-hero.gr-hero .home-subtitle {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

.companies-hero.gr-hero .gr-hero-image-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

body.blog-page .blog-hero {
    padding: 2rem var(--page-gutter-x) 3rem;
  }

body.blog-page .blog-hero-title,
  body.blog-search-page .blog-hero-title {
    font-size: clamp(1.625rem, 3.5vw, 2rem);
  }

body.blog-page .categories-filter {
    gap: 0.65rem;
  }

body.blog-detail-page .article-header {
    padding: 2rem 0;
  }
}

[class*="visual__frame"]::after,
.pln-tax-wealth-banner::after,
.pln-ret-showcase-banner::after,
.pln-ret-lifespan-banner::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 1024px) {

    .home-hero-ctas{
        flex-direction:column !important;
        align-items:flex-start;
    }
  }
