:root {
  --brand: #0b5fb3;
  --brand-2: #2f91d8;
  --brand-deep: #062b52;
  --accent: #f85a9a;
  --ink: #102a43;
  --ink-soft: #385672;
  --muted: #72879a;
  --line: #dce9f4;
  --paper: #ffffff;
  --mist: #f5f9fc;
  --mist-2: #eef7fd;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 18px;
  --shadow-sm: 0 10px 28px rgba(16, 42, 67, 0.08);
  --shadow: 0 28px 78px rgba(11, 95, 179, 0.14);
  --container: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

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

.phone-link {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--brand);
}

@media (min-width: 769px) {
  .phone-link {
    pointer-events: none;
    cursor: default;
  }
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

input,
textarea,
select,
button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 34px rgba(16, 42, 67, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: clamp(190px, 22vw, 286px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #254966;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  border-radius: 999px;
  padding: 10px 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--brand);
  background: #e9f5fd;
}

.nav-cta {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 178px;
  min-height: 54px;
  padding: 0 18px 0 22px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), #168bd7) !important;
  box-shadow: 0 16px 28px rgba(11, 95, 179, 0.24);
  overflow: hidden;
}

.nav-cta::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.24s ease;
}

.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #168bd7, var(--brand)) !important;
  transform: translateY(-1px);
}

.nav-cta:hover::after {
  transform: rotate(90deg);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border:0;
  border-radius: 16px;
  color: var(--brand);
  background:none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-soft {
  border-block: 1px solid rgba(220, 233, 244, 0.72);
  background: linear-gradient(180deg, rgba(245, 249, 252, 0.9), rgba(255, 255, 255, 0.98));
}

.section-blue {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 43, 82, 0.96), rgba(11, 95, 179, 0.94)),
    url("../img/page-flow.png") center / cover;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-blue .section-kicker,
.light .section-kicker {
  color: #bfe3ff;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-header h2,
.story-copy h2,
.statement-card h2,
.flow-aside h2,
.faq-grid h2,
.form-intro h2,
.company-lead-card h2,
.policy-layout h2,
.contact-map-layout h2,
.value-feature h2,
.service-support h2,
.checklist-layout h2,
.recruit-lead h2 {
  color: var(--brand-deep);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 500;
}

.section-header p,
.story-copy p,
.statement-card p,
.flow-aside p,
.faq-grid p,
.form-intro p,
.policy-layout p,
.contact-map-layout p,
.service-support p,
.recruit-lead p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
}
.service-support p,.flow-aside p{ margin-bottom: 14px;}
.light h2,
.light p {
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 82px);
  padding: clamp(72px, 8vw, 118px) 0 80px;
  background: var(--mist);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: var(--hero-image-mobile, var(--hero-image));
  background-position: right center;
  background-size: cover;
  transform: scale(1.045);
  transition: opacity 1.35s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(223deg, rgb(255 255 255 / 0%) 20%, rgb(255 255 255 / 90%));
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero h1 {
  color: var(--brand-deep);
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

.page-hero h1 {
  color: var(--brand-deep);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 500;
}

.lead,
.page-hero p {
  max-width: 640px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions,
.section-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 500;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 34px rgba(11, 95, 179, 0.24);
}

.button-secondary {
  color: var(--brand);
  border-color: #c6dced;
  background: #fff;
}

.button-light {
  color: var(--brand-deep);
  background: #fff;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 38px;
}

.info-item {
  border: 1px solid rgba(220, 233, 244, 0.95);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.info-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.info-item strong {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.intro-layout,
.story-layout,
.statement-layout,
.service-support,
.checklist-layout,
.recruit-lead,
.company-layout,
.policy-layout,
.form-layout,
.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: 46px;
  align-items: center;
}

.intro-points,
.vertical-promise,
.recruit-tiles {
  display: grid;
  gap: 16px;
}

.intro-centered {
  max-width: 760px;
}

.intro-centered h2 {
  color: var(--brand);
}

.care-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin-top: 54px;
}

.care-card {
  min-height: 330px;
  border-radius: 92px 92px 12px 92px;
  padding: clamp(34px, 4vw, 52px) clamp(26px, 3vw, 44px);
  background: #f2f7fa;
  box-shadow: inset 0 0 0 1px rgba(220, 233, 244, 0.72);
  transition: transform 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

.care-card:hover {
  transform: translateY(-8px);
  background: #edf6fc;
  box-shadow:
    inset 0 0 0 1px rgba(85, 183, 255, 0.34),
    0 24px 54px rgba(11, 95, 179, 0.12);
}

.care-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  color: var(--brand);
  transition: transform 0.26s ease;
}

.care-icon::before {
  font-size: 50px;
  line-height: 1;
}

.care-card[data-icon="home"] .care-icon::before {
  content: "å®¶";
}

.care-card[data-icon="heart"] .care-icon::before {
  content: "å¿ƒ";
}

.care-card[data-icon="link"] .care-icon::before {
  content: "é€£";
}

.care-card:hover .care-icon {
  transform: translateY(-4px) scale(1.05);
}

.care-card h3 {
  color: var(--brand);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}

.care-card p {
  margin-top: 24px;
  color: var(--ink);
  font-size: 17px;
  line-height: 2;
}

.icon-card,
.vertical-promise article,
.recruit-tiles article,
.value-item,
.principle-row article,
.contact-card,
.job-card {
  /* border: 1px solid var(--line); */
  border-radius: var(--radius);
  background: var(--paper);
  /* box-shadow: var(--shadow-sm); */
}

.icon-card,
.vertical-promise article,
.recruit-tiles article {
  position: relative;
  padding: 28px 28px 28px 88px;
}

.icon-card::before,
.vertical-promise article::before,
.recruit-tiles article::before {
  content: attr(data-icon);
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
}

.icon-card h3,
.vertical-promise h3,
.recruit-tiles h3,
.service-mini h3,
.value-item h3,
.principle-row h3,
.job-card h3,
.contact-card strong {
  color: var(--brand-deep);
  font-weight: 500;
}

.icon-card p,
.vertical-promise p,
.recruit-tiles p,
.service-mini p,
.value-item p,
.principle-row p,
.contact-card p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.service-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.service-large,
.image-panel,
.company-summary,
.statement-card,
.company-lead-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-large {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 470px;
}

.service-large img,
.image-panel img,
.story-image img,
.photo-panel img,
.value-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-large > div,
.image-panel > div,
.company-summary,
.statement-card,
.company-lead-card {
  padding: clamp(30px, 4vw, 54px);
}

.service-large span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--brand);
  background: #eaf6ff;
  font-size: 12px;
  font-weight: 900;
}

.service-large h3,
.image-panel h2,
.company-summary h2,
.service-detail h2,
.job-card h3,
.contact-card strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  font-weight: 500;
}

.service-large p,
.company-summary p,
.image-panel p,
.service-detail p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.service-mini-list {
  display: grid;
  gap: 14px;
}

.service-mini {
  position: relative;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 24px 90px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-mini::before {
  content: attr(data-icon);
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.story-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.story-image,
.photo-panel,
.value-photo {
  /* min-height: 430px; */
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: inset 0 0 0 5px #dff1ff;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--brand);
  font-weight: 900;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.process-rail li {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 30px;
  /* background: linear-gradient(180deg, rgb(255 255 255 / 8%), rgba(255, 255, 255, 0.1)); */
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(6, 43, 82, 0.12);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease,
    box-shadow 0.26s ease;
}

.process-rail li::before {
  content: "";
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform 0.26s ease, background 0.26s ease;
}

.process-rail li::after {
  /* content: ""; */
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.72);
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.process-rail li[data-icon="tel"]::before {
  content: "Ã¢ËœÅ½";
}

.process-rail li[data-icon="note"]::before {
  content: "Ã¢Å“â€œ";
}

.process-rail li[data-icon="plan"]::before {
  content: "Ã¢â€ â€";
}

.process-rail li[data-icon="care"]::before {
  content: "Ã¥Â¿Æ’";
  font-weight: 900;
}

.process-rail li:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.14));
  box-shadow: 0 28px 58px rgba(6, 43, 82, 0.22);
}

.process-rail li:hover::before {
  transform: translateY(-3px) scale(1.06);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.14));
}

.process-rail li:hover::after {
  transform: scale(1);
  opacity: 1;
}

.process-rail span,
.principle-row span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 900;
}

.process-rail span {
  position: absolute;
  top: 30px;
  right: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.process-rail h3,
.process-rail p {
  color: #fff;
}

.process-rail p {
  margin-top: 10px;
  opacity: 0.88;
}

.split-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.image-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.company-summary dl,
.job-card dl {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.company-summary dl div,
.job-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

dt {
  color: var(--muted);
  font-weight: 500;
}

dd {
  color: var(--ink-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(135deg, rgb(6 43 82), rgb(11 95 179 / 70%)), url(../img/page-contact.png) center / cover;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 880px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.32;
  font-weight: 500;
}

.cta-band p {
  max-width: 820px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 76px;
  background: var(--mist);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 46px;
  align-items: center;
}

.mini-photo {
  /* min-height: 320px; */
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-about,
.page-hero-news,
.page-hero-service,
.page-hero-flow,
.page-hero-recruit,
.page-hero-company,
.page-hero-contact,
.page-hero-legal {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-about {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%), url(../img/page-about-hero.png);
}

.page-hero-news {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%), url(../img/page-news-hero.png);
}

.page-hero-service {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%),
    url("../img/page-service.png");
}

.page-hero-flow {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%),
    url("../img/page-flow.png");
}

.page-hero-recruit {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%),
    url("../img/page-recruit.png");
}

.page-hero-company {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%),
    url("../img/page-company.png");
}

.page-hero-contact {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(238, 247, 253, 0.62) 100%),
    url("../img/page-contact.png");
}

.statement-layout {
  align-items: stretch;
}

.vertical-promise {
  align-self: center;
}

.value-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
}

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

.value-item {
  padding: 28px;
}

.care-principles,
.policy-layout {
  display: grid;
  gap: 34px;
}

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

.principle-row article {
  padding: 30px;
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 24px;
  font-weight: 900;
}

.service-detail span {
  color: var(--brand);
  font-size: 14px;
}

.service-detail ul,
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-detail li,
.support-tags span {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--brand);
  background: #eaf6ff;
  font-size: 13px;
  font-weight: 500;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.flow-aside {
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.timeline h3 {
  color: var(--brand-deep);
  font-size: 22px;
  font-weight: 500;
}

.timeline p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.job-layout,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: 46px;
  align-items: start;
}

.job-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
}

.job-card {
  padding: 34px;
}

