:root {
  --ink: #17202a;
  --muted: #60707c;
  --line: #dbe4e9;
  --paper: #f7fafb;
  --green: #14825f;
  --green2: #dff4ec;
  --blue: #245c9d;
  --blue2: #e7f0fb;
  --gold: #bd7a2f;
  --gold2: #fff1df;
  --white: #fff;
  --shadow: 0 24px 70px rgba(23, 32, 42, 0.12);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a {
  text-decoration: none;
  color: inherit;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: linear-gradient(
    90deg,
    rgba(239, 249, 245, 0.96),
    rgba(255, 255, 255, 0.94) 48%,
    rgba(234, 242, 252, 0.96)
  );
  border-bottom: 1px solid rgba(20, 130, 95, 0.12);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  display: block;
  width: 68px;
  height: auto;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  gap: 3px;
}
.brand-text {
  font-size: 17px;
  line-height: 1;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px;
  line-height: 1;
  color: #6d7b86;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}
.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #2f4050;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.nav a:hover,
.nav a.active {
  background: var(--blue2);
  color: var(--blue);
}
.nav a:last-child {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
}
.nav a:last-child:hover,
.nav a:last-child.active {
  background: var(--green);
  color: #fff;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(20, 130, 95, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(23, 32, 42, 0.04);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: #40515f;
  font-size: 12px;
  font-weight: 900;
}
.lang-switch a:hover,
.lang-switch a.active {
  background: var(--green);
  color: #fff;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
}
.lead {
  max-width: 820px;
  margin-bottom: 28px;
  color: #3d4d5b;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}
.accent {
  display: inline;
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
  text-decoration-color: rgba(189, 122, 47, 0.35);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}
.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 36px rgba(20, 130, 95, 0.24);
}
.secondary {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.06);
}
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 205px);
  padding: 34px clamp(20px, 5vw, 72px) 26px;
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(36, 92, 157, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 76%,
      rgba(20, 130, 95, 0.16),
      transparent 34%
    ),
    linear-gradient(105deg, #eef9f5 0%, #f9fbfc 48%, #eaf2fc 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: center 46%;
  background-size: min(90vw, 1640px) auto;
  opacity: 0.28;
  pointer-events: none;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(20, 130, 95, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(20, 130, 95, 0.08);
  font-size: 13px;
  font-weight: 900;
  color: #126b50;
}
.hero-badge:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(20, 130, 95, 0.12);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 26px 0 0;
}
.proof-card {
  padding: 15px 16px;
  border: 1px solid rgba(219, 228, 233, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(23, 32, 42, 0.06);
}
.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}
.proof-card span {
  display: block;
  color: #5e6d78;
  font-size: 13px;
  line-height: 1.55;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.hero-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 228, 233, 0.95);
  color: #445665;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(23, 32, 42, 0.04);
}
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 650px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(189, 122, 47, 0.32);
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(255, 241, 223, 0.92),
    rgba(255, 255, 255, 0.72)
  );
  box-shadow: 0 14px 32px rgba(189, 122, 47, 0.08);
}
.price-note strong {
  color: #8a5520;
  white-space: nowrap;
}
.price-note span {
  color: #5e6870;
  line-height: 1.65;
}
.hero-cards {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px 0;
}
.hero-cards:before {
  content: "";
  position: absolute;
  inset: -120px -80px -80px -120px;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-size: 1080px auto;
  background-position: center 44%;
  opacity: 0.22;
  pointer-events: none;
}
.target-card {
  position: relative;
  z-index: 1;
  padding: 26px 28px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.08);
  overflow: hidden;
  animation: cardIn 0.58s ease both;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.target-card:nth-child(2) {
  animation-delay: 0.08s;
}
.target-card:nth-child(3) {
  animation-delay: 0.16s;
}
.target-card:before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
  transform: scale(0.72);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  opacity: 0.65;
}
.target-card:after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 28px;
  color: rgba(20, 130, 95, 0.55);
  font-size: 22px;
  font-weight: 900;
  transform: translateX(-6px);
  opacity: 0;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}
.target-card:hover,
.target-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow:
    0 30px 70px rgba(23, 32, 42, 0.16),
    0 0 0 3px rgba(20, 130, 95, 0.22);
}
.target-card:hover:before,
.target-card:focus-within:before {
  transform: scale(1);
  opacity: 1;
}
.target-card:hover:after,
.target-card:focus-within:after {
  transform: translateX(0);
  opacity: 1;
}
.target-card b {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 22px;
}
.target-card span {
  position: relative;
  display: block;
  color: #566b7a;
  font-size: 15px;
  line-height: 1.75;
}
.target-card em {
  position: relative;
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue2);
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.target-card:hover em,
.target-card:focus-within em {
  transform: translateX(4px);
  background: var(--green2);
  color: var(--green);
}
.card-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  margin-top: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.card-more:after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.18s ease;
}
.target-card:hover .card-more:after {
  transform: translateX(3px);
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px clamp(20px, 5vw, 72px) 58px;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(36, 92, 157, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 16% 76%,
      rgba(20, 130, 95, 0.14),
      transparent 34%
    ),
    linear-gradient(105deg, #eef9f5 0%, #f9fbfc 50%, #eaf2fc 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: right 35% center;
  background-size: min(72vw, 1160px) auto;
  opacity: 0.16;
  pointer-events: none;
}
.page-hero:after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: -18px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: url("tomo-character.jpg") center 16% / cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.9);
  pointer-events: none;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.section {
  padding: 82px clamp(20px, 5vw, 72px);
}
.heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.strip {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px clamp(20px, 5vw, 72px) 20px;
  background: linear-gradient(90deg, #eef9f5, #f7fafb, #eaf2fc);
  border-block: 1px solid rgba(219, 228, 233, 0.8);
}
.strip div {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(219, 228, 233, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(23, 32, 42, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.strip div:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.09);
}
.strip div:before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green2);
  color: var(--green);
  font-weight: 900;
}
.strip div:nth-child(1):before {
  content: "学";
}
.strip div:nth-child(2):before {
  content: "暮";
}
.strip div:nth-child(3):before {
  content: "商";
}
.strip div:nth-child(4):before {
  content: "人";
}
.strip strong {
  display: block;
  margin-bottom: 5px;
}
.strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.strip-tip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: calc(100% + 12px);
  z-index: 100;
  padding: 16px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #f3fbf8);
  box-shadow: 0 22px 52px rgba(23, 32, 42, 0.16);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.strip-tip:before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: url("tomo-character.jpg") center 18% / cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.9);
}
.strip-tip:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.strip div:hover .strip-tip {
  opacity: 1;
  transform: translateY(0);
}
.strip-tip b {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
}
.strip-tip b:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green2);
}
.strip-tip ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.strip-tip li {
  position: relative;
  padding-left: 18px;
  color: #526371;
  font-size: 12px;
  line-height: 1.5;
}
.strip-tip li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(189, 122, 47, 0.1);
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.service:before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(23, 32, 42, 0.1);
  border-color: rgba(20, 130, 95, 0.22);
}
.service small,
.service h3,
.service p,
.service ul,
.service a {
  position: relative;
}
.service small {
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service p {
  color: var(--muted);
  line-height: 1.8;
}
.service ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}
.service li {
  position: relative;
  padding-left: 18px;
  font-weight: 800;
}
.service li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 14px 14px 0;
  background: #f5f9f8;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.09);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}
