@font-face {
  font-family: "Opensans Variablefont Wdth Wght";
  src: url("/assets/6880b41ca447d28bf2da994c_OpenSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/6880b41ca447d28bf2da994c_OpenSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/outfit-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/outfit-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --hc-navy: #061c30;
  --hc-ink: #111111;
  --hc-muted: #444444;
  --hc-line: #dce4ea;
  --hc-blue: #6ab4e6;
  --hc-blue-dark: #2f74a3;
  --hc-blue-soft: #f0f7fc;
  --hc-bg: #f6f6f6;
  --hc-white: #ffffff;
  --hc-radius: 8px;
  --hc-shadow: 0 18px 46px rgba(6, 28, 48, 0.08);
  --hc-font: "Opensans Variablefont Wdth Wght", "Open Sans", Arial, sans-serif;
}

.hc-shell-nav,
.hc-shell-footer,
.hc-page {
  font-family: var(--hc-font);
  color: var(--hc-ink);
  letter-spacing: 0;
}

.hc-shell-nav *,
.hc-shell-footer *,
.hc-page * {
  box-sizing: border-box;
}

.hc-shell-nav a,
.hc-shell-footer a,
.hc-page a {
  color: inherit;
  text-decoration: none;
}

.hc-shell-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 238, 0.9);
  backdrop-filter: blur(16px);
}

.hc-nav-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hc-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 156px;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--hc-ink);
}

.hc-brand img {
  width: 58px;
  height: 58px;
  display: block;
  margin: -8px 0;
}

.hc-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.hc-nav-item {
  position: relative;
}

.hc-nav-item::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 14px;
  display: none;
}

.hc-nav-trigger,
.hc-nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--hc-radius);
  color: #24364a;
  font: 600 0.93rem/1 var(--hc-font);
  cursor: pointer;
  white-space: nowrap;
}

.hc-nav-trigger:hover,
.hc-nav-link:hover,
.hc-nav-item:focus-within .hc-nav-trigger,
.hc-nav-item[data-hover-open="true"] .hc-nav-trigger,
.hc-nav-item[data-open="true"] .hc-nav-trigger {
  color: var(--hc-blue-dark);
  background: var(--hc-blue-soft);
}

.hc-chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.hc-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
  transform-origin: top center;
  width: min(720px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--hc-line);
  border-radius: 12px;
  background: var(--hc-white);
  box-shadow: var(--hc-shadow);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0 round 12px);
  pointer-events: none;
  z-index: 10000;
  overflow: hidden;
  transition:
    clip-path 340ms cubic-bezier(0.4, 0, 0.6, 1),
    opacity 220ms ease,
    transform 340ms cubic-bezier(0.4, 0, 0.6, 1),
    visibility 0s linear 340ms;
  will-change: clip-path, opacity, transform;
}

.hc-nav-item[data-hover-open="true"]::after,
.hc-nav-item[data-open="true"]::after,
.hc-nav-item:focus-within::after {
  display: block;
}

.hc-nav-item[data-hover-open="true"] .hc-dropdown,
.hc-nav-item[data-open="true"] .hc-dropdown,
.hc-nav-item:focus-within .hc-dropdown {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0 round 12px);
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

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

.hc-dropdown-grid.single {
  grid-template-columns: 1fr;
}

.hc-drop-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--hc-radius);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 280ms cubic-bezier(0.4, 0, 0.6, 1),
    transform 330ms cubic-bezier(0.4, 0, 0.6, 1),
    border-color 180ms ease,
    background-color 180ms ease;
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.hc-nav-item[data-hover-open="true"] .hc-drop-card,
.hc-nav-item[data-open="true"] .hc-drop-card,
.hc-nav-item:focus-within .hc-drop-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--hc-drop-delay, 96ms), var(--hc-drop-delay, 96ms), 0ms, 0ms;
}

.hc-drop-card:nth-child(1) { --hc-drop-delay: 96ms; }
.hc-drop-card:nth-child(2) { --hc-drop-delay: 120ms; }
.hc-drop-card:nth-child(3) { --hc-drop-delay: 144ms; }
.hc-drop-card:nth-child(4) { --hc-drop-delay: 168ms; }
.hc-drop-card:nth-child(5) { --hc-drop-delay: 192ms; }
.hc-drop-card:nth-child(6) { --hc-drop-delay: 216ms; }
.hc-drop-card:nth-child(7) { --hc-drop-delay: 240ms; }
.hc-drop-card:nth-child(8) { --hc-drop-delay: 264ms; }
.hc-drop-card:nth-child(9) { --hc-drop-delay: 288ms; }
.hc-drop-card:nth-child(10) { --hc-drop-delay: 312ms; }
.hc-drop-card:nth-child(11) { --hc-drop-delay: 336ms; }
.hc-drop-card:nth-child(12) { --hc-drop-delay: 360ms; }

