.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.button--hero {
  min-height: 50px;
  padding-inline: 18px 10px;
  border-radius: 999px;
}

.button--blue {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}

.button--ghost {
  background: transparent;
  color: var(--color-white);
}

.button--dark {
  background: #111f3b;
  color: var(--color-white);
}

.button__dot {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
}

.button__dot::after {
  content: ">";
  color: var(--color-primary);
  font-size: 9px;
  line-height: 1;
}

.button__dot svg {
  width: 8px;
  height: 10px;
}

.button--ghost svg {
  display: block;
}

.button__dot:has(svg)::after {
  content: none;
}

.button--hero .button__dot {
  width: 28px;
  height: 28px;
}

.button--primary .button__dot::after,
.button--blue .button__dot::after,
.button--dark .button__dot::after {
  color: var(--color-white);
}

.button--primary .button__dot,
.button--blue .button__dot,
.button--dark .button__dot {
  background: var(--color-primary);
}

.button--blue .button__dot,
.button--dark .button__dot {
  background: rgba(255, 255, 255, 0.2);
}

.diagnostic-card {
  position: relative;
  display: grid;
  grid-template-columns: 347px 374px;
  flex: 0 0 721px;
  width: 100%;
  min-height: 403px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.diagnostic-card__content {
  min-width: 0;
  padding: 39px 34px 35px 38px;
}

.diagnostic-card__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent, var(--color-sky));
  font-size: 10px;
  font-weight: 800;
  line-height: 1.07;
}

.diagnostic-card__tag::before {
  content: none;
}

.diagnostic-card__tag img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.diagnostic-card h2 {
  margin-top: 10px;
  max-width: 264px;
  color: #535353;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.diagnostic-card h2 span {
  color: var(--accent, var(--color-primary));
}

.diagnostic-card p {
  max-width: 234px;
  margin-top: 8px;
  color: var(--color-soft);
  font-size: 9px;
  line-height: 1.6;
}

.diagnostic-card .plan-card__label {
  display: block;
  margin-top: 28px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 3px;
  max-width: 304px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding: 3px 6px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--accent, var(--color-primary)) 5%, white);
  color: var(--accent, var(--color-primary));
  font-family: var(--font-alt);
  font-size: 8.1px;
  font-weight: 500;
  line-height: 1.2;
}

.chip.is-hidden {
  display: none;
}

.chip-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  overflow: hidden;
}

.chip--more,
.chip--less {
  cursor: pointer;
  font-weight: 700;
}

.diagnostic-card__media {
  position: absolute;
  inset: 0 0 0 auto;
  overflow: hidden;
  width: 374px;
  height: 403px;
  border-radius: var(--radius-lg);
  background: var(--panel, var(--color-blue-soft));
}

.diagnostic-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.diagnostic-card__icon {
  position: absolute;
  z-index: 2;
  left: 324px;
  top: 179px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 4px solid var(--color-white);
  border-radius: 18px;
  background: var(--panel, var(--color-blue-soft));
}

.diagnostic-card__icon img {
  display: block;
  width: 18px;
  height: 18px;
}

.diagnostic-card__demo {
  position: absolute;
  left: 35px;
  bottom: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.diagnostic-card__demo span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent, var(--color-sky));
  color: var(--color-white);
  font-size: 16px;
}

.diagnostic-card__demo svg {
  width: 13px;
  height: 13px;
}

.diagnostic-card__demo-mobile {
  display: none;
}

.result-card {
  display: grid;
  gap: 18px;
  min-height: 114px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink-2);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.result-card.is-active,
.result-card:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.result-card__icon {
  width: 13.5px;
  height: 13.5px;
  background: currentColor;
  mask: var(--result-icon) center / contain no-repeat;
  -webkit-mask: var(--result-icon) center / contain no-repeat;
}

.result-card__icon--graph-new-up {
  --result-icon: url("/images/icons/objectives/solar_graph-new-up-linear.svg");
}

