@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@400;500;700;800;900&display=swap");

:root {
  --ink: #172033;
  --body: #3d4a5f;
  --muted: #6f7f95;
  --line: #dfe6ef;
  --soft: #f5f8fc;
  --paper: #ffffff;
  --navy: #062b5f;
  --blue: #0b63ce;
  --teal: #22c7b5;
  --max: 1120px;
  --radius: 8px;
  --shadow: 0 20px 54px rgba(12, 45, 89, 0.12);
  --font-sans: "Noto Sans JP", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 68px;
  color: var(--body);
  font-family: var(--font-sans);
  line-height: 1.8;
  line-break: strict;
  background: var(--paper);
  text-size-adjust: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
summary,
.button,
.nav-cta,
.plan-label,
.price,
.flow-list strong {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

p,
li {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 10px max(22px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 19, 39, 0.98), rgba(7, 45, 95, 0.96)),
    var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(4, 19, 39, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 176px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.nav-parent {
  color: rgba(255, 255, 255, 0.88);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 20;
  min-width: 170px;
  padding: 8px;
  border: 1px solid rgba(223, 230, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(4, 19, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--navy);
  background: #f4f8fc;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.nav-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(11, 99, 206, 0.22);
}

.button.ghost {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

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

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.section-pad {
  padding: clamp(70px, 8vw, 112px) 22px;
}

.section-pad:not(.hero) > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.narrow {
  max-width: var(--max);
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 104px) max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(245, 251, 255, 0.74) 58%, rgba(232, 247, 250, 0.9) 100%),
    radial-gradient(circle at 78% 42%, rgba(34, 199, 181, 0.28), transparent 30%),
    radial-gradient(circle at 58% 70%, rgba(11, 99, 206, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #edf8fb 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.28) 47%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(-140px, calc((100vw - var(--max)) / 2 - 240px));
  top: 18%;
  width: min(54vw, 760px);
  height: min(54vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(34, 199, 181, 0.2) 0%, rgba(11, 99, 206, 0.12) 38%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  max-width: 720px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 span {
  display: block !important;
  white-space: nowrap;
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(70vw, 1280px);
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 0;
  filter: drop-shadow(0 30px 48px rgba(12, 45, 89, 0.12));
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.quick-value {
  padding: 0 22px;
  background: #fff;
}

.quick-value > div {
  max-width: var(--max);
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid rgba(223, 230, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 100%);
  box-shadow: 0 18px 48px rgba(12, 45, 89, 0.1);
  backdrop-filter: blur(12px);
}

.quick-value-main {
  min-width: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(223, 230, 239, 0.9);
}

.quick-value-main span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.quick-value-main p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.55;
}

.quick-value ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-value li {
  min-width: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px 16px;
  border: 1px solid rgba(223, 230, 239, 0.92);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(12, 45, 89, 0.05);
}

.quick-value li span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 11px;
  font-weight: 900;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
}

body:not(.service-ai-page) .eyebrow,
body:not(.service-ai-page) .quick-value-main span {
  font-weight: 800;
}

body:not(.service-ai-page) .hero h1 {
  font-weight: 800;
  line-height: 1.18;
}

body:not(.service-ai-page) .lead {
  font-weight: 500;
  color: #445169;
}

body:not(.service-ai-page) .section-heading h2,
body:not(.service-ai-page) .quick-value-main p {
  font-weight: 800;
}

body:not(.service-ai-page) .worry-grid h3,
body:not(.service-ai-page) .service-card h3,
body:not(.service-ai-page) .support-grid h3,
body:not(.service-ai-page) .strength-list h3,
body:not(.service-ai-page) .plan-card h3,
body:not(.service-ai-page) .case-grid h3,
body:not(.service-ai-page) .flow-list strong,
body:not(.service-ai-page) .faq summary {
  font-weight: 700;
}

body:not(.service-ai-page) .quick-value li,
body:not(.service-ai-page) .hero-proof span,
body:not(.service-ai-page) .plan-label,
body:not(.service-ai-page) .price {
  font-weight: 800;
}

body:not(.service-ai-page) p,
body:not(.service-ai-page) li {
  font-weight: 500;
}

.worries,
.plans,
.faq {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.worry-grid,
.service-grid,
.plan-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.worry-grid article,
.service-card,
.plan-card,
.case-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.worry-grid article {
  display: grid;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 45, 89, 0.06);
}

.worry-grid article::before {
  content: "";
  display: block;
  order: 2;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.worry-grid article:nth-child(1)::before {
  background-image: url("assets/worry-ai-candidate.webp");
  background-position: center;
}

.worry-grid article:nth-child(2)::before {
  background-image: url("assets/worry-roadmap.webp");
  background-position: center;
}

.worry-grid article:nth-child(3)::before {
  background-image: url("assets/worry-seo-shift.webp");
  background-position: center;
}

.icon-circle {
  display: none;
}

.worry-grid h3,
.service-card h3,
.plan-card h3,
.case-grid h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
}

.worry-grid h3 {
  order: 1;
  padding: 24px 24px 0;
  font-size: 17px;
  text-align: center;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.worry-grid p,
.service-card p,
.support-grid p,
.plan-card li,
.case-grid p,
.strength-list p,
.flow-list p,
.faq p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
}

.worry-grid p {
  order: 3;
  margin: 12px 0 0;
  padding: 0 24px 26px;
}

.worry-arrow {
  width: min(420px, 70vw);
  height: 48px;
  margin: 54px auto -18px;
  background: linear-gradient(180deg, #6b7483, #4e5764);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.82;
}

.message {
  padding: 56px 22px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(4, 19, 39, 0.98), rgba(8, 47, 99, 0.94), rgba(10, 99, 206, 0.84)),
    var(--navy);
}

.message p,
.message strong {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-weight: 800;
  line-height: 2;
}

.message p {
  font-size: clamp(17px, 2vw, 20px);
}

.message strong {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.service-grid {
  align-items: stretch;
}

.services {
  background: #fff;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 45, 89, 0.08);
}

.service-card.featured {
  border-color: rgba(34, 199, 181, 0.52);
  box-shadow: 0 28px 70px rgba(34, 199, 181, 0.18);
}

.service-mark {
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(11, 99, 206, 0.16);
}

.service-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 21px;
}

.service-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.service-card p {
  margin: 16px 0 0;
}

.service-link {
  align-self: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.service-link::after {
  content: " →";
  color: var(--blue);
}

.service-card ul,
.plan-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plan-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.support {
  background: #fff;
}

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

.support-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.support-grid span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--blue) 58%, var(--teal));
}

.support-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.support-grid p {
  grid-column: 2;
  margin: 0;
  min-width: 0;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.section-action .button,
.consult-box > .button,
.flow-cta .button,
.cta-band .button,
.page-cta .button {
  min-width: min(100%, 280px);
  min-height: 56px;
  padding: 0 34px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(11, 99, 206, 0.18);
}

.strength {
  background:
    linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.strength-list {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: clamp(52px, 7vw, 78px);
}

.strength-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4.8vw, 58px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.08);
}

.strength-list article:nth-child(even) {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  border-color: rgba(11, 99, 206, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.08);
}

.strength-list article:nth-child(even) .image-panel {
  order: -1;
}

.strength-list article:nth-child(even) h3,
.strength-list article:nth-child(even) p:not(.eyebrow) {
  color: var(--ink);
}

.strength-list article:nth-child(even) p:not(.eyebrow) {
  color: var(--body);
}

.strength-list article > div {
  min-width: 0;
}

.strength-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  font-weight: 900;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.strength-list p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: #101827;
  font-size: clamp(15px, 1.16vw, 17px);
  font-weight: 500;
  line-height: 1.95;
}

.image-panel {
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: var(--radius);
  background: #eef4f8;
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.1);
}

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

.plan-grid {
  max-width: 1040px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(12, 45, 89, 0.06);
}

.plan-card.recommended {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.plan-card.recommended h3,
.plan-card.recommended .price,
.plan-card.recommended li,
.plan-card.recommended .plan-label,
.plan-card.recommended .plan-recommend {
  color: #fff;
}

.plan-card.recommended li::before {
  background: var(--teal);
}

.plan-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 16px;
  font-weight: 900;
}

.plan-card.recommended .plan-number {
  color: var(--navy);
  background: #fff;
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  min-width: 140px;
  padding: 6px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 22px rgba(6, 43, 95, 0.24);
}

.plan-label {
  min-height: 42px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.plan-card h3 {
  margin-top: 0;
  font-size: 20px;
  text-align: center;
}

.price {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.price small {
  margin-left: 2px;
  font-size: 12px;
  font-weight: 800;
}

.plan-card a {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.plan-card.recommended a {
  color: var(--navy);
  background: #fff;
}

.plan-recommend {
  margin: 22px 0 20px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--body);
  background: #eef5ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.plan-card.recommended .plan-recommend {
  background: rgba(255, 255, 255, 0.14);
}

.comparison {
  width: 100%;
  max-width: 1040px;
  margin-top: 46px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
}

th,
td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: center;
}

th {
  color: #fff;
  background: var(--navy);
}

td:first-child {
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  background: #f7faff;
}

.comparison > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.comparison-mobile {
  display: none;
}

.consult-box {
  max-width: 1040px;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  box-shadow: 0 18px 44px rgba(12, 45, 89, 0.08);
}

.consult-box h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.consult-grid article {
  min-width: 0;
  padding: 18px;
}

.consult-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border: 1px solid rgba(11, 99, 206, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}

.consult-grid h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.consult-grid p {
  margin: 10px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.75;
}

.research {
  text-align: center;
  background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.research-panel {
  max-width: 880px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 62px rgba(12, 45, 89, 0.12);
}

.research-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.research-copy {
  max-width: 900px;
  margin: 0 auto;
}

.research-copy p {
  margin: 0 auto 16px;
  color: var(--body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 2;
}

.research-copy strong {
  color: var(--ink);
}

.people-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 24%, rgba(34, 199, 181, 0.18), transparent 28%),
    linear-gradient(125deg, #041327 0%, #082f63 58%, #0b63ce 100%);
}

.people-proof-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.45;
}

.people-proof-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.95;
}

.people-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.people-proof-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.people-proof-photos {
  display: block;
}

.people-proof-photos figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.people-proof-photos figure:nth-child(2) {
  margin-top: 38px;
}

.people-proof-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.people-proof-photos figcaption {
  padding: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.people-proof-photos figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.research-copy strong {
  color: var(--ink);
}

.research-copy .button {
  margin-top: 18px;
  min-width: min(100%, 280px);
  min-height: 56px;
  padding: 0 34px;
  font-size: 16px;
  box-shadow: 0 18px 36px rgba(11, 99, 206, 0.2);
}

.case-grid article {
  padding: 26px;
}

.case-grid h3 {
  font-size: 19px;
}

.case-grid p {
  margin: 12px 0;
}

.case-grid strong {
  color: var(--blue);
  font-size: 14px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.flow-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-list i {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 10px auto 20px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--blue) 58%, var(--teal));
  box-shadow: 0 16px 30px rgba(11, 99, 206, 0.16);
}

.flow-list strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.flow-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  text-align: left;
}

.flow-cta {
  margin-top: 58px;
  padding: 42px 34px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(4, 19, 39, 0.96), rgba(8, 47, 99, 0.9)),
    var(--navy);
}