.step p,
.note p {
  color: var(--muted);
  line-height: 1.75;
}
.note {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  background: #15242e;
  color: #fff;
}
.note .eyebrow {
  color: #9fd1c1;
}
.note p {
  color: #c8d8df;
}
.note-list {
  display: grid;
  gap: 12px;
}
.note-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.note-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}
.company {
  background: #fff;
}
.company-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}
.company-message {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 14px;
  background: #f5f9f8;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(23, 32, 42, 0.05);
}
.company-message:after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.company-message p {
  color: var(--muted);
  line-height: 1.9;
}
.company-sign {
  margin-top: 24px;
  font-weight: 900;
  text-align: right;
  color: var(--ink);
}
.overview-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.06);
}
.overview-table th,
.overview-table td {
  padding: 17px 18px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
}
.overview-table th {
  width: 30%;
  background: #f7fafb;
  color: #40515f;
  font-weight: 900;
}
.overview-table td {
  color: #243442;
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #163c35, #1f5f85);
}
.contact-card p,
.contact-card .eyebrow {
  color: #d8ece9;
}
.contact-actions {
  display: grid;
  gap: 14px;
  align-content: center;
}
.contact-method {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.contact-method strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}
.consult-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}
.consult-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-left: auto;
  padding: 4px 14px 4px 6px;
  border: 1px solid rgba(20, 130, 95, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #f0fbf7);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(20, 130, 95, 0.18);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.consult-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(20, 130, 95, 0.24);
}
.consult-toggle .mini-tomo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(20, 130, 95, 0.12);
}
.consult-toggle .mini-tomo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transform: scale(1.02);
}
.consult-toggle .toggle-label {
  white-space: nowrap;
}
.consult-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: 268px;
  padding: 14px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #f1fbf7);
  box-shadow: 0 20px 54px rgba(23, 32, 42, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.consult-widget.open .consult-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.consult-panel:before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.consult-panel:after {
  content: "";
  position: absolute;
  right: 42px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(189, 122, 47, 0.35);
}
.consult-panel > * {
  position: relative;
  z-index: 1;
}
.consult-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.consult-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(20, 130, 95, 0.16);
  box-shadow: 0 10px 20px rgba(20, 130, 95, 0.16);
}
.consult-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transform: scale(1.02);
}
.consult-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--ink);
}
.consult-panel strong:after {
  content: " ♪";
  color: var(--gold);
}
.consult-panel p {
  margin: 0 0 10px;
  color: #60707c;
  line-height: 1.5;
  font-size: 12px;
}
.consult-options {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.consult-options a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 228, 233, 0.95);
  font-size: 12px;
  font-weight: 900;
  color: #304353;
}
.consult-options a:hover {
  background: var(--green2);
  color: var(--green);
}
.consult-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 9px;
}
.consult-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.consult-channel small {
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
}
.consult-channel.mail {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 130, 95, 0.2);
}
.consult-channel.line {
  background: #06c755;
  color: #fff;
}
.consult-channel.wechat {
  background: #2aae67;
  color: #fff;
}
.consult-note {
  display: block;
  margin-top: 8px;
  color: #7a8a94;
  font-size: 10px;
  text-align: center;
}
.footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: #6b7a86;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
@media (max-width: 1100px) {
  .lang-switch a {
    min-width: 30px;
    padding: 0 7px;
  }
  .nav {
    gap: 4px;
    font-size: 13px;
  }
  .nav a {
    padding: 9px 9px;
  }
  .nav a:last-child {
    padding: 9px 12px;
  }
}
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .hero,
  .note,
  .company-wrap,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero:before {
    background-position: center top;
    background-size: 1200px auto;
    opacity: 0.23;
  }
  .hero-cards {
    padding-top: 12px;
  }
  .strip,
  .services,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .consult-widget {
    right: 16px;
    bottom: 16px;
  }
  .consult-panel {
    width: calc(100vw - 32px);
  }
  h1 {
    font-size: 40px;
  }
  .hero {
    padding-top: 34px;
  }
  .hero:before {
    background-position: center 20px;
    background-size: 880px auto;
    opacity: 0.18;
  }
  .hero-cards {
    padding: 0;
  }
  .target-card {
    padding: 20px;
  }
  .strip,
  .services,
  .steps,
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
    padding: 13px 14px;
  }
  .overview-table th {
    border-bottom: 0;
  }
  .btn {
    width: 100%;
  }
  .proof-card {
    padding: 13px 14px;
  }
  .price-note {
    display: block;
  }
  .price-note strong {
    display: block;
    margin-bottom: 6px;
  }
  .brand-text {
    font-size: 14px;
  }
  .brand-sub {
    font-size: 9px;
  }
  .logo-img {
    width: 56px;
  }
}
.legal {
  max-width: 860px;
}
.legal h3 {
  margin-top: 30px;
  font-size: 19px;
}
.legal h3:first-child {
  margin-top: 0;
}
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.9;
}
.legal ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal li {
  margin-bottom: 6px;
}
.legal .updated {
  margin-top: 34px;
  color: #90a0aa;
  font-size: 13px;
}
.footer a {
  color: #40515f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer a:hover {
  color: var(--green);
}
.footer .legal-links {
  margin-top: 6px;
}
.footer .sep {
  margin: 0 8px;
  color: #b5c1c9;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(20, 130, 95, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s ease;
}
.nav-toggle span:before,
.nav-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s ease;
}
.nav-toggle span:before {
  top: -6px;
}
.nav-toggle span:after {
  top: 6px;
}
.header.nav-open .nav-toggle span {
  background: transparent;
}
.header.nav-open .nav-toggle span:before {
  top: 0;
  transform: rotate(45deg);
}
.header.nav-open .nav-toggle span:after {
  top: 0;
  transform: rotate(-45deg);
}
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 12px clamp(20px, 5vw, 72px) 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(23, 32, 42, 0.1);
  }
  .header.nav-open .nav a {
    padding: 12px 12px;
    border-radius: 8px;
    font-size: 15px;
  }
}
/* ---- TOMO pet assistant ---- */
.pet .consult-panel {
  bottom: 82px;
}
.pet-ava {
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(20, 130, 95, 0.24);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
  animation: petBreathe 4.6s ease-in-out infinite;
}
.pet-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  transform: scale(1.04);
  pointer-events: none;
  transition: transform 0.12s ease-out;
}
.pet-ava:hover {
  box-shadow: 0 20px 42px rgba(20, 130, 95, 0.36);
}
.pet-ava:focus-visible {
  outline: 3px solid rgba(20, 130, 95, 0.5);
  outline-offset: 3px;
}
.pet-ava.hop {
  animation: petHop 0.62s ease;
}
.pet-ava.blink {
  animation: petBlink 0.48s ease;
}
@keyframes petBreathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1.5px) scale(1.022);
  }
}
@keyframes petHop {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  28% {
    transform: translateY(-9px) rotate(-4deg);
  }
  60% {
    transform: translateY(0) rotate(3deg);
  }
  80% {
    transform: translateY(-2px) rotate(0);
  }
}
@keyframes petBlink {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.84);
  }
}
.pet-bubble {
  position: absolute;
  right: 6px;
  bottom: 84px;
  max-width: 212px;
  padding: 10px 28px 10px 13px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 16px 16px 4px 16px;
  background: linear-gradient(160deg, #fff, #f1fbf7);
  box-shadow: 0 16px 36px rgba(23, 32, 42, 0.14);
  color: #374856;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}
.pet-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.pet-bubble:after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -7px;
  width: 13px;
  height: 13px;
  background: #f1fbf7;
  border-right: 1px solid rgba(20, 130, 95, 0.16);
  border-bottom: 1px solid rgba(20, 130, 95, 0.16);
  transform: rotate(45deg);
}
.pet-bubble-x {
  position: absolute;
  top: 3px;
  right: 6px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9aa8b2;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
.pet-bubble-x:hover {
  color: var(--green);
}
@media (prefers-reduced-motion: reduce) {
  .pet-ava {
    animation: none;
  }
  .pet-ava.hop,
  .pet-ava.blink {
    animation: none;
  }
  .pet-ava img {
    transition: none;
  }
}
@media (max-width: 640px) {
  .pet-ava {
    width: 52px;
    height: 52px;
  }
  .pet-bubble {
    max-width: 180px;
    bottom: 70px;
  }
  .pet .consult-panel {
    bottom: 68px;
  }
}
.consult-widget.pet {
  right: 22px;
  bottom: 30vh;
}
@media (max-width: 640px) {
  .consult-widget.pet {
    right: 16px;
    bottom: 26vh;
  }
}

/* ---- TOMO draggable helper refinements ---- */
.consult-widget.pet {
  right: clamp(28px, 5vw, 72px);
  bottom: 92px;
  z-index: 80;
  touch-action: none;
}
.consult-widget.pet.dragging {
  cursor: grabbing;
  user-select: none;
}
.pet .consult-panel {
  right: 0;
  bottom: 78px;
  transform-origin: bottom right;
}
.pet-bubble {
  right: 6px;
  bottom: 76px;
  min-width: 236px;
  max-width: min(280px, calc(100vw - 36px));
  padding: 12px 34px 12px 16px;
  border-radius: 18px 18px 6px 18px;
  text-align: left;
  white-space: normal;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.55;
  animation: petBubbleFloat 3.8s ease-in-out infinite;
}
.pet-bubble.show {
  transform: translateY(-4px) scale(1);
}
.pet-bubble:after {
  right: 26px;
}
.pet-bubble-x {
  top: 6px;
  right: 8px;
}
.pet-ava {
  cursor: grab;
}
.pet-ava:active {
  cursor: grabbing;
}
.consult-widget.pet.dragging .pet-ava {
  box-shadow: 0 24px 52px rgba(20, 130, 95, 0.34);
  transform: scale(1.04);
}
@keyframes petBubbleFloat {
  0%,
  100% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 4px;
  }
}
@media (max-width: 980px) {
  .consult-widget.pet {
    right: 20px;
    bottom: 86px;
  }
  .pet .consult-panel {
    bottom: 72px;
  }
}
@media (max-width: 640px) {
  .consult-widget.pet {
    right: 16px;
    bottom: 78px;
  }
  .pet .consult-panel {
    right: 0;
    bottom: 66px;
  }
  .pet-bubble {
    min-width: 210px;
    bottom: 66px;
  }
}

/* ---- Company intro friendly copy ---- */
.company-hero .company-hero-copy {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin-bottom: 0;
  padding: 20px 24px 20px 26px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78),
    rgba(241, 251, 247, 0.86)
  );
  box-shadow: 0 18px 44px rgba(20, 130, 95, 0.09);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.85;
  color: #344858;
}
.company-hero .company-hero-copy p {
  position: relative;
  margin: 0;
  padding-left: 22px;
}
.company-hero .company-hero-copy p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(20, 130, 95, 0.1);
}
.company-hero .company-hero-copy p:first-child {
  color: #126b50;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.6;
}
.company-hero .company-hero-copy p:first-child:after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(189, 122, 47, 0.35);
  vertical-align: middle;
}
@media (max-width: 640px) {
  .company-hero .company-hero-copy {
    padding: 17px 18px;
    font-size: 15px;
  }
  .company-hero .company-hero-copy p {
    padding-left: 18px;
  }
  .company-hero .company-hero-copy p:first-child {
    font-size: 18px;
  }
}