.result-card__icon--money-bag {
  --result-icon: url("/images/icons/objectives/solar_money-bag-linear.svg");
}

.result-card__icon--compass-square {
  --result-icon: url("/images/icons/objectives/solar_compass-square-linear.svg");
}

.result-card__icon--calculator {
  --result-icon: url("/images/icons/objectives/solar_calculator-linear.svg");
}

.result-card__icon--bill-list {
  --result-icon: url("/images/icons/objectives/solar_bill-list-linear.svg");
}

.result-card__icon--users-group {
  --result-icon: url("/images/icons/objectives/solar_users-group-rounded-linear.svg");
}

.result-card__icon--hand-shake {
  --result-icon: url("/images/icons/objectives/solar_hand-shake-outline.svg");
}

.result-card__icon--hand-money {
  --result-icon: url("/images/icons/objectives/solar_hand-money-linear.svg");
}

.result-card__icon--medal-star {
  --result-icon: url("/images/icons/objectives/solar_medal-star-linear.svg");
}

.result-card strong {
  max-width: 180px;
  font-size: 14px;
  line-height: 1.25;
}

.timeline-label {
  width: fit-content;
  min-width: 64px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 115, 255, 0.18);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-muted);
  font-size: 8px;
  font-weight: 700;
}

.step-card {
  display: grid;
  gap: 14px;
}

.step-card__number {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.step-card h3 {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.22;
}

.step-card p {
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.45;
}

.story-card {
  position: relative;
  flex: 0 0 var(--story-card-width, 360px);
  min-width: 0;
  height: clamp(312px, calc(var(--story-card-width, 360px) * 1.322), 470px);
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
  overflow: hidden;
}

.story-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  border: 6px solid var(--color-white);
  border-radius: inherit;
}

.story-card__inner {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: inherit;
  padding: 40px;
  color: var(--color-white);
}

.story-card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.story-card__placeholder {
  position: absolute;
  inset: 0;
  background: #050505;
}

.story-card h3,
.story-card .story-card__link {
  position: relative;
  z-index: 1;
}

.story-card h3 {
  font-size: 17px;
  line-height: 1.2;
}

.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 7px;
  font-weight: 800;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 36px);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.plan-card.is-featured {
  background: #2f3f5f;
  color: var(--color-white);
}

.plan-card__top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.plan-icon-stack {
  display: inline-flex;
  align-items: center;
}

.plan-icon-stack .plan-icon + .plan-icon {
  margin-left: -12px;
}

.plan-icon-stack--dark .plan-icon {
  background: rgba(255, 255, 255, 0.13);
}

.plan-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
}

.plan-icon--sky {
  background: var(--color-blue-soft);
}

.plan-icon--orange {
  background: var(--color-orange-soft);
}

.plan-icon--green {
  background: var(--color-green-soft);
}

.plan-icon--purple {
  background: var(--color-purple-soft);
}

.plan-icon img {
  width: 17px;
  height: 17px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-ink-2);
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
}

.plan-badge span {
  position: relative;
  width: 12px;
  height: 12px;
  border: 3px solid color-mix(in srgb, var(--color-primary) 18%, white);
  border-radius: 50%;
  background: var(--color-primary);
}

.plan-card.is-featured .plan-badge {
  color: var(--color-white);
}

.plan-badge span {
  animation: plan-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes plan-badge-pulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-badge span {
    animation: none;
  }
}

.plan-card h3 {
  margin-top: 0;
  color: #3b3b3b;
  font-size: clamp(18px, 1.55vw, 27px);
  font-weight: 650;
  line-height: 1.08;
}

.plan-card.is-featured h3 {
  color: var(--color-white);
}

.plan-card p {
  max-width: 360px;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.35;
}

.plan-card.is-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card__label {
  margin-top: 22px;
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 600;
}

.plan-card .chips {
  margin-top: 14px;
}

