:root {
  --ink: #111827;
  --sub: #5b6475;
  --line: #dbe5f5;
  --paper: #f7faff;
  --mist: #eef5ff;
  --blue: #2f6df6;
  --blue-dark: #1746b8;
  --blue-soft: #dce8ff;
  --teal: #16a3a3;
  --amber: #c9782f;
  --coral: #e26d5a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(37, 99, 235, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(82, 132, 255, 0.20), transparent 32rem),
    radial-gradient(circle at 76% 22%, rgba(255, 172, 111, 0.18), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7faff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  line-height: 1.75;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: 100%;
  min-height: 72px;
  margin-top: 0;
  padding: 14px clamp(20px, 5vw, 78px);
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(219, 229, 245, 0.9);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 34px rgba(49, 76, 129, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 0.18em;
  align-items: baseline;
  width: fit-content;
  color: #071a49;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  display: inline-block;
}

.brand-ai {
  font-size: 1.16em;
}

.brand-advisor {
  font-weight: 700;
}

.brand-accent {
  color: var(--blue);
  transform: skewX(-8deg) rotate(-1deg);
  transform-origin: center bottom;
}

.brand-kun {
  font-size: 0.82em;
}

.nav {
  position: relative;
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  z-index: 1;
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #5a86f8);
  box-shadow: 0 6px 16px rgba(47, 109, 246, 0.24);
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 0.28s ease,
    width 0.28s ease,
    opacity 0.2s ease;
  pointer-events: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-left: 22px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(47, 109, 246, 0.42);
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(47, 109, 246, 0.26);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 0;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 124px clamp(20px, 5vw, 78px) 70px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(232, 241, 255, 0.84) 100%),
    radial-gradient(circle at 78% 30%, rgba(47, 109, 246, 0.22), transparent 28rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  filter: blur(52px);
  opacity: 0.78;
  pointer-events: none;
}

.hero::before {
  inset: 5% -8% auto 54%;
  height: 720px;
  filter: blur(0);
  opacity: 0.9;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(47, 109, 246, 0.10) 46% 47%, transparent 47%),
    linear-gradient(42deg, transparent 0 52%, rgba(47, 109, 246, 0.10) 52% 53%, transparent 53%),
    radial-gradient(circle at 20% 28%, rgba(47, 109, 246, 0.35) 0 4px, transparent 5px),
    radial-gradient(circle at 52% 12%, rgba(47, 109, 246, 0.22) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 48%, rgba(47, 109, 246, 0.28) 0 4px, transparent 5px),
    radial-gradient(circle at 36% 68%, rgba(47, 109, 246, 0.30) 0 5px, transparent 6px);
}

.hero::after {
  inset: auto -12% -20% 42%;
  height: 520px;
  background: radial-gradient(ellipse at 54% 48%, rgba(47, 109, 246, 0.20), transparent 64%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(720px, 1.08fr) minmax(500px, 0.82fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  width: min(1620px, 100%);
  margin: 0 auto;
}

.hero-content {
  min-width: 0;
  max-width: 900px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-bottom: 28px;
  color: #0047c8;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-kicker span {
  white-space: nowrap;
}

.hero-kicker i {
  color: #7f95bd;
  font-style: normal;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: #061847;
  font-size: 5.35rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 22px;
  font-size: 3rem;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: #071a49;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #5c8df8);
  box-shadow: 0 18px 40px rgba(47, 109, 246, 0.32);
}

.button.secondary {
  color: #071a49;
  border: 1px solid rgba(47, 109, 246, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(49, 76, 129, 0.10);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-size: 0;
}

.button.full {
  width: 100%;
}

.button.large {
  min-height: 58px;
  padding-inline: 30px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 680px;
  margin: 0;
}

.hero-trust div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.hero-trust span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border-radius: 8px;
  background: var(--blue-soft);
  font-weight: 700;
}

.hero-trust strong {
  color: #071a49;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 0;
}

.hero-portrait-visual {
  min-height: 700px;
}

.hero-person-cutout {
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 2;
  display: block;
  /* width: min(540px, 68%); */
  width: 100%;
  max-height: 700px;
  object-fit: contain;
}

.section {
  padding: clamp(4.375rem, 7.375rem, 7.375rem) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.problem {
  background: rgba(255, 255, 255, 0.76);
}

.flow-section {
  background: rgba(248, 251, 255, 0.92);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.support-layout p {
  color: var(--sub);
  font-size: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  color: var(--sub);
  font-size: 18px;
}

.section-heading.compact {
  max-width: 760px;
}

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

.steps article,
.service-menu article,
.strength-grid article,
.case-grid article,
.flow-list article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(49, 76, 129, 0.09);
}

.steps span,
.service-menu span,
.flow-list span,
.case-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.steps p,
.service-menu p,
.strength-grid p,
.case-grid p,
.flow-list p,
.price-layout p,
.faq p,
.contact p {
  color: var(--sub);
}

.muted {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.86), rgba(255, 255, 255, 0.88));
}

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

.strength-grid article {
  min-height: 230px;
}

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

.service-menu article {
  min-height: 260px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(49, 76, 129, 0.08);
}

.comparison-card.standard {
  color: #364154;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.5;
}

.comparison-card.featured {
  border-color: rgba(47, 109, 246, 0.42);
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.08), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
  box-shadow: 0 22px 60px rgba(47, 109, 246, 0.16);
}

.comparison-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #667085;
  border-radius: 6px;
  background: #eef2f8;
  font-size: 12px;
  font-weight: 700;
}