/* ---- Friendly representative greeting ---- */
.company-greeting {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 252, 249, 0.96)
  );
  border-color: rgba(20, 130, 95, 0.16);
}
.company-greeting h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #126b50;
  font-size: 24px;
}
.company-greeting h3:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(20, 130, 95, 0.1);
}
.company-greeting p {
  position: relative;
  margin: 0;
  padding: 14px 0 14px 22px;
  border-top: 1px dashed rgba(20, 130, 95, 0.14);
  color: #4d5f6d;
  font-size: 15px;
  line-height: 1.95;
}
.company-greeting p:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(189, 122, 47, 0.1);
}
.company-greeting .greeting-lead {
  margin-bottom: 6px;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(20, 130, 95, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f1fbf7);
  box-shadow: 0 14px 34px rgba(20, 130, 95, 0.08);
  color: #243f36;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.85;
}
.company-greeting .greeting-lead:before {
  left: 20px;
  top: 1.7em;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(20, 130, 95, 0.1);
}
.company-greeting .company-sign {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 130, 95, 0.12);
  color: #17202a;
}
@media (max-width: 640px) {
  .company-greeting h3 {
    font-size: 21px;
  }
  .company-greeting p {
    font-size: 14px;
    line-height: 1.85;
  }
  .company-greeting .greeting-lead {
    padding: 16px 16px 16px 42px;
    font-size: 15px;
  }
}

/* ---- Friendly company info table ---- */
.company-info-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  box-shadow: 0 20px 54px rgba(23, 32, 42, 0.08);
}
.company-info-table caption {
  caption-side: top;
  margin-bottom: 14px;
  text-align: left;
  color: #126b50;
  font-size: 24px;
  font-weight: 900;
}
.company-info-table th {
  width: 28%;
  background: linear-gradient(180deg, #f5fbf8, #f7fafb);
  color: #213647;
}
.company-info-table td {
  background: rgba(255, 255, 255, 0.92);
}
.company-info-table a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.company-info-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-info-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.75;
  color: #445665;
}
.company-info-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 130, 95, 0.1);
}
@media (max-width: 640px) {
  .company-info-table caption {
    font-size: 21px;
  }
  .company-info-table th {
    width: 100%;
  }
  .company-info-list {
    gap: 7px;
  }
}

/* ---- Mission / Vision / Values ---- */
.mission-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #eef9f5 0%, #fbfcfd 52%, #eaf2fc 100%);
  border-top: 1px solid rgba(219, 228, 233, 0.86);
}
.mission-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: right 12% center;
  background-size: min(78vw, 1120px) auto;
  opacity: 0.13;
  pointer-events: none;
}
.mission-section > * {
  position: relative;
  z-index: 1;
}
.mission-heading {
  max-width: 880px;
}
.mission-heading p:not(.eyebrow) {
  margin: 0;
  color: #60707c;
  font-size: 16px;
  line-height: 1.8;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.mission-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.08);
}
.mission-card:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.mission-card span {
  position: relative;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green2);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.mission-card h3 {
  position: relative;
  margin-bottom: 10px;
  color: #1f5f85;
  font-size: 24px;
}
.mission-card p {
  position: relative;
  margin: 0;
  color: #4f6270;
  line-height: 1.85;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.value-card {
  position: relative;
  min-height: 172px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(23, 32, 42, 0.1);
}
.value-card:before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #fff 0 22%,
    var(--green2) 24% 100%
  );
  box-shadow: inset 0 0 0 1px rgba(20, 130, 95, 0.12);
}
.value-card b {
  display: block;
  margin-bottom: 9px;
  color: #126b50;
  font-size: 17px;
}
.value-card p {
  margin: 0;
  color: #5a6a76;
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 980px) {
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .mission-card {
    padding: 22px;
  }
  .mission-card h3 {
    font-size: 21px;
  }
  .value-card {
    min-height: auto;
  }
}

/* ---- Softer mission section override ---- */
.mission-section {
  background: linear-gradient(105deg, #f3fbf8 0%, #fffdf8 50%, #edf6fb 100%);
  border-top: 1px solid rgba(20, 130, 95, 0.1);
}
.mission-section:before {
  opacity: 0.08;
  background-position: right 8% bottom 18%;
}
.mission-heading h2 {
  color: #17202a;
  font-size: clamp(30px, 3.2vw, 44px);
}
.mission-heading p:not(.eyebrow) {
  color: #6a7882;
  font-size: 15px;
}
.mission-card {
  padding: 26px;
  border-color: rgba(20, 130, 95, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.92),
    rgba(247, 253, 250, 0.92)
  );
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.055);
}
.mission-card:after {
  right: -46px;
  top: -46px;
  width: 126px;
  height: 126px;
  background: rgba(189, 122, 47, 0.08);
}
.mission-card span {
  background: #fff7eb;
  color: #9a6426;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(189, 122, 47, 0.12);
}
.mission-card h3 {
  color: #126b50;
  font-size: 22px;
  line-height: 1.45;
}
.mission-card p {
  color: #596b76;
  line-height: 1.9;
}
.value-card {
  min-height: 164px;
  border-color: rgba(20, 130, 95, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.045);
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 32, 42, 0.075);
}
.value-card:before {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  background: radial-gradient(circle at 35% 35%, #fff 0 24%, #dff4ec 26% 100%);
  box-shadow: 0 8px 18px rgba(20, 130, 95, 0.08);
}
.value-card b {
  color: #126b50;
  font-size: 16px;
}
.value-card p {
  color: #65747d;
  font-size: 13.5px;
  line-height: 1.78;
}

/* ---- Latest company copy refinements ---- */
.company-hero .company-hero-copy p:nth-child(2) {
  color: #126b50;
  font-size: clamp(17px, 1.75vw, 22px);
  font-weight: 900;
  line-height: 1.6;
}
.company-hero .company-hero-copy p:nth-child(2):before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(189, 122, 47, 0.12);
}
.company-info-note {
  display: inline-block;
  margin-top: 4px;
  color: #7a8a94;
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .company-hero .company-hero-copy p:nth-child(2) {
    font-size: 17px;
  }
  .company-info-note {
    font-size: 12px;
  }
}