.accent-job {
  border-color: rgba(11, 95, 179, 0.22);
  background: linear-gradient(180deg, #fff, #f1f8fd);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  color: var(--brand-deep);
  font-weight: 500;
  cursor: pointer;
}

.faq p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.news-list {
  display: grid;
  gap: 0;
}

.news-card {
  border-top: 1px solid var(--line);
}

.news-card-link {
  display: grid;
  grid-template-columns: clamp(96px, 14vw, 132px) minmax(0, 1fr) 40px;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(20px, 2.6vw, 26px) 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.news-card-link:hover {
  opacity: 0.92;
}

.news-card-thumb {
  overflow: hidden;
  width: clamp(96px, 14vw, 132px);
  height: clamp(72px, 10vw, 96px);
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 8px;
  background: #eef8ff;
}

.news-card-thumb:not(.is-placeholder) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-thumb.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(145deg, #eef8ff 0%, #f7fcff 100%);
}

.news-card-thumb.is-placeholder img {
  width: clamp(40px, 46%, 56px);
  height: clamp(40px, 46%, 56px);
  max-width: 56%;
  max-height: 56%;
  object-fit: contain;
  object-position: 50% 46%;
  flex: 0 0 auto;
}

.news-card-body {
  min-width: 0;
}

.news-card time {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-card h2 {
  color: var(--brand-deep);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.news-card-link:hover h2 {
  color: var(--brand);
}

.news-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.7;
}

.news-card-arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11, 95, 179, 0.18);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  font-size: 16px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-card-link:hover .news-card-arrow {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  transform: translateX(3px);
}

.news-card h2 a {
  color: inherit;
  text-decoration: none;
}

.news-card h2 a:hover {
  color: var(--brand);
}

.news-empty {
  display: grid;
  grid-template-columns: clamp(96px, 14vw, 132px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  padding: clamp(28px, 3vw, 36px) 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.news-empty-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 14vw, 132px);
  height: clamp(72px, 10vw, 96px);
  border: 1px dashed rgba(11, 95, 179, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #f7fbff 0%, #f2f8fc 100%);
}

.news-empty-thumb img {
  width: clamp(40px, 46%, 56px);
  height: clamp(40px, 46%, 56px);
  object-fit: contain;
  object-position: 50% 46%;
  opacity: 0.55;
}

.news-empty-label {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-empty-body h2 {
  color: var(--brand-deep);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.news-empty-body > p {
  margin-top: 10px;
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.7;
}

.news-pagination {
  margin-top: clamp(24px, 3vw, 36px);
}

.news-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-pagination .pagination li {
  list-style: none;
}

.news-pagination .pagination li a,
.news-pagination .pagination li span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-pagination .pagination li a:hover {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.news-pagination .pagination li.active span {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.news-pagination .pagination li.disabled span {
  color: rgba(11, 95, 179, 0.35);
  background: #f7fbff;
}

.news-detail-cover {
  margin: 0 0 20px;
}

.news-detail-cover img {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
}

.news-detail-summary {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.news-detail-body {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: none;
}

.news-detail-body p {
  max-width: none;
  width: 100%;
}

.news-detail-body > * {
  max-width: none;
}

.news-card.news-detail {
  border-top: 0;
  padding-top: 0;
}

.news-detail-back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.form-layout {
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  background: #fff;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--brand-deep);
  font-weight: 500;
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #cfe0ef;
  border-radius: 14px;
  padding: 10px 16px;
  color: var(--ink);
  background: #fbfdff;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 3px solid rgba(85, 183, 255, 0.22);
  border-color: var(--brand-2);
}

.company-layout {
  align-items: start;
}

.company-contact-card {
  margin-top: 28px;
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
  background: var(--brand);
}

.company-contact-card span,
.company-contact-card small {
  display: block;
  opacity: 0.86;
}

.company-contact-card strong {
  display: block;
  margin: 6px 0;
  font-size: 30px;
}

.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
}

th {
  width: 190px;
  color: var(--brand-deep);
  background: #f3f9fe;
}

td {
  color: var(--ink-soft);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px dashed #acc9df;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--ink-soft);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 95, 179, 0.08), rgba(85, 183, 255, 0.12)),
    #fff;
}

.map-placeholder span {
  display: block;
  color: var(--brand);
  font-size: 28px;
  font-weight: 900;
}

.map-embed {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

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

.contact-card {
  padding: 30px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  /* font-weight: 900; */
}

.primary-contact {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.primary-contact span,
.primary-contact strong,
.primary-contact p {
  color: #fff;
}


.site-footer {
  padding: 34px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  background: #062b52;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(260px, 1fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer h2 {
  font-size: 18px;
}

.site-footer h3 {
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 18px;
  row-gap: 4px;
}

.footer-links a,
.legal-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

@media (max-width: 1180px) {
  .nav {
    gap: 0;
    font-size: 13px;
  }

  .nav a {
    padding: 9px 10px;
  }

  .service-mosaic,
  .service-large,
  .split-panels,
  .image-panel,
  .job-cards {
    grid-template-columns: 1fr;
  }

  .service-large,
  .image-panel {
    min-height: 0;
  }

  .service-large img,
  .image-panel img {
    max-height: 360px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    width: 100%;
    height: 72px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 80;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    border: 0;
    border-radius: 0;
    padding: 28px 20px calc(32px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.98)),
      #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      visibility 0s linear 0.28s,
      transform 0.28s ease;
  }

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

  .nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.28s ease,
      visibility 0s linear 0s,
      transform 0.28s ease;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 56px;
    border-radius:58px;
    padding: 14px 18px;
    color: var(--brand-deep);
    background: #fff;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .nav.is-visible a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-visible a:nth-child(1) { transition-delay: 0.03s; }
  .nav.is-visible a:nth-child(2) { transition-delay: 0.06s; }
  .nav.is-visible a:nth-child(3) { transition-delay: 0.09s; }
  .nav.is-visible a:nth-child(4) { transition-delay: 0.12s; }
  .nav.is-visible a:nth-child(5) { transition-delay: 0.15s; }
  .nav.is-visible a:nth-child(6) { transition-delay: 0.18s; }
  .nav.is-visible a:nth-child(7) { transition-delay: 0.21s; }
  .nav.is-visible a:nth-child(8) { transition-delay: 0.24s; }

  
  .nav a.is-active {
    color: var(--brand);
    border-color: rgba(11, 95, 179, 0.22);
    background: #eaf6ff;
  }

  .nav .nav-cta {
    justify-content: space-between;
    margin-top: 8px;
    border-color: transparent;
    min-height: 58px;
    width: 100%;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }
  .care-principles{gap:0}
  .intro-layout{gap:0}
  .hero-grid{position:absolute;bottom:20px;left: 20px;right: 20px;width: auto;}
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 54px;
    height: calc(100vh - 72px);
  }

  .hero::before {
    display: block;
    background: linear-gradient(0deg, rgb(255 255 255 / 0%) 20%, #ffffffeb);
  }

  .hero-slide {
    background-position: center top;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
    color: #fff;
  }
  .hero p{color:#fff}
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .info-strip,
  .intro-layout,
  .story-layout,
  .statement-layout,
  .service-support,
  .checklist-layout,
  .recruit-lead,
  .company-layout,
  .policy-layout,
  .form-layout,
  .contact-map-layout,
  .page-hero-inner,
  .value-feature,
  .flow-layout,
  .job-layout,
  .faq-grid,
  .contact-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 0;
  }

  .process-rail,
  .value-grid,
  .care-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
    .principle-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .footer-links{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .process-rail li{padding: 24px;}

  .flow-aside {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .care-card {
    min-height: auto;
    border-radius: 54px 54px 10px 54px;
    padding: 34px 28px;
  }

  .care-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .care-icon::before {
    font-size: 42px;
  }

  .service-detail ul {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .logo img {
    width: min(54vw, 230px);
    max-height: 46px;
  }

  .care-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .care-card {
    border-radius: 40px 40px 10px 40px;
  }

  .hero-actions,
  .section-actions,
  .center-actions {
    flex-direction: column;
    display: none;
  }
.page-hero-about {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%), url(../img/page-about-hero.png);
}

.page-hero-news {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%), url(../img/page-news-hero.png);
}

.page-hero-service {
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%), url(../img/page-service.png);
}

.page-hero-flow {
  background-image:
    linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%),
    url("../img/page-flow.png");
}

.page-hero-recruit {
  background-image: linear-gradient(90deg, rgb(255 255 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%), url(../img/page-recruit.png);
}

.page-hero-company {
  background-image:
    linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%),
    url("../img/page-company.png");
}

.page-hero-contact {
  background-image:
    linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.86) 48%, rgb(238 247 253 / 90%) 100%),
    url("../img/page-contact.png");
}
  .service-mini-list{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .service-icon{display:none;}
  .form input, .form textarea, .form select{padding: 10px 14px;}
  .service-mini-list .service-mini{
    padding: 68px 24px 24px;
}
  .button {
    width: 100%;
  }

  .info-strip {
    gap: 8px;
     display: none; 
  }

  .icon-card,
  .vertical-promise article {
    padding: 24px 24px 24px 84px;
  }

  .icon-card::before,
  .vertical-promise article::before {
    top: 33px;
    left: 22px;
    display: none;
  }

  .timeline li {
    grid-template-columns: 46px 1fr;
  }
.timeline span{width:44px;height:44px;}
  .company-summary dl div,
  .job-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 14px 18px;
  }

  th {
    border-bottom: 0;
  }

  .mini-photo,
  .story-image,
  .photo-panel,
  .value-photo {
    /* min-height: 260px; */
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Reference-inspired home sections */
.home-section-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.home-section-note::before {
  content: "";
  width: 26px;
  height: 3px;
  background: #f85a9a;
}

.home-support {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 11vw, 156px) 0;
  background: linear-gradient(180deg, #fff 0%, #f4fbff 100%);
}

.home-support::before {
  content: "Support";
  position: absolute;
  top: 4%;
  left: -0.08em;
  color: rgba(47, 145, 216, 0.07);
  font-size: clamp(76px, 16vw, 220px);
  line-height: 0.9;
  font-weight: 900;
}

.home-support-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.home-support-media {
  position: relative;
  min-height: 620px;
}

.support-photo {
  position: absolute;
  z-index: 2;
  width: 46%;
  object-fit: cover;
  box-shadow: 0 28px 72px rgba(31, 122, 184, 0.14);
}

.support-photo-main {
  left: 0;
  top: 40px;
  width: 58%;
  aspect-ratio: 0.9 / 1;
}

.support-photo-sub {
  top: 0;
  right: 8%;
  width: 34%;
  aspect-ratio: 1.25 / 1;
}

.support-photo-small {
  right: 0;
  bottom: 42px;
  width: 38%;
  aspect-ratio: 0.9 / 1;
}

.support-swoosh {
  position: absolute;
  z-index: 1;
  right: -4%;
  top: 34%;
  width: 78%;
  height: 170px;
  border-top: 10px solid rgba(47, 145, 216, 0.95);
  border-radius: 50%;
  transform: rotate(16deg);
  transform-origin: center;
}

.home-support-copy {
  position: relative;
  z-index: 2;
}

.home-support-copy h2 {
  margin-top: 18px;
  color: var(--brand-deep);
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1.16;
  font-weight: 500;
}

.home-support-lead {
  max-width: 620px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

.home-support-lines {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(137, 194, 229, 0.5);
}

.home-support-lines article {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 0.52fr);
  gap: 24px;
  border-bottom: 1px solid rgba(137, 194, 229, 0.5);
  padding: 24px 0;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.home-support-lines h3 {
  color: var(--brand-deep);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
}

.home-support-lines p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.home-support-lines article:hover {
  border-bottom-color: rgba(248, 90, 154, 0.45);
  transform: translateX(6px);
}

.home-support-lines article:hover h3 {
  color: var(--brand);
}

.home-support-lines article h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: #f85a9a;
}

.home-business {
  position: relative;
  overflow: hidden;
  padding: clamp(116px, 12vw, 172px) 0;
  color: #fff;
  background:
    linear-gradient(172deg, rgba(255, 255, 255, 0.98) 0 7%, rgba(255, 255, 255, 0) 7.1%),
    linear-gradient(135deg, #42b8ef 0%, #168bd7 48%, #0d69b8 100%);
}

.home-business::before {
  content: "Business";
  position: absolute;
  top: 8%;
  left: 3vw;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(72px, 13vw, 190px);
  line-height: 0.9;
  font-weight: 900;
  pointer-events: none;
}

.home-business-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.home-business .home-service-head {
  display: none;
}

.home-business .home-section-note {
  color: #dff4ff;
}

.home-business-copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 58px);
  line-height: 0.96;
  font-weight: 500;
  text-shadow: 0 18px 46px rgba(6, 43, 82, 0.18);
}

.home-business-copy > p {
  max-width: 640px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.home-business-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-business-list article,
.home-business-list article:nth-child(2),
.home-business-list article:nth-child(3),
.home-business-list article:nth-child(4) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  width: 100%;
  min-height: auto;
  margin-left: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 18px 24px 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.home-business-list article:hover,
.home-business-list article:focus-visible,
.home-business-list article.is-active {
  transform: translateX(0);
  border-bottom-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  box-shadow: none;
  outline: 0;
}

.home-business-list article::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0);
  transform: scaleY(0.2);
  transform-origin: center;
  transition: transform 0.28s ease, background 0.28s ease;
}

.home-business-list article:hover::before,
.home-business-list article:focus-visible::before,
.home-business-list article.is-active::before {
  background: #f85a9a;
  transform: scaleY(1);
}

.home-business-list h3 {
  grid-column: 1;
  color: #fff;
  padding-left: 22px;
  font-size: clamp(18px, 1.65vw, 24px);
  transition: transform 0.28s ease;
}

.home-business-list p {
  grid-column: 1;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.home-business-list span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 142px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.28s ease, color 0.28s ease;
}

.home-business-list span::after {
  content: "\2192";
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease;
  border-radius: 100%;
}

.home-business-list article:hover h3,
.home-business-list article:focus-visible h3,
.home-business-list article.is-active h3 {
  transform: translateX(8px);
}

.home-business-list article:hover span,
.home-business-list article:focus-visible span,
.home-business-list article.is-active span {
  color: #fff;
  transform: none;
}

.home-business-list article:hover span::after,
.home-business-list article:focus-visible span::after,
.home-business-list article.is-active span::after {
  background: #f85a9a;
  transform: translateX(5px);
}

.home-business .home-service-link {
  margin-top: 32px;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 20px 48px rgba(6, 43, 82, 0.18);
}

.home-business-visual {
  display: block;
  min-height: 620px;
  padding: 0;
}

.home-business-visual::after {
  right: auto;
  left: -80px;
  top: 82px;
  bottom: auto;
  z-index: 4;
  width: min(34vw, 420px);
  opacity: 0.18;
}

.home-business .home-service-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  clip-path: none;
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(6, 43, 82, 0.24);
}

.home-business .home-service-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 43, 82, 0.54)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 46%);
}

.home-business .home-service-visual-copy {
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
}

.home-business-mobile-visual {
  display: none;
}

.home-business .home-service-visual-copy h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.home-about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 168px) 0;
  background:
    radial-gradient(circle at 40% 46%, rgba(222, 243, 255, 0.84), rgba(255, 255, 255, 0) 30%),
    #fff;
}

