/* ==========================================================================
   WEST ORANGE Corporate Site
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f7f5;
  --color-bg-dark: #0e1220;
  --color-bg-deep: #080b15;
  --color-ink: #0e1220;
  --color-ink-soft: #2a2f3d;
  --color-mute: #6b7280;
  --color-line: #e7e7e3;
  --color-line-strong: #d6d6d0;
  --color-brand: #ff6b2c;
  --color-brand-deep: #e75617;
  --color-brand-soft: #fff1ea;
  --color-accent: #1a4cff;
  --shadow-card: 0 1px 2px rgba(14, 18, 32, 0.04), 0 8px 24px rgba(14, 18, 32, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(14, 18, 32, 0.06), 0 16px 40px rgba(14, 18, 32, 0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
  --max-w-wide: 1320px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-ink);
  background: var(--color-bg);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

a:hover {
  opacity: 0.7;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-brand);
}

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

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

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--color-mute);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(231, 231, 227, 0.6);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--color-ink);
}

.site-logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand);
  position: relative;
  flex-shrink: 0;
}

.site-logo__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--color-bg);
}

.site-logo__mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

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

.site-nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav__list a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-ink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-brand);
}

.btn--brand {
  background: var(--color-brand);
  color: #fff;
}

.btn--brand:hover {
  background: var(--color-brand-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line-strong);
}

.btn--ghost:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--color-ink);
}

.btn--small {
  padding: 10px 20px;
  font-size: 13px;
}

.btn__arrow {
  width: 14px;
  transition: transform 0.2s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(2px);
}

/* burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), top 0.3s var(--ease-out);
}

.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }

.burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: #fff;
  z-index: 90;
  padding: 32px 24px 80px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0s 0.4s;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0s 0s;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav ul a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 16px;
  font-weight: 600;
}

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

@media (max-width: 960px) {
  .site-nav__list,
  .site-nav .btn {
    display: none;
  }
  .burger {
    display: block;
  }
}

/* ----- Hero ----- */
.hero {
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(255, 107, 44, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(26, 76, 255, 0.05), transparent 60%),
    #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__copy h1 .accent {
  color: var(--color-brand);
}

.hero__copy h1 .underline {
  background: linear-gradient(transparent 70%, rgba(255, 107, 44, 0.2) 70%);
  padding: 0 4px;
}

.hero__lead {
  font-size: 16px;
  color: var(--color-ink-soft);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-line);
  max-width: 520px;
}

.hero__stat .num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero__stat .unit {
  font-size: 14px;
  color: var(--color-mute);
  font-weight: 500;
}

