.hero .eyebrow {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy b {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.brand-copy b span {
  color: var(--orange);
}

.brand-copy small {
  margin-left: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-theme {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 18px 13px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--navy), #122b58);
  box-shadow: 0 13px 30px #0b1c3d1f;
}

.product-theme b {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.015em;
}

.product-theme b span {
  color: var(--orange);
}

.product-theme small {
  color: #dbe7ff;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.07em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(46px, 4.15vw, 62px);
  line-height: 1.14;
}

.hero .intro {
  max-width: 620px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 230px;
  padding: 16px 19px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px #1557e82b;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px #1557e83b;
}

.hero-cta:focus-visible {
  outline: 3px solid #ffb27f;
  outline-offset: 3px;
}

.hero-proof {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.brand-promise {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 560px) {
  .nav {
    height: auto;
    min-height: 132px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .brand {
    width: 100%;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1.14fr 0.86fr;
    width: 100%;
    gap: 8px;
  }

  .nav-actions .ghost,
  .nav-actions .schedule-button {
    min-width: 0;
    min-height: 42px;
    padding: 9px 7px;
    font-size: 12px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .nav-actions .schedule-button {
    gap: 6px;
  }

  .brand-copy b {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .product-theme {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.18;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-proof {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta {
    transition: none;
  }
}