.comparison-card.featured span {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.comparison-card h3 {
  margin-bottom: 22px;
  font-size: 26px;
  line-height: 1.45;
}

.comparison-cards ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-cards li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 48px;
  padding: 12px 14px 12px 40px;
  color: var(--ink);
  border: 1px solid rgba(219, 229, 245, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.55;
}

.comparison-cards li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 13px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #7a879a;
  border-radius: 999px;
  background: #e8edf6;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.comparison-card.featured li {
  border-color: rgba(47, 109, 246, 0.20);
  background: rgba(255, 255, 255, 0.86);
}

.comparison-card.featured li::before {
  content: "";
  background:
    radial-gradient(circle at center, var(--white) 0 24%, transparent 26%),
    var(--blue);
}

.comparison-cards li b {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.comparison-card.standard li b {
  color: #667085;
}

#features .comparison-cards {
  margin-top: 48px;
}

#features .strength-grid + .section-heading {
  margin-top: 58px;
}

.profile-section {
  background: var(--white);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-copy p {
  color: var(--sub);
}

.profile-role {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.profile-points div {
  min-height: 124px;
  padding: 18px;
  background: var(--paper);
}

.profile-points strong,
.profile-points span {
  display: block;
}

.profile-points strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.3;
}

.profile-points span {
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.case-grid,
.impact-grid,
.flow-list {
  display: grid;
  gap: 18px;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.impact-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(47, 109, 246, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(92, 141, 248, 0.18), transparent 12rem),
    var(--white);
  box-shadow: 0 18px 50px rgba(49, 76, 129, 0.11);
}

.impact-grid span,
.impact-grid strong {
  display: block;
}

.impact-grid span {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.impact-grid strong {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.impact-grid p {
  margin: 0;
  color: var(--sub);
  font-weight: 500;
}

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

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

.price-section {
  background:
    radial-gradient(ellipse at 20% 18%, rgba(92, 141, 248, 0.54), transparent 42rem),
    linear-gradient(135deg, var(--blue-dark), #17306f);
  color: var(--white);
}

.support-section {
  background: var(--white);
}

.recommend-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 109, 246, 0.12), transparent 25rem),
    rgba(248, 251, 255, 0.94);
}

.recommend-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.recommend-layout p {
  color: var(--sub);
  font-size: 18px;
}

.recommend-list {
  display: grid;
  gap: 12px;
}

.recommend-list p {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.recommend-list p::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--blue) 0 38%, transparent 40%),
    var(--blue-soft);
}

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

.support-heading {
  margin-top: 58px;
}

.recommend-heading {
  margin-top: 58px;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 16px;
  font-weight: 500;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.price-layout p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.price-panel p {
  color: var(--sub);
}

.price-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-panel .price-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 700;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  color: var(--ink);
  line-height: 1.05;
}

.price strong {
  color: var(--ink);
  font-size: 58px;
  font-weight: 800;
}

.price-prefix,
.price-unit {
  color: var(--sub);
  font-weight: 700;
}

.price-prefix {
  margin-right: 2px;
  font-size: 17px;
}

.price-unit {
  font-size: 22px;
}

.price-note {
  margin-bottom: 24px;
  color: var(--sub);
}

.limited-note {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 6px 10px;
  color: var(--blue-dark);
  border-radius: 6px;
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 700;
}

.tax-note {
  margin: 0 0 14px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
}