.home-about-section::before {
  content: "";
  position: absolute;
  top: clamp(116px, 13vw, 190px);
  left: clamp(18px, 5vw, 74px);
  width: min(30vw, 360px);
  aspect-ratio: 1;
  background: url("../img/favicon.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.home-about-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(250px, 0.7fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

.home-about-heading h2 {
  margin-top: 14px;
  color: var(--brand);
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 0.9;
  font-weight: 900;
}

.home-about-image {
  position: relative;
  aspect-ratio: 0.86 / 1;
  border-radius: 48% 48% 10px 10px;
  box-shadow: 0 28px 80px rgba(31, 122, 184, 0.14);
}

.home-about-image::after {
  content: none;
  position: absolute;
  inset: 50% auto auto 50%;
  width: 310px;
  height: 310px;
  margin: -155px 0 0 -155px;
  border: 1px solid rgba(47, 145, 216, 0.24);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(11, 95, 179, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: rotate(-18deg);
}

.home-about-image::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 18%;
  z-index: 2;
  width: 5px;
  height: 96px;
  border-radius: 999px;
  background: #f85a9a;
  box-shadow: 0 14px 28px rgba(248, 90, 154, 0.2);
}

.home-about-copy {
  padding-block: 0;
}

.home-about-copy h2 {
  color: var(--brand-deep);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.22;
  font-weight: 500;
}

.home-about-copy p {
  margin-top: 22px;
  color: var(--ink-soft);
}

.home-about-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.home-about-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 6px;
  padding: 13px 20px;
  color: var(--brand-deep);
  background: #eef8ff;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.home-about-tabs span:first-child {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.home-about-tabs span:nth-child(2) {
  border: 1px solid rgba(11, 95, 179, 0.12);
  background: #eef8ff;
}

.home-about-copy .check-list li::before {
  background: #f85a9a;
  box-shadow: inset 0 0 0 5px rgba(248, 90, 154, 0.18);
}

@keyframes homeCareFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes homeCareSweep {
  0%,
  100% {
    transform: rotate(16deg) translateX(0);
  }

  50% {
    transform: rotate(14deg) translateX(18px);
  }
}

.support-photo-main,
.home-about-image {
  animation: homeCareFloat 8s ease-in-out infinite;
}

.support-photo-sub {
  animation: homeCareFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}

.support-photo-small {
  animation: homeCareFloat 9s ease-in-out infinite;
  animation-delay: -4s;
}

.support-swoosh {
  animation: homeCareSweep 9s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .home-support-stage,
  .home-business-stage,
  .home-about-stage {
    grid-template-columns: 1fr;
  }

  .home-support-media {
    min-height: 520px;
  }

  .home-business-visual {
    min-height: 520px;
  }

  .home-business .home-service-visual {
    min-height: 520px;
  }

  .home-about-image {
    max-width: 520px;
  }
}

@media (max-width: 920px) {
  .home-support-media {
    min-height: 440px;
  }

  .support-photo-main {
    width: 62%;
  }

  .support-photo-sub {
    right: 0;
    width: 38%;
  }

  .support-photo-small {
    width: 42%;
  }

  .home-support-lines article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-business {
    background:
      linear-gradient(175deg, #f8fcff 0 4%, transparent 4.1%),
      linear-gradient(135deg, #42b8ef 0%, #168bd7 48%, #0d69b8 100%);
  }

  .home-business-copy h2,
  .home-about-heading h2 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .home-business-list span {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
    min-width: 0;
  }

  .home-about-tabs {
    display: flex;
  }
}

@media (max-width: 560px) {
  .home-support,
  .home-business,
  .home-about-section {
    padding: 72px 0;
  }

  .home-support-media {
    min-height: 360px;
    margin-inline: -16px;
  }

  .support-swoosh {
    top: 38%;
    right: -16%;
    width: 88%;
    border-top-width: 7px;
  }

  .home-support-copy h2 {
    font-size: clamp(28px, 7.6vw, 34px);
  }

  .home-business .home-service-visual {
    min-height: 420px;
  }

  .home-business-visual::after {
    left: auto;
    right: -130px;
    top: 230px;
    width: 220px;
  }

  .home-business-list span {
    gap: 10px;
  }

  .home-about-image {
    border-radius: 44% 44% 8px 8px;
  }

  .home-about-section::before {
    top: 86px;
    left: 36px;
    width: 220px;
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-photo-main,
  .support-photo-sub,
  .support-photo-small,
  .support-swoosh,
  .home-about-image {
    animation: none;
  }
}

/* Home redesign */
.home-main {
  background: #fbfdff;
}

.home-hero {
  min-height: calc(100dvh - 165px);
  padding: clamp(42px, 5vw, 70px) 0 0;
  background: #eaf4fb;
  z-index: 30;
}

.home-hero.has-fixed-info {
  z-index: 120;
}

.home-hero::before {
  /* background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.96) 0%, rgba(251, 253, 255, 0.86) 37%, rgba(251, 253, 255, 0.16) 68%),
    linear-gradient(180deg, rgba(6, 43, 82, 0) 62%, rgba(6, 43, 82, 0.22) 100%); */
}

.home-hero .hero-slide {
  background-position: right center;
}

@media (min-width: 921px) {
  .hero-slide {
    background-image: var(--hero-image);
  }
}

.home-hero .hero-grid {
  min-height: calc(100dvh - 82px - 130px);
  display: grid;
  align-items: center;
  padding-bottom: 34px;
}

.home-hero .hero-copy {
  max-width: 680px;
  transform: translateY(16px);
}

.home-hero-notice {
  --notice-line-height: 24px;
  position: absolute;
  left: 50%;
  bottom: 55px;
  z-index: 21;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1080px, calc(100vw - 64px));
  max-width: none;
  border: 1px solid rgba(218, 231, 240, 0.95);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 10px 24px 9px;
  overflow: hidden;
  color: var(--brand-deep);
  background: linear-gradient(90deg, rgba(235, 248, 255, 0.92), rgba(255, 255, 255, 0.58));
  box-shadow: 0 -10px 28px rgba(6, 43, 82, 0.08);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.home-hero-notice span {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.home-hero-notice span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(248, 90, 154, 0.12);
}

.home-hero-notice .notice-ticker {
  height: var(--notice-line-height);
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0, #000 96%, transparent 100%);
}

.home-hero-notice .notice-track {
  display: grid;
  animation: homeNoticeTicker 9s cubic-bezier(0.78, 0, 0.22, 1) infinite;
}

.home-hero-notice .notice-track a {
  display: block;
  height: var(--notice-line-height);
  color: var(--brand-deep);
  font-size: 13px;
  line-height: var(--notice-line-height);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-hero-notice .notice-track a:hover {
  color: var(--brand);
}

.notice-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 999px;
  padding: 4px 13px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.notice-more:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

@keyframes homeNoticeTicker {
  0%, 25% {
    transform: translateY(0);
  }

  33%, 58% {
    transform: translateY(calc(var(--notice-line-height) * -1));
  }

  66%, 91% {
    transform: translateY(calc(var(--notice-line-height) * -2));
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-notice .notice-track {
    animation: none;
  }
}

.home-hero .eyebrow {
  /* border: 1px solid rgba(11, 95, 179, 0.12); */
  /* color: var(--brand-deep); */
  /* background: rgba(255, 255, 255, 0.74); */
  box-shadow: 0 12px 34px rgba(6, 43, 82, 0.08);
}

.home-hero h1 {
  max-width: 640px;
  color: #06233f;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.04;
}

.home-hero .lead {
  max-width: 560px;
  color: #294d68;
}

.home-info-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.78fr) minmax(170px, 0.82fr) minmax(260px, 1.22fr);
  align-items: end;
  gap: 14px;
  max-width: 860px;
  margin-top: 36px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-info-strip .info-item {
  position: relative;
  border: 0;
  min-height: 96px;
  border-radius: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 44px rgba(6, 43, 82, 0.11);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.home-info-strip .info-item + .info-item {
  border-left: 0;
}

.home-info-strip .info-item span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-info-strip .info-item strong {
  color: var(--brand-deep);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.16;
  font-weight: 900;
}

.home-info-strip .info-item:first-child {
  transform: translateY(16px);
}

.home-info-strip .info-item:nth-child(2) {
  transform: translateY(-8px);
  border-top: 4px solid #f85a9a;
}

.home-info-strip .info-item:last-child strong {
  color: #fff;
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: 0.01em;
}

.home-info-strip .info-item:last-child span {
  color: rgba(255, 255, 255, 0.82);
}

.home-info-strip .info-item:last-child {
  min-height: 132px;
  padding: 24px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(248, 90, 154, 0.95), rgba(22, 139, 215, 0.95)),
    var(--brand);
  box-shadow: 0 28px 62px rgba(11, 95, 179, 0.22);
}

.home-info-strip .info-item:last-child::after {
  content: "CALL";
  position: absolute;
  right: -8px;
  bottom: -8px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.home-info-strip .info-item:first-child::after,
.home-info-strip .info-item:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f85a9a;
  box-shadow: 0 0 0 8px rgba(248, 90, 154, 0.12);
}

.home-opening,
.home-story,
.home-work,
.home-contact {
  padding: clamp(84px, 9vw, 138px) 0;
}

.home-opening {
  background: #fff;
}

.home-opening-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 98px);
  align-items: start;
}

.home-opening-title {
  position: sticky;
  top: 118px;
}

.home-opening-title p,
.home-service-head p,
.home-flow-copy p,
.home-story-copy p,
.home-recruit-panel p,
.home-cta p {
  color: var(--ink-soft);
  font-size: 17px;
}

.home-opening-title h2,
.home-service-head h2,
.home-story-copy h2,
.home-flow-copy h2,
.home-topics-head h2,
.home-recruit-panel h2,
.home-company-panel h2,
.home-cta h2 {
  margin-top: 12px;
  color: var(--brand-deep);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.18;
  font-weight: 500;
}

.home-care-notes {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-care-notes article {
  display: grid;
  grid-template-columns: 86px minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.home-care-notes span,
.home-service-list span,
.home-flow-list span,
.home-topics-list time {
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home-care-notes h3,
.home-service-list h3,
.home-flow-list h3,
.home-topics-list span {
  color: var(--brand-deep);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.home-care-notes p,
.home-service-list p,
.home-flow-list p,
.home-company-panel dd {
  color: var(--ink-soft);
}

.home-services {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 150px) 0;
  color: var(--brand-deep);
  background:
    linear-gradient(180deg, #f8fcff 0%, #e7f7ff 52%, #fafdff 100%);
}

.home-services::before {
  content: "Services";
  position: absolute;
  top: clamp(40px, 6vw, 86px);
  right: -0.08em;
  color: rgba(47, 145, 216, 0.08);
  font-size: clamp(86px, 17vw, 250px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.home-services::after {
  content: "";
  position: absolute;
  right: 4vw;
  bottom: 6%;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  background: url("../img/favicon.png") center / contain no-repeat;
  filter: saturate(0.9);
  opacity: 0.12;
  display: none;
  pointer-events: none;
}

.home-service-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.home-service-head h2 {
  margin: 0;
  color: var(--brand-deep);
}

.home-service-head p {
  max-width: 620px;
  color: var(--ink-soft);
}

.home-service-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(640px, auto);
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2.6vw, 34px) 0;
}

.home-service-board::after {
  content: "";
  position: absolute;
  right: max(-260px, -18vw);
  bottom: clamp(10px, 4vw, 58px);
  z-index: 2;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background: url("../img/favicon.png") center / contain no-repeat;
  opacity: 0.22;
  filter: saturate(0.9) drop-shadow(0 18px 34px rgba(47, 145, 216, 0.1));
  pointer-events: none;
}

.home-service-visual {
  grid-column: 5 / -1;
  grid-row: 1;
  position: relative;
  min-height: 640px;
  overflow: hidden;
  margin-left: -28px;
  isolation: isolate;
  background: #dff2ff;
  box-shadow: 0 42px 110px rgba(31, 122, 184, 0.18);
  clip-path: polygon(10% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.home-service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 18%, rgba(7, 60, 101, 0.48) 100%),
    linear-gradient(90deg, rgba(10, 73, 119, 0.12) 0%, rgba(255, 255, 255, 0.18) 54%, rgba(255, 255, 255, 0) 100%);
}

.home-service-visual::after {
  content: "";
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  top: clamp(28px, 7vw, 96px);
  z-index: 2;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  background: url("../img/favicon.png") center / contain no-repeat;
  opacity: 0.18;
  filter: saturate(0.9);
  display: none;
  pointer-events: none;
}

.home-service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.42s ease, transform 0.72s ease;
}

.home-service-visual img.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-service-visual-copy {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: clamp(32px, 6vw, 88px);
  left: clamp(82px, 10vw, 150px);
  z-index: 3;
  max-width: 620px;
  color: #fff;
}

.home-service-visual-copy span {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 7px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(9, 85, 143, 0.28);
  backdrop-filter: blur(12px);
}

.home-service-visual-copy h3 {
  max-width: 600px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.16;
  font-weight: 500;
}

.home-service-visual-copy p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.home-service-panel {
  grid-column: 1 / 7;
  grid-row: 1;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}

.home-service-summary {
  grid-column: 1 / -1;
  max-width: 480px;
  border: 1px solid rgba(166, 213, 241, 0.72);
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(31, 122, 184, 0.1);
  backdrop-filter: blur(14px);
}

.home-service-summary span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-service-summary p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.home-service-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: transparent;
}

.home-service-list article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: center;
  min-height: 106px;
  width: min(560px, 100%);
  border: 1px solid rgba(190, 224, 244, 0.78);
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(31, 122, 184, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.home-service-list article:nth-child(2) {
  margin-left: clamp(24px, 4vw, 70px);
}

.home-service-list article:nth-child(3) {
  margin-left: clamp(8px, 2vw, 34px);
}

.home-service-list article:nth-child(4) {
  margin-left: clamp(48px, 7vw, 116px);
}

.home-service-list article:hover,
.home-service-list article:focus-visible,
.home-service-list article.is-active {
  transform: translateX(18px);
  border-color: rgba(47, 145, 216, 0.48);
  background: #fff;
  box-shadow: 0 26px 58px rgba(31, 122, 184, 0.16);
  outline: 0;
}

.home-service-list h3 {
  color: var(--brand-deep);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.18;
}

.home-service-list p {
  color: var(--ink-soft);
}

.home-service-link {
  grid-column: 2;
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: min(100%, 320px);
  min-height: 66px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, #1682cc, #51b8eb);
  font-weight: 900;
  box-shadow: 0 24px 44px rgba(47, 145, 216, 0.22);
  border-radius: 50px;
}

.home-service-link::after {
  content: "\2192";
  font-size: 20px;
}

.home-story {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.home-story-image {
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  box-shadow: 0 34px 80px rgba(6, 43, 82, 0.14);
}

.home-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-copy {
  padding-block: 24px;
}

.home-story-copy .check-list {
  margin-top: 30px;
}

.home-flow {
  padding: clamp(84px, 9vw, 158px) 0;
  color: var(--brand-deep);
  background:
    linear-gradient(135deg, rgba(239, 249, 255, 0.96), rgba(213, 239, 255, 0.82)),
    url("../img/page-flow.png") center / cover;
}

.home-flow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.home-flow-copy h2,
.home-flow-copy p {
  color: var(--brand-deep);
}

.home-flow-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.home-flow-copy .button {
  margin-top: 22px;
}

.home-flow-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(80, 159, 210, 0.28);
}

.home-flow-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(80, 159, 210, 0.28);
  padding: 20px 0;
}

.home-flow-list span {
  color: var(--accent);
  font-size: 28px;
}

.home-flow-list h3 {
  color: var(--brand-deep);
  font-size: 24px;
}

.home-flow-list p {
  color: var(--ink-soft);
}

.home-flow-list p {
  margin-top: 6px;
  opacity: 0.82;
  font-size: 14px;
  line-height: 1.65;
}

.home-work {
  padding: clamp(84px, 9vw, 158px) 0;
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.home-work-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.home-ad-card,
.home-recruit-panel,
.home-company-panel,
.home-contact-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(330px, 30vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(205, 225, 239, 0.92);
  border-radius: 6px;
  background: #eef8ff;
  box-shadow: 0 18px 48px rgba(6, 43, 82, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-ad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 43, 82, 0.02) 12%, rgba(6, 43, 82, 0.42) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-ad-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.home-recruit-panel::after {
  content: none;
}

.home-ad-card:hover {
  border-color: rgba(11, 95, 179, 0.28);
  box-shadow: 0 30px 72px rgba(6, 43, 82, 0.15);
  transform: translateY(-5px);
}

.home-ad-card img,
.home-recruit-panel img,
.home-company-panel img,
.home-contact-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.home-ad-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.045);
}

.home-ad-copy,
.home-recruit-panel > div,
.home-company-panel > div,
.home-contact-panel > div {
  position: relative;
  z-index: 3;
  width: min(84%, 420px);
  margin: 0 0 clamp(14px, 1.8vw, 20px) clamp(14px, 1.8vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.14);
  backdrop-filter: blur(14px);
}

.home-recruit-panel .home-ad-copy {
  width: min(48%, 260px);
  margin-bottom: 16px;
  margin-left: 16px;
  padding: 14px 16px;
}

.home-ad-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-ad-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.home-ad-card p,
.home-recruit-panel p,
.home-company-panel p,
.home-contact-panel p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.home-ad-card h2,
.home-recruit-panel h2,
.home-company-panel h2,
.home-contact-panel h2 {
  margin-top: 10px;
  color: var(--brand-deep);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0;
}

.home-recruit-panel h2 {
  font-size: clamp(18px, 1.45vw, 21px);
}


.home-ad-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 128px;
  min-height: 36px;
  margin-top: 14px;
  border: 1px solid rgba(11, 95, 179, 0.18);
  padding: 0 6px 0 15px;
  color: var(--brand);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
}

.home-ad-button::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 14px;
  color: #fff;
  background: var(--brand);
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}

.home-ad-card:hover .home-ad-button::after {
  background: var(--accent);
  transform: translateX(3px);
}

.home-topics-panel {
  padding: 0;
}

.home-topics-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.home-topics-head span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-topics-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
padding: 12px 24px;
  border: 1px solid rgba(11, 95, 179, 0.18);
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.home-topics-list {
  display: grid;
  border-top: 1px solid rgba(80, 159, 210, 0.28);
}

.home-topics-list a {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(80, 159, 210, 0.28);
  padding: 20px 0;
  color: var(--brand-deep);
}

.home-topics-list a::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--brand);
  border: 1px solid rgba(11, 95, 179, 0.18);
  border-radius: 999px;
  font-size: 13px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-topics-list a:hover::after {
  color: #fff;
  background: var(--brand);
  transform: translateX(3px);
}


.home-topics-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-contact {
  padding-top: 0;
  background: #fff;
}

.home-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  color: #fff;
  isolation: isolate;
  background: #0f79bf;
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/page-contact.png") center / cover;
}

.home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 104, 168, 0.92), rgba(72, 178, 230, 0.66));
}