/* ---- Company hero body copy without bullets ---- */
.company-hero .company-hero-copy p:nth-child(n + 3) {
  padding-left: 0;
  color: #344858;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
  line-height: 1.9;
}
.company-hero .company-hero-copy p:nth-child(n + 3):before {
  content: none;
}
.company-hero .company-hero-copy p:nth-child(3) {
  margin-top: 4px;
}
.company-hero .company-hero-copy p:nth-child(4) {
  margin-top: 10px;
}
@media (max-width: 640px) {
  .company-hero .company-hero-copy p:nth-child(n + 3) {
    font-size: 15px;
    line-height: 1.85;
  }
  .company-hero .company-hero-copy p:nth-child(4) {
    margin-top: 8px;
  }
}

/* ---- Representative greeting as letter style ---- */
.company-greeting p:not(.greeting-lead) {
  padding: 0;
  border-top: 0;
  color: #4f6270;
  font-size: 15px;
  line-height: 2;
  margin-top: 16px;
}
.company-greeting p:not(.greeting-lead):before {
  content: none;
}
.company-greeting .greeting-lead {
  margin-bottom: 18px;
}
.company-greeting .company-sign {
  text-align: right;
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
  color: #17202a;
  font-weight: 900;
}
@media (max-width: 640px) {
  .company-greeting p:not(.greeting-lead) {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 14px;
  }
  .company-greeting .company-sign {
    margin-top: 20px;
  }
}

/* ---- Company info intro note ---- */
.company-info-intro {
  margin-bottom: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 130, 95, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f4fbf8);
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.045);
}
.company-info-intro strong {
  display: block;
  margin-bottom: 5px;
  color: #126b50;
  font-size: 15px;
}
.company-info-intro p {
  margin: 0;
  color: #65747d;
  font-size: 13.5px;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .company-info-intro {
    padding: 14px 15px;
  }
  .company-info-intro p {
    font-size: 13px;
  }
}

/* ---- Company info intro below table ---- */
.company-info-table + .company-info-intro {
  margin-top: 14px;
  margin-bottom: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(244, 251, 248, 0.9)
  );
  box-shadow: none;
}
.company-info-table + .company-info-intro p + p {
  margin-top: 10px;
}

/* ---- Company left column with business note ---- */
.company-left {
  display: grid;
  gap: 14px;
  align-content: start;
}
.company-left .company-info-intro {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(20, 130, 95, 0.12);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(244, 251, 248, 0.94)
  );
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.045);
}
.company-left .company-info-intro p + p {
  margin-top: 10px;
}
@media (max-width: 640px) {
  .company-left {
    gap: 12px;
  }
}

/* ---- Contact mock form ---- */
.contact-section {
  background: linear-gradient(105deg, #f7fafb, #ffffff 48%, #eef9f5);
}
.contact-form-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}
.contact-form-copy {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.07);
}
.contact-form-copy:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.contact-form-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
}
.contact-form-copy p {
  color: #60707c;
  line-height: 1.8;
}
.contact-mini-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.contact-mini-routes span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green2);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(219, 228, 233, 0.9);
}
.contact-direct strong {
  color: #126b50;
}
@media (max-width: 900px) {
  .contact-form-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .contact-form-copy {
    padding: 22px;
  }
}

/* ---- Hero track record stats ---- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-end;
  max-width: 650px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 130, 95, 0.12);
}
.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: max-content;
}
.hero-stats strong {
  color: var(--green);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(20, 130, 95, 0.13);
}
.hero-stats span {
  color: #53636f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 14px 18px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .hero-stats strong {
    font-size: 32px;
  }
  .hero-stats span {
    font-size: 12px;
  }
}

/* ---- Hero stats footnote ---- */
.hero-stats small {
  flex-basis: 100%;
  margin-top: -6px;
  color: #7a8a94;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 640px) {
  .hero-stats small {
    margin-top: -2px;
    font-size: 10.5px;
  }
}

/* ---- Brand positioning line ---- */
.brand-sub {
  max-width: 360px;
  text-transform: none;
  letter-spacing: 0.03em;
  white-space: normal;
  line-height: 1.25;
}
@media (max-width: 1180px) {
  .brand-sub {
    max-width: 260px;
    font-size: 9px;
  }
  .brand-text {
    font-size: 15px;
  }
  .logo-img {
    width: 60px;
  }
}
@media (max-width: 640px) {
  .brand-sub {
    max-width: 190px;
    font-size: 8.5px;
  }
  .brand {
    gap: 8px;
  }
}

/* ---- Brand promise trust band ---- */
.trust-band {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(20px, 5vw, 72px);
  background: linear-gradient(100deg, #17342e, #1f5f85);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-band:before {
  content: "";
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.trust-band > * {
  position: relative;
  z-index: 1;
}
.trust-band .eyebrow {
  color: #aee0d0;
  margin-bottom: 8px;
}
.trust-band h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.22;
  color: #fff;
}
.trust-band p {
  max-width: 860px;
  margin: 0;
  color: #d8ece9;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.8;
}
.trust-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.trust-band span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 640px) {
  .trust-band {
    padding: 28px 20px;
  }
  .trust-band span {
    font-size: 12px;
  }
}

/* ---- What's New ---- */
.whats-new {
  position: relative;
  overflow: hidden;
  padding: 58px clamp(20px, 5vw, 72px);
  background: linear-gradient(105deg, #fffdf8 0%, #f7fafb 48%, #eef9f5 100%);
  border-bottom: 1px solid rgba(219, 228, 233, 0.9);
}
.whats-new:before {
  content: "";
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(245, 181, 44, 0.12);
}
.whats-new:after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.whats-new > * {
  position: relative;
  z-index: 1;
}
.whats-new-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 0.6fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}
.whats-new-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}
.whats-new-head p:last-child {
  margin: 0;
  color: #5d6d78;
  line-height: 1.8;
}
.whats-new-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 16px;
}
.news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
  border-color: rgba(20, 130, 95, 0.22);
}
.news-card:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.news-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #1f5f85;
  font-size: 12px;
  font-weight: 900;
}
.news-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #126b50;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
}
.news-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6d78;
  line-height: 1.75;
}
.news-ai {
  background: linear-gradient(145deg, #fff, #f2fbf8);
  border-color: rgba(20, 130, 95, 0.2);
}
.news-ai span {
  background: #e4f6ef;
  color: #126b50;
}
.news-ai h3 {
  color: #126b50;
}
.news-business {
  background: linear-gradient(145deg, #fff, #f3f8ff);
  border-color: rgba(36, 92, 157, 0.18);
}
.news-business:after {
  background: rgba(36, 92, 157, 0.08);
}
.news-business h3 {
  color: #245c9d;
}
.news-business span {
  background: #e7f0fb;
  color: #245c9d;
}
.news-career {
  background: linear-gradient(145deg, #fff, #fff7eb);
  border-color: rgba(189, 122, 47, 0.2);
}
.news-career:after {
  background: rgba(189, 122, 47, 0.1);
}
.news-career h3 {
  color: #9a6426;
}
.news-career span {
  background: #fff1df;
  color: #9a6426;
}
.program-fit {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(20, 130, 95, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}
.program-fit b {
  display: block;
  margin-bottom: 10px;
  color: #126b50;
  font-size: 13px;
}
.program-fit ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.program-fit li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: #40515f;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(219, 228, 233, 0.9);
}
.program-fit li:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}
.program-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 32, 42, 0.14);
}
.program-link:after {
  content: "→";
  transition: transform 0.18s ease;
}
.program-link:hover:after {
  transform: translateX(3px);
}
.program-note {
  flex-basis: 100%;
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7eb;
  color: #8a5520;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
  box-shadow: inset 0 0 0 1px rgba(189, 122, 47, 0.16);
}
@media (max-width: 980px) {
  .whats-new-head,
  .whats-new-grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .whats-new {
    padding: 42px 20px;
  }
  .news-card {
    padding: 22px;
  }
}

