:root {
  --hd-paper: #fffdf6;
  --hd-paper-soft: #f8f5e8;
  --hd-mint: #e7f2eb;
  --hd-mint-strong: #cce3d7;
  --hd-ink: #315f5b;
  --hd-ink-soft: #66817c;
  --hd-line: #cbded5;
  --hd-green: #377b70;
  --hd-green-hover: #2d6b62;
  --hd-clay: #d98568;
  --hd-white: #ffffff;
  --hd-shadow: 0 24px 70px rgba(74, 124, 111, 0.13);
  --hd-display: "Shippori Mincho B1", serif;
  --hd-body: "Zen Kaku Gothic New", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.hojokin-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--hd-ink);
  background:
    linear-gradient(rgba(112, 163, 146, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 163, 146, 0.035) 1px, transparent 1px),
    var(--hd-paper);
  background-size: 32px 32px;
  font-family: var(--hd-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.hojokin-page a {
  color: inherit;
}

.hojokin-page button,
.hojokin-page a {
  -webkit-tap-highlight-color: transparent;
}

.hd-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--hd-white);
  background: var(--hd-green);
  border-radius: 3px;
  transform: translateY(-160%);
}

.hd-skip:focus {
  transform: translateY(0);
}

.hd-container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.hd-notice {
  position: relative;
  z-index: 30;
  padding: 9px 24px;
  color: #477069;
  background: #f0f6ee;
  border-bottom: 1px solid var(--hd-line);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.03em;
}

.hd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 246, 0.9);
  border-bottom: 1px solid rgba(122, 162, 149, 0.24);
  backdrop-filter: blur(16px);
}

.hd-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hd-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--hd-ink);
  text-decoration: none;
}

.hd-brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--hd-white);
  background: var(--hd-green);
  border-radius: 50% 50% 44% 56% / 48% 45% 55% 52%;
  font-family: var(--hd-display);
  font-weight: 700;
  box-shadow: 8px 7px 0 var(--hd-mint-strong);
}

.hd-brand-copy {
  display: grid;
  line-height: 1.15;
}