.plan-chips {
  gap: 9px 6px;
  max-width: none;
}

.plan-chips .chip {
  gap: 5px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: #f2f2f2;
  color: #4e4e4e;
  font-size: clamp(7.8px, 0.56vw, 10px);
  font-weight: 600;
}

.plan-chips .chip::before {
  content: "";
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6667 5.83333C11.6667 9.05508 9.05508 11.6667 5.83333 11.6667C2.61158 11.6667 0 9.05508 0 5.83333C0 2.61158 2.61158 0 5.83333 0C9.05508 0 11.6667 2.61158 11.6667 5.83333ZM4.06583 4.06583C4.14787 3.9839 4.25906 3.93789 4.375 3.93789C4.49094 3.93789 4.60214 3.9839 4.68417 4.06583L5.83333 5.215L6.9825 4.06583C7.06544 3.98855 7.17513 3.94648 7.28847 3.94848C7.40181 3.95048 7.50996 3.9964 7.59011 4.07655C7.67027 4.15671 7.71619 4.26485 7.71819 4.3782C7.72019 4.49154 7.67811 4.60123 7.60083 4.68417L6.45167 5.83333L7.60083 6.9825C7.67811 7.06544 7.72019 7.17513 7.71819 7.28847C7.71619 7.40181 7.67027 7.50996 7.59011 7.59011C7.50996 7.67027 7.40181 7.71619 7.28847 7.71819C7.17513 7.72019 7.06544 7.67811 6.9825 7.60083L5.83333 6.45167L4.68417 7.60083C4.60123 7.67811 4.49154 7.72019 4.3782 7.71819C4.26485 7.71619 4.15671 7.67027 4.07655 7.59011C3.9964 7.50996 3.95048 7.40181 3.94848 7.28847C3.94648 7.17513 3.98855 7.06544 4.06583 6.9825L5.215 5.83333L4.06583 4.68417C3.9839 4.60214 3.93789 4.49094 3.93789 4.375C3.93789 4.25906 3.9839 4.14787 4.06583 4.06583Z' fill='%23686868'/%3E%3C/svg%3E")
      center / 10px 10px no-repeat;
  line-height: 1;
}

.plan-chips .chip.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}

.plan-chips .chip.is-active::before {
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6667 5.83333C11.6667 9.05508 9.05508 11.6667 5.83333 11.6667C2.61158 11.6667 0 9.05508 0 5.83333C0 2.61158 2.61158 0 5.83333 0C9.05508 0 11.6667 2.61158 11.6667 5.83333ZM8.18417 4.06583C8.2661 4.14787 8.31211 4.25906 8.31211 4.375C8.31211 4.49094 8.2661 4.60213 8.18417 4.68417L5.2675 7.60083C5.18547 7.68276 5.07427 7.72878 4.95833 7.72878C4.8424 7.72878 4.7312 7.68276 4.64917 7.60083L3.4825 6.43417C3.43952 6.39411 3.40504 6.34581 3.38113 6.29215C3.35722 6.23848 3.34436 6.18055 3.34332 6.1218C3.34229 6.06306 3.35309 6.00471 3.37509 5.95023C3.3971 5.89576 3.42985 5.84627 3.47139 5.80473C3.51294 5.76318 3.56242 5.73043 3.6169 5.70843C3.67138 5.68642 3.72973 5.67562 3.78847 5.67665C3.84721 5.67769 3.90515 5.69055 3.95881 5.71446C4.01248 5.73837 4.06078 5.77285 4.10083 5.81583L4.95833 6.67333L6.26208 5.36958L7.56583 4.06583C7.64786 3.9839 7.75906 3.93788 7.875 3.93788C7.99094 3.93788 8.10214 3.9839 8.18417 4.06583Z' fill='white'/%3E%3C/svg%3E")
      center / 10px 10px no-repeat;
}