.hero__stat .label {
  display: block;
  font-size: 12px;
  color: var(--color-mute);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-left: auto;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--main {
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, #ffb074, var(--color-brand) 50%, var(--color-brand-deep) 100%);
  box-shadow: 0 40px 80px rgba(255, 107, 44, 0.25);
  animation: float 8s ease-in-out infinite;
}

.hero__shape--small {
  width: 30%;
  aspect-ratio: 1;
  bottom: -8%;
  right: -8%;
  background: var(--color-bg-dark);
  animation: float 10s ease-in-out infinite reverse;
}

.hero__chip {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero__chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.hero__chip--1 {
  top: 10%;
  left: -16%;
  animation: float 7s ease-in-out infinite;
}

.hero__chip--2 {
  top: 60%;
  left: -8%;
  animation: float 9s ease-in-out infinite reverse;
}

.hero__chip--3 {
  top: 32%;
  right: -8%;
  animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .hero {
    padding: 128px 0 80px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__chip--1 { left: 0; }
  .hero__chip--2 { left: 4%; }
  .hero__chip--3 { right: 0; }
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .hero__stat .num { font-size: 24px; }
}

/* ----- Marquee (logos) ----- */
.marquee {
  padding: 56px 0 24px;
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  background: #fff;
}

.marquee__label {
  text-align: center;
  font-size: 12px;
  color: var(--color-mute);
  font-family: var(--font-en);
  letter-spacing: 0.18em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.marquee__track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #b8b8b1;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Problem section ----- */
.problem {
  background: var(--color-bg-soft);
}

.problem__lead {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  max-width: 880px;
  margin: 0 auto 64px;
}

.problem__lead .mark {
  background: linear-gradient(transparent 65%, rgba(255, 107, 44, 0.25) 65%);
  padding: 0 6px;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem__card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}

.problem__card .num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.problem__card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.problem__card p {
  font-size: 14px;
  color: var(--color-mute);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .problem__cards {
    grid-template-columns: 1fr;
  }
}

/* ----- Services ----- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.service-card__badge {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  margin-bottom: 12px;
  display: inline-block;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.service-card__desc {
  color: var(--color-mute);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-card__list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-ink-soft);
}

.service-card__list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 6px;
  background: var(--color-brand-soft);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff6b2c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card__link::after {
  content: "→";
  transition: transform 0.2s var(--ease-out);
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 36px 28px;
  }
}

/* ----- Strengths ----- */
.strengths {
  background: var(--color-bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(255, 107, 44, 0.15), transparent 60%),
    radial-gradient(600px 400px at 0% 90%, rgba(26, 76, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.strengths .section-head h2,
.strengths .section-head p {
  color: #fff;
}

.strengths .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.strengths__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.strengths__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 44, 0.4);
}

.strengths__num {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-brand);
  margin-bottom: 24px;
  display: block;
}

.strengths__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 107, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-brand);
}

.strengths__icon svg { width: 22px; height: 22px; }

.strengths__card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
}

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

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

@media (max-width: 480px) {
  .strengths__grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Process ----- */
.process__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process__list::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-line-strong) 20%, var(--color-line-strong) 80%, transparent);
  z-index: 0;
}

.process__item {
  position: relative;
  text-align: left;
  padding: 0 8px;
}

.process__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.process__item:hover .process__num {
  background: var(--color-brand);
  color: #fff;
}

.process__item h4 {
  font-size: 15px;
  text-align: center;
  margin-bottom: 8px;
}

.process__item p {
  font-size: 13px;
  color: var(--color-mute);
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .process__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .process__list::before { display: none; }
}

/* ----- Works ----- */
.works {
  background: var(--color-bg-soft);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.work-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.work-card__thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.work-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.work-card__tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--color-bg-soft);
  border-radius: 999px;
  color: var(--color-ink-soft);
  letter-spacing: 0.04em;
}

