:root {
  --hc-night: #0F1724;
  --hc-slate: #233044;
  --hc-slate-2: #2e3f57;
  --hc-steel: #4a6080;
  --hc-mist: #8898aa;
  --hc-fog: #c8d4e0;
  --hc-off: #F7F8FA;
  --hc-white: #ffffff;
  --hc-line: rgba(15,23,36,0.10);
  --hc-line-md: rgba(15,23,36,0.18);
  --hc-accent: #5b7a9e;
  --hc-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --hc-sans: "DM Sans", Arial, Helvetica, system-ui, sans-serif;
}

.hc-faq-shell {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 74px 0 76px;
  background: radial-gradient(circle at 50% 0%, rgba(91,122,158,0.10) 0%, rgba(247,248,250,0) 40%), linear-gradient(180deg, #ffffff 0%, var(--hc-off) 100%);
  color: var(--hc-night);
  font-family: var(--hc-sans);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.hc-faq-shell * {
  box-sizing: border-box;
}

.hc-faq-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hc-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hc-steel);
  margin-bottom: 18px;
}

.hc-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 900ms ease, transform 900ms ease;
}

.js .hc-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hc-faq-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 940px;
}

.hc-faq-head h1 {
  font-family: var(--hc-serif);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--hc-night);
  margin: 0 0 22px;
}

.hc-faq-head p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.78;
  color: var(--hc-slate);
  font-weight: 300;
}

.hc-faq-panel {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--hc-line);
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(15,23,36,0.08);
  overflow: hidden;
}

.hc-faq-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--hc-line);
  background: rgba(255,255,255,0.74);
}

.hc-faq-tab {
  appearance: none;
  border: 0;
  border-right: 1px solid var(--hc-line);
  background: transparent;
  min-height: 102px;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--hc-night);
  font-family: var(--hc-sans);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
  position: relative;
}

.hc-faq-tab:last-child {
  border-right: 0;
}

.hc-faq-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  transition: background 180ms ease;
}

.hc-faq-tab.is-active {
  background: linear-gradient(180deg, rgba(247,248,250,0.98) 0%, rgba(232,237,242,0.72) 100%);
}

.hc-faq-tab.is-active::after {
  background: var(--hc-steel);
}

.hc-faq-tab:hover {
  color: var(--hc-steel);
}

.hc-faq-tab-icon svg,
.hc-faq-cta-icon svg,
.hc-faq-benefits svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--hc-night);
}

.hc-faq-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px 36px 0;
}

.hc-faq-search {
  flex: 1;
  max-width: 430px;
  position: relative;
}

.hc-faq-search input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--hc-line);
  border-radius: 2px;
  background: var(--hc-white);
  padding: 0 16px;
  font-family: var(--hc-sans);
  color: var(--hc-night);
  font-size: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hc-faq-search input:focus {
  border-color: rgba(74,96,128,0.52);
  box-shadow: 0 0 0 4px rgba(91,122,158,0.10);
}

.hc-faq-open {
  border: 0;
  background: transparent;
  color: var(--hc-steel);
  font-family: var(--hc-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 0;
}

.hc-faq-content {
  padding: 28px 36px 0;
}

.hc-faq-section {
  display: none;
}

.hc-faq-section.is-active {
  display: block;
}

.hc-faq-item {
  border: 1px solid var(--hc-line);
  background: var(--hc-white);
  border-radius: 4px;
  margin-bottom: 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hc-faq-item.is-open {
  border-color: rgba(74,96,128,0.28);
  box-shadow: 0 10px 28px rgba(15,23,36,0.05);
}

.hc-faq-item.is-hidden {
  display: none;
}

.hc-faq-question {
  width: 100%;
  min-height: 62px;
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  text-align: left;
  cursor: pointer;
  color: var(--hc-night);
  font-family: var(--hc-sans);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.hc-faq-plus {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  position: relative;
}

.hc-faq-plus::before,
.hc-faq-plus::after {
  content: "";
  position: absolute;
  background: var(--hc-night);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hc-faq-plus::before {
  width: 14px;
  height: 1.5px;
}

.hc-faq-plus::after {
  width: 1.5px;
  height: 14px;
}

.hc-faq-item.is-open .hc-faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hc-faq-answer {
  padding: 0 28px 24px;
}

.hc-faq-answer p {
  margin: 0;
  max-width: 850px;
  font-size: 14px;
  line-height: 1.78;
  color: var(--hc-slate);
  font-weight: 300;
}

.hc-faq-inline-cta {
  margin: 34px 36px 36px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--hc-line);
}

.hc-faq-inline-cta p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hc-night);
  font-weight: 700;
}

.hc-faq-inline-cta a,
.hc-faq-final-cta a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--hc-night);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(74,96,128,0.34);
  padding-bottom: 9px;
}