.hc-drop-card:hover,
.hc-drop-card:focus {
  border-color: #cfe4f3;
  background: #f8fbfe;
}

.hc-drop-text {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.hc-drop-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--hc-radius);
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  background: var(--hc-blue-soft);
  border: 1px solid #cfe4f3;
}

.hc-drop-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hc-drop-title {
  display: block;
  color: var(--hc-ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.hc-drop-copy {
  display: block;
  color: var(--hc-muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .hc-dropdown,
  .hc-drop-card {
    transition: none;
  }
}

.hc-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hc-signin {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
}

.hc-signin:hover {
  color: var(--hc-blue-dark);
}

.hc-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--hc-radius);
  border: 1px solid #3a92cc;
  background: linear-gradient(180deg, #7bc3f0 0%, #4fa2d7 100%);
  color: #061c30;
  box-shadow: 0 10px 26px rgba(47, 116, 163, 0.22);
  font: 700 0.93rem/1 var(--hc-font);
  white-space: nowrap;
}

.hc-btn.hc-btn-trial {
  background: #76BFED;
  border-color: #76BFED;
  color: #111111;
  box-shadow: 0 10px 26px rgba(118, 191, 237, 0.24);
}

.hc-btn.hc-btn-trial:hover {
  background: #76BFED;
  border-color: #76BFED;
  color: #111111;
  box-shadow: 0 14px 30px rgba(118, 191, 237, 0.32);
}

.hc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(47, 116, 163, 0.28);
}

.hc-btn.secondary {
  background: #ffffff;
  border-color: #bfd7ea;
  color: var(--hc-ink);
  box-shadow: none;
}

.hc-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #ffffff;
  color: var(--hc-ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hc-mobile-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}

.hc-mobile-toggle span::before,
.hc-mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hc-mobile-toggle span::before {
  top: -6px;
}

.hc-mobile-toggle span::after {
  top: 6px;
}

.hc-shell-footer {
  background: var(--hc-navy);
  color: #d9e8f3;
  padding: 72px 0 28px;
}

.hc-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hc-footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.hc-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.55rem;
}

.hc-footer-brand img {
  width: 64px;
  height: 64px;
  margin: -10px 0;
}

.hc-footer-copy {
  max-width: 270px;
  margin: 18px 0 0;
  color: #a9c1d4;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.7;
}

.hc-shell-footer .hc-footer-col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-footer-col a {
  display: block;
  padding: 6px 0;
  color: #c2d5e5;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.4;
}

.hc-footer-col a:hover {
  color: var(--hc-blue);
}

.hc-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #9ab2c6;
  font-size: 0.86rem;
  font-weight: 600;
}

.hc-page {
  background: #ffffff;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.hc-page-main {
  overflow: hidden;
  background: #ffffff;
  width: 100%;
}

.hc-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #070d0e;
  border-bottom-right-radius: 56px;
  border-bottom-left-radius: 56px;
  padding: 84px 0 72px;
  width: 100%;
}

.hc-page-hero::before {
  content: "";
  position: absolute;
  inset: -1.6rem -4rem auto auto;
  z-index: 0;
  width: min(68.5rem, 82vw);
  height: min(20.625rem, 30vw);
  background: url("/assets/ecbe9942_67caea8bd941f7852bdf5c3a_Frame_1000001968.svg") top right / contain no-repeat;
  pointer-events: none;
}

.hc-page-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 26.5625vw;
  max-height: 23.9063rem;
  background: url("/assets/9ac9ad3b_67caea8beb54e8ea98a3d428_Vector.svg") top center / 100% 100% no-repeat;
  pointer-events: none;
}

.hc-page-hero .hc-page-wrap {
  position: relative;
  z-index: 2;
}

.hc-page-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid #cfe4f3;
  border-radius: 999px;
  background: var(--hc-blue-soft);
  color: var(--hc-blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
}