.flow-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #fff;
  font-weight: 800;
  line-height: 1.9;
}

.cta-band {
  padding: clamp(64px, 8vw, 90px) 22px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(4, 19, 39, 0.98), rgba(8, 47, 99, 0.94), rgba(11, 99, 206, 0.86)),
    var(--navy);
}

.cta-band .eyebrow {
  color: var(--teal);
}

.cta-band h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(26px, 3.3vw, 40px);
  line-height: 1.45;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.contact-form {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.contact-form b {
  color: var(--teal);
  font-size: 11px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-hero {
  min-height: 360px;
}

.contact-page {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
}

.contact-note {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 16px 40px rgba(12, 45, 89, 0.08);
  overflow: hidden;
}

.contact-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.contact-note p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.95;
}

.contact-note ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-note li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.contact-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.contact-form-light {
  margin: 0;
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 45, 89, 0.08);
}

.contact-form-light span {
  color: var(--ink);
}

.contact-form-light input,
.contact-form-light textarea {
  border-color: var(--line);
  background: #f8fbff;
}

.contact-form-light .privacy-check span,
.contact-form-light .privacy-check a {
  color: var(--body);
}

.form-full {
  margin-top: 16px;
}

.privacy-check {
  margin: 18px 0 22px;
  display: flex !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: flex-start;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.privacy-check span {
  line-height: 1.7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

.faq-list {
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

details + details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.news-section,
.news-archive {
  background: #fff;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-archive .news-list {
  max-width: 1120px;
  margin-inline: auto;
  gap: 18px;
}

.news-section .news-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 12px 30px rgba(12, 45, 89, 0.06);
}

.news-archive .news-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 12px;
  align-items: start;
  padding: 30px 34px 30px 38px;
  overflow: hidden;
  border-color: rgba(204, 219, 237, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(12, 94, 205, 0.055), transparent 38%),
    #fff;
  box-shadow: 0 16px 44px rgba(12, 45, 89, 0.075);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.news-archive .news-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.news-archive .news-card:hover {
  border-color: rgba(25, 106, 211, 0.34);
  box-shadow: 0 22px 54px rgba(12, 45, 89, 0.12);
  transform: translateY(-2px);
}

.news-archive .news-card .news-meta {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-content: start;
  gap: 10px;
  padding-top: 2px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(34, 199, 181, 0.14);
}

.news-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

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

.news-card h3 a:hover {
  color: var(--blue);
}

.news-archive .news-card h3 {
  grid-column: 2;
  margin-top: 0;
  font-size: 21px;
  line-height: 1.55;
}

.news-archive .news-card p {
  grid-column: 2;
  max-width: 780px;
}

.news-card p {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.news-archive .news-card h3 a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-archive .news-card h3 a::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  background: var(--blue);
}

.news-empty {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.service-ai-page {
  background: #fff;
}

.service-ai-page .section-heading {
  max-width: 840px;
}

.service-hero {
  position: relative;
  display: block;
  min-height: clamp(560px, 45vw, 680px);
  padding-top: clamp(70px, 8vw, 108px);
  padding-right: clamp(42px, 5.4vw, 78px);
  padding-bottom: clamp(42px, 6vw, 68px);
  padding-left: clamp(42px, 5.4vw, 78px);
  border: 1px solid rgba(25, 42, 69, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.52) 55%, rgba(255, 255, 255, 0.04) 78%),
    url("assets/service-ai-hero-bg.webp?v=1") center right / cover no-repeat;
  overflow: hidden;
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  min-width: 0;
  padding-top: clamp(18px, 2vw, 28px);
}

.service-hero-kicker {
  margin: 0 0 10px;
  color: #333;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  line-height: 1.35;
}

.service-hero h1 {
  margin: 0;
  color: #333;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

.service-hero .lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #3d4652;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 600;
  line-height: 1.9;
}

.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 28px);
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.service-hero-points li {
  position: relative;
  place-items: center;
  display: grid;
  width: clamp(112px, 9.4vw, 136px);
  aspect-ratio: 1;
  border: 3px solid #d8b452;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92) 0 7%, rgba(255, 255, 255, 0) 8%),
    radial-gradient(circle at 78% 18%, rgba(255, 230, 146, 0.75) 0 0, rgba(255, 230, 146, 0) 20%),
    radial-gradient(circle at 50% 78%, rgba(36, 189, 208, 0.38), rgba(36, 189, 208, 0) 46%),
    linear-gradient(145deg, #061a3d 0%, #0a3974 48%, #0d5fb4 100%);
  box-shadow:
    0 20px 44px rgba(5, 25, 60, 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.72),
    0 0 0 10px rgba(216, 180, 82, 0.24),
    inset 0 0 0 7px rgba(255, 255, 255, 0.12),
    inset 0 -18px 30px rgba(0, 10, 32, 0.32);
  text-align: center;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 950;
  line-height: 1.45;
  isolation: isolate;
}

.service-hero-points li::before,
.service-hero-points li::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: inherit;
}

.service-hero-points li::before {
  inset: -7px;
  border: 1px solid rgba(216, 180, 82, 0.72);
  background:
    conic-gradient(from 210deg, rgba(255, 240, 176, 0.95), rgba(184, 132, 38, 0.45), rgba(255, 255, 255, 0.9), rgba(216, 180, 82, 0.75), rgba(255, 240, 176, 0.95));
  box-shadow: 0 0 36px rgba(216, 180, 82, 0.34);
}

.service-hero-points li::after {
  top: 16%;
  right: 18%;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(135deg, #fff, #ffe39a);
  box-shadow: 0 0 20px rgba(255, 231, 143, 0.92);
  opacity: 0.96;
  transform: rotate(45deg);
}

.service-hero-points span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 10, 32, 0.55);
}