.plan-card.is-featured .plan-chips .chip.is-active::before {
  background:
    url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6667 5.83333C11.6667 9.05508 9.05508 11.6667 5.83333 11.6667C2.61158 11.6667 0 9.05508 0 5.83333C0 2.61158 2.61158 0 5.83333 0C9.05508 0 11.6667 2.61158 11.6667 5.83333ZM8.18417 4.06583C8.2661 4.14787 8.31211 4.25906 8.31211 4.375C8.31211 4.49094 8.2661 4.60213 8.18417 4.68417L5.2675 7.60083C5.18547 7.68276 5.07427 7.72878 4.95833 7.72878C4.8424 7.72878 4.7312 7.68276 4.64917 7.60083L3.4825 6.43417C3.43952 6.39411 3.40504 6.34581 3.38113 6.29215C3.35722 6.23848 3.34436 6.18055 3.34332 6.1218C3.34229 6.06306 3.35309 6.00471 3.37509 5.95023C3.3971 5.89576 3.42985 5.84627 3.47139 5.80473C3.51294 5.76318 3.56242 5.73043 3.6169 5.70843C3.67138 5.68642 3.72973 5.67562 3.78847 5.67665C3.84721 5.67769 3.90515 5.69055 3.95881 5.71446C4.01248 5.73837 4.06078 5.77285 4.10083 5.81583L4.95833 6.67333L6.26208 5.36958L7.56583 4.06583C7.64786 3.9839 7.75906 3.93788 7.875 3.93788C7.99094 3.93788 8.10214 3.9839 8.18417 4.06583Z' fill='white'/%3E%3C/svg%3E")
      center / 10px 10px no-repeat;
}

.benefits {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6b6b6b;
  font-size: clamp(9px, 0.64vw, 12px);
}

.plan-card.is-featured .benefits li {
  color: rgba(255, 255, 255, 0.9);
}

.benefits li::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 0;
  border: 1.1px solid currentColor;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%236B6B6B' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 7px 5px no-repeat;
}

.plan-card.is-featured .benefits li::before {
  background:
    url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='white' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 7px 5px no-repeat;
}

.plan-footer {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  padding-top: 8px;
}

.plan-footer > div {
  min-width: 0;
}

.plan-price {
  margin-top: 0;
  padding-top: 0;
  color: #0d0d0d;
  font-size: clamp(13px, 0.88vw, 17px);
  font-weight: 500;
  white-space: nowrap;
}

.plan-card.is-featured .plan-price {
  color: var(--color-white);
}

.plan-price span {
  color: color-mix(in srgb, currentColor 58%, transparent);
  font-weight: 500;
}

.plan-note {
  margin-top: 1px;
  font-size: clamp(7.8px, 0.56vw, 10px);
  color: var(--color-muted);
  white-space: nowrap;
}

.plan-card.is-featured .plan-note {
  color: rgba(255, 255, 255, 0.72);
}

.plan-cta {
  position: static;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 6px 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 800;
  margin-top: 0;
  white-space: nowrap;
  box-shadow: none;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.plan-cta:hover {
  background: #0069e6;
  box-shadow: none;
  transform: translateY(-1px);
}

.plan-card.is-featured .plan-cta {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: none;
}

.plan-card.is-featured .plan-cta:hover {
  background: #f4f9ff;
  box-shadow: none;
}

.faq-card {
  align-content: start;
  flex: 0 0 204px;
  min-height: 245px;
  padding: 30px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.faq-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 115, 255, 0.1);
  color: var(--color-primary);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.faq-card h3 {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.25;
}

.faq-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.42;
}

.metric-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  flex: 0 0 auto;
  gap: clamp(8px, 0.65vw, 12px);
  align-items: center;
  width: max-content;
  min-width: 0;
  min-height: clamp(56px, 3.8vw, 70px);
  padding: clamp(10px, 0.75vw, 14px) calc(clamp(10px, 0.9vw, 16px) + 6px) clamp(10px, 0.75vw, 14px) clamp(10px, 0.9vw, 16px);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
}