.home-cta h2 {
  max-width: 950px;
  color: #fff;
}

.home-cta p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.home-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .home-service-board,
  .home-work-grid {
    grid-template-columns: 1fr;
  }

  .home-service-board {
    grid-template-rows: auto auto;
    padding: 0;
  }

  .home-service-board::after {
    right: -210px;
    bottom: auto;
    top: 310px;
    width: 340px;
  }

  .home-service-visual,
  .home-service-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .home-service-visual {
    margin-left: 0;
  }

  .home-service-panel {
    grid-template-columns: 1fr;
    margin-top: -86px;
    padding-inline: clamp(18px, 4vw, 44px);
  }

  .home-service-summary,
  .home-service-list,
  .home-service-link {
    grid-column: 1;
  }

  .home-service-list article,
  .home-service-list article:nth-child(2),
  .home-service-list article:nth-child(3),
  .home-service-list article:nth-child(4) {
    width: 100%;
    margin-left: 0;
  }

  .home-service-visual {
    min-height: 560px;
  }

  .home-recruit-panel img {
    max-height: 380px;
  }
}

@media (max-width: 920px) {
  .home-hero {
    min-height: calc(100dvh - 72px);
    height: auto;
    padding: 24px 0;
  }

  .home-hero::before {
    /* background:
      linear-gradient(180deg, rgba(6, 43, 82, 0.04) 0%, rgba(6, 43, 82, 0.76) 74%, rgba(6, 43, 82, 0.9) 100%); */
  }

  .home-hero .hero-grid {
    position: relative;
    inset: auto;
    min-height: calc(100dvh - 72px - 160px);
    align-items: flex-start;
    width: min(100% - 32px, var(--container));
  }

  .home-hero h1,
  .home-hero .lead {
    /* color: #fff; */
  }

  .home-hero .eyebrow {
    /* color: #fff; */
    /* background: rgba(6, 43, 82, 0.4); */
    /* border-color: rgba(255, 255, 255, 0.24); */
  }

  .home-hero .hero-actions {
    display: flex;
  }

  .home-opening-grid,
  .home-service-head,
  .home-story-grid,
  .home-flow-grid {
    grid-template-columns: 1fr;
  }

  .home-opening-title {
    position: static;
  }

  .home-care-notes article {
    grid-template-columns: 54px 1fr;
  }

  .home-care-notes article p {
    grid-column: 2;
  }

  .home-service-visual {
    min-height: 460px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
  }

  .home-service-visual-copy {
    left: clamp(22px, 6vw, 56px);
    bottom: clamp(28px, 8vw, 70px);
  }

  .home-service-panel {
    margin-top: -44px;
    padding-inline: 0;
  }

  .home-service-board::after {
    right: -150px;
    top: 300px;
    width: 240px;
    opacity: 0.2;
  }

  .home-service-list article:hover,
  .home-service-list article:focus-visible,
  .home-service-list article.is-active {
    transform: translateY(-4px);
  }

  .home-story-image {
    aspect-ratio: 4 / 3;
  }

  .home-info-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .home-info-strip .info-item + .info-item {
    border-left: 0;
  }

  .home-info-strip .info-item:first-child,
  .home-info-strip .info-item:nth-child(2) {
    transform: none;
  }

  .home-info-strip .info-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .home-opening,
  .home-story,
  .home-work,
  .home-contact,
  .home-services,
  .home-flow {
    padding-block: 68px;
  }

  .home-contact {
    padding-top: 0;
  }

  .home-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .home-hero .hero-actions,
  .home-cta .section-actions {
    display: flex;
  }

  .home-info-strip {
    display: grid;
    gap: 0;
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .home-info-strip .info-item,
  .home-info-strip .info-item:last-child {
    min-height: auto;
    padding: 16px 18px;
    transform: none;
  }

  .home-info-strip .info-item:last-child strong {
    font-size: 24px;
  }

  .home-service-visual,
  .home-cta {
    margin-inline: -16px;
  }

  .home-service-visual {
    min-height: 420px;
    clip-path: none;
  }

  .home-service-board::after {
    right: -150px;
    top: 305px;
    width: 220px;
  }

  .home-service-list article,
  .home-flow-list li {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .home-flow-list li {
    grid-template-columns: 46px 1fr;
  }

  .home-service-list article {
    min-height: auto;
    padding: 24px 18px;
  }

  .home-service-visual-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .home-service-link {
    width: 100%;
    min-width: 0;
  }

  .home-ad-copy,
  .home-recruit-panel > div,
  .home-company-panel > div,
  .home-contact-panel > div {
    width: calc(100% - 36px);
    margin: 0 18px 18px;
    padding: 18px 18px;
  }

  .home-topics-panel {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .home-topics-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-topics-list a {
    grid-template-columns: 1fr 28px;
    gap: 6px 14px;
    padding: 16px 0;
  }

  .home-topics-list time,
  .home-topics-list span {
    grid-column: 1;
  }

  .home-topics-list a::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .home-topics-list span {
    white-space: normal;
  }

  .news-card-link {
    grid-template-columns: 80px minmax(0, 1fr) 32px;
    gap: 12px 14px;
    padding: 18px 0;
  }

  .news-card-thumb {
    width: 80px;
    height: 64px;
  }

  .news-card-thumb.is-placeholder img {
    width: 36px;
    height: 36px;
    max-width: 56%;
    max-height: 56%;
  }

  .news-card-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-empty {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 24px 0;
  }

  .news-empty-thumb {
    width: 80px;
    height: 64px;
  }
}

/* Final reference-section overrides */
.home-services.home-business {
  position: relative;
  overflow: hidden;
  padding: clamp(116px, 12vw, 172px) 0;
  color: #fff;
  background:linear-gradient(135deg, #42b8ef 0%, #168bd7 48%, #0d69b8 100%);
}

.home-services.home-business::before {
  content: "Business";
  top: 8%;
  left: 3vw;
  right: auto;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(72px, 13vw, 190px);
}

.home-services.home-business::after {
  display: none;
}

.home-business-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.home-business-copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 58px);
  line-height: 0.96;
  font-weight: 500;
  text-shadow: 0 18px 46px rgba(6, 43, 82, 0.18);
}

.home-business-copy > p {
  max-width: 640px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.home-business .home-section-note {
  color: #dff4ff;
}

.home-business-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-business-list article,
.home-business-list article:nth-child(2),
.home-business-list article:nth-child(3),
.home-business-list article:nth-child(4) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  width: 100%;
  min-height: auto;
  margin-left: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-business-list article:hover,
.home-business-list article:focus-visible,
.home-business-list article.is-active {
  transform: translateX(12px);
  border-bottom-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: none;
}

.home-business-list h3 {
  grid-column: 1;
  color: #fff;
  padding-left: 22px;
  font-size: clamp(18px, 1.65vw, 24px);
}

.home-business-list p {
  grid-column: 1;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.home-business-list span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 142px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.28s ease;
}

.home-business-list span::after {
  content: "\2192";
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease;
}

.home-business-list article:hover span,
.home-business-list article:focus-visible span,
.home-business-list article.is-active span {
  color: #fff;
}

.home-business-list article:hover span::after,
.home-business-list article:focus-visible span::after,
.home-business-list article.is-active span::after {
  background: #f85a9a;
  transform: translateX(5px);
}

.home-business .home-service-link {
  grid-column: auto;
  margin-top: 32px;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 20px 48px rgba(6, 43, 82, 0.18);
}

.home-business .home-service-board.home-business-visual {
  display: block;
  min-height: 620px;
  padding: 0;
}

.home-business .home-service-board::after {
  display: none;
}

.home-business .home-service-visual {
  grid-column: auto;
  position: relative;
  min-height: 620px;
  margin: 0;
  clip-path: none;
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(6, 43, 82, 0.24);
}

.business-heart-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

.heart-ring,
.heart-dot {
  position: absolute;
  display: block;
}

.heart-ring {
  width: min(26vw, 300px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.34);
  transform: rotate(-45deg);
  filter: drop-shadow(0 18px 30px rgba(6, 43, 82, 0.12));
}

.heart-ring::before,
.heart-ring::after,
.heart-dot::before,
.heart-dot::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.heart-ring::before,
.heart-ring::after {
  width: 100%;
  height: 100%;
  border: inherit;
}

.heart-ring::before {
  left: 0;
  top: -50%;
}

.heart-ring::after {
  left: 50%;
  top: 0;
}

.heart-ring-large {
  right: -6%;
  top: 12%;
  opacity: 0.7;
}

.heart-ring-small {
  right: 18%;
  bottom: 18%;
  width: min(15vw, 160px);
  opacity: 0.42;
}

.heart-dot {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-45deg);
}

.heart-dot::before,
.heart-dot::after {
  width: 28px;
  height: 28px;
  background: inherit;
}

.heart-dot::before {
  top: -14px;
  left: 0;
}

.heart-dot::after {
  top: 0;
  left: 14px;
}

.heart-dot-a {
  right: 12%;
  top: 24%;
  opacity: 0.44;
}

.heart-dot-b {
  left: 12%;
  bottom: 18%;
  width: 18px;
  height: 18px;
  opacity: 0.34;
}

.heart-dot-b::before,
.heart-dot-b::after {
  width: 18px;
  height: 18px;
}

.heart-dot-b::before {
  top: -9px;
}

.heart-dot-b::after {
  left: 9px;
}

.home-business .home-service-visual-copy {
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
}

@media (max-width: 1180px) {
  .home-business-stage {
    grid-template-columns: 1fr;
  }

  .home-business .home-service-board.home-business-visual,
  .home-business .home-service-visual {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .home-services.home-business {
    background: linear-gradient(135deg, #42b8ef 0%, #168bd7 48%, #0d69b8 100%);
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .home-business-list span {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    min-width: 0;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .home-services.home-business {
    padding: 72px 0;
  }

  .home-business .home-service-visual {
    min-height: 420px;
  }

  .home-business .home-service-board::after {
    display: none;
  }

  .home-business-list span {
    gap: 10px;
  }

  .heart-ring-large {
    right: -26%;
    top: 10%;
    width: 210px;
  }

  .heart-ring-small {
    right: 8%;
    bottom: 22%;
    width: 112px;
  }

  .heart-dot-a {
    right: 16%;
    top: 20%;
  }
}

/* Final hero information panel override */
.home-hero .home-info-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1080px, calc(100vw - 64px));
  max-width: none;
  margin-top: 0;
  border: 1px solid rgba(218, 231, 240, 0.95);
  border-radius: 0 0 10px 10px;
  padding: 20px 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.985);
  box-shadow:
    0 28px 70px rgba(6, 43, 82, 0.18),
    0 12px 28px rgba(47, 145, 216, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.92) inset;
  backdrop-filter: blur(12px);
  transform: translate(-50%, 50%);
  transition:
    width 0.32s ease,
    border-radius 0.32s ease,
    box-shadow 0.32s ease,
    padding 0.32s ease,
    transform 0.32s ease,
    opacity 0.2s ease;
}

.home-hero .home-info-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 14%, rgba(47, 145, 216, 0.5) 42%, transparent 78%);
}

.home-hero .home-info-strip::after {
  content: none;
}

.home-hero .home-info-strip .info-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 68px;
  border: 0;
  border-radius: 0;
  padding: 0 30px;
  color: var(--brand-deep);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  overflow: hidden;
  transition: background 0.24s ease, transform 0.24s ease;
}