.sp-break {
  display: none;
}

.service-red-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 4.8vw, 54px) max(22px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(36, 189, 208, 0.22), transparent 34%),
    linear-gradient(135deg, #061a3d 0%, #082c5f 48%, #0b63ce 100%);
}

.service-red-cta p,
.service-red-cta h2 {
  margin: 0;
  color: #fff;
}

.service-red-cta p {
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
}

.service-red-cta h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.45;
  font-weight: 950;
  text-align: center;
}

.service-red-buttons {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin: 26px auto 0;
}

.service-diagnosis-button,
.service-consult-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(6, 26, 61, 0.26);
}

.service-diagnosis-button {
  color: #06204a;
  background: linear-gradient(100deg, #ffe790, #d8b452);
}

.service-consult-button {
  color: #fff;
  background: linear-gradient(100deg, #0b63ce, #24bdd0);
}

.service-diagnosis-button::after,
.service-consult-button::after {
  content: "›";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  border-radius: 50%;
  color: currentColor;
  background: #fff;
  font-size: 22px;
  line-height: 1;
}

.service-report-preview {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 230px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 16, 48, 0.28);
}

.report-pane {
  min-height: 92px;
  border: 1px solid #d9e2ee;
  background:
    linear-gradient(90deg, rgba(3, 45, 94, 0.1) 0 28%, transparent 28%),
    repeating-linear-gradient(180deg, #eef4fb 0 8px, transparent 8px 18px),
    #fff;
}

.report-pane.photo {
  background:
    radial-gradient(circle at 32% 36%, rgba(11, 99, 206, 0.2), transparent 22%),
    linear-gradient(135deg, #e9f2fb, #fff);
}

.report-pane.table {
  background:
    repeating-linear-gradient(90deg, rgba(4, 19, 39, 0.14) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(180deg, rgba(4, 19, 39, 0.12) 0 1px, transparent 1px 26px),
    #fff;
}

.report-pane.chart {
  background:
    linear-gradient(135deg, transparent 48%, rgba(11, 99, 206, 0.22) 49% 51%, transparent 52%),
    repeating-linear-gradient(180deg, #eaf2fc 0 7px, transparent 7px 16px),
    #fff;
}

.report-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(8, 44, 95, 0.26);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-12deg);
  pointer-events: none;
}

.service-red-note {
  grid-column: 2;
  margin-top: -18px !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.definition-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 42px auto 0;
}

.definition-grid article,
.result-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.08);
}

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

.service-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  letter-spacing: 0.07em;
}

.service-section-eyebrow::before,
.service-section-eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

.definition-grid img {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  padding: 18px;
  border-radius: 50%;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 44%, #fff 0 42%, rgba(255, 255, 255, 0) 43%),
    linear-gradient(145deg, #eef6ff, #f8fcff);
  box-shadow:
    0 14px 28px rgba(11, 99, 206, 0.1),
    inset 0 0 0 1px rgba(11, 99, 206, 0.1);
}

.definition-grid h3,
.result-grid h3,
.approach-list h3,
.deliverable-panel h3,
.service-intro-flow h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.45;
  font-weight: 950;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

.definition-grid article {
  display: grid;
  grid-template-rows: auto 56px 96px auto;
  align-items: start;
  min-height: 0;
  padding: clamp(30px, 3.4vw, 40px) clamp(22px, 2.35vw, 30px);
  text-align: center;
}

.definition-grid p,
.result-grid p,
.approach-list p,
.deliverable-panel p,
.deliverable-panel li,
.service-intro-flow p,
.process-grid p {
  margin: 14px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.85;
}

.definition-grid p {
  color: var(--navy);
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 900;
  line-height: 1.7;
  align-self: start;
}

.definition-grid ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(11, 99, 206, 0.16);
  list-style: none;
  text-align: left;
}

.definition-grid li {
  position: relative;
  padding-left: 30px;
  color: var(--body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  white-space: nowrap;
}

.definition-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #2c68c7;
  border-radius: 50%;
  color: #2c68c7;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.service-map {
  background: #fff;
}

.service-map.section-pad > .service-compare-wrap {
  max-width: 1320px;
}

.service-compare-wrap {
  max-width: 1320px;
  margin: 42px auto 0;
}

.service-compare-table {
  display: grid;
  grid-template-columns: 150px repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(12, 45, 89, 0.1);
}

.compare-head {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 18px;
  color: #fff;
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.compare-head span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.92;
}

.compare-head.compare-label {
  background: transparent;
}