.hc-page-hero .hc-kicker {
  border-color: rgba(153, 204, 238, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #bfe3fb;
}

.hc-page h1 {
  margin: 0;
  color: var(--hc-ink);
  font-size: 2.85rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hc-page-hero h1 {
  color: #ffffff;
}

.hc-page h2 {
  margin: 0;
  color: var(--hc-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.hc-page h3 {
  margin: 0;
  color: var(--hc-ink);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
}

.hc-lead {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--hc-muted);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.62;
}

.hc-page-hero .hc-lead {
  color: #d4d4d4;
  font-size: 17px;
  line-height: 1.5;
}

.hc-page-hero .hc-btn {
  font-size: 14px;
  font-weight: 900;
  line-height: 21px;
}

.hc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hc-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hc-metric {
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
}

.hc-page-hero .hc-metric {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.hc-metric strong {
  display: block;
  color: var(--hc-ink);
  font-size: 1.35rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.hc-page-hero .hc-metric strong {
  color: #ffffff;
}

.hc-metric.is-long-price strong {
  font-size: 1.12rem;
}

.hc-metric.is-very-long-price strong {
  font-size: 1rem;
}

.hc-metric span {
  color: var(--hc-muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
}

.hc-page-hero .hc-metric span {
  color: rgba(255, 255, 255, 0.68);
}

.hc-visual-card {
  border: 1px solid #dce4ea;
  border-radius: var(--hc-radius);
  background: #ffffff;
  box-shadow: var(--hc-shadow);
  overflow: hidden;
}

.hc-page-hero .hc-visual-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.hc-visual-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  background: #fbfcff;
}

.hc-visual-card.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.hc-visual-card.phone-grid img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #f8fbfe;
  padding: 18px;
}

.hc-section {
  position: relative;
  background: #ffffff;
  border-top: 1px solid rgba(220, 228, 234, 0.62);
  padding: 64px 0;
}

.hc-section.alt {
  background: linear-gradient(180deg, #f6f6f6 0%, #fbfcff 100%);
}

.hc-page-main > .hc-section:nth-of-type(4n+1):not(.hc-page-hero) {
  background: linear-gradient(180deg, #f0f7fc 0%, #fbfcff 100%);
}

.hc-page-main > .hc-section:last-child {
  background: #ffffff;
}

.hc-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.hc-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hc-section-head p {
  margin: 16px 0 0;
  color: var(--hc-muted);
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.6;
}

.hc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hc-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hc-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hc-card {
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(6, 28, 48, 0.04);
}

.hc-card img.hc-card-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 18px;
}

.hc-card p,
.hc-step p,
.hc-plain-list li,
.hc-faq p {
  color: #5b7086;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
}

.hc-card p {
  margin: 12px 0 0;
}

.hc-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

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

.hc-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.hc-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hc-blue);
  color: var(--hc-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.hc-step p {
  margin: 7px 0 0;
}

.hc-feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3b5267;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
}

.hc-feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--hc-blue);
  flex: 0 0 9px;
}

.hc-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hc-logo-card {
  min-height: 126px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #ffffff;
  padding: 18px;
  color: #334155;
  font-weight: 800;
  text-align: center;
}

.hc-logo-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hc-price-card {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #b8d8ee;
  border-radius: var(--hc-radius);
  background: linear-gradient(135deg, #ffffff 0%, #eff8ff 100%);
  box-shadow: var(--hc-shadow);
  padding: 34px;
}

.hc-price {
  color: var(--hc-ink);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1;
}

.hc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hc-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: #ffffff;
  box-shadow: var(--hc-shadow);
  padding: 28px;
}

.hc-plan-card.featured {
  border-color: #7ec6f0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
  box-shadow: 0 24px 58px rgba(6, 28, 48, 0.12);
}

.hc-plan-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  background: #76BFED;
  color: #111111;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hc-plan-header {
  display: grid;
  gap: 12px;
  min-height: 174px;
  align-content: start;
}

.hc-plan-header > .hc-kicker {
  width: fit-content;
  justify-self: start;
}

.hc-plan-header p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.hc-plan-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 8px;
  row-gap: 6px;
  color: var(--hc-ink);
  line-height: 1;
  max-width: 100%;
  min-width: 0;
}