.home-hero .home-info-strip .info-item + .info-item {
  border-left: 1px solid rgba(11, 95, 179, 0.12);
}

.home-hero .home-info-strip .info-item:hover {
  background: linear-gradient(180deg, rgba(239, 249, 255, 0.7), rgba(255, 255, 255, 0.88));
  transform: none;
}

.home-hero .home-info-strip .info-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--brand);
  border: 2px solid currentColor;
  border-radius: 12px;
  font-style: normal;
}

.home-hero .home-info-strip .info-icon::before {
  color: var(--brand);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero .home-info-strip [data-info-icon="time"] .info-icon::before {
  content: "9-18";
}

.home-hero .home-info-strip [data-info-icon="service"] .info-icon {
  border-radius: 50%;
}

.home-hero .home-info-strip [data-info-icon="service"] .info-icon::before {
  content: "24h";
}

.home-hero .home-info-strip [data-info-icon="tel"] .info-icon::before {
  content: "TEL";
}

.home-hero .home-info-strip .info-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

.home-hero .home-info-strip .info-copy {
  display: block;
  min-width: 0;
}

.home-hero .home-info-strip .info-copy span {
  display: block;
  color: #426b8a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.home-hero .home-info-strip .info-item strong,
.home-hero .home-info-strip .info-item:last-child strong {
  display: block;
  margin-top: 5px;
  color: var(--brand-deep);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero .home-info-strip .info-item:last-child strong {
  color: var(--brand-deep);
}

.home-hero .home-info-strip .info-item::after {
  content: "\2192";
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--brand);
  border: 1px solid rgba(11, 95, 179, 0.22);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: none;
  transform: translateY(-50%);
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.home-hero .home-info-strip .info-item:hover::after {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  transform: translate(3px, -50%);
}

.home-hero .home-info-strip .info-item:first-child::after,
.home-hero .home-info-strip .info-item:nth-child(2)::after,
.home-hero .home-info-strip .info-item:last-child::after {
  content: "\2192";
  right: 24px;
  bottom: auto;
  width: 32px;
  height: 32px;
  color: var(--brand);
  border: 1px solid rgba(11, 95, 179, 0.22);
  background: #fff;
  font-size: 14px;
  border-radius: 50%;
  box-shadow: none;
}

.home-hero .home-info-strip .info-item:first-child:hover::after,
.home-hero .home-info-strip .info-item:nth-child(2):hover::after,
.home-hero .home-info-strip .info-item:last-child:hover::after {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  transform: translate(3px, -50%);
}

.home-opening.home-support {
  position: relative;
  z-index: 1;
  padding-top: clamp(148px, 12vw, 194px);
}

.home-hero .home-info-strip.is-fixed {
  position: fixed;
  left: auto;
  right: 0;
  top: 50%;
  bottom: auto;
  z-index: 1000;
  grid-template-columns: 1fr;
  width: 188px;
  border-radius: 12px 0 0 12px;
  padding: 10px;
  box-shadow:
    0 22px 58px rgba(6, 43, 82, 0.18),
    0 8px 20px rgba(47, 145, 216, 0.1);
  transform: translateY(-50%);
}

.home-hero .home-info-strip.is-fixed::before {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), rgba(47, 145, 216, 0.62), transparent);
}

.home-hero .home-info-strip.is-fixed .info-item {
  grid-template-columns: 1fr;
  min-height: 62px;
  padding: 12px 16px 12px 18px;
}

.home-hero .home-info-strip.is-fixed .info-item + .info-item {
  border-left: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.12);
}

.home-hero .home-info-strip.is-fixed .info-icon {
  display: none;
}

.home-hero .home-info-strip.is-fixed .info-copy span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.home-hero .home-info-strip.is-fixed .info-item strong,
.home-hero .home-info-strip.is-fixed .info-item:last-child strong {
  font-size: 15px;
  line-height: 1.25;
}

.home-hero .home-info-strip.is-fixed .info-item::after,
.home-hero .home-info-strip.is-fixed .info-item:first-child::after,
.home-hero .home-info-strip.is-fixed .info-item:nth-child(2)::after,
.home-hero .home-info-strip.is-fixed .info-item:last-child::after {
  content: none;
  display: none;
}

@media (max-width: 920px) {


  .home-hero .hero-copy {
    transform: none;
  }

  .home-hero-notice {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(520px, calc(100% - 32px));
    max-width: none;
    margin: 20px auto 0;
    transform: none;
  }

  .home-hero .home-info-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: min(520px, 100%);
    margin: 28px auto 0;
    padding: 8px;
    transform: none;
  }

  .home-hero .home-info-strip .info-item + .info-item {
    border-left: 0;
    border-top: 1px solid rgba(11, 95, 179, 0.12);
  }

  .home-opening.home-support {
    padding-top: clamp(86px, 11vw, 126px);
  }
}

@media (max-width: 560px) {
  .home-hero-notice {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 14px;
    border-bottom: 1px solid rgba(218, 231, 240, 0.95);
    padding: 12px 15px;
  }

  .home-hero-notice strong {
    white-space: nowrap;
  }

  .home-hero .home-info-strip {
    display: grid;
    margin-top: 22px;
    width: 100%;
  }

  .home-hero .home-info-strip .info-item {
    min-height: 74px;
    padding: 13px 50px 13px 16px;
  }

  .home-hero .home-info-strip .info-item strong,
  .home-hero .home-info-strip .info-item:last-child strong {
    font-size: 18px;
  }
}