.compare-llmo {
  background: linear-gradient(135deg, #00788f, #12a2aa);
}

.compare-geo {
  background: linear-gradient(135deg, #4d32c5, #7450d8);
}

.compare-label,
.compare-cell {
  min-width: 0;
  border-top: 1px solid rgba(11, 99, 206, 0.14);
  border-left: 1px solid rgba(11, 99, 206, 0.14);
}

.compare-label {
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  background: #f7fbff;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 950;
  text-align: center;
}

.compare-cell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-content: center;
  gap: 8px 24px;
  min-height: 144px;
  padding: clamp(22px, 2.35vw, 30px);
  background: rgba(255, 255, 255, 0.94);
}

.compare-cell strong {
  color: var(--blue);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 950;
  line-height: 1.45;
}

.compare-cell p,
.compare-cell li {
  color: var(--body);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.75;
}

.compare-cell p {
  margin: 0;
}

.compare-cell ul {
  margin: 4px 0 0;
  padding-left: 1.1em;
}

.compare-cell > div {
  min-width: 0;
}

.compare-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(11, 99, 206, 0.16);
  border-radius: 50%;
  color: var(--blue);
  background: #f4f8ff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.compare-icon.ai,
.compare-icon.head,
.compare-icon.entity {
  color: #0096a6;
  border-color: rgba(0, 150, 166, 0.2);
  background: #f0fcff;
}

.compare-icon.globe,
.compare-icon.growth,
.compare-icon.stack {
  color: #5b3ad1;
  border-color: rgba(91, 58, 209, 0.2);
  background: #f7f4ff;
}

.compare-mark {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(11, 99, 206, 0.14);
  border-radius: 50%;
  background: #f4f8ff;
  color: var(--blue);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.compare-mark-google {
  background:
    radial-gradient(circle at center, #fff 0 54%, transparent 56%),
    conic-gradient(#4285f4 0 25%, #34a853 0 46%, #fbbc05 0 70%, #ea4335 0 100%);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 38px;
  -webkit-text-stroke: 1px #fff;
}

.compare-mark-llm {
  display: flex;
  gap: 6px;
  width: 88px;
  border: 0;
  background: transparent;
}

.compare-mark-llm span,
.compare-mark-llm i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(9, 66, 125, 0.12);
}

.compare-mark-llm span {
  background: #10a37f;
}

.compare-mark-llm i {
  background: linear-gradient(135deg, #4588f6, #6ca4ff);
  font-style: normal;
}

.compare-mark-llm img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.compare-mark-globe,
.compare-mark-line.purple {
  color: #5b3ad1;
  border-color: rgba(91, 58, 209, 0.2);
  background: #f7f4ff;
}

.compare-mark-line.teal {
  color: #0096a6;
  border-color: rgba(0, 150, 166, 0.2);
  background: #f0fcff;
}

.service-compare-summary {
  display: grid;
  grid-template-columns: minmax(470px, 0.9fr) minmax(650px, 1.1fr);
  gap: clamp(24px, 2.4vw, 36px);
  align-items: center;
  margin-top: 20px;
  padding: clamp(18px, 1.7vw, 24px) clamp(28px, 2.6vw, 36px);
  border: 1px solid rgba(11, 99, 206, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.service-compare-summary > div:first-child {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 6px 20px;
  align-items: center;
}

.service-compare-summary .compare-icon {
  grid-row: 1 / span 2;
  width: 82px;
  height: 82px;
  color: var(--blue);
  border-color: rgba(11, 99, 206, 0.14);
  background: #eef5ff;
}

.service-compare-summary .compare-icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-compare-summary strong {
  color: var(--blue);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 950;
  line-height: 1.35;
  white-space: nowrap;
}

.service-compare-summary p {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
}

.compare-formula {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 14px);
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.compare-formula span,
.compare-formula em {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 6.4vw, 106px);
  aspect-ratio: 1;
  border: 2px solid rgba(11, 99, 206, 0.18);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: clamp(15px, 1.05vw, 17px);
  font-style: normal;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
}

.compare-formula span:nth-of-type(2) {
  border-color: rgba(0, 150, 166, 0.22);
  color: #008a9a;
}

.compare-formula span:nth-of-type(3) {
  border-color: rgba(91, 58, 209, 0.22);
  color: #5b3ad1;
}

.compare-formula small {
  display: block;
  margin-top: 8px;
  color: var(--body);
  font-size: 10px;
  font-weight: 850;
}

.compare-formula span:nth-of-type(2) small {
  color: #00788f;
}

.compare-formula span:nth-of-type(3) small {
  color: #5b3ad1;
}

.compare-formula em {
  width: clamp(116px, 7.8vw, 128px);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.service-compare-tabs {
  display: none;
}

.service-compare-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.compare-formula b {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 950;
}

.deliverable-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-panel li {
  position: relative;
  padding-left: 18px;
}

.deliverable-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.service-worries {
  background: #fff;
}

.service-worries .worry-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}

.service-worries .worry-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 24px;
  align-items: start;
  min-height: 0;
  padding: 28px 32px;
  overflow: visible;
  border-color: rgba(11, 99, 206, 0.16);
  box-shadow: 0 14px 34px rgba(12, 45, 89, 0.07);
}

.service-worries .worry-grid article::before {
  content: none;
}

.service-worries .icon-circle {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  margin: 2px 0 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.service-worries .worry-grid h3 {
  padding: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.55;
  text-align: left;
  text-wrap: pretty;
}

.service-worries .worry-grid p {
  margin-top: 2px;
  padding: 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.85;
  text-align: left;
  text-wrap: pretty;
}

.service-message {
  padding: clamp(62px, 6vw, 84px) 22px clamp(32px, 4.5vw, 54px);
  text-align: center;
  background: #fff;
}

.service-message h2,
.service-message-body {
  display: block;
  max-width: 1220px;
  margin: 0 auto;
}

.service-message h2 {
  color: #202733;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}

.service-message-body {
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
  max-width: 1440px;
  margin-top: clamp(26px, 3.4vw, 40px);
}

.service-message-body p {
  margin: 0;
  color: #111827;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 780;
  line-height: 1.85;
  text-wrap: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.service-message-body p:nth-child(2),
.service-message-body p:nth-child(3) {
  max-width: 1440px;
  margin-inline: auto;
}

.nowrap {
  white-space: nowrap;
}

.service-down-arrow {
  width: min(460px, 58vw);
  height: clamp(32px, 4vw, 50px);
  margin: clamp(32px, 4vw, 50px) auto 0;
  background: linear-gradient(180deg, #23324a, #101b2e);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 5px 0 rgba(6, 26, 61, 0.18));
}

.service-results {
  background: #fff;
}

.service-results .section-heading h2 {
  color: #666;
}

.result-grid article {
  display: grid;
  grid-template-rows: 54px auto 1fr;
  gap: 22px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.result-placeholder,
.result-image {
  box-sizing: border-box;
  justify-self: stretch;
  align-self: start;
  width: auto;
  max-width: 100%;
  aspect-ratio: 16 / 10.8;
}

.result-placeholder {
  background: #dedee4;
}

.result-image {
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: #f6faff;
}

.result-grid h3 {
  display: grid;
  align-items: center;
  height: 54px;
  width: auto;
  min-width: 0;
  padding: 0;
  color: #666;
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: nowrap;
}

.result-grid p {
  margin: 0;
  padding: 0 8px;
  color: #666;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.9;
}

.service-approach {
  background: #fff;
}

.approach-list {
  display: grid;
  gap: 18px;
  max-width: 1100px;
  margin: 42px auto 0;
}

.approach-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(12, 45, 89, 0.08);
}

.approach-list img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(11, 99, 206, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
  background: #eef4f8;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 46px 30px;
  max-width: 1120px;
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  position: relative;
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto auto minmax(42px, auto) auto 1fr;
  justify-items: center;
  min-width: 0;
  min-height: 300px;
  padding: 0 20px 22px;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(12, 45, 89, 0.08);
  text-align: center;
}

.process-grid li:nth-child(5) {
  grid-column: 2 / span 2;
}

.process-grid li:nth-child(6) {
  grid-column: 4 / span 2;
}

.process-grid li:nth-child(7) {
  grid-column: 6 / span 2;
}

.process-grid li:not(:nth-child(4)):not(:nth-child(7))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 18px;
  height: 18px;
  border-top: 5px solid #7f8b99;
  border-right: 5px solid #7f8b99;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.82;
}

.process-step {
  display: block;
  width: calc(100% + 40px);
  margin: 0 -20px 18px;
  padding: 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b63ce);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-grid b {
  display: block;
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.process-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 950;
}

.process-icon {
  width: 94px;
  height: 94px;
  margin: 20px 0 16px;
  object-fit: contain;
}

.process-grid p {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
}

.process-grid p::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.service-deliverable {
  background: #fff;
}

.deliverable-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  max-width: 1120px;
  margin: 42px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 20px 54px rgba(12, 45, 89, 0.1);
}

.deliverable-panel > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(12, 45, 89, 0.1);
}

.deliverable-panel .button {
  margin-top: 24px;
}

.deliverable-panel h4 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 950;
}

.service-intro-flow {
  position: relative;
  display: grid;
  gap: 18px;
  box-sizing: border-box;
  width: min(100%, 896px);
  max-width: 896px;
  margin: 42px auto 0;
  padding: 0 0 0 76px;
}

.service-intro-flow::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 34px;
  bottom: 34px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), rgba(11, 99, 206, 0.22));
}

.service-intro-flow::after {
  content: none;
}

.service-intro-flow article {
  position: relative;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 104px 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  min-height: 108px;
  padding: 18px 28px 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.09);
}