.hc-plan-price small {
  grid-column: 1 / -1;
  color: var(--hc-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hc-plan-price span[data-hc-price] {
  color: var(--hc-ink);
  font-size: 4rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 0.96;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.hc-plan-price span:not([data-hc-price]) {
  color: var(--hc-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 0.32rem;
  white-space: nowrap;
}

.hc-plan-price.is-long-price span[data-hc-price] {
  font-size: 3.08rem;
}

.hc-plan-price.is-very-long-price span[data-hc-price] {
  font-size: 2.72rem;
}

[data-hc-price-monthly] {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

[data-hc-price-monthly].is-long-price {
  font-size: 0.9em;
}

[data-hc-price-monthly].is-very-long-price {
  font-size: 0.82em;
}

.hc-plan-card .hc-feature-list {
  margin-top: 0;
}

.hc-cta-band {
  border-radius: var(--hc-radius);
  background: linear-gradient(135deg, #061c30 0%, #0f3453 100%);
  color: #ffffff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.hc-cta-band h2 {
  color: #ffffff;
}

.hc-cta-band p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #c7d9e8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.hc-faq {
  border-top: 1px solid var(--hc-line);
  padding: 22px 0;
}

.hc-faq h3 {
  font-size: 1.05rem;
}

.hc-faq p {
  margin: 10px 0 0;
}

.hc-plain-list {
  padding-left: 18px;
}

.hc-plain-list li {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .hc-nav-menu,
  .hc-nav-actions {
    display: none;
  }

  .hc-mobile-toggle {
    display: inline-flex;
  }

  .hc-shell-nav[data-mobile-open="true"] .hc-nav-menu,
  .hc-shell-nav[data-mobile-open="true"] .hc-nav-actions {
    display: flex;
  }

  .hc-shell-nav[data-mobile-open="true"] .hc-nav-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .hc-shell-nav[data-mobile-open="true"] .hc-nav-menu {
    order: 3;
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hc-shell-nav[data-mobile-open="true"] .hc-nav-actions {
    order: 4;
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hc-nav-trigger,
  .hc-nav-link,
  .hc-signin,
  .hc-btn {
    width: 100%;
    justify-content: space-between;
  }

  .hc-nav-item::after {
    display: none !important;
  }

  .hc-dropdown {
    position: static;
    transform: none;
    clip-path: inset(0 0 100% 0 round 12px);
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition:
      opacity 160ms ease,
      max-height 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      clip-path 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      padding 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 220ms;
  }

  .hc-nav-item[data-open="true"] .hc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: inset(0 0 0 0 round 12px);
    pointer-events: auto;
    max-height: 900px;
    padding-top: 16px;
    padding-bottom: 16px;
    transition-delay: 0s;
  }

  .hc-nav-item:hover .hc-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: none;
    clip-path: inset(0 0 100% 0 round 12px);
    pointer-events: none;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hc-nav-item[data-open="true"]:hover .hc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: inset(0 0 0 0 round 12px);
    pointer-events: auto;
    max-height: 900px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hc-dropdown-grid,
  .hc-dropdown-grid.single {
    grid-template-columns: 1fr;
  }

  .hc-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-hero-grid,
  .hc-media-grid,
  .hc-price-card,
  .hc-pricing-grid,
  .hc-cta-band {
    grid-template-columns: 1fr;
  }

  .hc-plan-header {
    min-height: auto;
  }

  .hc-plan-badge {
    position: static;
  }

  .hc-card-grid,
  .hc-card-grid.two,
  .hc-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .hc-page h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 640px) {
  .hc-nav-inner,
  .hc-page-wrap,
  .hc-footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .hc-page-hero {
    padding: 62px 0 44px;
  }

  .hc-section {
    padding: 58px 0;
  }

  .hc-metrics,
  .hc-card-grid,
  .hc-card-grid.two,
  .hc-card-grid.four,
  .hc-pricing-grid,
  .hc-logo-grid,
  .hc-footer-top {
    grid-template-columns: 1fr;
  }

  .hc-hero-actions {
    flex-direction: column;
  }

  .hc-btn.secondary,
  .hc-page .hc-btn {
    width: 100%;
  }

  .hc-visual-card.phone-grid {
    grid-template-columns: 1fr;
  }

  .hc-cta-band,
  .hc-price-card {
    padding: 26px;
  }

  .hc-plan-price span[data-hc-price] {
    font-size: 3.15rem;
  }

  .hc-plan-price.is-long-price span[data-hc-price] {
    font-size: 2.55rem;
  }

  .hc-plan-price.is-very-long-price span[data-hc-price] {
    font-size: 2.25rem;
  }
}