/* Final mobile home layout */
@media (max-width: 760px) {
  .home-main {
    background: #fff;
  }


  .home-hero::before {
    /* background:
      linear-gradient(180deg, rgba(6, 43, 82, 0.02) 0%, rgba(6, 43, 82, 0.58) 58%, rgba(6, 43, 82, 0.86) 100%); */
  }

  .home-hero .hero-slide {
    background-position: 62% center;
  }


  .home-hero .hero-copy {
    max-width: 100%;
    transform: none;
  }

  .home-hero .eyebrow {
    /* margin-bottom: 14px; */
    /* padding: 7px 12px; */
    /* color: #fff; */
    /* background: rgba(6, 43, 82, 0.34); */
    border-color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
  }

  .home-hero h1 {
    /* max-width: 340px; */
    /* color: #fff; */
    /* font-size: clamp(34px, 10.5vw, 46px); */
    line-height: 1.08;
  }

  .home-hero .lead {
    max-width: 236px;
    margin-top: 16px;
    /* color: rgba(255, 255, 255, 0.9); */
    font-size: 14px;
    line-height: 1.8;
  }

  .home-hero-notice {
    --notice-line-height: 22px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    width: min(100% - 32px, 520px);
    margin: 12px auto 0;
    border-radius: 8px 8px 0 0;
    padding: 8px 12px;
  }

  .home-hero-notice span {
    align-self: center;
    font-size: 11px;
    line-height: var(--notice-line-height);
  }

  .home-hero-notice .notice-ticker {
    align-self: center;
    height: var(--notice-line-height);
  }

  .home-hero-notice .notice-track a {
    height: var(--notice-line-height);
    font-size: 12px;
    line-height: var(--notice-line-height);
  }

  .notice-more {
    display: none;
  }

  .home-hero .home-info-strip {
    width: min(100% - 32px, 520px);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    padding: 6px 10px;
  }

  .home-hero .home-info-strip::before,
  .home-hero .home-info-strip::after {
    content: none;
  }

  .home-hero .home-info-strip .info-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px 4px;
  }

  .home-hero .home-info-strip .info-icon,
  .home-hero .home-info-strip .info-item::after {
    display: none;
  }

  .home-hero .home-info-strip .info-copy span {
    font-size: 10px;
  }

  .home-hero .home-info-strip .info-item strong,
  .home-hero .home-info-strip .info-item:last-child strong {
    margin-top: 2px;
    font-size: 16px;
  }

  .home-support,
  .home-business,
  .home-about-section,
  .home-flow,
  .home-work {
    padding-block: 58px;
  }

  .home-support-stage,
  .home-business-stage,
  .home-about-stage,
  .home-flow-grid,
  .home-work-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-support-media {
    min-height: 270px;
  }

  .support-photo-main {
    width: 74%;
  }

  .support-photo-sub {
    right: 0;
    bottom: 0;
    width: 42%;
  }

  .support-photo-small,
  .support-swoosh {
    display: none;
  }

  .home-support-copy h2,
  .home-business-copy h2,
  .home-about-copy h2,
  .home-flow-copy h2,
  .home-topics-head h2 {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.25;
  }

  .home-support-lead,
  .home-business-copy > p,
  .home-about-copy p,
  .home-flow-copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .home-support-lines {
    gap: 0;
  }

  .home-support-lines article {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .home-support-lines h3 {
    white-space: normal;
  }

  .home-services.home-business {
    padding: 58px 0;
  }

  .home-business-list {
    margin-top: 28px;
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 0;
  }

  .home-business-list h3 {
    font-size: 20px;
  }

  .home-business-list p {
    font-size: 13px;
  }

  .home-business-list span {
    margin-top: 10px;
  }

  .home-business .home-service-board.home-business-visual,
  .home-business .home-service-visual {
    min-height: 340px;
  }

  .home-business .home-service-visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .home-business .home-service-visual-copy h3 {
    font-size: 24px;
  }

  .home-about-heading h2 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .home-about-image {
    aspect-ratio: 4 / 3;
  }

  .home-about-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-about-tabs span {
    width: auto;
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-flow-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .home-topics-list a {
    gap: 14px;
    padding: 16px 0;
  }

  .home-flow-list h3,
  .home-topics-list span {
    font-size: 18px;
  }

  .home-flow-list p {
    font-size: 13px;
  }

  .home-ad-card,
  .home-recruit-panel {
    min-height: 300px;
  }

  .home-recruit-panel .home-ad-copy {
    width: min(70%, 260px);
    margin: 0 0 14px 14px;
  }

  .home-topics-panel {
    padding: 0;
  }

  .home-topics-head {
    align-items: center;
    flex-direction: row;
  }

  .home-topics-list a {
    grid-template-columns: 1fr 28px;
    gap: 4px 12px;
  }

  .home-topics-list time,
  .home-topics-list span {
    grid-column: 1;
  }

  .home-topics-list a::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .home-topics-list span {
    white-space: normal;
  }
}

/* Mobile tightening pass */
@media (max-width: 760px) {
  .home-support,
  .home-about-section,
  .home-flow,
  .home-work {
    padding-block: 46px;
  }

  .home-support-media {
    min-height: 205px;
  }

  .support-photo-main {
    width: 72%;
  }

  .support-photo-sub {
    width: 38%;
  }

  .home-support-lines article {
    padding: 14px 0;
  }

  .home-support-lines h3 {
    font-size: 17px;
  }

  .home-support-lines p {
    font-size: 12px;
    line-height: 1.7;
  }

  .home-services.home-business {
    padding: 48px 0;
  }

  .home-business-copy > p {
    margin-top: 18px;
  }

  .home-business-list {
    margin-top: 20px;
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    padding: 13px 0;
  }

  .home-business-list h3 {
    font-size: 18px;
  }

  .home-business-list span {
    min-height: 34px;
    font-size: 12px;
  }

  .home-business .home-service-board.home-business-visual {
    display: none;
  }

  .home-about-stage {
    gap: 18px;
  }

  .home-about-heading {
    display: none;
  }

  .home-about-image {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .home-about-copy h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .home-about-tabs {
    margin-top: 22px;
  }

  .home-about-copy .check-list {
    margin-top: 20px;
  }

  .home-flow {
    padding-block: 46px;
  }

  .home-flow-list li,
  .home-topics-list a {
    padding: 13px 0;
  }

  .home-work {
    padding-block: 52px;
  }

  .home-ad-card,
  .home-recruit-panel {
    min-height: 250px;
  }

  .home-recruit-panel .home-ad-copy {
    width: min(66%, 240px);
    padding: 12px 14px;
  }

  .home-topics-panel {
    padding: 0;
  }

  .home-topics-head {
    margin-bottom: 2px;
  }

  .home-topics-head > a {
    min-height: 32px;
    min-width: 96px;
  }

  .home-topics-list a {
    padding: 10px 0;
  }
}

/* Mobile final balance */
@media (max-width: 760px) {


  .home-hero h1 {
    font-size: clamp(32px, 9.6vw, 42px);
  }

  .home-hero .lead {
    margin-top: 12px;
    font-size: 13px;
  }

  .home-support,
  .home-about-section,
  .home-flow {
    padding-block: 42px;
  }

  .home-work {
    padding-block: 46px;
  }

  .home-support-stage,
  .home-business-stage,
  .home-about-stage,
  .home-flow-grid,
  .home-work-grid {
    gap: 22px;
  }

  .home-support-media {
    /* min-height: 180px; */
  }

  .home-support-copy h2,
  .home-business-copy h2,
  .home-about-copy h2,
  .home-flow-copy h2,
  .home-topics-head h2 {
    font-size: clamp(24px, 7.2vw, 31px);
  }

  .home-support-lead,
  .home-business-copy > p,
  .home-about-copy p,
  .home-flow-copy p {
    font-size: 13px;
    line-height: 1.7;
  }

  .home-support-lines {
    margin-top: 24px;
  }

  .home-support-lines article {
    gap: 5px;
    padding: 11px 0;
  }

  .home-support-lines h3 {
    font-size: 16px;
  }

  .home-support-lines p {
    font-size: 12px;
    line-height: 1.55;
  }

  .home-services.home-business {
    padding: 44px 0;
  }

  .home-business-copy > p {
    margin-top: 14px;
  }

  .home-business-list {
    margin-top: 18px;
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 10px;
    padding: 12px 0;
  }

  .home-business-list article:hover,
  .home-business-list article:focus-visible,
  .home-business-list article.is-active {
    transform: none;
  }

  .home-business-list h3,
  .home-business-list p {
    padding-left: 13px;
  }

  .home-business-list h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .home-business-list p {
    font-size: 12px;
    line-height: 1.55;
  }

  .home-business-list span {
    min-width: auto;
    min-height: auto;
    gap: 6px;
    margin-top: 0;
    font-size: 11px;
  }

  .home-business-list span::after {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .home-business .home-service-link {
    min-height: 48px;
    margin-top: 22px;
    padding: 0 18px;
    font-size: 13px;
  }

  .home-about-image {
    max-height: 190px;
  }

  .home-about-copy h2 {
    margin-top: 6px;
    line-height: 1.32;
  }

  .home-about-copy p {
    margin-top: 14px;
  }

  .home-about-tabs {
    gap: 6px;
    margin-top: 16px;
  }

  .home-about-tabs span {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 11px;
  }

  .home-about-copy .check-list {
    gap: 8px;
    margin-top: 15px;
  }

  .home-about-copy .check-list li {
    padding-left: 24px;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-about-copy .check-list li::before {
    top: 4px;
    width: 13px;
    height: 13px;
    box-shadow: inset 0 0 0 4px rgba(248, 90, 154, 0.18);
  }

  .home-about-copy .text-link {
    margin-top: 18px;
    font-size: 13px;
  }

  .home-flow-copy .button {
    min-height: 46px;
    margin-top: 16px;
    padding: 0 18px;
    font-size: 13px;
  }

  .home-flow-list li {
    grid-template-columns: 38px 1fr;
    gap: 11px;
    padding: 11px 0;
  }

  .home-flow-list span {
    font-size: 22px;
  }

  .home-flow-list h3,
  .home-topics-list span {
    font-size: 16px;
  }

  .home-flow-list p {
    font-size: 12px;
    line-height: 1.55;
  }

  .home-topics-list a {
    gap: 11px;
    padding: 11px 0;
  }

  .home-ad-card,
  .home-recruit-panel {
    min-height: 220px;
  }

  .home-recruit-panel .home-ad-copy {
    width: min(58%, 210px);
    margin: 0 0 12px 12px;
    padding: 10px 12px;
  }

  .home-ad-label {
    font-size: 10px;
  }

  .home-ad-copy h2 {
    margin-top: 4px;
    font-size: 22px;
  }

  .home-ad-copy p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.5;
  }

  .home-ad-button {
    margin-top: 10px;
    font-size: 11px;
  }

  .home-topics-panel {
    padding: 0;
  }

  .home-topics-head > a {
    min-height: 30px;
    min-width: 86px;
    font-size: 11px;
  }

  .home-topics-list a {
    grid-template-columns: minmax(0, 1fr) 24px;
  }

  .home-topics-list a::after {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

/* Mobile hero info strip: keep three items in one row */
@media (max-width: 760px) {
  .home-hero .home-info-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 5px 6px;
  }

  .home-hero .home-info-strip .info-item,
  .home-hero .home-info-strip .info-item:last-child {
    grid-column: auto;
    min-height: 54px;
    padding: 8px 5px;
  }

  .home-hero .home-info-strip .info-item + .info-item {
    border-top: 0;
    border-left: 1px solid rgba(11, 95, 179, 0.12);
  }

  .home-hero .home-info-strip .info-copy span {
    font-size: 9px;
    line-height: 1;
    white-space: nowrap;
  }

  .home-hero .home-info-strip .info-item strong,
  .home-hero .home-info-strip .info-item:last-child strong {
    margin-top: 5px;
    font-size: clamp(12px, 3.3vw, 13px);
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .home-hero .home-info-strip [data-info-icon="tel"] strong,
  .home-hero .home-info-strip [data-info-icon="tel"] .phone-link {
    color: var(--accent);
  }
}

/* About page: home-inspired content rhythm */
.about-main {
  background:
    radial-gradient(circle at 82% 16%, rgba(222, 243, 255, 0.7), rgba(255, 255, 255, 0) 25%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.about-main .page-hero {
  margin-bottom: 0;
}

.about-main .section {
  padding-block: clamp(82px, 9vw, 132px);
}

.about-main .section-soft {
  border-block: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(248, 90, 154, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.about-main .statement-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.about-main .statement-layout::before {
  content: "About us";
  position: absolute;
  top: -0.58em;
  left: -0.05em;
  z-index: -1;
  color: rgba(11, 95, 179, 0.06);
  font-size: clamp(76px, 14vw, 190px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.about-main .statement-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.about-main .statement-card .section-kicker,
.about-main .value-feature .section-kicker,
.about-main .care-principles .section-kicker {
  margin-bottom: 16px;
  color: var(--accent);
}

.about-main .statement-card h2 {
  max-width: 13em;
  color: var(--brand-deep);
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.18;
}

.about-main .statement-card p {
  max-width: 42em;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 2;
}

.about-main .vertical-promise {
  counter-reset: about-promise;
  gap: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.16);
}

.about-main .vertical-promise article {
  counter-increment: about-promise;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 0;
  padding: 24px 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.about-main .vertical-promise article::before {
  content: counter(about-promise, decimal-leading-zero);
  position: static;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--brand);
  background: transparent;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.about-main .vertical-promise article:hover {
  transform: translateX(8px);
  border-bottom-color: rgba(248, 90, 154, 0.38);
}

.about-main .vertical-promise h3 {
  color: var(--brand-deep);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
}

.about-main .vertical-promise p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.about-main .value-feature {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
}

.about-main .value-photo {
  position: relative;
  aspect-ratio: 0.88 / 1;
  border-radius: 48% 48% 8px 8px;
  box-shadow: 0 28px 80px rgba(31, 122, 184, 0.14);
}

.about-main .value-photo::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 18%;
  z-index: 2;
  width: 5px;
  height: 94px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(248, 90, 154, 0.2);
}

.about-main .value-feature h2 {
  max-width: 12em;
  color: var(--brand-deep);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.about-main .value-grid {
  gap: 12px;
  margin-top: 34px;
}

.about-main .value-item {
  min-height: 162px;
  border: 1px solid rgba(11, 95, 179, 0.08);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-main .value-item:nth-child(1) {
  background: linear-gradient(145deg, #f5faff 0%, #e8f3fc 100%);
  border-color: rgba(11, 95, 179, 0.1);
}

.about-main .value-item:nth-child(2) {
  background: linear-gradient(145deg, #f4fbf7 0%, #e6f4ec 100%);
  border-color: rgba(46, 125, 96, 0.12);
}

.about-main .value-item:nth-child(3) {
  background: linear-gradient(145deg, #f8f6ff 0%, #eceaf8 100%);
  border-color: rgba(91, 107, 174, 0.12);
}

.about-main .value-item:nth-child(4) {
  background: linear-gradient(145deg, #fff7f9 0%, #fceef3 100%);
  border-color: rgba(248, 90, 154, 0.14);
}

.about-main .value-item:nth-child(1) h3 {
  color: #0b5fb3;
}

.about-main .value-item:nth-child(2) h3 {
  color: #2a7d62;
}

.about-main .value-item:nth-child(3) h3 {
  color: #4f5f9e;
}

.about-main .value-item:nth-child(4) h3 {
  color: #c44d7a;
}

.about-main .value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(6, 43, 82, 0.1);
}

.about-main .value-item:nth-child(1):hover {
  border-color: rgba(11, 95, 179, 0.22);
}

.about-main .value-item:nth-child(2):hover {
  border-color: rgba(46, 125, 96, 0.24);
}

.about-main .value-item:nth-child(3):hover {
  border-color: rgba(91, 107, 174, 0.24);
}

.about-main .value-item:nth-child(4):hover {
  border-color: rgba(248, 90, 154, 0.28);
}

.about-main .value-item h3 {
  font-size: 21px;
}

.about-main .value-item p {
  line-height: 1.75;
}

.about-main .care-principles {
  gap: clamp(34px, 5vw, 56px);
}

.about-main .care-principles .section-header {
  max-width: 780px;
  margin: 0;
  text-align: left;
}

.about-main .care-principles .section-header h2 {
  max-width: 12em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.about-main .care-principles .section-header p {
  max-width: 42em;
  line-height: 1.9;
}

.about-main .principle-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.about-main .principle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(230px, 32vw, 360px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
  border: 0;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(85, 183, 255, 0.22) 0%, rgb(11 95 179 / 0%) 46%, #168bd7 100%), var(--principle-bg) center / cover no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-main .principle-card--1 {
  --principle-bg: url("../img/about-policy-1.png");
}

.about-main .principle-card--2 {
  --principle-bg: url("../img/about-policy-2.png");
}

.about-main .principle-card--3 {
  --principle-bg: url("../img/about-policy-3.png");
}

@media (hover: hover) {
  .about-main .principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11, 95, 179, 0.22);
  }
}

.about-main .principle-card-body {
  position: relative;
  z-index: 1;
}

.about-main .principle-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.about-main .principle-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.75;
}

.about-main .cta-band {
  border-radius: 8px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(6, 43, 82, 0.94), rgba(11, 95, 179, 0.82)),
    url("../img/page-contact.png") center / cover;
  box-shadow: 0 28px 72px rgba(6, 43, 82, 0.18);
}

.about-main .cta-band h2 {
  max-width: 800px;
  font-size: clamp(18px, 3.8vw, 48px);
}

@media (max-width: 920px) {
  .about-main .statement-layout,
  .about-main .value-feature {
    grid-template-columns: 1fr;
  }

  .about-main .value-photo {
    max-height: 420px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .about-main .principle-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

@media (max-width: 760px) {
  .about-main .section {
    padding-block: 48px;
  }

  .about-main .statement-layout::before {
    top: -0.28em;
    font-size: clamp(62px, 20vw, 92px);
  }

  .about-main .statement-card h2,
  .about-main .value-feature h2,
  .about-main .care-principles .section-header h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .about-main .statement-card p,
  .about-main .care-principles .section-header p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.75;
  }

  .about-main .vertical-promise article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0 14px;
    padding: 17px 0;
  }

  .about-main .vertical-promise article:hover {
    transform: none;
  }

  .about-main .value-grid {
    margin-top: 22px;
  }

  .about-main .value-item {
    min-height: auto;
    padding: 18px;
  }

  .about-main .principle-cards {
    gap: 14px;
  }


  .about-main .principle-card h3 {
    font-size: 18px;
  }

  .about-main .principle-card p {
    font-size: 12px;
  }

  .about-main .cta-band {
    padding: 28px 22px;
  }
}

/* Shared inner pages: home-inspired service flow */
.inner-main {
  background:
    radial-gradient(circle at 82% 14%, rgba(222, 243, 255, 0.68), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #ffffff 100%);
}

.inner-main .section {
  padding-block: clamp(82px, 9vw, 132px);
}

.inner-main .section-soft {
  border-block: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(248, 90, 154, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.inner-main .section-kicker {
  color: var(--accent);
}

.inner-main .photo-panel {
  position: relative;
  aspect-ratio: 0.92 / 1;
  border-radius: 48% 48% 8px 8px;
  box-shadow: 0 28px 80px rgba(31, 122, 184, 0.14);
}

.inner-main .photo-panel::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 18%;
  z-index: 2;
  width: 5px;
  height: 94px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(248, 90, 154, 0.2);
}

.inner-main .cta-band {
  border-radius: 8px;
  padding: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(6, 43, 82, 0.94), rgba(11, 95, 179, 0.82)),
    url("../img/page-contact.png") center / cover;
  box-shadow: 0 28px 72px rgba(6, 43, 82, 0.18);
}

.inner-main .section-actions {
  display: flex;
}

.inner-main .button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.service-main .service-cards-section {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.service-main .service-detail-list {
  display: grid;
  gap: clamp(8px, 4vw, 40px);
  border-top: 0;
}

.service-main .service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 24px);
  background: #fff;
}

.service-main .service-detail-card.is-reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.service-main .service-detail-card.is-reverse .service-detail-media {
  order: 2;
}

.service-main .service-detail-card.is-reverse .service-detail-body {
  order: 1;
}

.service-main .service-detail-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 28vw, 320px);
  border-radius: 14px;
  background: linear-gradient(145deg, #eef8ff 0%, #f7fcff 100%);
  transition: box-shadow 0.45s ease;
}

.service-main .service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(11, 95, 179, 0.08) 100%);
  pointer-events: none;
  transition: background 0.45s ease;
}

.service-main .service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) {
  .service-main .service-detail-card:hover .service-detail-media img,
  .service-main .service-detail-media:hover img {
    transform: scale(1.06);
  }

  .service-main .service-detail-card:hover .service-detail-media::after,
  .service-main .service-detail-media:hover::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(11, 95, 179, 0.16) 100%);
  }

  .service-main .service-detail-card:hover .service-detail-media,
  .service-main .service-detail-media:hover {
    box-shadow: 0 20px 44px rgba(11, 95, 179, 0.14);
  }

  .service-main .service-support .photo-panel img {
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-main .service-support .photo-panel:hover img {
    transform: scale(1.05);
  }

  .service-main .service-support .photo-panel:hover {
    box-shadow: 0 32px 88px rgba(31, 122, 184, 0.2);
  }
}

.service-main .service-support .photo-panel {
  transition: box-shadow 0.45s ease;
}

.service-main .service-detail-body {
  padding: clamp(8px, 1.6vw, 18px) clamp(8px, 2vw, 20px);
}

.service-main .service-detail-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: #eef8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-main .service-detail-body h2 {
  color: var(--brand-deep);
 font-size: clamp(30px, 4vw, 52px);
    line-height: 1.28;
    font-weight: 500;
}

.service-main .service-detail-body > p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.9;
}

.service-main .service-detail-tags {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 95, 179, 0.1);
}

.service-main .service-detail-tags ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-main .service-detail-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--brand-deep);
  background: rgba(238, 248, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.service-main .service-detail-tags li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.service-main .service-detail {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(22px, 4vw, 52px);
  border: 0;
  border-bottom: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 0;
  padding: clamp(28px, 5vw, 58px) 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-main .service-detail:hover {
  transform: translateX(8px);
  border-bottom-color: rgba(248, 90, 154, 0.38);
}

.service-main .service-detail span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.service-main .service-detail h2 {
  max-width: 13em;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.22;
}

.service-main .service-detail p {
  max-width: 46em;
  line-height: 1.9;
}

.service-main .service-detail ul {
  align-self: center;
  gap: 8px;
}

.service-main .service-detail li,
.service-main .support-tags span {
  border: 1px solid rgba(11, 95, 179, 0.1);
  border-radius: 6px;
  color: var(--brand-deep);
  background: #eef8ff;
}

.service-main .service-support {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
}

.service-main .service-support h2 {
  max-width: 12em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.service-main .support-tags {
  margin-top: 26px;
}

.service-main .service-support .info-strip {
  max-width: none;
}

@media (max-width: 980px) {
  .service-main .service-detail-card,
  .service-main .service-detail-card.is-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .service-main .service-detail-card.is-reverse .service-detail-media,
  .service-main .service-detail-card.is-reverse .service-detail-body {
    order: unset;
  }

  .service-main .service-detail-media,
  .service-main .service-detail-media img {
    min-height: 220px;
  }

  .service-main .service-detail-body {
    padding: 4px 2px 8px;
  }

  .service-main .service-detail-tags ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-main .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    padding: clamp(24px, 5vw, 40px) 0;
  }

  .service-main .service-detail h2,
  .service-main .service-detail p {
    max-width: none;
  }

  .service-main .service-detail ul {
    align-self: stretch;
    width: 100%;
    margin-top: 0;
    justify-content: flex-start;
  }
}

@media (min-width: 981px) {

  .service-main .service-detail {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px dashed rgba(11, 95, 179, 0.24);
    border-bottom: 0;
    padding: 0 clamp(18px, 2.2vw, 30px);
  }

  .service-main .service-detail:last-child {
    border-right: 0;
  }

  .service-main .service-detail:hover {
    transform: translateY(-6px);
  }

  .service-main .service-detail h2 {
    max-width: none;
    font-size: clamp(22px, 1.75vw, 30px);
  }

  .service-main .service-detail p {
    max-width: none;
  }
}

.flow-main .flow-layout {
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(42px, 6vw, 86px);
}

.flow-main .flow-aside {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flow-main .flow-aside h2 {
  max-width: 11em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.flow-main .flow-aside p {
  line-height: 1.9;
}

.flow-main .timeline {
  gap: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.16);
}

.flow-main .timeline li {
  grid-template-columns: 76px minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 0;
  padding: clamp(24px, 4vw, 44px) 0;
  background: transparent;
  box-shadow: none;
}

.flow-main .timeline span {
  place-items: start;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--brand);
  background: transparent;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
}

.flow-main .timeline h3 {
  font-size: clamp(20px, 2vw, 28px);
}

.flow-main .checklist-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
}

.recruit-main .recruit-lead {
  position: relative;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.78fr);
  gap: clamp(42px, 6vw, 86px);
}

.recruit-main .recruit-lead::before {
  content: "Recruit";
  position: absolute;
  top: -0.6em;
  left: -0.05em;
  z-index: -1;
  color: rgba(11, 95, 179, 0.06);
  font-size: clamp(76px, 14vw, 190px);
  line-height: 0.9;
  font-weight: 900;
  pointer-events: none;
}

.recruit-main .recruit-lead h2 {
  max-width: 13em;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.18;
}

.recruit-main .recruit-tiles {
  gap: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.16);
}

.recruit-main .recruit-tiles article {
  border: 0;
  border-bottom: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 0;
  padding: 24px 0 24px 72px;
  background: transparent;
  box-shadow: none;
}

.recruit-main .recruit-tiles article::before {
  top: 25px;
  left: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.recruit-main .job-layout,
.recruit-main .faq-grid,
.recruit-main .form-layout {
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(38px, 5vw, 72px);
}

.recruit-main .job-cards {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.recruit-main .job-card,
.recruit-main .faq details,
.recruit-main .form {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.07);
}

.recruit-main .accent-job {
  border-color: rgba(248, 90, 154, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.96));
}

.recruit-main .faq details {
  padding: 22px 24px;
}

.company-main .company-layout {
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(40px, 5vw, 76px);
}

.company-main .company-lead-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.company-main .company-lead-card h2,
.company-main .policy-layout h2 {
  max-width: 12em;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.company-main .company-contact-card {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 43, 82, 0.96), rgba(11, 95, 179, 0.86)),
    url("../img/page-company.png") center / cover;
}

.company-main .table-wrap {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.07);
}

