:root {
  --color-bg: #f5f7f6;
  --color-surface: #ffffff;
  --color-surface-alt: #edf3ef;
  --color-primary: #18a56b;
  --color-primary-soft: rgba(24, 165, 107, 0.08);
  --color-primary-strong: #0c7a4a;
  /* ヘッダー「コラム」など、開いている／ホバー中のナビタブ用の薄い緑 */
  --color-nav-tab-open: #2eb87a;
  --color-accent: #d7a94b;
  --color-text: #1a1c1b;
  --color-text-soft: #5f6663;
  --color-border-subtle: #dde4df;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.04);
  --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, system-ui, "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--color-text);
  background: #f5f7f6;
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* backdrop-filter は子のドロップダウンが消える環境があるため、不透明寄りの背景で代用 */
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(221, 228, 223, 0.9);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 18px;
  overflow: visible;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.98rem;
  color: #1f2722;
  display: flex;
  flex-direction: column;
}

.logo-text-en {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa29d;
}

.site-nav {
  display: flex;
  align-items: center;
  overflow: visible;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.nav-list a {
  font-size: 0.9rem;
  color: #3c423f;
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-primary-strong);
}

.nav-list a::after {
  content: none;
}

/* ヘッダー：コラム ホバーでサブメニュー */
.nav-item-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown-trigger {
  display: inline-block;
  font-size: 0.9rem;
  color: #3c423f;
  font-weight: 500;
  padding: 0 0 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  text-underline-offset: 3px;
}

a.nav-dropdown-trigger {
  cursor: pointer;
}

/* 開いているタブ：薄い緑＋下線（ホバー・フォーカス・ドロップダウン表示中） */
.nav-dropdown-trigger:hover,
.nav-item-dropdown:hover .nav-dropdown-trigger,
.nav-item-dropdown:focus-within .nav-dropdown-trigger,
.nav-item-dropdown.is-dropdown-open .nav-dropdown-trigger,
.nav-dropdown-trigger:focus-visible {
  color: var(--color-nav-tab-open);
  text-decoration: underline;
  text-decoration-color: var(--color-nav-tab-open);
}

.nav-dropdown-panel {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(221, 228, 223, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
  z-index: 5000;
}

.nav-item-dropdown:hover .nav-dropdown-panel,
.nav-item-dropdown:focus-within .nav-dropdown-panel,
.nav-item-dropdown.is-dropdown-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-panel a {
  display: block;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #3c423f;
  padding-bottom: 8px;
  white-space: nowrap;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--color-primary-strong);
  background: rgba(237, 243, 239, 0.65);
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.16s ease-out, color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.08s ease-out, border-color 0.16s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00b36b, #35c98a);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 45px rgba(23, 164, 104, 0.35);
}

.btn-outline {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, #00b36b, #35c98a);
}

.btn-outline:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #18a56b, #35c98a);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(28, 124, 84, 0.18);
  color: var(--color-primary-strong);
}

.btn-ghost:hover {
  background: rgba(237, 243, 239, 0.95);
}

.btn-lg {
  padding: 12px 26px;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
  min-height: 60vh;
  background: #f5f7f6;
  color: #202321;
}

.hero-gradient {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 0 0, rgba(87, 230, 153, 0.24), transparent 55%);
  opacity: 0.5;
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary-strong);
  margin: 0 0 8px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: 1.3;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}

.hero-lead {
  margin: 0 0 1em;
  color: var(--color-text-soft);
  font-size: 0.96rem;
}

.hero-copy .hero-lead:last-of-type {
  margin-bottom: 24px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  background: #dfe7e2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  /* ゆっくりフェード＋軽いぼかしで「ぼやっ」と切り替わる */
  filter: blur(8px);
  will-change: opacity, filter;
  transition: opacity 1.85s ease-in-out, filter 1.85s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin: 0;
}