.price-panel .price,
.price-panel .price-kicker {
  color: var(--ink);
}

.price-panel .price-kicker {
  color: var(--blue);
}

.price-panel .price-prefix,
.price-panel .price-unit,
.price-panel .limited-note,
.price-panel .tax-note,
.price-panel .price-note {
  color: var(--sub);
}

.price-panel .limited-note {
  color: var(--blue-dark);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 600;
}

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

.contact {
  padding: clamp(4.625rem, 7.875rem, 7.875rem) clamp(20px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(ellipse at 25% 24%, rgba(92, 141, 248, 0.55), transparent 36rem),
    radial-gradient(ellipse at 84% 78%, rgba(226, 109, 90, 0.18), transparent 36rem),
    linear-gradient(135deg, #14275c, var(--blue-dark));
}

.contact-inner {
  display: grid;
  gap: 34px;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  margin-inline: auto;
}

.contact p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 30px;
  color: var(--ink);
  border: 1px solid rgba(219, 229, 245, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(9, 27, 75, 0.22);
}

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

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

.contact-form label span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.contact-form label b {
  display: inline-flex;
  width: fit-content;
  padding: 2px 7px;
  color: var(--blue-dark);
  border-radius: 999px;
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.55;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 109, 246, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.12);
}

.contact-form .button {
  justify-self: center;
}

.form-note,
.form-success {
  color: var(--sub) !important;
  font-size: 14px !important;
}

.form-success {
  display: none;
  padding: 12px 14px;
  border: 1px solid rgba(47, 109, 246, 0.20);
  border-radius: 8px;
  background: var(--blue-soft);
}

.contact-form.is-submitted .form-success {
  display: block;
}

.hidden-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.footer {
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: #0e1833;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.footer-company p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

/* Legacy fallback for any simple footer text. */
.footer > p {
  width: min(1120px, 100%);
  margin: 0 auto;
  font-weight: 600;
}

.article-index,
.article-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(70, 112, 240, 0.13), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f4f8ff 100%);
}

.article-index .section {
  padding-top: 132px;
}

.article-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.article-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-filter-link small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.article-filter-link:hover,
.article-filter-link.is-active {
  border-color: rgba(37, 99, 235, 0.42);
  color: var(--blue);
  background: #eef5ff;
  transform: translateY(-1px);
}

.article-filter-link.is-active small {
  color: var(--blue);
}

.article-filter-result {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

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

.article-card,
.article-empty {
  padding: 18px;
  border: 1px solid rgba(30, 82, 190, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(14, 24, 51, 0.07);
}

.article-card-thumb {
  display: block;
  margin: -6px -6px 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f8fb;
}

.article-card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1391 / 1131;
  height: auto;
  object-fit: cover;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
}

.article-card time,
.article-card-meta span,
.article-header time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.article-card-meta span {
  color: #64748b;
}

.article-card-meta .article-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 12px;
  font-weight: 800;
}

.article-card h2 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
}

.article-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.article-card p,
.article-empty p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.article-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #e9f0ff;
  font-size: 13px;
  font-weight: 700;
}

.article-page {
  padding: 132px clamp(20px, 5vw, 64px) 88px;
}

.article-shell {
  width: min(880px, 100%);
  margin: 0 auto;
}

.article-header {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(30, 82, 190, 0.12);
}

.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.article-header h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.18;
}

.article-header p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.9;
}

.article-body {
  padding: 36px;
  border: 1px solid rgba(30, 82, 190, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(14, 24, 51, 0.07);
}

.article-hero-thumbnail {
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid rgba(30, 82, 190, 0.12);
  border-radius: 8px;
  background: #f6f8fb;
  box-shadow: 0 20px 54px rgba(14, 24, 51, 0.1);
}

.article-hero-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(28px, 4vw, 40px);
}

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

.article-body h3 {
  margin: 30px 0 12px;
  padding: 10px 14px 10px 16px;
  border-left: 4px solid rgba(37, 99, 235, 0.72);
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
  font-size: 24px;
}