.company-main th {
  color: var(--brand);
  background: #eef8ff;
}

.company-main .policy-layout {
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(38px, 5vw, 72px);
}

.company-main .policy-layout .principle-row {
  gap: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.16);
}

.company-main .policy-layout .principle-row article {
  border: 0;
  border-bottom: 1px solid rgba(11, 95, 179, 0.16);
  border-radius: 0;
  padding: 24px 0;
  background: transparent;
  box-shadow: none;
}

.company-main .policy-orbit {
  position: relative;
  width: min(100%, 560px);
  min-height: clamp(460px, 54vw, 460px);
  margin: 0 auto;
  isolation: isolate;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.company-main .policy-orbit-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.company-main .policy-orbit-ring {
  position: absolute;
  inset: 4% 2% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(148, 188, 214, 0.14) 28.4%, transparent 29%),
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(148, 188, 214, 0.1) 40.4%, transparent 41%),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(148, 188, 214, 0.07) 52.4%, transparent 53%),
    radial-gradient(circle at 50% 46%, #fafdff 0%, #edf5fb 58%, #f5f9fc 100%);
}

.company-main .policy-orbit-venn {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.company-main .policy-orbit-venn--1 {
  left: 8%;
  top: 12%;
  background: rgba(188, 162, 108, 0.42);
}

.company-main .policy-orbit-venn--2 {
  right: 8%;
  top: 12%;
  background: rgba(214, 222, 228, 0.58);
}

.company-main .policy-orbit-venn--3 {
  left: 28%;
  bottom: 16%;
  background: rgba(244, 208, 202, 0.46);
}

.company-main .policy-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(100px, 23vw, 124px);
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #d94a72, #b83258 72%);
  box-shadow: 0 14px 36px rgba(194, 61, 98, 0.3);
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.company-main .policy-orbit-card {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 34px rgba(6, 43, 82, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.company-main .policy-orbit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(6, 43, 82, 0.14);
}

.company-main .policy-orbit-card h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.company-main .policy-orbit-card p {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.75;
  opacity: 0.92;
}

.company-main .policy-orbit-card--1 {
  left: 0;
  top: 0;
  border-radius: 18px 18px 72px 18px;
  color: #5c4a28;
  background: linear-gradient(165deg, rgba(235, 218, 176, 0.97), rgba(188, 162, 108, 0.88));
}

.company-main .policy-orbit-card--2 {
  right: 0;
  top: 0;
  border-radius: 18px 18px 18px 72px;
  color: #1a5568;
  background: linear-gradient(165deg, rgba(252, 253, 255, 0.98), rgba(214, 226, 236, 0.92));
}

.company-main .policy-orbit-card--3 {
  left: 26%;
  bottom: 0;
  width: 48%;
  border-radius: 72px 18px 18px 18px;
  color: #8f3349;
  background: linear-gradient(165deg, rgba(252, 224, 218, 0.97), rgba(244, 208, 202, 0.88));
}

.company-main .map-embed {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.08);
}

.contact-main .contact-top {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: clamp(14px, 2vw, 24px);
}

.contact-main .contact-card {
  min-height: 230px;
  border-radius: 8px;
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.07);
}

.contact-main .contact-card span {
  color: var(--accent);
  font-weight: 900;
}

.contact-main .contact-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
}

.contact-main .primary-contact {
  background:
    linear-gradient(135deg, rgba(6, 43, 82, 0.94), rgba(11, 95, 179, 0.82)),
    url("../img/page-contact.png") center / cover;
}

.contact-main .primary-contact span,
.contact-main .primary-contact strong,
.contact-main .primary-contact p {
  color: #fff;
}

.contact-main .form-layout,
.contact-main .contact-map-layout {
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(38px, 5vw, 72px);
}

.contact-main .form,
.contact-main .map-embed {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 43, 82, 0.08);
}

@media (max-width: 920px) {
  .service-main .service-detail,
  .service-main .service-support,
  .flow-main .flow-layout,
  .flow-main .checklist-layout,
  .recruit-main .recruit-lead,
  .recruit-main .job-layout,
  .recruit-main .faq-grid,
  .recruit-main .form-layout,
  .company-main .company-layout,
  .company-main .policy-layout,
  .contact-main .contact-top,
  .contact-main .form-layout,
  .contact-main .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .inner-main .photo-panel {
    max-height: 420px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .service-main .service-detail:hover {
    transform: none;
  }

  .flow-main .flow-aside {
    position: relative;
    top: auto;
  }

  .company-main .policy-layout .principle-row {
    grid-template-columns: 1fr;
  }

  .company-main .policy-orbit {
    width: min(100%, 520px);
    min-height: clamp(380px, 96vw, 460px);
  }

  .company-main .policy-orbit-core {
    width: clamp(84px, 22vw, 118px);
    padding: 12px;
    font-size: clamp(13px, 3.4vw, 17px);
  }

  .company-main .policy-orbit-card {
    min-height: 104px;
    padding: 16px 14px;
  }

  .company-main .policy-orbit-card h3 {
    margin-bottom: 8px;
    font-size: clamp(16px, 4.2vw, 24px);
    letter-spacing: 0.08em;
  }

  .company-main .policy-orbit-card p {
    font-size: clamp(11px, 2.8vw, 13px);
    line-height: 1.65;
  }

  .company-main .policy-orbit-card--1 {
    border-radius: 18px 18px 37px 18px;
  }

  .company-main .policy-orbit-card--2 {
    border-radius: 18px 18px 18px 37px;
  }

  .company-main .policy-orbit-card--3 {
    border-radius: 37px 18px 18px 18px;
  }
}

@media (max-width: 760px) {
  .inner-main .section {
    padding-block: 48px;
  }

  .inner-main .section-actions {
    display: flex;
  }

  .inner-main .button {
    width: 100%;
  }

  .service-main .service-detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .service-main .service-detail ul {
    margin-top: 0;
    grid-column: auto;
    align-self: stretch;
  }

  .flow-main .timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .flow-main .timeline span {
    width: auto;
    height: auto;
    font-size: 26px;
  }

  .recruit-main .recruit-lead::before {
    top: -0.28em;
    font-size: clamp(62px, 20vw, 92px);
  }

  .recruit-main .recruit-tiles article {
    padding: 18px 0 18px 58px;
  }

  .recruit-main .recruit-tiles article::before {
    display: grid !important;
    top: 20px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 7px;
  }

  .recruit-main .job-card,
  .recruit-main .faq details,
  .recruit-main .form,
  .contact-main .form {
    padding: 20px;
  }

  .contact-main .contact-card {
    min-height: auto;
  }
}

/* Flow page: horizontal illustrated step guide */
.flow-main .flow-layout {
  display: block;
}

.flow-main .flow-aside {
  position: relative;
  top: auto;
  margin: 0 0 clamp(48px, 6vw, 76px);
}

.flow-main .flow-aside h2 {
  max-width: none;
}


.flow-main .flow-aside .button {
  margin-top: 24px;
}

.flow-main .timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 0;
  padding-top: 26px;
}