/* ---- Solutions overview heading ---- */
.solutions-overview {
  padding: 50px clamp(20px, 5vw, 72px) 10px;
  background: linear-gradient(105deg, #f4fbf8 0%, #fffdf9 48%, #eaf2fc 100%);
}
.solutions-overview h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
}
.solutions-overview + .image-strip {
  padding-top: 22px;
}
@media (max-width: 640px) {
  .solutions-overview {
    padding: 38px 20px 8px;
  }
  .solutions-overview h2 {
    font-size: 28px;
  }
}

/* ---- Official brand slogan in hero ---- */
.brand-slogan {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0 0 5px;
  color: #126b50;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.4;
  border-bottom: 3px solid rgba(189, 122, 47, 0.34);
}
@media (max-width: 640px) {
  .brand-slogan {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* ---- Image-style service cards ---- */
.image-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 38px;
  background: linear-gradient(105deg, #f4fbf8 0%, #fffdf9 48%, #eaf2fc 100%);
}
.image-strip .visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.image-strip .visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(23, 32, 42, 0.13);
}
.visual-media {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 188px;
  margin: 0;
  padding: 26px 18px;
  color: #fff;
  text-align: center;
  background-color: #1f5f85;
  background-image:
    linear-gradient(rgba(15, 33, 43, 0.44), rgba(15, 33, 43, 0.5)),
    url("hero-bg.png");
  background-size:
    cover,
    760px auto;
  background-position: center;
  overflow: hidden;
}
.visual-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 32%
  );
  pointer-events: none;
}
.visual-no {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5b52c;
  color: #17202a;
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -35%);
  box-shadow: 0 12px 26px rgba(23, 32, 42, 0.18);
}
.visual-media b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.visual-media em {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.media-study {
  background-color: #245c9d;
  background-position: center 42%;
}
.media-life {
  background-color: #7a5b3a;
  background-position: center 55%;
}
.media-business {
  background-color: #31505e;
  background-position: center 48%;
}
.media-talent {
  background-color: #516370;
  background-position: center 50%;
}
.media-study:before,
.media-life:before,
.media-business:before,
.media-talent:before {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}
.media-study:before {
  content: "学";
}
.media-life:before {
  content: "暮";
}
.media-business:before {
  content: "商";
}
.media-talent:before {
  content: "人";
}
.visual-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px 24px 28px;
  list-style: none;
}
.visual-card li {
  position: relative;
  padding-left: 17px;
  color: #334653;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}
.visual-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@media (max-width: 1100px) {
  .image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .visual-media {
    min-height: 170px;
  }
}
@media (max-width: 640px) {
  .image-strip {
    grid-template-columns: 1fr;
    padding-top: 26px;
    padding-bottom: 30px;
  }
  .visual-media {
    min-height: 156px;
  }
  .visual-media b {
    font-size: 22px;
  }
  .visual-card ul {
    padding: 20px;
  }
}

/* ---- Livelier visual cards override ---- */
.visual-media {
  isolation: isolate;
  background-size:
    cover,
    760px auto;
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}
.visual-card:hover .visual-media {
  filter: saturate(1.08) brightness(1.03);
}
.visual-media:after {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 255, 255, 0.34),
      transparent 22%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(255, 214, 109, 0.26),
      transparent 18%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%);
}
.visual-media:before {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.visual-card:hover .visual-media:before {
  transform: translateY(-3px) rotate(-3deg);
  background: rgba(255, 255, 255, 0.16);
}
.media-study {
  background-image:
    linear-gradient(135deg, rgba(25, 116, 168, 0.58), rgba(19, 130, 95, 0.52)),
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.35),
      transparent 20%
    ),
    url("hero-bg.png");
  background-color: #2f9bd1;
}
.media-life {
  background-image:
    linear-gradient(135deg, rgba(20, 130, 95, 0.54), rgba(245, 181, 44, 0.44)),
    radial-gradient(
      circle at 78% 24%,
      rgba(255, 255, 255, 0.32),
      transparent 18%
    ),
    url("hero-bg.png");
  background-color: #35a978;
}
.media-business {
  background-image:
    linear-gradient(135deg, rgba(36, 92, 157, 0.58), rgba(20, 130, 95, 0.46)),
    radial-gradient(
      circle at 22% 78%,
      rgba(255, 255, 255, 0.28),
      transparent 20%
    ),
    url("hero-bg.png");
  background-color: #356fb2;
}
.media-talent {
  background-image:
    linear-gradient(135deg, rgba(189, 122, 47, 0.5), rgba(36, 92, 157, 0.48)),
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 255, 255, 0.34),
      transparent 20%
    ),
    url("hero-bg.png");
  background-color: #bd7a2f;
}
.visual-no {
  background: linear-gradient(135deg, #ffd36d, #f5a623);
  box-shadow: 0 14px 30px rgba(189, 122, 47, 0.28);
}
.visual-card:nth-child(1) .visual-media b:after,
.visual-card:nth-child(2) .visual-media b:after,
.visual-card:nth-child(3) .visual-media b:after,
.visual-card:nth-child(4) .visual-media b:after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

/* ---- Recruit page ---- */
.recruit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: center;
  min-height: 520px;
  background: linear-gradient(112deg, #f2fbf8 0%, #fffdf8 48%, #eaf2fc 100%);
}
.recruit-hero:before {
  opacity: 0.16;
  background-position: right 9% bottom 10%;
}
.recruit-hero h1 {
  max-width: 880px;
}
.recruit-hero h1 span {
  color: var(--green);
}
.recruit-hero .lead {
  max-width: 760px;
}
.lead-sub {
  max-width: 760px;
  margin-top: 14px;
  color: #5f707b;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.85;
}
.recruit-character {
  justify-self: center;
  position: relative;
  width: min(280px, 42vw);
  aspect-ratio: 1;
  border-radius: 36px;
  background: linear-gradient(150deg, #fff, #effaf6);
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.12);
  overflow: hidden;
  border: 1px solid rgba(20, 130, 95, 0.12);
}
.recruit-character:before {
  content: "Join us";
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff7eb;
  color: #9a6426;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(23, 32, 42, 0.08);
}
.recruit-character img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.05);
}
.recruit-section {
  background: #fff;
}
.recruit-openings {
  background: linear-gradient(105deg, #f7fafb, #fff 50%, #eef9f5);
}
.recruit-process {
  background: #fff;
}
.recruit-values,
.recruit-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.recruit-job-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recruit-values article,
.recruit-job-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.recruit-values article:hover,
.recruit-job-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}
.recruit-values article:after,
.recruit-job-grid article:after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.recruit-values span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff4ec, #fff7eb);
  color: var(--green);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(20, 130, 95, 0.12);
}
.recruit-values h3,
.recruit-job-grid b {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: #126b50;
  font-size: 20px;
}
.recruit-values p,
.recruit-job-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5c6c77;
  line-height: 1.8;
}
.recruit-job-grid em {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #1f5f85;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.recruit-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 122, 47, 0.24);
  border-radius: 16px;
  background: linear-gradient(100deg, #fff7eb, #fff);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.05);
}
.recruit-note strong {
  color: #9a6426;
  white-space: nowrap;
}
.recruit-note span {
  color: #5c6c77;
  line-height: 1.7;
}
.recruit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.recruit-flow div {
  position: relative;
  padding: 22px 20px;
  border: 1px solid rgba(20, 130, 95, 0.12);
  border-radius: 18px;
  background: linear-gradient(160deg, #fff, #f4fbf8);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.055);
}
.recruit-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.recruit-flow b {
  display: block;
  margin-bottom: 8px;
  color: #17202a;
}
.recruit-flow p {
  margin: 0;
  color: #60707c;
  font-size: 14px;
  line-height: 1.7;
}
.recruit-cta {
  margin-top: 26px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(110deg, #17342e, #1f5f85);
  color: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.14);
}
.recruit-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
}
.recruit-cta p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #d8ece9;
  line-height: 1.8;
}
.recruit-cta .btn {
  background: #fff;
  color: #126b50;
}
@media (max-width: 1080px) {
  .recruit-hero {
    grid-template-columns: 1fr;
  }
  .recruit-character {
    width: 220px;
  }
  .recruit-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .recruit-hero {
    min-height: auto;
  }
  .recruit-values,
  .recruit-job-grid,
  .recruit-flow {
    grid-template-columns: 1fr;
  }
  .recruit-character {
    width: 190px;
  }
  .recruit-note {
    display: block;
  }
  .recruit-note strong {
    display: block;
    margin-bottom: 8px;
  }
}