.hero-panel {
  background: rgba(248, 249, 248, 0.95);
  border-radius: 26px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(221, 228, 223, 0.9);
  backdrop-filter: blur(20px);
}

.hero-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(28, 124, 84, 0.3);
  font-size: 0.75rem;
  color: var(--color-primary-strong);
  margin-bottom: 14px;
  background: rgba(236, 245, 240, 0.9);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.stat-item {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(221, 228, 223, 0.9);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-soft);
  margin-bottom: 2px;
}

.stat-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-note-card {
  padding: 12px 13px;
  border-radius: 18px;
  border: 1px dashed rgba(28, 124, 84, 0.4);
  background: rgba(237, 243, 239, 0.85);
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-purpose {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section-purpose::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 230px;
  background: linear-gradient(135deg, #00b36b, #35c98a);
  border-radius: 0 0 0 72px;
  z-index: 0;
}

.section-purpose::after {
  content: none;
}

.section-inner {
  display: grid;
  gap: 32px;
}

.section-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.purpose-card {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 32px 32px 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: stretch;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

/* 左カラム：右より短いため、縦方向は「中央より少し上」に配置 */
.purpose-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 100%;
  border-right: 1px solid rgba(221, 228, 223, 0.9);
  padding-right: 24px;
}

/* 上:下 = 28:72 の可変余白で、テキストを縦の「半分より上」に寄せる */
.purpose-left::before {
  content: "";
  flex: 0.28 1 0;
  min-height: 0;
}

.purpose-left::after {
  content: "";
  flex: 0.72 1 0;
  min-height: 0;
}

.purpose-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.purpose-title-jp {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.purpose-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  gap: 0;
}

/* STORY本文：段落間の余白を「1行分」に統一 */
.purpose-right > .section-kicker {
  margin-bottom: 6px;
}

.purpose-right > .purpose-title-en {
  margin-bottom: 1em;
}

.purpose-right p.section-body {
  margin: 0 0 1em;
}

.purpose-right p.section-body:last-of-type {
  margin-bottom: 0;
}

.purpose-title-en {
  font-size: 1.4rem;
  margin: 0 0 4px;
}

.purpose-cta {
  margin-top: 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b36b, #35c98a);
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--shadow-strong);
}

.two-column {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

.two-column.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.two-column.reverse .section-head {
  order: 2;
}

.two-column.reverse .section-body {
  order: 1;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 28px;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px;
}

.section-subheading {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 18px 0 8px;
}

.section-body {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.service-note {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  margin-top: 0.5rem;
}

/* サービス紹介（#about）：タイトル類のみ深緑 */
#about .section-kicker,
#about .section-title,
#about .section-subheading {
  color: #0d4a38;
}

/* コラム：なかまのコラムボタン直下の追記ブロック */
#column .column-addendum {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(221, 228, 223, 0.95);
}

#column .column-second-cta {
  margin-top: 1.25rem;
}

/* ヘッダー固定時も COLUMN 見出しが隠れないようアンカー用オフセット */
#column {
  scroll-margin-top: 88px;
}

.service-tax-block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(221, 228, 223, 0.95);
}

.service-tax-block .purpose-cta.service-tax-more {
  margin-top: 1.25rem;
  padding: 7px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 28px rgba(23, 164, 104, 0.28);
}

/* サービス紹介内：財務コンサル等の小さめ VIEW MORE */
.section-body .purpose-cta.service-consult-more {
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 28px rgba(23, 164, 104, 0.28);
}

/* VIEW MORE と経営支援ブロックの間の薄い区切り線 */
.service-upper-divider {
  margin-top: 1.75rem !important;
  padding-top: 1.35rem !important;
  border-top: 1px solid #e3e8e4;
}

.article-end-cta {
  margin-top: 2rem;
}

.direction-page .article-financial-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 28px rgba(23, 164, 104, 0.28);
}

/* OUR DIRECTION 記事ページ */
.direction-page .section-title {
  margin-bottom: 1.25em;
}