.flow-main .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #d9effd;
}

.flow-main .timeline li {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-right: 1px dashed rgba(11, 95, 179, 0.3);
  padding: 34px clamp(16px, 1.8vw, 28px) 0;
  text-align: left;
  background: transparent;
  box-shadow: none;
}

.flow-main .timeline li:last-child {
  border-right: 0;
}

.flow-main .timeline span {
  position: absolute;
  top: -42px;
  left: -6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 30px;
  min-width: 86px;
  border-radius: 999px;
  padding: 0 14px;
  color: #0084cf;
  background: #dff2fd;
  font-size: 0;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.flow-main .timeline span::before {
  content: "STEP";
  margin-right: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.flow-main .timeline span::after {
  content: attr(data-step);
  font-size: 18px;
}

.flow-main .timeline li:nth-child(1) span::after { content: "1"; }
.flow-main .timeline li:nth-child(2) span::after { content: "2"; }
.flow-main .timeline li:nth-child(3) span::after { content: "3"; }
.flow-main .timeline li:nth-child(4) span::after { content: "4"; }
.flow-main .timeline li:nth-child(5) span::after { content: "5"; }

.flow-main .flow-step-icon {
  width: min(76%, 170px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
}

.flow-main .timeline div {
  width: 100%;
}

.flow-main .timeline h3 {
  color: inherit;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.35;
  text-align: center;
}

.flow-main .timeline p {
  margin-top: 18px;
  color: inherit;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .flow-main .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 0;
  }

  .flow-main .timeline::before {
    content: none;
  }

  .flow-main .timeline li {
    min-height: auto;
    border-top: 2px solid #d9effd;
    padding-top: 44px;
  }

  .flow-main .timeline li:nth-child(2n) {
    border-right: 0;
  }

  .flow-main .timeline span {
    top: -17px;
    left: -1px;
  }
}

@media (max-width: 760px) {
  .flow-main .flow-aside {
    margin-bottom: 34px;
  }

  .flow-main .flow-aside .button {
    display: inline-flex;
    width: auto;
  }

  .flow-main .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
  }

  .flow-main .timeline li,
  .flow-main .timeline li:nth-child(2n) {
    align-items: flex-start;
    min-height: auto;
    border-top: 2px solid #d9effd;
    border-right: 0;
    padding: 42px 0 22px;
  }

  .flow-main .timeline span {
    top: -17px;
    left: 0;
  }

  .flow-main .flow-step-icon {
    width: 132px;
    margin: 0 0 18px;
  }

  .flow-main .timeline h3 {
    text-align: left;
    font-size: 20px;
  }

  .flow-main .timeline p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Flow page: mobile horizontal icon and copy layout */
@media (max-width: 760px) {
  .flow-main .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-main .timeline li,
  .flow-main .timeline li:nth-child(2n) {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 42px 0 22px;
  }

  .flow-main .flow-step-icon {
    width: 96px;
    max-width: 96px;
    margin: 0;
  }

  .flow-main .timeline div {
    align-self: center;
  }

  .flow-main .timeline h3 {
    text-align: left;
  }
}

/* Mobile service guide: image switcher */
@media (max-width: 760px) {
  .home-services.home-business {
    padding: 46px 0 48px;
  }

  .home-business-stage {
    gap: 0;
  }

  .home-business-copy > p {
    max-width: 30em;
  }

  .home-business-mobile-visual {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(6, 43, 82, 0.2);
  }

  .home-business-mobile-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 43, 82, 0) 45%, rgba(6, 43, 82, 0.2) 100%),
      linear-gradient(90deg, rgba(248, 90, 154, 0.22), rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
  }

  .home-business-mobile-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.36s ease, transform 0.52s ease;
  }

  .home-business-mobile-visual img.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .home-business-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 14px;
    border-top: 0;
  }

  .home-business-list article,
  .home-business-list article:nth-child(2),
  .home-business-list article:nth-child(3),
  .home-business-list article:nth-child(4) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    padding: 13px 12px 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .home-business-list article.is-active {
    border-color: rgba(248, 90, 154, 0.9);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 4px 0 0 var(--accent), 0 14px 28px rgba(6, 43, 82, 0.12);
  }

  .home-business-list h3,
  .home-business-list p {
    padding-left: 0;
  }

  .home-business-list h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .home-business-list p {
    font-size: 11px;
    line-height: 1.45;
  }

  .home-business-list span {
    grid-column: auto;
    grid-row: auto;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
  }

  .home-business-list span::after {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.92);
    font-size: 11px;
  }

  .home-business-list article.is-active span::after {
    color: #fff;
    background: var(--accent);
  }
}

/* Mobile section refinements */
@media (max-width: 760px) {
  .home-opening.home-support {
    padding-top: 44px;
  }

  .home-support-stage {
    gap: 20px;
  }

  .home-support-copy {
    order: 1;
  }

  .home-support-media {
    order: 2;
    /* min-height: 142px; */
    margin-top: 2px;
  }

  .home-support::before {
    top: 18px;
    font-size: clamp(64px, 21vw, 92px);
  }

  .support-photo-main {
    top: 18px;
    left: 15px;
    width: 50%;
    aspect-ratio: 1.15 / 1;
    border-radius: 5px;
  }

  .support-photo-sub {
    top: 0;
    right: 16px;
    width: 39%;
    aspect-ratio: 1.15 / 0.9;
    border-radius: 5px;
  }

  .support-photo-small {
    display: block;
    right: 8%;
    bottom: -17px;
    width: 35%;
    aspect-ratio: 1.35 / 0.85;
    border-radius: 5px;
  }

  .home-support-copy h2 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(22px, 6.2vw, 25px);
    line-height: 1.28;
  }

  .home-support-lead {
    margin-top: 12px;
  }

  .home-support-lines {
    margin-top: 18px;
  }

  .home-about-section {
    padding-block: 48px 44px;
    background:
      radial-gradient(circle at 22% 15%, rgba(248, 90, 154, 0.08), rgba(255, 255, 255, 0) 28%),
      linear-gradient(180deg, #fff 0%, #f3fbff 100%);
  }

  .home-about-section::before {
    top: 58px;
    left: auto;
    right: 12px;
    width: 132px;
    opacity: 0.18;
  }

  .home-about-stage {
    gap: 16px;
  }

  .home-about-heading {
    display: block;
    order: 1;
  }

  .home-about-heading .home-section-note {
    position: relative;
    z-index: 2;
  }

  .home-about-heading h2 {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.88;
    color: rgba(11, 95, 179, 0.18);
  }

  .home-about-image {
    order: 2;
    max-height: none;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(31, 122, 184, 0.13);
  }

  .home-about-image::after {
    content: "";
    display: block;
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: url("../img/favicon.png") center / contain no-repeat;
    opacity: 0.72;
    transform: none;
  }

  .home-about-image::before {
    right: 14px;
    bottom: auto;
    top: -10px;
    width: 54px;
    height: 3px;
  }

  .home-about-copy {
    order: 3;
  }

  .home-about-copy h2 {
    font-size: clamp(22px, 6.4vw, 27px);
  }

  .home-recruit-panel {
    display: grid;
    align-items: stretch;
    min-height: auto;
    border-radius: 8px;
    background: #fff;
  }

  .home-recruit-panel::before {
    background: none;
  }

  .home-recruit-panel img {
    position: relative;
    inset: auto;
    display: block;
    height: 178px;
    object-fit: cover;
    object-position: center 26%;
  }

  .home-recruit-panel .home-ad-copy {
    position: relative;
    width: auto;
    margin: 0;
    border: 0;
    border-top: 3px solid var(--accent);
    border-radius: 0;
    padding: 14px 16px 16px;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-recruit-panel .home-ad-label {
    font-size: 11px;
  }

  .home-recruit-panel .home-ad-copy h2 {
    font-size: 23px;
  }

  .home-recruit-panel .home-ad-copy p {
    max-width: 24em;
    font-size: 13px;
    line-height: 1.65;
  }

  .home-recruit-panel .home-ad-button {
    min-height: 34px;
    margin-top: 12px;
  }

  .home-topics-panel {
    border-top: 0;
    border-radius: 8px;
    padding: 18px 16px 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 43, 82, 0.08);
  }

  .home-topics-head {
    align-items: center;
    margin-bottom: 12px;
  }

  .home-topics-head span {
    font-size: 12px;
  }

  .home-topics-head > a {
    min-width: 92px;
    min-height: 34px;
    border-color: rgba(248, 90, 154, 0.22);
    color: var(--accent);
  }

  .home-topics-list {
    gap: 8px;
    border-top: 0;
  }

  .home-topics-list a {
    grid-template-columns: 1fr 26px;
    gap: 5px 12px;
    border: 1px solid rgba(205, 225, 239, 0.78);
    border-radius: 6px;
    padding: 11px 10px 11px 12px;
    background: #f7fcff;
  }

  .home-topics-list time {
    color: var(--accent);
    font-size: 11px;
  }

  .home-topics-list span {
    color: var(--brand-deep);
    line-height: 1.35;
    font-weight: 500;
    white-space: normal;
  }
}

/* Recruit page: flat requirements, open FAQ, lightweight entry form */
.recruit-main .section-soft {
  background:
    radial-gradient(circle at 24% 22%, rgba(248, 90, 154, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.recruit-main .job-card,
.recruit-main .form {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.recruit-main .job-card {
  border: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.18);
  padding: 28px 0 0;
}

.recruit-main .job-card + .job-card {
  margin-top: 10px;
}

.recruit-main .accent-job {
  border-color: rgba(11, 95, 179, 0.18);
  background: transparent;
}

.recruit-main .job-card h3 {
  font-size: clamp(22px, 2.4vw, 32px);
}

.recruit-main .job-card dl div {
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(11, 95, 179, 0.12);
}

.recruit-main .job-card dl div:first-child {
  border-top: 0;
}

.recruit-main .job-card .check-list {
  margin-top: 24px;
}

.recruit-main .faq {
  gap: 0;
}

.recruit-main .faq-item {
  border-top: 1px dashed rgba(47, 145, 216, 0.42);
  padding: 24px 0 26px;
}

.recruit-main .faq-item:first-child {
  border-top-style: solid;
}

.recruit-main .faq-question,
.recruit-main .faq-answer {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.recruit-main .faq-answer {
  margin-top: 22px;
}

.recruit-main .faq-question span,
.recruit-main .faq-answer span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.recruit-main .faq-answer span {
  color: var(--brand);
  background: #e4f4fd;
}

.recruit-main .faq-question h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.recruit-main .faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.recruit-main .form {
  border: 0;
  border-top: 1px solid rgba(11, 95, 179, 0.18);
  padding: 28px 0 0;
}

.recruit-main .form input,
.recruit-main .form textarea,
.recruit-main .form select {
  border-radius: 8px;
  background: #fff;
}

.recruit-main .form .button {
  justify-self: start;
  margin-top: 8px;
}

@media (max-width: 760px) {
  .recruit-main .job-card,
  .recruit-main .form {
    padding: 20px 0 0;
  }
.company-summary dl, .job-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
  .recruit-main .job-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
.recruit-main .job-card dl div:nth-child(2) {
  border-top: 0;
}
  .recruit-main .faq-question,
  .recruit-main .faq-answer {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .recruit-main .faq-question span,
  .recruit-main .faq-answer span {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .recruit-main .faq-answer p {
    font-size: 14px;
    line-height: 1.8;
  }

  .recruit-main .form .button {
    width: 100%;
  }
}

/* Company and contact pages: remove white panel borders and shadows */
.company-main .table-wrap,
.company-main .map-embed,
.contact-main .contact-card,
.contact-main .form,
.contact-main .map-embed {
  border: 0;
  box-shadow: none;
}

.contact-main .primary-contact {
  box-shadow: none;
}

.legal-main .page-hero-legal {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(238, 247, 253, 0.72) 100%), url(../img/page-contact.png);
}

.legal-main .page-hero-inner {
  grid-template-columns: 1fr;
}

.legal-main .legal-doc {
  max-width: 820px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.legal-main .legal-doc-updated {
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.legal-main .legal-doc h2 {
  margin: 36px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11, 95, 179, 0.12);
  color: var(--brand-deep);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.4;
}

.legal-main .legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-main .legal-doc p {
  margin-bottom: 14px;
}

.legal-main .legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

.legal-main .legal-doc li {
  margin-bottom: 8px;
}

.legal-main .legal-doc a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main .legal-doc-contact {
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(11, 95, 179, 0.12);
  border-radius: 10px;
  background: #f7fbff;
}

.legal-main .legal-doc-contact p {
  margin-bottom: 6px;
  color: var(--ink);
}
/* Codex: replace recruit Work With Us left text icons with generated PNG icons only */
.recruit-main .recruit-tiles article:nth-child(1)::before {
  content: "";
  background: url("../img/recruit-work-icon-1.png") center / cover no-repeat !important;
  color: transparent;
}

.recruit-main .recruit-tiles article:nth-child(2)::before {
  content: "";
  background: url("../img/recruit-work-icon-2.png") center / cover no-repeat !important;
  color: transparent;
}

.recruit-main .recruit-tiles article:nth-child(3)::before {
  content: "";
  background: url("../img/recruit-work-icon-3.png") center / cover no-repeat !important;
  color: transparent;
}

@media (max-width: 920px) {
  .recruit-main .recruit-tiles article {
    padding: 20px 0 20px 58px;
  }

  .recruit-main .recruit-tiles article::before {
    display: grid !important;
    top: 22px;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}