/* ---- Recruit job requirements ---- */
.job-conditions {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  padding: 14px 15px;
  border: 1px solid rgba(20, 130, 95, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fcfa, #fff);
}
.job-conditions strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: #126b50;
  font-size: 13px;
  font-weight: 900;
}
.job-conditions strong:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 130, 95, 0.1);
}
.job-conditions ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.job-conditions li {
  position: relative;
  padding-left: 15px;
  color: #5d6d78;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}
.job-conditions li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bd7a2f;
}
.recruit-job-grid article {
  display: flex;
  flex-direction: column;
}
.recruit-job-grid article em {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 720px) {
  .job-conditions {
    padding: 13px 14px;
  }
  .job-conditions li {
    font-size: 12.5px;
  }
}

/* ---- Why TOMO / Case Studies pages ---- */
.why-hero,
.case-hero {
  background: linear-gradient(112deg, #f2fbf8 0%, #fffdf8 48%, #eaf2fc 100%);
}
.why-hero:before,
.case-hero:before {
  opacity: 0.14;
  background-position: right 8% bottom 12%;
}
.why-section {
  background: #fff;
}
.why-soft,
.case-cta {
  background: linear-gradient(105deg, #f7fafb, #fff 50%, #eef9f5);
}
.why-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.why-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.why-grid article:hover,
.case-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}
.why-grid article:after,
.case-grid article:after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.why-grid span,
.case-grid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #1f5f85;
  font-size: 12px;
  font-weight: 900;
}
.why-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff4ec, #fff7eb);
  color: #126b50;
}
.why-grid h3,
.case-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #126b50;
  font-size: 20px;
  line-height: 1.45;
}
.why-grid p,
.case-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6d78;
  line-height: 1.82;
}
.case-grid ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.case-grid li {
  position: relative;
  padding-left: 15px;
  color: #53636f;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 800;
}
.case-grid li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bd7a2f;
}
.why-cta {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(110deg, #17342e, #1f5f85);
  color: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.14);
}
.why-cta:after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.why-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
}
.why-cta p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 18px;
  color: #d8ece9;
  line-height: 1.8;
}
.why-cta .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #126b50;
}
.case-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 16px;
  background: linear-gradient(100deg, #f2fbf8, #fff);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.05);
}
.case-note strong {
  color: #126b50;
  white-space: nowrap;
}
.case-note span {
  color: #5c6c77;
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .why-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-note {
    display: block;
  }
  .case-note strong {
    display: block;
    margin-bottom: 8px;
  }
}

/* ---- Solutions embedded flow ---- */
.solution-flow-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #f7fafb, #fff 48%, #eef9f5);
  border-top: 1px solid rgba(219, 228, 233, 0.9);
}
.solution-flow-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: right 6% bottom 12%;
  background-size: min(82vw, 1080px) auto;
  opacity: 0.08;
  pointer-events: none;
}
.solution-flow-section > * {
  position: relative;
  z-index: 1;
}
.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.solution-flow article {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(20, 130, 95, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.solution-flow article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}
.solution-flow article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.solution-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #1f5f85);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(20, 130, 95, 0.18);
}
.solution-flow h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  color: #126b50;
  font-size: 20px;
}
.solution-flow p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6d78;
  line-height: 1.75;
}
.solution-flow-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 122, 47, 0.24);
  border-radius: 18px;
  background: linear-gradient(100deg, #fff7eb, #fff);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.05);
}
.solution-flow-note strong {
  color: #9a6426;
  white-space: nowrap;
}
.solution-flow-note span {
  flex: 1;
  color: #5c6c77;
  line-height: 1.7;
}
.solution-flow-note .btn {
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .solution-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-flow-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .solution-flow-note span {
    flex-basis: 100%;
  }
}
@media (max-width: 640px) {
  .solution-flow {
    grid-template-columns: 1fr;
  }
  .solution-flow article {
    padding: 22px;
  }
  .solution-flow-note {
    display: block;
  }
  .solution-flow-note strong,
  .solution-flow-note span {
    display: block;
    margin-bottom: 10px;
  }
  .solution-flow-note .btn {
    display: inline-flex;
  }
}

/* ---- Solutions page framework ---- */
.solutions-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(36, 92, 157, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 18% 78%,
      rgba(20, 130, 95, 0.14),
      transparent 30%
    ),
    linear-gradient(112deg, #f2fbf8 0%, #fffdf8 48%, #eaf2fc 100%);
}
.solutions-hero:before {
  opacity: 0.14;
  background-position: right 8% bottom 10%;
}
.solution-hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #354858;
  font-weight: 800;
}
.solutions-entry-section {
  background: #fff;
}
.solution-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution-entry {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 560px;
  padding: 28px 26px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.07);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.solution-entry:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow:
    0 0 0 3px rgba(20, 130, 95, 0.18),
    0 26px 62px rgba(23, 32, 42, 0.11);
}
.solution-entry:after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.solution-entry > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e4f6ef;
  color: #126b50;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(20, 130, 95, 0.1);
}
.solution-entry h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17202a;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.38;
}
.entry-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -6px;
}
.entry-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f4fbf8;
  color: #126b50;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(20, 130, 95, 0.12);
}
.solution-entry.business .entry-keywords span {
  background: #f3f8ff;
  color: #245c9d;
  box-shadow: inset 0 0 0 1px rgba(36, 92, 157, 0.12);
}
.solution-entry.digital .entry-keywords span {
  background: #fff7eb;
  color: #9a6426;
  box-shadow: inset 0 0 0 1px rgba(189, 122, 47, 0.14);
}
.solution-entry div {
  position: relative;
  z-index: 1;
}
.solution-entry b {
  display: inline-flex;
  margin-bottom: 8px;
  color: #126b50;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.solution-entry p {
  margin: 0;
  color: #5d6d78;
  line-height: 1.78;
}
.solution-entry ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.solution-entry li {
  position: relative;
  padding-left: 18px;
  color: #40515f;
  font-weight: 800;
  line-height: 1.65;
}
.solution-entry li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bd7a2f;
  box-shadow: 0 0 0 5px rgba(189, 122, 47, 0.1);
}
.solution-entry.business > span {
  background: #e7f0fb;
  color: #245c9d;
  box-shadow: inset 0 0 0 1px rgba(36, 92, 157, 0.1);
}
.solution-entry.business:after {
  background: rgba(36, 92, 157, 0.08);
}
.solution-entry.business b {
  color: #245c9d;
}
.solution-entry.digital > span {
  background: #fff1df;
  color: #9a6426;
  box-shadow: inset 0 0 0 1px rgba(189, 122, 47, 0.12);
}
.solution-entry.digital:after {
  background: rgba(189, 122, 47, 0.1);
}
.solution-entry.digital b {
  color: #9a6426;
}
.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.service-flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.service-flow-line.paired {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-flow-line span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 16px 12px;
  border: 1px solid rgba(20, 130, 95, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #126b50;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.055);
}
.service-flow-line span em {
  color: #bd7a2f;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}
.service-flow-line span small {
  display: block;
  max-width: 260px;
  margin-top: 11px;
  color: #60707c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}
.service-flow-line span:after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 22px;
  height: 2px;
  background: rgba(20, 130, 95, 0.25);
  transform: translateY(-50%);
}
.service-flow-line span:last-child:after {
  display: none;
}
.compliance-section {
  background: #fff;
}
.compliance-box {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(189, 122, 47, 0.24);
  border-radius: 24px;
  background: linear-gradient(110deg, #fff7eb, #fff 54%, #f2fbf8);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.07);
}
.compliance-box:after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.08);
}
.compliance-box > * {
  position: relative;
  z-index: 1;
}
.compliance-box h2 {
  margin-bottom: 12px;
  color: #17202a;
}
.compliance-box p:not(.eyebrow) {
  margin: 0;
  color: #9a6426;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.55;
}
.compliance-box span {
  display: block;
  max-width: 920px;
  margin-top: 12px;
  color: #5d6d78;
  line-height: 1.8;
}
.compliance-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 130, 95, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #126b50;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.06);
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.compliance-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.1);
}
.compliance-link small {
  color: #60707c;
  font-size: 12px;
  font-weight: 800;
}
.compliance-link strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #126b50;
  font-size: 14px;
}
.compliance-link strong:after {
  content: "→";
  color: #bd7a2f;
}
@media (max-width: 1100px) {
  .solution-entry-grid {
    grid-template-columns: 1fr;
  }
  .solution-entry {
    min-height: auto;
  }
  .service-flow-line {
    grid-template-columns: 1fr 1fr;
  }
  .service-flow-line span:after {
    display: none;
  }
}
@media (max-width: 640px) {
  .solution-entry {
    padding: 24px 20px;
  }
  .service-flow-line {
    grid-template-columns: 1fr;
  }
  .service-flow-line span {
    min-height: auto;
  }
  .compliance-box {
    padding: 24px 20px;
  }
  .compliance-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
  }
}