.service-intro-flow article::before {
  content: "";
  position: absolute;
  left: -57px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px #f4f9ff;
  transform: translateY(-50%);
}

.service-intro-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--blue-dark);
  border-bottom: 3px solid var(--blue-dark);
  opacity: 0.82;
  transform: translateX(-50%) rotate(45deg);
}

.service-intro-flow span {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin-left: -1px;
  border-radius: 50%;
  border: 1px solid rgba(11, 99, 206, 0.12);
  background: radial-gradient(circle at 50% 42%, #fff 0%, #eef6ff 100%);
}

.service-intro-flow span img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.service-intro-flow b {
  display: grid;
  place-items: center;
  height: 64px;
  border-right: 1px solid rgba(11, 99, 206, 0.2);
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.service-intro-flow h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 950;
}

.service-intro-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.sub-hero.article-hero h1 {
  max-width: 980px;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1.42;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

.article-page {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.press-article {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(12, 45, 89, 0.08);
}

.press-article > *:first-child {
  margin-top: 0;
}

.press-article h2 {
  margin: clamp(44px, 6vw, 64px) 0 18px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}

.press-article h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.55;
}

.press-article p {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.press-article .article-lead {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.press-article figure {
  margin: 28px 0;
}

.press-article img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(223, 230, 239, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(12, 45, 89, 0.1);
}

.press-article .article-figure-narrow {
  max-width: 560px;
  margin-inline: auto;
}

.press-article blockquote {
  margin: 28px 0 0;
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f4f8fc;
}

.press-article blockquote p {
  color: var(--ink);
}

.press-article a {
  color: var(--blue);
  font-weight: 900;
}

.article-back {
  margin-top: 48px;
  text-align: center;
}

.article-back .button {
  width: fit-content;
  margin-inline: auto;
}

.site-footer {
  padding: 54px 22px;
  text-align: center;
  background:
    linear-gradient(120deg, #041327, #082f63 70%, #0b63ce),
    var(--navy);
}

.site-footer img {
  width: 230px;
  height: 76px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.site-footer p,
.site-footer a,
.site-footer small {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 10px;
}

.footer-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.sub-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(4, 19, 39, 0.98), rgba(8, 47, 99, 0.9), rgba(11, 99, 206, 0.72)),
    var(--navy);
}

.sub-hero > div {
  max-width: var(--max);
  margin-inline: auto;
}

.sub-hero .eyebrow {
  color: var(--teal);
}

.sub-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1.24;
}

.sub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.95;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
}

.split-section h2,
.member-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.45;
}

.split-section p:not(.eyebrow),
.member-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.95;
}

.about-intro,
.team-lead,
.team-support {
  background: #fff;
}

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

.statement-letter > div {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 56px);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 45, 89, 0.08);
}

.statement-letter h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.5;
}

.statement-letter p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 2.05;
}

.philosophy,
.outline,
.team-list {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

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

.philosophy-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 45, 89, 0.06);
}

.philosophy-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--teal));
  font-size: 13px;
  font-weight: 900;
}

.philosophy-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
}

.philosophy-grid p {
  margin: 14px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.85;
}

.outline-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.outline-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.outline-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.outline-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.outline-list small {
  color: var(--muted);
}

.representatives {
  display: grid;
  gap: 8px;
}

.representatives span {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: baseline;
}

.representatives strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 58px 22px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(4, 19, 39, 0.98), rgba(8, 47, 99, 0.92), rgba(11, 99, 206, 0.82)),
    var(--navy);
}

.page-cta p {
  flex-basis: 100%;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}

.page-cta .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.team-list {
  display: grid;
  gap: 34px;
}

.team-lead {
  padding-bottom: 32px;
}

.team-list.section-pad {
  padding-top: 18px;
}

.expert-intro {
  max-width: 980px;
  padding: 34px;
  border: 1px solid rgba(223, 230, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 18px 44px rgba(12, 45, 89, 0.08);
}

.expert-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.45;
}

.expert-intro p:not(.eyebrow) {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.85;
}

.expert-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.expert-points span {
  padding: 9px 13px;
  border: 1px solid rgba(11, 99, 206, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.member-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 45, 89, 0.08);
}

.member-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 45, 89, 0.18);
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(223, 230, 239, 0.9);
  pointer-events: none;
}

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

.member-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(45, 109, 219, 0.16), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #eef5ff 100%);
}

