/* ==========================================================================
   Rukuto Inc. — Shared Stylesheet
   ========================================================================== */

:root {
  --navy: #0e1b3d;
  --navy-dark: #081029;
  --navy-light: #1c2c56;
  --blue: #3b6fe0;
  --blue-light: #eaf1ff;
  --gold: #c8a44d;
  --gold-light: #f6ecd6;
  --white: #ffffff;
  --bg-soft: #f5f7fb;
  --text: #23262f;
  --text-muted: #5c6270;
  --border: #e4e8f0;

  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  --container-width: 1120px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

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

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

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.bg-soft {
  background: var(--bg-soft);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--navy);
}

.section-lead {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: #d8b664;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  margin: 0 auto;
  background: var(--navy);
  transition: all 0.2s ease;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 100%;
}

.nav-menu a.is-active {
  color: var(--blue);
}

.nav .btn {
  padding: 11px 22px;
  font-size: 14px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(59, 111, 224, 0.35), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 128px 24px 96px;
}

.hero--page .hero__inner {
  padding: 74px 24px;
}

.hero__gold-bar {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.hero--page h1 {
  font-size: clamp(26px, 3.4vw, 36px);
}

.hero p.hero-lead {
  margin-top: 24px;
  max-width: 640px;
  font-size: 17px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.86);
}

.hero .breadcrumb {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.hero .cta-row {
  margin-top: 40px;
}

/* ---------- Grid / Cards ---------- */

.grid {
  display: grid;
  gap: 32px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 16px 40px rgba(14, 27, 61, 0.08);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.6;
}

.card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.9;
}

/* Business hub cards */

.biz-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

/* Align the navy head heights across side-by-side biz-cards, whatever
   the copy length, by sharing row tracks via subgrid. */
.grid-2:has(> .biz-card) {
  grid-template-rows: auto 1fr;
}

.grid-2:has(> .biz-card) > .biz-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.biz-card__head {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 40px 36px 32px;
}

.biz-card__head.is-muted {
  background: linear-gradient(120deg, #2b3350, #3d4770);
}

.biz-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 77, 0.55);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.biz-card__head h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.biz-card__head p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.9;
}

.biz-card__body {
  padding: 32px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biz-card__body ul {
  margin-bottom: 28px;
}

.biz-card__body li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 10px;
}

.biz-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.biz-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Strength / number list ---------- */

.strength-card {
  text-align: left;
}

.strength-card .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* ---------- Team ---------- */

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--bg-soft);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card .role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

/* Names rendered as images (not text) so they are not search-indexable. */
.name-img {
  height: 1.2em;
  width: auto;
  vertical-align: -0.18em;
}

.team-card p {
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.9;
}

/* ---------- Table (company info) ---------- */

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 22px 20px;
  font-size: 15px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  width: 200px;
  color: var(--navy);
  font-weight: 700;
  background: var(--bg-soft);
}

.info-table td {
  color: var(--text-muted);
}

.info-table a {
  color: var(--blue);
  font-weight: 600;
}

/* The info-table row uses dedicated -table name SVGs (regular weight,
   tighter viewBox) sized so the glyphs read at ~15px, matching the
   plain .info-table td text next to them. The bold 1.2em versions used
   in team-card headings elsewhere are untouched. */
.info-table .name-img {
  height: 1.15em;
}

.exec-names {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}

.exec-names .sep {
  color: var(--text-muted);
}

.exec-names .note {
  white-space: nowrap;
}

/* ---------- Pricing ---------- */

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.price-card__head {
  background: var(--navy);
  color: var(--white);
  padding: 26px 30px;
}

.price-card__head.is-accent {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy-light));
}

.price-card__head h3 {
  font-size: 19px;
  font-weight: 700;
}

.price-card__head span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.price-card__body {
  padding: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  gap: 16px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .label {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-row .value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}

.price-row .value small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: 6px;
  line-height: 1.8;
}

.price-note strong {
  color: var(--gold);
}

.sim-box {
  margin-top: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 32px 36px;
}

.sim-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.sim-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14.5px;
}

.sim-row:last-child {
  border-bottom: none;
  padding-top: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Steps / flow ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 24px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Hearing list ---------- */

.hearing-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hearing-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 20px 22px;
}

.hearing-item .n {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.hearing-item .t {
  font-size: 14.5px;
  color: var(--text);
  padding-top: 4px;
}

/* ---------- FAQ (native details/summary) ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 36px 24px 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  position: relative;
}

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

.faq-item summary::before {
  content: "Q";
  color: var(--blue);
  font-weight: 700;
  margin-right: 12px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 22px;
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
}

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

.faq-item .faq-a {
  display: flex;
  gap: 12px;
  padding: 0 36px 26px 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.9;
}

.faq-item .faq-a .mark {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
}

.cta-band p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .cta-row {
  justify-content: center;
  margin-top: 32px;
}

/* ---------- CTA strip (lightweight mid-page CTA) ---------- */

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 36px;
}

.cta-strip p {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- News list ---------- */

.news-list {
  max-width: 760px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-item .date {
  flex-shrink: 0;
  width: 108px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.03em;
}

.news-item .tag {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 77, 0.55);
  border-radius: 999px;
  padding: 2px 10px;
  margin-right: 4px;
}

.news-item .title {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

/* ---------- Placeholder (news / musubime) ---------- */

.placeholder-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 72px 40px;
}

.placeholder-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 26px;
  font-weight: 700;
}

.placeholder-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.placeholder-box p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}

/* ---------- Contact ---------- */

.contact-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 56px 48px;
  text-align: center;
}

.contact-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
}

.contact-box h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-email {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 30px;
  word-break: break-all;
}

.contact-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.contact-meta .label {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-meta .value {
  font-size: 14.5px;
  color: var(--text);
}

/* ---------- Contact form ---------- */

/* Honeypot field: kept in the layout (not display:none) but moved off
   screen and out of the tab order, so spam bots that fill every input
   still trip it while it stays invisible and unreachable for people. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-banner {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.form-banner.is-error {
  background: #fdecea;
  color: #a33a34;
  border: 1px solid #f3c6c2;
}

.form-banner.is-error ul {
  margin-top: 6px;
  padding-left: 18px;
  list-style: disc;
}

.form-banner.is-success {
  background: var(--blue-light);
  color: var(--navy);
  border: 1px solid rgba(59, 111, 224, 0.25);
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-required {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
  line-height: 1.8;
}

.form-control.is-invalid {
  border-color: #d9534f;
}

/* ---------- Privacy ---------- */

.policy h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 44px 0 16px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p,
.policy li {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 2;
}

.policy ul {
  padding-left: 4px;
}

.policy li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.policy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.policy .updated {
  margin-top: 56px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

/* ---------- Map ---------- */

.map-frame {
  width: 100%;
  height: 340px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-grid p {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hearing-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    gap: 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    overflow-y: auto;
  }

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

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .section--sm {
    padding: 48px 0;
  }

  .hero__inner {
    padding: 88px 20px 64px;
  }

  .hero--page .hero__inner {
    padding: 56px 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-box {
    padding: 40px 24px;
  }

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

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .price-card__body,
  .sim-box {
    padding: 24px;
  }

  .info-table th {
    width: 130px;
    font-size: 13.5px;
  }

  .info-table th,
  .info-table td {
    padding: 16px 14px;
    font-size: 13.5px;
  }
}