/* ---- Assurance section inside Why TOMO ---- */
.assurance-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #f7fafb, #fff 52%, #eef9f5);
  border-top: 1px solid rgba(219, 228, 233, 0.9);
}
.assurance-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: right 8% center;
  background-size: min(78vw, 1080px) auto;
  opacity: 0.08;
  pointer-events: none;
}
.assurance-section > * {
  position: relative;
  z-index: 1;
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.assurance-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(20, 130, 95, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.assurance-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}
.assurance-grid article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(189, 122, 47, 0.08);
}
.assurance-grid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff7eb;
  color: #9a6426;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(189, 122, 47, 0.12);
}
.assurance-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  color: #126b50;
  font-size: 20px;
}
.assurance-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6d78;
  line-height: 1.75;
}
@media (max-width: 1100px) {
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .assurance-grid {
    grid-template-columns: 1fr;
  }
  .assurance-grid article {
    padding: 22px;
  }
}

.phrase {
  display: inline-block;
}
.hero h1 {
  font-size: clamp(38px, 3.9vw, 56px);
}
.consult-channel.is-soon {
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
  background: #eef2f4;
  color: #9aa8b2;
  box-shadow: none;
  cursor: default;
}
.consult-channel.is-soon small {
  font-size: 8.5px;
  font-weight: 800;
}

/* ----- service plans (お見積り structure) 2026-06-28 ----- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid #dbe4e9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.05);
}
.plan-card .plan-tier {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e7f0fb;
  color: #245c9d;
  font-size: 12px;
  font-weight: 900;
}
.plan-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.plan-card li {
  position: relative;
  padding-left: 16px;
  color: #51616c;
  font-size: 14px;
  line-height: 1.6;
}
.plan-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14825f;
}
.plan-card .plan-price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #dbe4e9;
  font-weight: 900;
  color: #17202a;
}
.plan-card.plan-talent {
  border-color: rgba(189, 122, 47, 0.4);
  background: linear-gradient(160deg, #fff, #fff8ef);
}
.plan-card.plan-talent .plan-tier {
  background: #fff1df;
  color: #9a6426;
}
.plan-card .plan-note {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #9a6426;
}
@media (max-width: 980px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- embedded Microsoft Forms (contact) 2026-06-28 ----- */
.ms-form-embed {
  width: 100%;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.07);
  overflow: hidden;
}
.ms-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}
@media (max-width: 560px) {
  .ms-form-embed iframe {
    min-height: 1180px;
  }
}

/* ---- Hero positioning statement ---- */
.hero-position {
  max-width: 780px;
  margin: -4px 0 14px;
  padding-left: 16px;
  border-left: 4px solid rgba(189, 122, 47, 0.48);
}
.hero-position strong {
  display: block;
  margin-bottom: 4px;
  color: #126b50;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.3;
}
.hero-position span {
  display: block;
  color: #354858;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 800;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .hero-position {
    padding-left: 13px;
  }
  .hero-position strong {
    font-size: 20px;
  }
  .hero-position span {
    font-size: 14px;
  }
}

/* ---- AI Starter Program page ---- */
.ai-hero {
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(20, 130, 95, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 18% 74%,
      rgba(245, 181, 44, 0.16),
      transparent 30%
    ),
    linear-gradient(105deg, #f2fbf8 0%, #fffdf8 48%, #eaf2fc 100%);
}
.ai-hero:before {
  opacity: 0.14;
  background-position: right 8% bottom 12%;
}
.ai-intro {
  background: #fff;
}
.ai-intro .heading p:last-child {
  color: #5d6d78;
  line-height: 1.85;
}
.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ai-feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.ai-feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.1);
}
.ai-feature-grid article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.ai-feature-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff4ec, #fff7eb);
  color: #126b50;
  font-weight: 900;
}
.ai-feature-grid h3 {
  position: relative;
  z-index: 1;
  color: #126b50;
}
.ai-feature-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6d78;
  line-height: 1.75;
}
.ai-waitlist-section {
  background: linear-gradient(105deg, #f7fafb, #fff 48%, #eef9f5);
}
.ai-waitlist {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}
.ai-waitlist > div {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(145deg, #17342e, #1f5f85);
  color: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.14);
}
.ai-waitlist > div .eyebrow {
  color: #aee0d0;
}
.ai-waitlist > div h2 {
  color: #fff;
}
.ai-waitlist > div p {
  color: #d8ece9;
  line-height: 1.85;
}
@media (max-width: 900px) {
  .ai-feature-grid,
  .ai-waitlist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ai-waitlist > div {
    padding: 22px;
  }
}

/* ---- Entry landing pages ---- */
.entry-detail-hero {
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(20, 130, 95, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 18% 74%,
      rgba(245, 181, 44, 0.14),
      transparent 30%
    ),
    linear-gradient(105deg, #f2fbf8 0%, #fffdf8 48%, #eaf2fc 100%);
}
.entry-detail-hero.business-detail {
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(36, 92, 157, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 18% 74%,
      rgba(20, 130, 95, 0.12),
      transparent 30%
    ),
    linear-gradient(105deg, #f3f8ff 0%, #fff 50%, #eef9f5 100%);
}
.entry-detail-hero.digital-detail {
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(189, 122, 47, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 18% 74%,
      rgba(36, 92, 157, 0.13),
      transparent 30%
    ),
    linear-gradient(105deg, #fff7eb 0%, #fff 50%, #eaf2fc 100%);
}
.entry-detail-section {
  background: #fff;
}
.entry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.entry-detail-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
}
.entry-detail-grid article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.entry-detail-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff4ec, #fff7eb);
  color: #126b50;
  font-weight: 900;
}
.entry-detail-grid h3,
.entry-detail-grid p {
  position: relative;
  z-index: 1;
}
.entry-detail-grid h3 {
  color: #126b50;
}
.entry-detail-grid p {
  margin: 0;
  color: #5d6d78;
  line-height: 1.75;
}
.entry-detail-cta {
  background: linear-gradient(110deg, #17342e, #1f5f85);
  color: #fff;
}
.entry-detail-cta h2 {
  color: #fff;
}
.entry-detail-cta p {
  max-width: 760px;
  color: #d8ece9;
  line-height: 1.8;
}
.entry-detail-cta .btn.secondary,
.entry-detail-cta .btn.primary {
  background: #fff;
  color: #126b50;
}
@media (max-width: 900px) {
  .entry-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Solution detail advisory pages ---- */
.detail-section-band {
  background: linear-gradient(105deg, #f7fafb, #fff 48%, #eef9f5);
}
.detail-white {
  background: #fff;
}
.detail-pill-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.detail-pill-grid span {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(20, 130, 95, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #243442;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.055);
}
.detail-pill-grid span:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14825f;
  box-shadow: 0 0 0 7px rgba(20, 130, 95, 0.1);
}
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.detail-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 20px 18px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 18px;
  background: linear-gradient(160deg, #fff, #f7fafb);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.055);
  color: #40515f;
  font-weight: 900;
  line-height: 1.65;
}
.detail-card-grid article:after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(189, 122, 47, 0.08);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.journey-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid rgba(20, 130, 95, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
}
.journey-grid article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(20, 130, 95, 0.07);
}
.journey-grid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e4f6ef;
  color: #126b50;
  font-size: 12px;
  font-weight: 900;
}
.journey-grid h3,
.journey-grid p,
.journey-grid dl {
  position: relative;
  z-index: 1;
}
.journey-grid h3 {
  color: #126b50;
}
.journey-grid p {
  color: #5d6d78;
  line-height: 1.8;
}
.journey-grid dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}
.journey-grid dt {
  color: #9a6426;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.journey-grid dd {
  margin: 0;
  color: #40515f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}
.support-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.support-menu-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.065);
}
.support-menu-grid article:after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(36, 92, 157, 0.07);
}
.support-menu-grid h3,
.support-menu-grid p,
.support-menu-grid small {
  position: relative;
  z-index: 1;
}
.support-menu-grid h3 {
  color: #126b50;
  font-size: 20px;
}
.support-menu-grid p {
  margin: 0 0 12px;
  color: #5d6d78;
  line-height: 1.75;
}
.support-menu-grid b {
  color: #17202a;
}
.support-menu-grid small {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(219, 228, 233, 0.9);
  color: #7a5b3a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}
.service-flow-line.detail-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.detail-compliance span {
  font-weight: 800;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}
.faq-list details {
  border: 1px solid rgba(219, 228, 233, 0.95);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.045);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #17202a;
  font-weight: 900;
  line-height: 1.6;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  float: right;
  color: #14825f;
  font-weight: 900;
}
.faq-list details[open] summary:after {
  content: "-";
}
.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #5d6d78;
  line-height: 1.8;
}
@media (max-width: 1200px) {
  .detail-pill-grid,
  .detail-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-grid,
  .support-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-flow-line.detail-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .detail-pill-grid,
  .detail-card-grid,
  .journey-grid,
  .support-menu-grid,
  .service-flow-line.detail-flow {
    grid-template-columns: 1fr;
  }
  .detail-pill-grid span {
    min-height: auto;
  }
  .support-menu-grid article,
  .journey-grid article {
    padding: 22px 20px;
  }
}