.hc-faq-cta-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--hc-line-md);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--hc-night);
}

.hc-faq-benefits {
  margin-top: 48px;
  border: 1px solid var(--hc-line);
  background: rgba(255,255,255,0.72);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hc-faq-benefits article {
  padding: 32px 34px 30px;
  border-right: 1px solid var(--hc-line);
}

.hc-faq-benefits article:last-child {
  border-right: 0;
}

.hc-faq-benefits h3,
.hc-situation-grid h3 {
  margin: 18px 0 14px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-night);
  font-weight: 700;
}

.hc-faq-benefits p,
.hc-situation-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.72;
  color: var(--hc-slate);
  font-weight: 300;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hc-faq-situations {
  margin-top: 58px;
}

.hc-situation-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(210px, 1fr));
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--hc-line);
  background: var(--hc-white);
}

.hc-situation-grid article {
  min-height: 185px;
  padding: 28px 24px;
  border-right: 1px solid var(--hc-line);
  min-width: 0;
  overflow: hidden;
}

.hc-situation-grid article:last-child {
  border-right: 0;
}

.hc-situation-grid h3 {
  margin-top: 0;
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hc-faq-final-cta {
  text-align: center;
  padding: 60px 0 0;
}

.hc-faq-final-cta h2 {
  font-family: var(--hc-serif);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 300;
  color: var(--hc-night);
  margin: 0 0 14px;
}

.hc-faq-final-cta p {
  margin: 0 0 24px;
  color: var(--hc-slate);
  font-size: 14px;
  line-height: 1.7;
}

.hc-faq-final-cta a {
  border: 0;
  background: var(--hc-night);
  color: var(--hc-white);
  padding: 17px 38px;
  border-radius: 3px;
  box-shadow: 0 12px 24px rgba(15,23,36,0.16);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 1050px) {
  .hc-faq-tabs {
    grid-template-columns: 1fr;
  }

  .hc-faq-tab {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-faq-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-faq-benefits article:nth-child(2) {
    border-right: 0;
  }

  .hc-faq-benefits article:nth-child(1),
  .hc-faq-benefits article:nth-child(2) {
    border-bottom: 1px solid var(--hc-line);
  }
}

@media (max-width: 680px) {
  .hc-faq-shell {
    padding: 52px 0 60px;
  }

  .hc-faq-wrap {
    width: calc(100vw - 34px);
  }

  .hc-faq-head {
    text-align: left;
    margin-bottom: 32px;
  }

  .hc-faq-head h1 {
    font-size: 38px;
  }

  .hc-faq-tools {
    display: block;
    padding: 22px 18px 0;
  }

  .hc-faq-search {
    max-width: none;
  }

  .hc-faq-open {
    margin-top: 12px;
  }

  .hc-faq-content {
    padding: 20px 18px 0;
  }

  .hc-faq-question {
    padding: 17px 18px;
    font-size: 14px;
  }

  .hc-faq-answer {
    padding: 0 18px 20px;
  }

  .hc-faq-inline-cta {
    margin: 26px 18px 28px;
    padding: 24px 0 0;
    grid-template-columns: 1fr;
  }

  .hc-faq-benefits {
    grid-template-columns: 1fr;
  }

  .hc-faq-benefits article,
  .hc-faq-benefits article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-faq-benefits article:last-child {
    border-bottom: 0;
  }
}