.hd-brand-copy strong {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.hd-brand-copy small {
  margin-top: 4px;
  color: var(--hd-ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hd-nav a {
  position: relative;
  color: var(--hd-ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.hd-nav a:not(.hd-nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--hd-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.hd-nav a:hover::after,
.hd-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hojokin-page .hd-nav .hd-nav-cta {
  padding: 10px 17px;
  color: var(--hd-white);
  background: var(--hd-green);
  border-radius: 3px;
}

.hd-menu {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--hd-ink);
  background: var(--hd-paper);
  border: 1px solid var(--hd-line);
  border-radius: 50%;
  font: inherit;
}

.hd-menu span,
.hd-menu span::before,
.hd-menu span::after {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.hd-menu span {
  position: relative;
}

.hd-menu span::before,
.hd-menu span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hd-menu span::before { top: -6px; }
.hd-menu span::after { top: 6px; }

.hd-hero {
  position: relative;
  padding: clamp(80px, 10vw, 146px) 0 112px;
  overflow: hidden;
}

.hd-hero::before {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  right: -14vw;
  top: -15%;
  border: 1px solid rgba(95, 147, 131, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(220, 237, 226, 0.42),
    0 0 0 108px rgba(238, 246, 237, 0.62);
}

.hd-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

.hd-eyebrow,
.hd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hd-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hd-eyebrow::before,
.hd-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hd-hero h1 {
  max-width: 760px;
  margin: 24px 0 24px;
  font-family: var(--hd-display);
  font-size: clamp(2.65rem, 5.6vw, 5.25rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.hd-hero h1 .hd-em {
  position: relative;
  color: var(--hd-clay);
  white-space: nowrap;
}

.hd-hero h1 .hd-em::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 0.05em;
  left: -3px;
  height: 0.16em;
  background: rgba(217, 133, 104, 0.18);
  border-radius: 50%;
  z-index: -1;
}

.hd-hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--hd-ink-soft);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.hd-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hd-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid var(--hd-green);
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hd-button::after {
  content: "↗";
  font-size: 0.9em;
}

.hd-button:hover,
.hd-button:focus-visible {
  transform: translateY(-2px);
}

.hojokin-page .hd-button-primary {
  color: var(--hd-white);
  background: var(--hd-green);
  box-shadow: 8px 8px 0 var(--hd-mint-strong);
}

.hojokin-page .hd-button-primary:hover,
.hojokin-page .hd-button-primary:focus-visible {
  background: var(--hd-green-hover);
  box-shadow: 5px 5px 0 var(--hd-mint-strong);
}

.hd-button-secondary {
  color: var(--hd-green);
  background: rgba(255, 255, 255, 0.55);
}

.hd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: var(--hd-ink-soft);
  font-size: 0.75rem;
}

.hd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hd-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--hd-clay);
  border-radius: 50%;
}

.hd-dossier {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hd-dossier::before {
  content: "";
  position: absolute;
  inset: 34px 38px 6px 2px;
  background: var(--hd-mint-strong);
  border-radius: 4px 22px 4px 4px;
  transform: rotate(-5deg);
  z-index: -2;
}

.hd-dossier::after {
  content: "";
  position: absolute;
  inset: 18px 10px 20px 28px;
  background: #f7e8da;
  border-radius: 3px;
  transform: rotate(4deg);
  z-index: -1;
}

.hd-document {
  position: absolute;
  inset: 0 22px 18px 18px;
  padding: 44px 42px;
  background:
    linear-gradient(90deg, transparent 0 33px, rgba(217, 133, 104, 0.16) 33px 34px, transparent 34px),
    repeating-linear-gradient(to bottom, transparent 0 35px, rgba(76, 124, 113, 0.12) 35px 36px),
    var(--hd-white);
  border: 1px solid rgba(102, 141, 130, 0.24);
  box-shadow: var(--hd-shadow);
  transform: rotate(-1deg);
}

.hd-document-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--hd-ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hd-stamp {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 54px;
  right: 34px;
  display: grid;
  place-items: center;
  color: var(--hd-clay);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--hd-display);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: rotate(11deg);
  opacity: 0.82;
}

.hd-document h2 {
  max-width: 260px;
  margin: 68px 0 34px;
  font-family: var(--hd-display);
  font-size: 1.7rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.hd-document-row {
  margin: 22px 0;
}

.hd-document-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--hd-ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hd-document-row i {
  width: var(--w, 88%);
  height: 8px;
  display: block;
  background: var(--hd-mint);
  border-radius: 99px;
  box-shadow: 0 15px 0 rgba(221, 233, 224, 0.72);
}

.hd-document-note {
  position: absolute;
  right: -28px;
  bottom: 56px;
  width: 178px;
  padding: 18px 20px;
  color: #6b756b;
  background: #fff2bb;
  border: 1px solid #efd984;
  box-shadow: 10px 16px 30px rgba(113, 111, 72, 0.12);
  font-size: 0.76rem;
  line-height: 1.7;
  transform: rotate(3deg);
}

.hd-document-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--hd-ink);
}

.hd-section {
  position: relative;
  padding: clamp(84px, 10vw, 136px) 0;
}

.hd-section-soft {
  background: var(--hd-mint);
}

.hd-section-warm {
  background: #fbf1e7;
}

.hd-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 1.38fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 58px;
}

.hd-section-index {
  display: block;
  margin-bottom: 12px;
  color: var(--hd-clay);
  font-family: var(--hd-display);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.hd-section h2 {
  margin: 0;
  font-family: var(--hd-display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.hd-section-intro {
  max-width: 600px;
  margin: 0 0 4px auto;
  color: var(--hd-ink-soft);
}

.hd-concerns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.hd-concern {
  grid-column: span 6;
  min-height: 210px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hd-line);
  border-radius: 3px;
  box-shadow: 0 16px 45px rgba(74, 124, 111, 0.07);
}

.hd-concern:nth-child(2),
.hd-concern:nth-child(3) {
  transform: translateY(26px);
}

.hd-concern-no {
  color: var(--hd-clay);
  font-family: var(--hd-display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.hd-concern h3 {
  margin: 42px 0 10px;
  font-family: var(--hd-display);
  font-size: 1.35rem;
  line-height: 1.5;
}

.hd-concern p {
  margin: 0;
  color: var(--hd-ink-soft);
  font-size: 0.9rem;
}

.hd-flow {
  counter-reset: hd-step;
}

.hd-flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  gap: 34px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(70, 122, 111, 0.24);
  counter-increment: hd-step;
}

.hd-flow-item:last-child {
  border-bottom: 1px solid rgba(70, 122, 111, 0.24);
}

.hd-flow-no {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--hd-clay);
  font-family: var(--hd-display);
  font-size: 2.25rem;
  line-height: 1;
}

.hd-flow-no::after {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
}

.hd-flow-copy h3 {
  margin: 0 0 13px;
  font-family: var(--hd-display);
  font-size: 1.45rem;
  line-height: 1.5;
}

.hd-flow-copy p {
  margin: 0;
  color: var(--hd-ink-soft);
  font-size: 0.92rem;
}

.hd-flow-tag {
  justify-self: end;
  padding: 9px 13px;
  color: var(--hd-green);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(55, 123, 112, 0.24);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  text-align: center;
}

.hd-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hd-role {
  position: relative;
  padding: 42px;
  border: 1px solid var(--hd-line);
  overflow: hidden;
}

.hd-role:first-child {
  background: var(--hd-paper);
}

.hd-role:last-child {
  background: var(--hd-mint);
}

.hd-role-label {
  color: var(--hd-clay);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hd-role h3 {
  margin: 18px 0 5px;
  font-family: var(--hd-display);
  font-size: 1.65rem;
}

.hd-role > p {
  margin: 0 0 28px;
  color: var(--hd-ink-soft);
  font-size: 0.82rem;
}

.hd-checks {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hd-checks li {
  position: relative;
  padding-left: 27px;
  color: var(--hd-ink);
  font-size: 0.9rem;
}

.hd-checks li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--hd-clay);
  font-family: var(--hd-display);
}

.hd-boundary {
  margin-top: 18px;
  padding: 22px 25px;
  color: var(--hd-ink-soft);
  background: #fff7e4;
  border: 1px solid #eadcb8;
  font-size: 0.82rem;
}

.hd-boundary strong {
  color: var(--hd-ink);
}

.hd-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hd-program {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--hd-line);
}

.hd-program-type {
  color: var(--hd-clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hd-program h3 {
  margin: 28px 0 12px;
  font-family: var(--hd-display);
  font-size: 1.25rem;
  line-height: 1.5;
}

.hd-program p {
  margin: 0;
  color: var(--hd-ink-soft);
  font-size: 0.83rem;
}

.hd-program small {
  margin-top: auto;
  padding-top: 22px;
  color: var(--hd-green);
  font-size: 0.7rem;
  font-weight: 700;
}

.hd-current-note {
  margin-top: 22px;
  padding-left: 18px;
  color: var(--hd-ink-soft);
  border-left: 2px solid var(--hd-clay);
  font-size: 0.82rem;
}

.hd-pricing {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.hd-price-card {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: var(--hd-white);
  border: 1px solid var(--hd-line);
}

.hd-price-card-featured {
  background: var(--hd-mint);
  border-color: #a8cdbd;
}

.hd-price-label {
  color: var(--hd-clay);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hd-price-card h3 {
  margin: 16px 0 28px;
  font-family: var(--hd-display);
  font-size: 1.55rem;
}

.hd-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 26px;
  font-family: var(--hd-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.hd-price small {
  color: var(--hd-ink-soft);
  font-family: var(--hd-body);
  font-size: 0.73rem;
}

.hd-price-card .hd-checks {
  margin-bottom: 34px;
}

.hd-price-card .hd-button {
  margin-top: auto;
  align-self: flex-start;
}

.hd-price-footnote {
  margin-top: 24px;
  color: var(--hd-ink-soft);
  font-size: 0.78rem;
}

.hd-legal {
  margin-top: 34px;
  padding: 28px 30px;
  background: var(--hd-paper-soft);
  border: 1px solid #dfd9c2;
  font-size: 0.78rem;
}

.hd-legal strong {
  color: var(--hd-ink);
}

.hd-faq {
  max-width: 860px;
  margin-left: auto;
}

.hd-faq details {
  border-top: 1px solid var(--hd-line);
}

.hd-faq details:last-child {
  border-bottom: 1px solid var(--hd-line);
}

.hd-faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-family: var(--hd-display);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.hd-faq summary::-webkit-details-marker {
  display: none;
}

.hd-faq summary::after {
  content: "＋";
  position: absolute;
  right: 4px;
  top: 23px;
  color: var(--hd-clay);
  font-family: var(--hd-body);
  font-size: 1.2rem;
  font-weight: 400;
}

.hd-faq details[open] summary::after {
  content: "−";
}

.hd-faq-answer {
  padding: 0 64px 26px 0;
  color: var(--hd-ink-soft);
  font-size: 0.9rem;
}

.hd-contact {
  padding: clamp(90px, 11vw, 140px) 0;
}

.hd-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
  padding: clamp(44px, 7vw, 78px);
  background: var(--hd-mint);
  border: 1px solid #bdd6ca;
  overflow: hidden;
}

.hd-contact-card::after {
  content: "相談";
  position: absolute;
  right: -10px;
  top: -34px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--hd-display);
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hd-contact-copy,
.hd-contact-action {
  position: relative;
  z-index: 1;
}

.hd-contact h2 {
  margin: 18px 0;
  max-width: 670px;
}

.hd-contact p {
  margin: 0;
  color: var(--hd-ink-soft);
}

.hd-contact-action {
  justify-self: end;
}

.hd-footer {
  padding: 54px 0 26px;
  color: var(--hd-ink-soft);
  background: #dcece4;
  border-top: 1px solid #c2d9cf;
}

.hd-footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(71, 112, 105, 0.22);
}

.hd-footer-brand {
  font-family: var(--hd-display);
  font-size: 1.5rem;
}

.hd-footer-brand small {
  display: block;
  margin-top: 8px;
  font-family: var(--hd-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.hd-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.hd-footer-nav a {
  font-size: 0.75rem;
  text-decoration: none;
}

.hd-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.66rem;
}

.hd-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hd-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hd-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--hd-paper);
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow);
  }

  .hd-nav.is-open {
    display: flex;
  }

  .hd-nav a {
    padding: 12px 10px;
  }

  .hd-menu {
    display: grid;
  }

  .hd-hero-grid {
    grid-template-columns: 1fr;
  }

  .hd-hero-copy {
    max-width: 780px;
  }

  .hd-dossier {
    width: min(560px, 92%);
    margin: 0 auto;
  }

  .hd-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hd-section-intro {
    margin-left: 0;
  }

  .hd-flow-item {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .hd-flow-tag {
    grid-column: 2;
    justify-self: start;
  }

  .hd-programs {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-contact-card {
    grid-template-columns: 1fr;
  }

  .hd-contact-action {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hd-container {
    width: min(100% - 32px, 1160px);
  }

  .hd-notice {
    padding-inline: 16px;
    text-align: left;
  }

  .hd-header-inner {
    min-height: 64px;
  }

  .hd-brand-copy small {
    display: none;
  }

  .hd-hero {
    padding: 68px 0 84px;
  }

  .hd-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .hd-hero h1 .hd-em {
    white-space: normal;
  }

  .hd-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hd-button {
    width: 100%;
  }

  .hd-dossier {
    width: 100%;
    min-height: 426px;
  }

  .hd-document {
    inset: 0 10px 12px 8px;
    padding: 30px 28px;
  }

  .hd-document h2 {
    max-width: 210px;
    margin-top: 58px;
    font-size: 1.35rem;
  }

  .hd-stamp {
    width: 60px;
    height: 60px;
    top: 48px;
    right: 22px;
    font-size: 0.68rem;
  }

  .hd-document-note {
    right: -4px;
    bottom: 34px;
    width: 154px;
  }

  .hd-section {
    padding: 78px 0;
  }

  .hd-section-head {
    margin-bottom: 38px;
  }

  .hd-concerns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hd-concern {
    grid-column: auto;
    min-height: 0;
    padding: 26px;
  }

  .hd-concern:nth-child(2),
  .hd-concern:nth-child(3) {
    transform: none;
  }

  .hd-concern h3 {
    margin-top: 22px;
  }

  .hd-flow-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .hd-flow-tag {
    grid-column: auto;
  }

  .hd-roles,
  .hd-programs,
  .hd-pricing {
    grid-template-columns: 1fr;
  }

  .hd-role,
  .hd-price-card {
    padding: 30px 26px;
  }

  .hd-price-card {
    min-height: 0;
  }

  .hd-contact-card {
    padding: 40px 26px;
  }

  .hd-contact-card::after {
    font-size: 6rem;
  }

  .hd-footer-top,
  .hd-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hd-button,
  .hd-nav a::after {
    transition: none;
  }
}