.article-prose p {
  margin: 0 0 1em;
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.article-prose p:last-child {
  margin-bottom: 0;
}

/* Before/After・Step ボックス内は見出し・本文とも本文色（黒系）で統一 */
.article-prose .article-step p {
  color: var(--color-text);
}

.article-prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 0.75rem;
  line-height: 1.5;
}

.article-prose h2:first-of-type {
  margin-top: 1.25rem;
}

.article-prose h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.55;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1em;
  padding-left: 1.35em;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.article-prose li {
  margin-bottom: 0.4em;
}

.article-prose .article-step {
  margin: 0.75em 0 1em;
  padding: 0.85em 1em 1em;
  border-radius: 12px;
  background: rgba(237, 243, 239, 0.65);
  border: 1px solid rgba(221, 228, 223, 0.95);
}

.article-prose .article-step-title {
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5em;
  font-size: 0.95rem;
}

.direction-back {
  margin-top: 2rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.list-check li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 4px;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--color-primary-strong);
}

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

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(221, 228, 223, 0.9);
  box-shadow: var(--shadow-soft);
}

.card-title {
  font-size: 1.02rem;
  margin: 0 0 6px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin: 0;
}

.section-footer-center {
  text-align: center;
  margin-top: 26px;
}

.section-cta {
  background: #ffffff;
  border-top: 1px solid rgba(221, 228, 223, 0.9);
  border-bottom: 1px solid rgba(221, 228, 223, 0.9);
  color: var(--color-text);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.cta-text p {
  color: var(--color-text-soft);
}

.cta-actions {
  text-align: right;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--color-primary-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 124, 84, 0.3);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: var(--color-primary-strong);
}

.site-footer {
  margin-top: 40px;
  border-top: none;
  background: linear-gradient(135deg, #00b36b, #35c98a);
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 28px 0 16px;
}

.footer-logo {
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.footer-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 6px;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 0.84rem;
}

.footer-heading {
  font-weight: 600;
  margin: 0 0 6px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 4px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom-inner {
  padding: 8px 0 10px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.office-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.office-table th,
.office-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(221, 228, 223, 0.9);
  text-align: left;
}

.office-table th {
  width: 30%;
  color: var(--color-text-soft);
  background: rgba(237, 243, 239, 0.6);
  font-weight: 500;
}

.contact-card {
  margin-top: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row-inline {
  flex-direction: row;
}

.form-row-inline .form-field {
  flex: 1;
}

.form-field label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 4px;
  color: var(--color-text-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(221, 228, 223, 0.9);
  padding: 9px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.98);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.form-actions {
  margin-top: 4px;
  text-align: right;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .purpose-card {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(2rem, 5vw, 2.75rem) 20px 24px 20px;
  }

  .purpose-left {
    border-right: none;
    padding-right: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(221, 228, 223, 0.9);
    margin-bottom: 8px;
    min-height: 0;
  }

  .purpose-left::before,
  .purpose-left::after {
    display: none;
  }

  .two-column,
  .two-column.reverse,
  .card-grid,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 44px 0;
  }

  .cta-actions {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 8px 0;
  }

  .site-nav {
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    inset: 56px 18px auto;
    background: rgba(248, 249, 248, 0.98);
    border-radius: 18px;
    padding: 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid rgba(221, 228, 223, 0.9);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .nav-list.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-item-dropdown {
    width: 100%;
    align-items: flex-start;
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 4px 0;
    cursor: default;
  }

  .nav-dropdown-panel {
    position: static;
    transform: none;
    left: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    margin: 2px 0 4px;
    padding: 2px 0 4px 12px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown-panel a {
    white-space: normal;
    padding: 6px 0;
    font-size: 0.88rem;
  }

  .hero {
    padding: 38px 0 52px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .card-grid {
    gap: 14px;
  }

  .form-row-inline {
    flex-direction: column;
  }
}