.article-body p,
.article-body li {
  color: #2c3548;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.article-body p + p,
.article-body ul + p,
.article-body ol + p {
  margin-top: 18px;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 18px 0 18px 1.2em;
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 26px 0;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid rgba(30, 82, 190, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(14, 24, 51, 0.06);
}

.article-body thead,
.article-body tbody {
  display: table;
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(30, 82, 190, 0.12);
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--navy);
  background: #f6f8fb;
  font-weight: 600;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-body a {
  color: var(--blue);
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-body mark.article-highlight {
  padding: 0 0.08em 0.08em;
  color: inherit;
  background: linear-gradient(transparent 58%, rgba(255, 232, 120, 0.72) 58%);
  font-weight: 600;
}

.article-banner-link {
  display: block;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(14, 24, 51, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-banner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(14, 24, 51, 0.14);
}

.article-banner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.article-related {
  margin-top: 28px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 18px 60px rgba(14, 24, 51, 0.07);
}

.article-related h2 {
  margin: 0 0 18px;
  padding-left: 0;
  color: var(--navy);
  font-size: 22px;
}

.article-related h2::before {
  display: none;
}

.article-related-list {
  display: grid;
  gap: 12px;
}

.article-related-list a {
  display: grid;
  grid-template-columns: minmax(112px, 168px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.article-related-list img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  height: auto;
  margin-bottom: 0;
  border-radius: 6px;
  object-fit: cover;
}

.article-related-copy {
  display: grid;
  grid-column: 2;
  min-width: 0;
  gap: 8px;
  align-content: center;
}

.article-related-copy:first-child {
  grid-column: 1 / -1;
}

.article-related-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.article-related-list strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

.article-related-list small {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.article-consult-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(37, 99, 235, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(14, 24, 51, 0.1);
}

.article-consult-banner::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -24%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
}

.article-consult-banner::after {
  content: "";
  position: absolute;
  right: 38px;
  top: 32px;
  width: 84px;
  height: 84px;
  opacity: 0.38;
  background-image: radial-gradient(circle, #2563eb 2px, transparent 3px);
  background-size: 18px 18px;
}

.banner-copy,
.banner-action {
  position: relative;
  z-index: 1;
}

.banner-brand {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.banner-brand span {
  color: var(--blue);
}

.banner-title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
}

.banner-lead {
  color: var(--navy);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.6;
}

.banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.banner-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 800;
}

.banner-action {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.banner-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  min-height: 74px;
  padding: 0 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #0f67ff 0%, #004fe8 100%);
  box-shadow: 0 18px 42px rgba(0, 79, 232, 0.28);
  font-size: clamp(19px, 2.7vw, 28px);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.banner-action p {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.article-cta {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-top: 28px;
  padding: 32px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #0c2d75 0%, #2563eb 100%);
  box-shadow: 0 22px 70px rgba(37, 99, 235, 0.24);
}

.article-cta h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 600;
}

.article-page {
  padding: 106px clamp(22px, 4vw, 64px) 84px;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.11), transparent 34%),
    radial-gradient(circle at 92% 6%, rgba(37, 99, 235, 0.09), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 46%, #f7faff 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 340px);
  gap: 36px;
  width: min(1200px, 100%);
  min-width: 0;
  margin: 0 auto;
  align-items: start;
}

.article-shell {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  margin-bottom: 12px;
  color: #5f6f8d;
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.article-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.article-header {
  min-width: 0;
  margin-bottom: 0;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(14, 24, 51, 0.08);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.article-category {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid rgba(37, 99, 235, 0.34);
  border-radius: 999px;
  color: var(--blue);
  background: #f4f8ff;
  font-size: 13px;
  font-weight: 800;
}

.article-header time {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.article-date-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.article-date-item span {
  color: #8491a7;
  font-size: 12px;
  font-weight: 800;
}

.article-header h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-header p {
  max-width: 690px;
  margin-bottom: 34px;
  color: #1b2740;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  overflow-wrap: anywhere;
}

.article-body {
  padding: 0 clamp(28px, 4vw, 56px) clamp(30px, 4vw, 54px);
  min-width: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(14, 24, 51, 0.08);
}

.article-body h2 {
  position: relative;
  scroll-margin-top: 96px;
  margin: 42px 0 16px;
  padding: 12px 16px 12px 18px;
  border-left: 4px solid rgba(37, 99, 235, 0.72);
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 650;
  line-height: 1.45;
}

.article-body h2::before {
  display: none;
}

.article-body h3 {
  position: relative;
  scroll-margin-top: 96px;
  margin: 28px 0 12px;
  padding: 0 0 0 22px;
  border-left: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  font-size: 20px;
  line-height: 1.6;
}

.article-body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c82ff 0%, #1162ef 100%);
}

.article-body p,
.article-body li {
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
  overflow-wrap: anywhere;
}

.article-body img,
.article-body video,
.article-body iframe,
.article-body pre {
  max-width: 100%;
}

.article-body pre {
  overflow-x: auto;
}

.article-body blockquote {
  position: relative;
  margin: 28px 0;
  padding: 28px 24px 24px 56px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  color: #24324a;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0.96) 52%),
    #f8fbff;
  box-shadow: 0 16px 44px rgba(14, 24, 51, 0.07);
  overflow-wrap: anywhere;
}

.article-body blockquote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 18px;
  color: rgba(37, 99, 235, 0.16);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
  pointer-events: none;
}

.article-body blockquote p {
  position: relative;
  margin: 0;
  padding-top: 0;
  color: #24324a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

.article-body blockquote p + p {
  margin-top: 12px;
}

.article-inline-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 34px 0 38px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 12%, rgba(255, 176, 82, 0.18), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 58%, #fff8ec 100%);
  box-shadow: 0 18px 54px rgba(14, 24, 51, 0.08);
}

.article-inline-consult-copy {
  min-width: 0;
}

.article-inline-consult-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.article-inline-consult-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 650;
  line-height: 1.35;
}

.article-inline-consult-copy p {
  margin-top: 8px;
  padding-top: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.article-inline-consult a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #1269ff 0%, #0053ef 100%);
  box-shadow: 0 14px 34px rgba(0, 83, 239, 0.22);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.article-body p:first-child {
  padding-top: 34px;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 22px 24px;
  border-radius: 8px;
  list-style: none;
  background: linear-gradient(135deg, #f3f8ff 0%, #eef5ff 100%);
}

.article-body ul li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.article-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.45em;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  line-height: 1;
}

.article-sidebar {
  display: grid;
  gap: 26px;
  min-width: 0;
  position: sticky;
  top: 96px;
}

.sidebar-card {
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(14, 24, 51, 0.07);
}

.sidebar-card h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.4;
}

.sidebar-contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 106% 82%, rgba(37, 99, 235, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.sidebar-contact-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 86px;
  height: 86px;
  max-width: 86px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(14, 24, 51, 0.16);
}

.sidebar-contact p {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.sidebar-contact h2 {
  position: relative;
  z-index: 1;
  margin: 4px 0 10px;
  font-size: 28px;
}

.sidebar-contact span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  color: #41506a;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-contact a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #1269ff 0%, #0053ef 100%);
  box-shadow: 0 14px 34px rgba(0, 83, 239, 0.24);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.sidebar-toc ol {
  display: grid;
  gap: 0;
  max-height: min(52vh, 520px);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
  scrollbar-width: thin;
}

.sidebar-toc li + li {
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.sidebar-toc a {
  display: block;
  padding: 10px 0;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.sidebar-toc a:hover,
.sidebar-toc a:focus-visible {
  color: var(--blue);
}

.sidebar-toc .toc-depth-3 a {
  position: relative;
  padding-left: 18px;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.sidebar-toc .toc-depth-3 a::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.1em;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.36);
}

.sidebar-category-list,
.popular-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-category-list li + li,
.popular-list li + li {
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.sidebar-category-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.sidebar-category-list a span {
  min-width: 0;
  flex: 1;
}

.sidebar-category-list a small {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.sidebar-category-list a:hover,
.sidebar-category-list a.is-active {
  color: var(--blue);
}

.sidebar-category-list a.is-active small {
  color: var(--blue);
}

.sidebar-category-list a::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08)),
    radial-gradient(circle, #2563eb 2px, transparent 3px);
  background-size: auto, 10px 10px;
}

.popular-list li {
  display: grid;
  grid-template-columns: 22px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 0;
}

.popular-number {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.popular-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #d8e7ff 0%, #edf5ff 100%);
}

.popular-list a {
  color: var(--navy);
  text-decoration: none;
}

.popular-list strong {
  display: block;
  font-size: 14px;
  line-height: 1.55;
}

.popular-list time {
  display: block;
  margin-top: 5px;
  color: #8491a7;
  font-size: 12px;
  font-weight: 700;
}

.share-card {
  background: linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: #0e1833;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.share-links a:nth-child(2) {
  background: var(--blue);
}

.share-links a:nth-child(3) {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.article-consult-banner {
  grid-template-columns: 72px minmax(160px, 1fr) minmax(280px, 1.45fr) 190px;
  gap: 24px;
  margin-top: 56px;
  padding: 26px 32px;
  border-color: rgba(37, 99, 235, 0.24);
  background:
    radial-gradient(circle at 94% 14%, rgba(37, 99, 235, 0.09), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.article-consult-banner::before,
.article-consult-banner::after {
  display: none;
}

.banner-logo {
  width: 58px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 18%, #1269ff 18% 38%, transparent 38%),
    linear-gradient(135deg, transparent 36%, #4c82ff 36% 56%, transparent 56%),
    linear-gradient(135deg, transparent 54%, #0c2d75 54% 74%, transparent 74%);
}

.banner-brand {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.banner-lead {
  font-size: 15px;
  font-weight: 600;
}

.banner-support {
  position: relative;
  z-index: 1;
  padding-left: 24px;
  border-left: 1px solid rgba(37, 99, 235, 0.14);
}

.banner-support p {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.banner-support ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.banner-support li {
  padding: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.banner-support li::before {
  display: none;
}

.banner-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #1269ff 0%, #0053ef 100%);
  box-shadow: 0 14px 34px rgba(0, 83, 239, 0.24);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.article-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  margin-top: 24px;
}

.article-pager a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  }

  h1 {
    font-size: 4.25rem;
  }

  .hero-person-cutout {
    right: 0;
    width: min(500px, 70%);
    max-height: 650px;
  }

}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .nav-indicator {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-portrait-visual {
    min-height: 560px;
  }

  .hero-person-cutout {
    right: 50%;
    transform: translateX(50%);
    width: min(430px, 82%);
    max-height: 560px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1.25rem;
  }

  .hero-trust,
  .steps,
  .service-menu,
  .strength-grid,
  .case-grid,
  .impact-grid,
  .flow-list,
  .form-grid,
  .profile-layout,
  .two-column,
  .diagnosis-layout,
  .support-layout,
  .recommend-layout,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .article-sidebar {
    position: static;
  }

  .article-consult-banner {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .banner-support,
  .banner-button {
    grid-column: 1 / -1;
  }

  .banner-support {
    padding-left: 0;
    border-left: 0;
  }

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

  .strength-grid {
    gap: 14px;
  }

  .steps article,
  .service-menu article,
  .strength-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .article-list {
    grid-template-columns: 1fr;
  }

  .article-related-list a {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 14px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 19px;
  }

  .header-cta {
    min-height: 38px;
    margin-left: 10px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 78px 18px 52px;
  }

  h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.125rem;
  }

  .hero-kicker {
    display: grid;
    font-size: 14px;
    gap: 2px;
    line-height: 1.55;
  }

  .hero-kicker i {
    display: none;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
    font-size: 16px;
    text-align: center;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-trust div {
    grid-template-columns: 40px 1fr;
  }

  .hero-portrait-visual {
    min-height: 480px;
  }

  .hero-person-cutout {
    width: min(345px, 88%);
    max-height: 480px;
  }

  .section {
    padding: 64px 18px;
  }

  .profile-points {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 24px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form .button {
    justify-self: stretch;
  }

  .price strong {
    font-size: 46px;
  }

  .contact {
    padding: 70px 18px;
  }

  .article-consult-banner {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding: 86px 12px 64px;
  }

  .article-layout,
  .article-shell,
  .article-header,
  .article-body,
  .article-related,
  .article-sidebar,
  .article-pager {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .article-header,
  .article-body,
  .article-related,
  .sidebar-card {
    overflow: hidden;
  }

  .article-header,
  .article-body,
  .sidebar-card {
    padding-inline: 18px;
  }

  .article-breadcrumb {
    font-size: 12px;
  }

  .article-header h1 {
    font-size: 1.8rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .article-header p,
  .article-body h2,
  .article-body h3,
  .article-body p,
  .article-body blockquote,
  .article-body li,
  .article-related-list strong,
  .article-related-list small {
    overflow-wrap: anywhere;
  }

  .article-body blockquote {
    margin: 22px 0;
    padding: 24px 18px 20px 42px;
  }

  .article-body blockquote::before {
    top: 8px;
    left: 12px;
    font-size: 52px;
  }

  .article-inline-consult {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0 32px;
    padding: 20px;
  }

  .article-inline-consult a {
    width: 100%;
  }

  .article-body table {
    margin-inline: 0;
  }

  .article-body thead,
  .article-body tbody {
    min-width: 560px;
  }

  .banner-support ul {
    grid-template-columns: 1fr;
  }

  .article-pager {
    align-items: flex-start;
    flex-direction: column;
  }

  .banner-action {
    justify-items: stretch;
  }

  .banner-action a {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}