.work-card__industry {
  font-size: 12px;
  color: var(--color-mute);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.work-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.work-card p {
  font-size: 13.5px;
  color: var(--color-mute);
  line-height: 1.85;
  margin-bottom: 20px;
  flex-grow: 1;
}

.work-card__metric {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.work-card__metric-item .v {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1;
}

.work-card__metric-item .l {
  font-size: 11px;
  color: var(--color-mute);
  margin-top: 6px;
  display: block;
}

@media (max-width: 960px) {
  .works__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .works__grid { grid-template-columns: 1fr; }
}

/* thumb svg backgrounds */
.thumb-pattern {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.thumb-1 { background: linear-gradient(135deg, #ff6b2c 0%, #ffb074 100%); }
.thumb-2 { background: linear-gradient(135deg, #0e1220 0%, #2a2f5e 100%); }
.thumb-3 { background: linear-gradient(135deg, #1a4cff 0%, #5b89ff 100%); }
.thumb-4 { background: linear-gradient(135deg, #18b07a 0%, #6ddabc 100%); }
.thumb-5 { background: linear-gradient(135deg, #c026d3 0%, #ec4899 100%); }
.thumb-6 { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.thumb-7 { background: linear-gradient(135deg, #475569 0%, #94a3b8 100%); }
.thumb-8 { background: linear-gradient(135deg, #0e1220 0%, #ff6b2c 100%); }
.thumb-9 { background: linear-gradient(135deg, #1a4cff 0%, #0e1220 100%); }

.thumb-pattern svg {
  width: 100%;
  height: 100%;
}

/* ----- Testimonials ----- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  font-size: 15px;
  line-height: 2;
  color: var(--color-ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial__quote::before {
  content: "“";
  font-family: Georgia, serif;
  display: block;
  font-size: 48px;
  color: var(--color-brand);
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-brand);
}

.testimonial__name {
  font-size: 13px;
  font-weight: 600;
}

.testimonial__role {
  font-size: 12px;
  color: var(--color-mute);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ----- News ----- */
.news__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
  margin-bottom: 48px;
}

.news__item {
  display: grid;
  grid-template-columns: 120px 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--color-line);
  transition: background 0.2s var(--ease-out);
}

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

.news__date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-mute);
}

.news__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--color-bg-soft);
  color: var(--color-ink-soft);
  text-align: center;
  width: fit-content;
}

.news__category--release { background: var(--color-brand-soft); color: var(--color-brand-deep); }
.news__category--media { background: #f0f4ff; color: #3050d4; }
.news__category--service { background: #ecfaf2; color: #129357; }

.news__title {
  font-size: 14.5px;
  font-weight: 500;
}

.news__arrow {
  font-size: 14px;
  color: var(--color-mute);
}

@media (max-width: 768px) {
  .news__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 4px;
  }
  .news__arrow { display: none; }
}

/* ----- CTA section ----- */
.cta-section {
  padding: 120px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 107, 44, 0.18), transparent 70%),
    var(--color-bg-deep);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 2;
}

.cta-section__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-bg-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.site-footer__brand .site-logo {
  color: #fff;
  margin-bottom: 20px;
}

.site-footer__about {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.site-footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__col a:hover {
  color: var(--color-brand);
  opacity: 1;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.site-footer__bottom-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ----- Page hero (sub pages) ----- */
.page-hero {
  padding: 168px 0 80px;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(255, 107, 44, 0.08), transparent 60%),
    var(--color-bg-soft);
}

.page-hero__inner {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 15px;
  color: var(--color-mute);
  max-width: 640px;
  margin: 0 auto;
  line-height: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-mute);
  margin-bottom: 28px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--color-mute);
}

.breadcrumb span {
  color: var(--color-line-strong);
}

/* ----- Generic content blocks ----- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even) > * {
  direction: ltr;
}

.feature-block__copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  line-height: 1.5;
}

.feature-block__copy p {
  font-size: 14.5px;
  color: var(--color-mute);
  line-height: 2;
  margin-bottom: 20px;
}

.feature-block__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-soft);
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .feature-block:nth-child(even) {
    direction: ltr;
  }
}

/* ----- Pricing / Plans ----- */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.plan {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.plan--featured {
  border-color: var(--color-brand);
  position: relative;
}

.plan--featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
}

.plan h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.plan__price {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan__price .small {
  font-size: 14px;
  color: var(--color-mute);
  font-weight: 500;
}

.plan__desc {
  font-size: 13.5px;
  color: var(--color-mute);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan__list li {
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan__list li::before {
  content: "✓";
  color: var(--color-brand);
  font-weight: 700;
}

@media (max-width: 960px) {
  .plans__grid { grid-template-columns: 1fr; }
}

/* ----- Company info table ----- */
.company-table {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid var(--color-line);
  max-width: 800px;
  margin: 0 auto;
}

.company-table > div {
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}

.company-table > div:nth-child(odd) {
  font-weight: 600;
  color: var(--color-mute);
  font-size: 13px;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .company-table {
    grid-template-columns: 1fr;
  }
  .company-table > div:nth-child(odd) {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .company-table > div:nth-child(even) {
    padding-top: 4px;
    padding-bottom: 20px;
  }
}

/* ----- Contact form ----- */
.form-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-row label {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-row label .req {
  font-size: 10px;
  color: #fff;
  background: var(--color-brand);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-line-strong);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.1);
}

.form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--color-line-strong);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.form-check:hover {
  border-color: var(--color-brand);
}

.form-check input {
  accent-color: var(--color-brand);
}

@media (max-width: 600px) {
  .form-checks { grid-template-columns: 1fr; }
}

.form-submit {
  text-align: center;
  margin-top: 16px;
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }

/* =========================================
   Work card link wrapper
   ========================================= */
a.work-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease;
}
a.work-card-link .work-card {
  height: 100%;
}
a.work-card-link:hover {
  transform: translateY(-4px);
}
a.work-card-link:hover .work-card__thumb .thumb-pattern {
  transform: scale(1.04);
}

/* =========================================
   Work detail page
   ========================================= */
.work-detail-hero {
  background: linear-gradient(180deg, #fff7f1 0%, #ffffff 100%);
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}
.work-detail-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,107,44,0.18) 0%, rgba(255,107,44,0) 70%);
  pointer-events: none;
}
.work-detail-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.work-detail-hero .breadcrumb {
  margin-bottom: 24px;
}
.work-detail-hero__industry {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  background: rgba(255,107,44,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.work-detail-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.work-detail-hero__lead {
  font-size: 17px;
  line-height: 1.9;
  color: #45506b;
  margin: 0 0 32px;
}
.work-detail-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-detail-hero__tag {
  font-size: 12px;
  font-weight: 600;
  color: #45506b;
  background: #fff;
  border: 1px solid #e6e9f0;
  padding: 6px 12px;
  border-radius: 999px;
}

/* KPI block */
.work-detail__kpi-section {
  background: #0e1220;
  padding: 64px 0;
}
.work-detail__kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.work-detail__kpi-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.work-detail__kpi-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-brand);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.work-detail__kpi-value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.work-detail__kpi-value .unit {
  font-size: 0.4em;
  font-weight: 600;
  margin-left: 4px;
  color: rgba(255,255,255,0.6);
}
.work-detail__kpi-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  line-height: 1.6;
}

/* Common section */
.work-detail-section {
  padding: 96px 0;
  background: #fff;
}
.work-detail-section--alt {
  background: #f7f8fc;
}
.work-detail-section__inner {
  max-width: 960px;
  margin: 0 auto;
}
.work-detail-section__head {
  margin-bottom: 40px;
}
.work-detail-section__head .eyebrow {
  margin-bottom: 14px;
}
.work-detail-section__head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.45;
  margin: 0;
}

/* Overview block */
.work-detail__overview-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
}
.work-detail__overview-table {
  border-top: 1px solid #e6e9f0;
}
.work-detail__overview-table dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e9f0;
  margin: 0;
}
.work-detail__overview-table dt {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8893ab;
  text-transform: uppercase;
  padding-top: 2px;
}
.work-detail__overview-table dd {
  font-size: 14px;
  line-height: 1.7;
  color: #2a3144;
  margin: 0;
  font-weight: 500;
}
.work-detail__overview-narrative p {
  font-size: 16px;
  line-height: 1.95;
  color: #45506b;
  margin: 0 0 1.4em;
}
.work-detail__overview-narrative p:last-child { margin-bottom: 0; }

/* Story block (Before / Approach / After) */
.work-detail__story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.work-detail__story-item {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-left: 4px solid #c8cdd9;
  border-radius: 12px;
  padding: 32px 36px;
  position: relative;
}
.work-detail__story-item--before { border-left-color: #b9c0d1; }
.work-detail__story-item--approach { border-left-color: var(--color-brand); }
.work-detail__story-item--after { border-left-color: #1ec773; }
.work-detail__story-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: #8893ab;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.work-detail__story-item--approach .work-detail__story-label { background: var(--color-brand); }
.work-detail__story-item--after .work-detail__story-label { background: #1ec773; }
.work-detail__story-item h3 {
  font-size: 20px;
  margin: 0 0 16px;
  letter-spacing: 0.005em;
}
.work-detail__story-item p {
  font-size: 15px;
  line-height: 1.95;
  color: #45506b;
  margin: 0 0 1em;
}
.work-detail__story-item p:last-child { margin-bottom: 0; }
.work-detail__story-item ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.work-detail__story-item ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.85;
  color: #45506b;
  margin-bottom: 6px;
}
.work-detail__story-item ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8cdd9;
}
.work-detail__story-item--approach ul li::before { background: var(--color-brand); }
.work-detail__story-item--after ul li::before { background: #1ec773; }

/* Customer voice */
.work-detail__voice {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid #e6e9f0;
  position: relative;
}
.work-detail__voice::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 24px;
  font-size: 96px;
  font-family: Georgia, serif;
  color: rgba(255,107,44,0.14);
  line-height: 1;
}
.work-detail__voice-quote {
  font-size: 17px;
  line-height: 2;
  color: #2a3144;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.work-detail__voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.work-detail__voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), #ff8f5e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.work-detail__voice-name {
  font-size: 14px;
  font-weight: 600;
  color: #2a3144;
}
.work-detail__voice-role {
  font-size: 12px;
  color: #8893ab;
  margin-top: 2px;
}

/* Related cases */
.work-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-detail__related-card {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 28px 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}
.work-detail__related-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-brand);
  box-shadow: 0 8px 24px rgba(255,107,44,0.08);
}
.work-detail__related-eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-brand);
  margin-bottom: 10px;
  display: block;
}
.work-detail__related-title {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  color: #2a3144;
  margin: 0 0 8px;
}
.work-detail__related-meta {
  font-size: 12px;
  color: #8893ab;
}

@media (max-width: 768px) {
  .work-detail__kpi-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-detail__overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .work-detail__story-item { padding: 24px 24px; }
  .work-detail__voice { padding: 28px 24px; }
  .work-detail__related-grid { grid-template-columns: 1fr; }
  .work-detail-section { padding: 64px 0; }
  .work-detail-hero { padding: 64px 0 40px; }
}

/* =========================================
   Security & Recruit page
   ========================================= */
.policy-section {
  background: #fff;
  padding: 96px 0;
}
.policy-section--alt { background: #f7f8fc; }
.policy-section__inner {
  max-width: 880px;
  margin: 0 auto;
}
.policy-section__head {
  margin-bottom: 40px;
}
.policy-section__head h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 14px;
  line-height: 1.5;
}
.policy-section__head p {
  font-size: 16px;
  color: #45506b;
  line-height: 1.95;
  margin: 0;
}
.policy-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-list__item {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.policy-section--alt .policy-list__item { background: #fff; }
.policy-list__num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-brand);
  background: rgba(255,107,44,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-list__body h3 {
  font-size: 17px;
  margin: 0 0 10px;
  line-height: 1.55;
}
.policy-list__body p {
  font-size: 14px;
  line-height: 1.85;
  color: #45506b;
  margin: 0;
}

.policy-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.policy-detail-card {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 30px 32px;
}
.policy-detail-card h3 {
  font-size: 17px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.policy-detail-card h3::before {
  content: "";
  width: 6px;
  height: 18px;
  background: var(--color-brand);
  border-radius: 2px;
  flex-shrink: 0;
}
.policy-detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-detail-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.85;
  color: #45506b;
  margin-bottom: 6px;
}
.policy-detail-card ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #ff6b2c;
  border-radius: 50%;
}

.recruit-quote {
  background: linear-gradient(135deg, #0e1220 0%, #1a2138 100%);
  color: #fff;
  border-radius: 20px;
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}
.recruit-quote::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,107,44,0.16) 0%, rgba(255,107,44,0) 70%);
}
.recruit-quote__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.recruit-quote h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.55;
  margin: 0 0 24px;
  position: relative;
}
.recruit-quote p {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.2em;
  position: relative;
}
.recruit-quote p:last-child { margin-bottom: 0; }

.recruit-traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-trait {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 32px 28px;
}
.recruit-trait__num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.recruit-trait h3 {
  font-size: 17px;
  margin: 0 0 14px;
  line-height: 1.55;
}
.recruit-trait p {
  font-size: 14px;
  line-height: 1.85;
  color: #45506b;
  margin: 0;
}

.referral-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.referral-flow__step {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.referral-flow__step-num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  margin-bottom: 10px;
  display: block;
}
.referral-flow__step h4 {
  font-size: 15px;
  margin: 0 0 8px;
}
.referral-flow__step p {
  font-size: 12px;
  color: #6c7891;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .policy-detail-grid { grid-template-columns: 1fr; }
  .recruit-traits { grid-template-columns: 1fr; }
  .referral-flow { grid-template-columns: repeat(2, 1fr); }
  .recruit-quote { padding: 36px 28px; }
  .policy-list__item { padding: 20px 22px; grid-template-columns: 44px 1fr; gap: 14px; }
  .policy-list__num { width: 36px; height: 36px; font-size: 12px; }
  .policy-detail-card { padding: 24px 22px; }
}