/* ---- Rich footer ---- */
.site-footer-rich {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #17202a;
  background: linear-gradient(112deg, #dff4ec 0%, #fff3dc 46%, #dcecff 100%);
  border-top: 0;
}
.site-footer-rich:before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -86px;
  height: 150px;
  border-radius: 0 0 50% 50%;
  background: #fff;
  z-index: 1;
}
.site-footer-rich:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 18% 22%,
      rgba(20, 130, 95, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 68%,
      rgba(36, 92, 157, 0.22),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.46),
      rgba(255, 255, 255, 0.34)
    ),
    url("hero-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size:
    cover,
    cover,
    cover,
    1500px auto;
  opacity: 0.92;
  pointer-events: none;
}
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.7fr));
  gap: 42px;
  padding: 104px clamp(20px, 5vw, 72px) 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 76px;
  height: auto;
}
.footer-logo strong {
  display: block;
  color: #17202a;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.footer-logo small {
  display: block;
  margin-top: 5px;
  color: #14825f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-brand-block p {
  margin: 0 0 14px;
  color: #223747;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}
/* 选择器带 .footer a 抬高优先级：否则 .footer a 的深灰字+下划线会盖掉药丸白字 */
.footer a.footer-mail {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #14825f, #1f5f85);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(20, 130, 95, 0.22);
}
.footer a.footer-mail:hover {
  color: #fff;
  filter: brightness(1.1);
}
.footer-qr-row {
  display: flex;
  gap: 14px;
  margin: 4px 0 10px;
}
.qr-card {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(23, 32, 42, 0.1);
  border: 1px solid rgba(20, 130, 95, 0.18);
}
.qr-card small {
  color: #126b50;
  font-size: 10px;
  font-weight: 900;
}
.footer-note {
  max-width: 330px;
  color: #51616c !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}
.footer-col h3 {
  margin: 0 0 18px;
  color: #0f6b50;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 0 0 13px;
  color: #17202a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: none;
}
.footer-col a:hover {
  color: #245c9d;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 72px) 28px;
  border-top: 1px solid rgba(20, 130, 95, 0.18);
  color: #40515f;
  font-size: 12px;
  font-weight: 900;
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-lang a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #245c9d;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  text-decoration: none;
}
.footer-lang a.active {
  background: linear-gradient(135deg, #14825f, #1f5f85);
  color: #fff;
}
@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 92px;
  }
  .footer-brand-block {
    grid-column: 1/-1;
  }
  .footer-logo img {
    width: 64px;
  }
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 82px 20px 32px;
  }
  .footer-bottom {
    display: grid;
    padding: 18px 20px 28px;
  }
  .footer-lang {
    justify-content: flex-start;
  }
  .footer-qr-row {
    flex-wrap: wrap;
  }
  .site-footer-rich:before {
    top: -96px;
    height: 142px;
  }
  .footer-logo strong {
    font-size: 21px;
  }
}

/* ---- Solutions 页：hero 压缩 + 快速引导 + 信任横条（2026-07） ---- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.solutions-hero {
  padding: 64px clamp(20px, 5vw, 72px) 46px;
}
.solutions-hero h1 {
  font-size: clamp(38px, 4.6vw, 62px);
}
.solutions-hero .actions {
  margin-top: 22px;
}
#entry {
  scroll-margin-top: 86px;
}
.solution-guide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: -6px 0 26px;
  padding: 14px 18px;
  border: 1px solid rgba(20, 130, 95, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #f2fbf7, #fff);
}
.solution-guide p {
  margin: 0;
  color: #40515f;
  font-size: 14px;
  font-weight: 900;
}
.solution-guide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.solution-guide-btns button {
  padding: 9px 14px;
  border: 1px solid rgba(20, 130, 95, 0.28);
  border-radius: 999px;
  background: #fff;
  color: #126b50;
  font: inherit;
  font-size: 13.5px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.solution-guide-btns button:hover {
  background: #e4f6ef;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 130, 95, 0.12);
}
.solution-entry.spotlight {
  border-color: var(--green);
  box-shadow:
    0 0 0 4px rgba(20, 130, 95, 0.24),
    0 26px 62px rgba(23, 32, 42, 0.12);
}
.entry-textlink {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: -4px;
  color: #9a6426;
  font-size: 13.5px;
  font-weight: 900;
  text-decoration: none;
}
.entry-textlink:hover {
  text-decoration: underline;
}
.solution-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 34px;
  padding: 22px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, #f2fbf7, #fffdf8);
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.05);
}
.solution-trust .hero-stats {
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.solution-trust-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.solution-trust-link small {
  color: #60707c;
  font-size: 12px;
  font-weight: 800;
}
.solution-trust-link strong {
  color: #126b50;
  font-size: 15.5px;
  font-weight: 900;
}
.solution-trust-link:hover strong {
  text-decoration: underline;
}
@media (max-width: 720px) {
  .solution-guide {
    margin-bottom: 20px;
  }
  .solution-trust {
    padding: 18px 20px;
  }
}

/* ---- 首页受众卡整卡可点 + SOLUTIONS 入口卡锚点着地（2026-07） ---- */
.target-card {
  cursor: pointer;
}
.solution-entry {
  scroll-margin-top: 96px;
}

/* ---- SOLUTIONS 入口段标题一行显示（.heading 全局 max-width:820px 会挤断句子） ---- */
.solutions-entry-section .heading {
  max-width: none;
}

/* ---- 页脚 LINE 真二维码（2026-07-05 接入，line-qr.svg → line.me 加友） ---- */
.footer a.qr-card {
  text-decoration: none;
}
.qr-img {
  display: block;
  width: 72px;
  height: 72px;
  border: 6px solid #fff;
  background: #fff;
}

/* ---- WeChat 芯片为 button（点击复制微信号）：抹平 UA 默认样式 ---- */
button.consult-channel {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  /* font 简写勿用：font:inherit 会以更高优先级把 .consult-channel 的 12px 顶成 16px */
  font-family: inherit;
  cursor: pointer;
}