.metric-pill > div {
  display: grid;
  align-content: center;
  gap: 3px;
}

.metric-pill strong {
  font-size: clamp(10px, 0.72vw, 14px);
  line-height: 1.05;
  white-space: nowrap;
}

.metric-pill span {
  display: block;
  font-size: clamp(9px, 0.62vw, 12px);
  opacity: 0.86;
  line-height: 1.15;
}

.metric-pill .metric-pill__value {
  display: grid;
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-content: center;
  place-content: center;
  place-items: center;
  min-width: clamp(50px, 3.55vw, 72px);
  height: clamp(32px, 2.45vw, 44px);
  padding-inline: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  font-size: clamp(10px, 0.82vw, 15px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  width: clamp(99px, 7.125vw, 141px);
  height: auto;
}

.footer-rumbo strong {
  color: var(--color-white);
  font-size: clamp(15px, 1.4vw, 28px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-rumbo__mark {
  display: block;
  width: clamp(40px, 2.9vw, 52px);
  height: auto;
}

.footer-social {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-copyright,
.footer-country,
.legal-links {
  color: var(--color-white);
  font-size: clamp(10px, 0.64vw, 13px);
  font-weight: 650;
}

.footer-country img {
  width: 12px;
  height: 12px;
}

.legal-copy {
  max-width: min(100%, 1900px);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(9px, 0.585vw, 12px);
  line-height: 1.5;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.72);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 295px);
  max-height: min(90vh, 380px);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.modal.is-visible .modal__overlay,
.modal.is-visible .modal__dialog {
  opacity: 1;
}

.modal.is-visible .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 0;
}

.modal__header h2 {
  font-size: 13px;
  line-height: 1.15;
}

.modal__header p {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 7px;
}

.modal__close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: #f2f5f9;
  color: var(--color-ink);
}

.modal--legal .modal__dialog {
  width: min(100%, 340px);
  max-height: min(88vh, 360px);
  padding: 21px;
  border-radius: 14px;
  overflow: auto;
}

.modal--legal .modal__close {
  position: absolute;
  top: 9px;
  right: 9px;
}

.legal-modal__content {
  display: grid;
  gap: 9px;
  padding-right: 9px;
}

.legal-modal__content h2 {
  max-width: 260px;
  color: var(--color-ink);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 650;
  line-height: 1.12;
}

.legal-modal__content p {
  color: var(--color-muted);
  font-size: 8px;
  line-height: 1.4;
}

.modal--waitlist .modal__dialog {
  width: min(100%, 420px);
  max-height: min(92vh, 620px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
}

.modal--waitlist .modal__header {
  display: block;
  padding: clamp(18px, 2.4vw, 30px) clamp(22px, 3vw, 38px) clamp(14px, 1.6vw, 20px);
  border-radius: 0 0 24px 24px;
  background: var(--color-primary);
  color: var(--color-white);
}

.modal--waitlist .modal__header h2 {
  font-size: calc(clamp(13px, 1.55vw, 15px) + 2px);
  font-weight: 600;
  line-height: 1.1;
}

.modal--waitlist .modal__header p {
  max-width: 305px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(clamp(9px, 0.95vw, 10px) + 2px);
  font-weight: 500;
  line-height: 1.22;
}

.lead-form {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.field {
  display: grid;
  gap: 4px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label,
.consent {
  color: var(--color-ink-2);
  font-size: 7px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e0ec;
  border-radius: var(--radius-xs);
  background: var(--color-white);
  color: var(--color-ink);
  padding: 6px 7px;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.modal--waitlist .lead-form {
  gap: 0;
  padding: clamp(18px, 2.2vw, 24px) clamp(22px, 3vw, 38px) clamp(18px, 2.2vw, 24px);
}

.waitlist-fields {
  display: grid;
  gap: 5px;
}

.modal--waitlist .field {
  gap: 7px;
}

.modal--waitlist .field label {
  color: #6b6b6b;
  font-size: clamp(8px, 0.88vw, 10px);
  font-weight: 500;
  line-height: 1;
}

.modal--waitlist .field input,
.modal--waitlist .field select {
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 11px;
}

.modal--waitlist .field input:focus,
.modal--waitlist .field select:focus {
  border-color: rgba(0, 115, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 115, 255, 0.1);
}

.modal--waitlist .field input::placeholder {
  color: rgba(102, 112, 133, 0.42);
}

.field textarea {
  min-height: 58px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(0, 115, 255, 0.12);
}

.field-error {
  min-height: 8px;
  color: #c43b2f;
  font-size: 6px;
}

.consent {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 5px;
  align-items: start;
  font-weight: 500;
  line-height: 1.4;
}

.form-status {
  min-height: 11px;
  color: var(--color-muted);
  font-size: 7px;
}

.form-status.is-success {
  color: #137b4f;
}

.form-status.is-error {
  color: #c43b2f;
}

.modal--waitlist .form-status {
  min-height: 12px;
  margin-top: 4px;
  font-size: 7px;
}

.waitlist-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.waitlist-cancel,
.waitlist-submit {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.waitlist-cancel {
  padding: 9px 14px;
  background: transparent;
  color: #ff9a9a;
  font-size: clamp(9px, 1vw, 10px);
  font-weight: 500;
}

.waitlist-submit {
  min-width: min(100%, 104px);
  min-height: 42px;
  padding: 0 17px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(10px, 1.075vw, 11px);
  font-weight: 500;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.waitlist-submit:hover {
  transform: translateY(-1px);
}

.waitlist-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.modal--feedback .modal__dialog {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 420px);
  max-height: min(92vh, 620px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-white);
}

.feedback-modal__panel {
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 30px) clamp(22px, 3vw, 38px) clamp(14px, 1.6vw, 20px);
  border-radius: 0 0 24px 24px;
  background: var(--color-primary);
  color: var(--color-white);
}

.feedback-modal__panel svg {
  flex: 0 0 auto;
  margin-bottom: 12px;
  width: 21px;
  height: 21px;
}

.feedback-modal__panel h2 {
  max-width: 305px;
  font-size: calc(clamp(13px, 1.55vw, 15px) + 4px);
  font-weight: 600;
  line-height: 1.1;
}

.feedback-modal__panel p {
  max-width: 305px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(clamp(9px, 0.95vw, 10px) + 4px);
  font-weight: 500;
  line-height: 1.22;
}

.feedback-modal__form {
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(22px, 3vw, 38px);
}

.feedback-modal__form label {
  display: block;
  color: #666;
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 500;
  line-height: 1.1;
}

.feedback-modal__form span {
  display: block;
  margin-top: 3px;
  color: #c7c1bd;
  font-size: clamp(8px, 0.86vw, 10px);
  font-weight: 400;
  line-height: 1.15;
}

.feedback-modal__form textarea {
  width: 100%;
  min-height: 128px;
  margin-top: 0;
  padding: 14px;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  background: #f9fafc;
  resize: none;
  color: var(--color-ink);
  font: inherit;
  font-size: clamp(13px, 1.35vw, 15px);
  font-weight: 500;
  line-height: 1.45;
  outline: 0;
}

.feedback-modal__form textarea::placeholder {
  color: #b9b9b9;
  opacity: 1;
}

.feedback-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}

.feedback-modal__cancel,
.feedback-modal__submit {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.feedback-modal__cancel {
  padding: 9px 14px;
  background: transparent;
  color: #ff9a9a;
  font-size: clamp(9px, 1vw, 10px);
  font-weight: 500;
}

.feedback-modal__submit {
  min-width: 112px;
  min-height: 46px;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.feedback-modal__submit:hover {
  transform: translateY(-1px);
}

.feedback-modal__submit:disabled {
  cursor: progress;
  opacity: 0.72;
}