.member-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(76%, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(12, 45, 89, 0.08);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.member-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.member-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(11, 99, 206, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: #f4f8fc;
  font-size: 13px;
  font-weight: 900;
}

.proof-band {
  padding: 28px 22px;
  background: var(--navy);
}

.proof-band > div {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.proof-band article {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-band span {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.proof-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.advantage,
.team-model {
  background: #fff;
}

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

.advantage-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(11, 99, 206, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 16px 40px rgba(12, 45, 89, 0.08);
}

.advantage-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 20px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--teal));
  font-size: 14px;
  font-weight: 900;
}

.advantage-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.advantage-grid p:not(.advantage-number) {
  margin: 14px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.85;
}

.legal-hero {
  min-height: 340px;
}

.legal-page {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.legal-body {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(12, 45, 89, 0.08);
}

.legal-body section + section {
  margin-top: 34px;
}

.legal-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.legal-body p,
.legal-body li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.95;
}

.legal-body p {
  margin: 0;
}

.legal-body p + p {
  margin-top: 14px;
}

.legal-body ul {
  margin: 12px 0 0;
  padding-left: 1.3em;
}

.legal-date {
  margin-top: 34px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 800;
}

@media (max-width: 980px) {
  .service-hero {
    min-height: auto;
    padding-top: 64px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.46) 100%),
      url("assets/service-ai-hero-bg.webp?v=1") 66% center / auto 100% no-repeat;
  }

  .service-hero-copy {
    max-width: min(560px, 100%);
    padding-top: 0;
  }

  .service-hero-kicker {
    max-width: 16em;
    font-size: clamp(19px, 3.6vw, 24px);
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .service-hero h1 {
    max-width: 8.5em;
    font-size: clamp(38px, 7vw, 52px);
    line-height: 1.16;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .service-hero .sp-break {
    display: block;
  }

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

  .service-red-note {
    grid-column: 1;
    margin-top: -8px !important;
    text-align: center !important;
  }

  .definition-grid,
  .result-grid,
  .process-grid,
  .service-intro-flow {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 18px;
  }

  .process-grid li,
  .process-grid li:nth-child(5),
  .process-grid li:nth-child(6),
  .process-grid li:nth-child(7) {
    grid-column: auto;
  }

  .process-grid li::after {
    display: none;
  }

  .service-compare-wrap {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .service-compare-table {
    display: none;
  }

  .service-compare-summary {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .service-compare-tabs {
    display: block;
    max-width: 680px;
    margin: 0 auto;
  }

  .compare-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .compare-tabs-nav label {
    display: grid;
    place-items: center;
    min-height: 48px;
    border: 1px solid rgba(11, 99, 206, 0.18);
    border-radius: 999px;
    color: var(--blue);
    background: #fff;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(12, 45, 89, 0.06);
  }

  #compare-tab-aio:checked ~ .compare-tabs-nav label[for="compare-tab-aio"],
  #compare-tab-llmo:checked ~ .compare-tabs-nav label[for="compare-tab-llmo"],
  #compare-tab-geo:checked ~ .compare-tabs-nav label[for="compare-tab-geo"] {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: 0 14px 28px rgba(11, 99, 206, 0.2);
  }

  #compare-tab-llmo:checked ~ .compare-tabs-nav label[for="compare-tab-llmo"] {
    background: linear-gradient(135deg, #00788f, #12a2aa);
  }

  #compare-tab-geo:checked ~ .compare-tabs-nav label[for="compare-tab-geo"] {
    background: linear-gradient(135deg, #4d32c5, #7450d8);
  }

  .compare-tab-panel {
    display: none;
    overflow: hidden;
    border: 1px solid rgba(11, 99, 206, 0.16);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(12, 45, 89, 0.1);
  }

  #compare-tab-aio:checked ~ .compare-tab-aio,
  #compare-tab-llmo:checked ~ .compare-tab-llmo,
  #compare-tab-geo:checked ~ .compare-tab-geo {
    display: grid;
  }

  .compare-tab-panel h3 {
    margin: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    font-size: 22px;
    font-weight: 950;
    line-height: 1.35;
    text-align: center;
  }

  .compare-tab-llmo h3 {
    background: linear-gradient(135deg, #00788f, #12a2aa);
  }

  .compare-tab-geo h3 {
    background: linear-gradient(135deg, #4d32c5, #7450d8);
  }

  .compare-tab-panel h3 span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.9;
  }

  .compare-tab-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-top: 1px solid rgba(11, 99, 206, 0.12);
  }

  .compare-tab-row > b {
    display: grid;
    place-items: center;
    align-self: stretch;
    min-height: 74px;
    border-radius: 12px;
    color: var(--ink);
    background: #f7fbff;
    font-size: 14px;
    font-weight: 950;
    text-align: center;
  }

  .compare-tab-row > div {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    min-width: 0;
  }

  .compare-tab-row .compare-mark {
    grid-row: 1 / span 3;
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .compare-tab-row .compare-mark-google {
    font-size: 28px;
  }

  .compare-tab-row .compare-mark-llm {
    width: 62px;
    height: 52px;
  }

  .compare-tab-row .compare-mark-llm span,
  .compare-tab-row .compare-mark-llm i {
    width: 30px;
    height: 30px;
  }

  .compare-tab-row .compare-mark-llm img {
    width: 17px;
    height: 17px;
  }

  .compare-tab-row strong {
    color: var(--blue);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.35;
  }

  .compare-tab-row p,
  .compare-tab-row li {
    color: var(--body);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.65;
  }

  .compare-tab-row p {
    margin: 0;
  }

  .compare-tab-row ul {
    grid-column: 2;
    margin: 2px 0 0;
    padding-left: 1.1em;
  }

  .compare-formula {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .service-message {
    padding-inline: 22px;
  }

  .service-message h2 {
    font-size: clamp(22px, 3.8vw, 30px);
  }

  .service-message-body {
    max-width: 760px;
  }

  .service-message-body p {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .service-message-body .nowrap {
    white-space: normal;
  }

  .approach-list article,
  .deliverable-panel {
    grid-template-columns: 1fr;
  }

  .deliverable-panel > img {
    order: -1;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-top: 64px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 164px;
    height: 44px;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: #fff;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    inset: 64px 16px auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 84px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-group {
    display: grid;
  }

  .site-header.is-open .nav-parent {
    justify-content: center;
    padding: 14px;
    color: var(--ink);
  }

  .site-header.is-open .nav-parent::after {
    display: none;
  }

  .site-header.is-open .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 10px 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.is-open .nav-submenu a {
    padding: 11px 14px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    background: #f4f8fc;
  }

  .site-header.is-open .nav-submenu a + a {
    margin-top: 6px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px;
    color: var(--ink);
    text-align: center;
  }

  .site-header.is-open .nav-submenu a {
    padding: 11px 14px;
    color: var(--muted);
  }

  .hero,
  .strength-list article,
  .strength-list article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 56%, rgba(255, 255, 255, 0.34) 100%);
  }

  .hero::after {
    right: -220px;
    top: 42%;
    width: 640px;
    height: 640px;
  }

  .strength-list article:nth-child(even) .image-panel {
    order: initial;
  }

  .worry-grid,
  .service-grid,
  .plan-grid,
  .case-grid,
  .consult-grid,
  .news-section .news-list {
    grid-template-columns: 1fr;
  }

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

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

  .split-section,
  .split-section.reverse,
  .contact-layout,
  .philosophy-grid,
  .advantage-grid,
  .people-proof,
  .member-card {
    grid-template-columns: 1fr;
  }

  .people-proof-photos {
    max-width: 620px;
  }

  .proof-band > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-photo {
    width: 180px;
  }

  .plan-card.recommended {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .service-hero {
    min-height: 620px;
    padding: 44px 18px 58px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 50%, rgba(255, 255, 255, 0.58) 100%),
      url("assets/service-ai-hero-bg.webp?v=1") 68% center / auto 100% no-repeat;
  }

  .service-hero-kicker {
    max-width: 14em;
    font-size: 18px;
    line-height: 1.48;
  }

  .service-hero h1 {
    max-width: 8em;
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.18;
  }

  .service-hero .lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .service-hero-points {
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
  }

  .service-hero-points li {
    width: 96px;
    font-size: 12px;
  }

  .service-red-cta {
    padding: 28px 18px;
  }

  .service-red-cta h2 {
    font-size: 25px;
  }

  .service-red-buttons {
    max-width: 100%;
  }

  .service-report-preview {
    min-height: 190px;
  }

  .service-red-note {
    font-size: 12px !important;
  }

  .definition-grid article,
  .approach-list article,
  .deliverable-panel,
  .service-intro-flow article {
    padding: 20px;
  }

  .service-intro-flow {
    max-width: 620px;
    padding-left: 42px;
  }

  .service-intro-flow::before {
    left: 17px;
  }

  .service-intro-flow::after {
    left: 9px;
  }

  .service-intro-flow article {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .service-intro-flow article::before {
    left: -35px;
  }

  .service-intro-flow article::after {
    left: 50%;
  }

  .service-intro-flow span {
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
    margin-left: 0;
  }

  .service-intro-flow span img {
    width: 58px;
    height: 58px;
  }

  .service-intro-flow b {
    justify-content: start;
    height: auto;
    border-right: 0;
    font-size: 26px;
  }

  .service-intro-flow div {
    grid-column: 2;
  }

  .process-grid li {
    min-height: 0;
    padding: 0 20px 22px;
  }

  .process-step {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

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

  .service-worries .worry-grid article {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 22px;
  }

  .service-worries .icon-circle {
    grid-row: auto;
    width: 46px;
    height: 46px;
    margin: 0;
    font-size: 13px;
  }

  .service-worries .worry-grid h3 {
    font-size: 18px;
    line-height: 1.6;
  }

  .service-worries .worry-grid p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.85;
  }

  .definition-grid img {
    width: 86px;
    height: 86px;
    padding: 18px;
  }

  .service-compare-tabs {
    max-width: 100%;
  }

  .compare-tabs-nav {
    gap: 6px;
  }

  .compare-tabs-nav label {
    min-height: 44px;
    font-size: 13px;
  }

  .compare-tab-panel h3 {
    padding: 18px 16px;
    font-size: 20px;
  }

  .compare-tab-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .compare-tab-row > b {
    justify-self: start;
    min-height: 0;
    padding: 7px 12px;
    font-size: 13px;
  }

  .compare-tab-row > div {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px 11px;
  }

  .compare-tab-row ul {
    grid-column: 2;
  }

  .compare-head {
    min-height: 78px;
    padding: 16px;
  }

  .compare-cell {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 150px;
    padding: 18px;
  }

  .compare-icon,
  .compare-mark {
    width: 56px;
    height: 56px;
    font-size: 19px;
  }

  .compare-mark-google {
    font-size: 30px;
  }

  .compare-mark-llm {
    width: 66px;
  }

  .compare-mark-llm span,
  .compare-mark-llm i {
    width: 31px;
    height: 31px;
  }

  .compare-mark-llm span {
    font-size: 0;
  }

  .compare-mark-llm i {
    font-size: 17px;
  }

  .compare-mark-llm img {
    width: 17px;
    height: 17px;
  }

  .service-compare-summary {
    padding: 20px;
  }

  .service-compare-summary > div:first-child {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-compare-summary .compare-icon {
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
  }

  .service-compare-summary .compare-icon img {
    width: 36px;
    height: 36px;
  }

  .service-compare-summary strong {
    white-space: normal;
  }

  .compare-formula {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    justify-content: stretch;
    width: min(100%, 340px);
    margin: 4px auto 0;
  }

  .compare-formula span,
  .compare-formula em {
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    min-height: 56px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(12, 45, 89, 0.08);
  }

  .compare-formula span::before,
  .compare-formula em::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(11, 99, 206, 0.08);
  }

  .compare-formula small {
    margin-top: 0;
    margin-left: auto;
    font-size: 12px;
    white-space: nowrap;
  }

  .compare-formula b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 14px;
    margin: -5px auto;
    color: #7b8ba1;
    font-size: 18px;
    line-height: 1;
    transform: rotate(90deg);
  }

  .compare-formula b:nth-of-type(3) {
    color: var(--blue);
    transform: none;
  }

  .compare-formula em {
    min-height: 64px;
    justify-content: center;
    color: #fff;
    font-size: 20px;
  }

  .compare-formula em::before {
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
  }

  .result-grid article {
    padding: 0;
  }

  .result-grid h3 {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .result-grid p {
    padding: 0;
  }

  .approach-list {
    gap: 14px;
  }

  .approach-list img,
  .deliverable-panel > img {
    aspect-ratio: 16 / 10;
  }

  .service-message {
    padding: 42px 18px;
  }

  .service-message h2 {
    font-size: 23px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .service-message-body {
    gap: 16px;
    max-width: 100%;
    margin-top: 24px;
  }

  .service-message-body p {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .nowrap {
    white-space: normal;
  }

  .service-message strong {
    font-size: 20px;
    line-height: 1.65;
  }

  .section-pad {
    padding: 56px 18px;
  }

  h1,
  h2,
  h3,
  h4,
  summary,
  .plan-label,
  .price,
  .flow-list strong {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 25px;
    line-height: 1.45;
  }

  .section-heading p:last-child {
    font-size: 14px;
    line-height: 1.75;
  }

  .team-lead.section-pad {
    padding-bottom: 22px;
  }

  .team-list.section-pad {
    padding-top: 0;
  }

  .sub-hero {
    min-height: 360px;
  }

  .sub-hero h1 {
    font-size: 34px;
    line-height: 1.32;
  }

  .expert-intro {
    padding: 24px;
  }

  .statement-letter > div {
    padding: 24px;
  }

  .expert-intro h2 {
    font-size: 25px;
  }

  .statement-letter h2 {
    font-size: 25px;
  }

  .expert-intro p:not(.eyebrow),
  .statement-letter p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.8;
  }

  .expert-points {
    display: grid;
  }

  .people-proof-copy h2 {
    font-size: 27px;
    line-height: 1.45;
  }

  .people-proof-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85;
  }

  .people-proof-points {
    display: grid;
  }

  .people-proof-photos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .people-proof-photos figure:nth-child(2) {
    margin-top: 24px;
  }

  .people-proof-photos figcaption {
    padding: 12px;
    font-size: 13px;
  }

  .news-archive .news-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-archive .news-card .news-meta,
  .news-archive .news-card h3,
  .news-archive .news-card p {
    grid-column: auto;
    grid-row: auto;
  }

  .news-card {
    padding: 20px;
  }

  .news-card h3 {
    font-size: 17px;
  }

  .sub-hero.article-hero h1 {
    font-size: 25px;
    line-height: 1.55;
  }

  .press-article {
    padding: 22px;
  }

  .press-article h2 {
    font-size: 23px;
    line-height: 1.5;
  }

  .press-article h3 {
    font-size: 18px;
  }

  .press-article p,
  .press-article .article-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .press-article figure {
    margin: 22px 0;
  }

  .sub-hero p:not(.eyebrow),
  .split-section p:not(.eyebrow),
  .member-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85;
  }

  .split-section h2,
  .member-copy h2 {
    font-size: 27px;
  }

  .philosophy-grid article,
  .advantage-grid article,
  .member-card {
    padding: 24px;
  }

  .proof-band > div {
    grid-template-columns: 1fr;
  }

  .outline-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .representatives span {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .representatives strong {
    font-size: 15px;
  }

  .page-cta {
    display: grid;
    padding: 42px 18px;
  }

  .legal-body {
    padding: 24px;
  }

  .legal-body h2 {
    font-size: 19px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-note,
  .contact-form-light {
    padding: 24px;
  }

  .contact-note h2 {
    font-size: 25px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 54px 18px 68px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.78) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56));
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h1 span {
    white-space: normal;
  }

  .lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .worry-grid h3,
  .service-card h3,
  .plan-card h3,
  .case-grid h3,
  .support-grid h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .worry-grid p,
  .service-card p,
  .support-grid p,
  .plan-card li,
  .case-grid p,
  .strength-list p,
  .flow-list p,
  .faq p {
    font-size: 14px;
    line-height: 1.75;
  }

  .strength-list h3 {
    font-size: 23px;
    line-height: 1.45;
  }

  .strength-list p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.9;
  }

  .message p {
    font-size: 17px;
  }

  .message strong {
    font-size: 14px;
    line-height: 1.8;
  }

  .plan-label {
    min-height: 0;
    font-size: 12px;
  }

  .price {
    font-size: 26px;
  }

  .comparison {
    overflow: visible;
  }

  .comparison h3 {
    font-size: 24px;
    line-height: 1.45;
  }

  .comparison table {
    display: none;
  }

  .comparison-mobile {
    display: grid;
    gap: 14px;
  }

  .comparison-mobile article {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(12, 45, 89, 0.05);
  }

  .comparison-mobile h4 {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 900;
  }

  .comparison-mobile p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }

  .comparison-mobile dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 0;
  }

  .comparison-mobile div {
    min-width: 0;
    padding: 10px 6px;
    border-radius: 8px;
    text-align: center;
    background: #f4f8fc;
  }

  .comparison-mobile dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
  }

  .comparison-mobile dd {
    margin: 4px 0 0;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    top: 0;
    right: -360px;
    bottom: 0;
    width: 980px;
    max-width: none;
    height: auto;
    min-height: 0;
    transform: none;
    margin-top: 0;
    opacity: 0.48;
    pointer-events: none;
  }

  .hero-visual img {
    object-position: 68% center;
    filter: drop-shadow(0 24px 42px rgba(12, 45, 89, 0.08));
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 20%, #000 86%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 20%, #000 86%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .support-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .consult-box,
  .flow-cta {
    padding: 28px 20px;
  }

  .consult-grid {
    gap: 8px;
  }

  .research-panel {
    aspect-ratio: 16 / 10;
  }

  .flow-list li {
    padding-bottom: 18px;
  }

  .flow-list i {
    width: 82px;
    height: 82px;
  }

  .quick-value {
    padding: 0 18px;
  }

  .quick-value > div {
    margin-top: -28px;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quick-value-main {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  }

  .quick-value ul {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

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

  .support-grid article {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 20px;
  }

  .support-grid span {
    width: 52px;
    height: 52px;
  }
}

/* Typography and motion refinement */
body {
  font-weight: 500;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:where(
  h1,
  h2,
  .section-title,
  .page-title,
  .hero-title,
  .hero-copy h1,
  .service-hero h1,
  .team-hero h1,
  .about-hero h1,
  .news-hero h1
) {
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  line-height: 1.24;
}

:where(
  h3,
  h4,
  summary,
  .card h3,
  .news-card h3,
  .problem-card h3,
  .service-card h3,
  .team-card h3,
  .effect-card h3,
  .approach-card h3
) {
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

:where(p, li, dd, .section-lead, .service-lead, .team-card p, .news-card p, .faq-item p) {
  font-weight: 500;
}

:where(.button, .nav-cta, .menu-button, .plan-button, .submit-button, .news-meta, .tag, .badge) {
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  :where(h1, .hero-copy h1, .service-hero h1, .page-title) {
    line-height: 1.25;
  }

  .service-hero-points li {
    width: 136px;
    font-size: 10.5px;
    padding: 0 10px;
  }
}

body.motion-ready [data-motion] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

body.motion-ready [data-motion="zoom"] {
  transform: scale(0.97);
}

body.motion-ready [data-motion].is-visible {
  opacity: 1;
  transform: none;
}

:where(
  .problem-card,
  .service-card,
  .strength-card,
  .effect-card,
  .approach-card,
  .definition-grid article,
  .result-grid article,
  .approach-list article,
  .service-intro-flow article,
  .compare-tab-panel,
  .plan-card,
  .news-card,
  .team-card,
  .member-card,
  .advantage-grid > *,
  .flow-list li,
  .support-grid article,
  .faq-item,
  .contact-form
) {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

@media (hover: hover) {
  :where(
    .problem-card,
    .service-card,
    .strength-card,
    .effect-card,
    .approach-card,
    .definition-grid article,
    .result-grid article,
    .approach-list article,
    .service-intro-flow article,
    .compare-tab-panel,
    .plan-card,
    .news-card,
    .team-card,
    .member-card,
    .advantage-grid > *,
    .support-grid article,
    .faq-item
  ):hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(12, 45, 89, 0.14);
  }
}

:where(.hero-visual img, .service-hero-visual img, .service-visual img, .research-panel img) {
  animation: dygs-float 7s ease-in-out infinite;
}

@keyframes dygs-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.member-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid rgba(11, 99, 206, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(12, 45, 89, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.member-profile-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.member-profile-link:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  transform: translateY(-1px);
}

.profile-page {
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 32%, #f7fbff 100%);
}

.profile-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.profile-hero.section-pad {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(52px, 7vw, 92px);
}

.profile-hero.section-pad > * {
  max-width: none;
  margin: 0;
}

.profile-hero-copy h1 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 0;
}

.profile-name-en {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.profile-catch {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.profile-hero-copy > p:not(.eyebrow):not(.profile-catch):not(.profile-name-en) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(11, 99, 206, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.profile-hero-photo {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 45, 89, 0.13);
}

.profile-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  background: #f3f8ff;
}

.profile-section {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: 22px;
  padding-left: 22px;
}

.profile-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.profile-section-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: 0;
}

.profile-summary-box,
.profile-definition-grid,
.profile-timeline-item,
.profile-stat,
.profile-card,
.profile-link-card,
.profile-other-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(11, 47, 91, 0.07);
}

.profile-summary-box {
  padding: clamp(24px, 4vw, 42px);
}

.profile-summary-box p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 500;
  line-height: 2.05;
}

.profile-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.profile-definition-grid div {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.profile-definition-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.profile-definition-grid dt {
  color: var(--blue);
  font-weight: 900;
}

.profile-definition-grid dd {
  margin: 0;
  color: var(--body);
  font-weight: 600;
  line-height: 1.7;
}

.profile-timeline {
  display: grid;
  gap: 18px;
}

.profile-timeline-item {
  padding: 26px;
}

.profile-date {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.profile-timeline-item h3,
.profile-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.profile-timeline-item p:not(.profile-date),
.profile-card p,
.profile-stat p {
  margin: 0;
  color: var(--body);
  font-weight: 500;
  line-height: 1.9;
}

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

.profile-stat {
  padding: 24px;
}

.profile-stat strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.14;
}

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

.profile-card {
  padding: 24px;
}

.profile-card-wide {
  grid-column: span 2;
}

.profile-card .text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.profile-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.profile-link-card span {
  color: var(--blue);
  font-size: 12px;
  white-space: nowrap;
}

.profile-link-card:hover,
.profile-other-card:hover {
  border-color: rgba(11, 99, 206, 0.28);
  box-shadow: 0 22px 56px rgba(11, 99, 206, 0.13);
  transform: translateY(-2px);
}

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

.profile-other-card {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-other-card img {
  grid-row: 1 / span 2;
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  background: #f3f8ff;
}

.profile-other-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-other-card strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.profile-cta span {
  display: block;
  max-width: 720px;
  margin: 10px auto 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card-grid,
  .profile-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .profile-hero.section-pad {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .profile-hero-photo {
    max-width: 420px;
  }

  .profile-definition-grid,
  .profile-stats,
  .profile-card-grid,
  .profile-link-grid,
  .profile-other-grid {
    grid-template-columns: 1fr;
  }

  .profile-definition-grid div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .profile-definition-grid div:last-child {
    border-bottom: 0;
  }

  .profile-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .profile-breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .profile-hero.section-pad,
  .profile-section {
    padding-inline: 18px;
  }

  .profile-hero-copy h1 {
    font-size: 42px;
  }

  .profile-catch {
    font-size: 25px;
  }

  .profile-hero-copy > p:not(.eyebrow):not(.profile-catch):not(.profile-name-en) {
    font-size: 15px;
    line-height: 1.9;
  }

  .profile-tags span {
    font-size: 12px;
  }

  .profile-definition-grid div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 18px;
  }

  .profile-summary-box,
  .profile-timeline-item,
  .profile-stat,
  .profile-card {
    padding: 20px;
  }

  .profile-other-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .profile-other-card img {
    width: 76px;
    height: 76px;
  }

  .profile-other-card strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready [data-motion],
  :where(.hero-visual img, .service-hero-visual img, .service-visual img, .research-panel img) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
