:root {
  --navy-950: #06192d;
  --navy-900: #0a2038;
  --navy-850: #0b2948;
  --navy-800: #103456;
  --navy-700: #1c466b;
  --orange-600: #f36f00;
  --orange-500: #ff7a00;
  --orange-400: #ff932e;
  --orange-100: #fff0e1;
  --yellow: #ffcf18;
  --blue: #3d8de3;
  --green: #22a845;
  --ink: #10243a;
  --text: #26384b;
  --muted: #687686;
  --line: #dfe5ea;
  --line-dark: rgba(255, 255, 255, 0.16);
  --surface: #ffffff;
  --surface-2: #f5f7f9;
  --surface-3: #edf1f5;
  --shadow-sm: 0 8px 24px rgba(10, 32, 56, 0.08);
  --shadow-md: 0 18px 42px rgba(5, 24, 43, 0.14);
  --shadow-lg: 0 28px 70px rgba(5, 24, 43, 0.24);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  /* 1920px desktop viewport: 1440px content area with 240px side margins. */
  --container: 1440px;
  --header-height: 78px;
  --fixed-bar-height: 72px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: calc(var(--fixed-bar-height) + env(safe-area-inset-bottom));
  color: var(--text);
  background: var(--surface);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

/* Preserve the layout without a broken-image icon if an optional case image is not uploaded yet. */
img[data-image-fallback] {
  background: linear-gradient(135deg, #e9eef2, #dbe3e9);
}

img[data-image-fallback].is-missing-image {
  opacity: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

ul,
ol {
  padding: 0;
  list-style: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

::selection {
  color: #fff;
  background: var(--orange-500);
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.55);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  padding-block: 92px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--orange-500);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  color: var(--orange-500);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-heading h2,
.problem-heading h2,
.consultation-info h2,
.strengths-heading h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: #fff;
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: #fff;
  background: linear-gradient(100deg, var(--orange-500), #ff9100);
  box-shadow: 0 11px 24px rgba(255, 122, 0, 0.25);
}

.button--primary:hover {
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.36);
}

.button--navy {
  color: #fff;
  background: var(--navy-850);
  box-shadow: 0 11px 24px rgba(6, 25, 45, 0.18);
}

.button--navy:hover {
  background: var(--navy-800);
}

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

.button--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), height var(--transition);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(6, 25, 45, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(2, 14, 28, 0.18);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  max-width: none;
}

.brand__logo--header {
  width: 156px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.brand--footer {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.brand__logo--footer {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(23px, 2.8vw, 42px);
}

.site-nav a {
  position: relative;
  padding-block: 28px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-phone {
  display: inline-flex;
  min-height: 42px;
  padding-inline: 16px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--orange-500);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.24);
}

.header-phone:hover {
  background: var(--orange-400);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 25px;
  height: 25px;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(700px, 48.4375vw, 930px);
  color: #fff;
  background: var(--navy-900) url("../images/hero-desktop.png") center / cover no-repeat;
}

.hero__content-panel {
  position: relative;
  display: flex;
  min-width: 0;
  padding: calc(var(--header-height) + 66px) 62px 72px max(24px, calc((100vw - var(--container)) / 2));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.hero__content {
  width: min(100%, 600px);
}

.hero__kicker {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(45px, 4.1vw, 64px);
  line-height: 1.17;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.hero h1 em,
.problem-heading h2 em,
.strengths-heading h2 em {
  color: var(--orange-500);
  font-style: normal;
}

.hero__lead {
  margin-top: 28px;
  color: #fff;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero__description {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  margin-top: 31px;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  margin-top: 26px;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__trust .icon {
  width: 15px;
  height: 15px;
  color: var(--orange-400);
  stroke-width: 3;
}

.hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: transparent;
}

.hero__visual-badge {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  display: flex;
  min-width: 220px;
  padding: 14px 18px;
  flex-direction: column;
  color: #fff;
  background: rgba(6, 25, 45, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.hero__visual-badge strong {
  font-size: 15px;
}

.hero__visual-badge span {
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

/* Problem section */
.problem-section {
  background: #fff;
}

.problem-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.problem-heading .eyebrow {
  margin-bottom: 10px;
}

.problem-heading h2 {
  font-size: clamp(30px, 2.5vw, 38px);
}

.problem-heading > p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.problem-card {
  min-width: 0;
}

.problem-card > img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.problem-card__body {
  display: flex;
  margin-top: 12px;
  align-items: flex-start;
  gap: 8px;
}

.problem-card__check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--orange-500);
  border-radius: 50%;
}

.problem-card__check .icon {
  width: 11px;
  height: 11px;
  stroke-width: 3.2;
}

.problem-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.problem-card p {
  margin-top: 3px;
  color: #394b5d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

/* Services */
.services-section {
  background: linear-gradient(180deg, #fbfcfd 0%, #f5f7f9 100%);
  border-top: 1px solid #f0f2f4;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 30px 20px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(10, 32, 56, 0.025);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 21px;
  place-items: center;
  color: var(--navy-800);
  background: #f7f9fb;
  border-radius: 20px;
}

.service-card__icon .icon {
  width: 53px;
  height: 53px;
  stroke-width: 2.7;
}

.service-card h3 {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.service-card__link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 4px;
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .service-card__link,
.service-card:focus-within .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

.service-card__link .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.7;
}

/* Cases */
.cases-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 90, 126, 0.42), transparent 34%),
    linear-gradient(135deg, var(--navy-850), var(--navy-950));
}

.cases-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.cases-section > .container {
  position: relative;
  z-index: 1;
}

.case-slider {
  position: relative;
  padding-inline: 2px;
}

.case-slider__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.case-slider__viewport::-webkit-scrollbar {
  display: none;
}

.case-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
}

.case-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.case-card__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
  overflow: hidden;
  background: #e9edf0;
}

.case-card__visual figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.case-card__visual figure + figure {
  border-left: 2px solid #fff;
}

.case-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.case-card:hover .case-card__visual img {
  transform: scale(1.035);
}

.case-card__visual figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 7px;
  color: #fff;
  background: rgba(7, 29, 52, 0.76);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-card__visual figure:last-of-type figcaption {
  right: 10px;
  left: auto;
  background: var(--orange-500);
}

.case-card__arrow {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--orange-500);
  border: 3px solid #fff;
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.case-card__arrow .icon {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.case-card__content {
  padding: 20px 20px 22px;
}

.case-card__region {
  display: inline-block;
  padding: 3px 8px;
  color: var(--orange-600);
  background: var(--orange-100);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.case-card h3 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.case-card dl {
  margin-top: 14px;
}

.case-card dl > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.case-card dt {
  color: var(--ink);
  font-weight: 900;
}

.case-card dd {
  color: #526173;
}

.slider-button {
  position: absolute;
  z-index: 5;
  top: calc(50% - 26px);
  display: grid;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--orange-500);
  border: 3px solid #fff;
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), background-color var(--transition), opacity var(--transition);
}

.slider-button:hover {
  background: var(--orange-400);
  transform: translateY(-50%) scale(1.06);
}

.slider-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.slider-button .icon {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.slider-button--prev {
  left: -22px;
}

.slider-button--next {
  right: -22px;
}

.slider-pagination {
  display: flex;
  min-height: 18px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.slider-pagination button {
  width: 23px;
  height: 3px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  cursor: pointer;
  transition: width var(--transition), background-color var(--transition);
}

.slider-pagination button.is-active {
  width: 42px;
  background: var(--orange-500);
}

.case-disclaimer {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* Process */
.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 205px;
  padding: 22px 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 5px 16px rgba(10, 32, 56, 0.035);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  right: -20px;
  top: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid var(--navy-800);
  border-right: 2px solid var(--navy-800);
  transform: translateY(-50%) rotate(45deg);
}

.process-card__number {
  display: block;
  color: var(--navy-850);
  font-size: 14px;
  font-weight: 950;
}

.process-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-top: 12px;
  color: var(--orange-500);
  background: var(--orange-100);
  border-radius: 12px;
  place-items: center;
}

.process-card__icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.process-card h3 {
  margin-top: 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.process-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

/* Strengths */
.strengths-section {
  position: relative;
  min-height: 407px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950) url("../images/strengths-desktop.png") center / cover no-repeat;
}

.strengths-section::before {
  display: none;
}

.strengths-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  min-height: 407px;
  align-items: center;
  gap: 34px;
  padding-block: 38px;
}

.strengths-heading .eyebrow {
  margin-bottom: 8px;
}

.strengths-heading h2 {
  color: #fff;
  font-size: 32px;
}

.strength-grid {
  display: grid;
  width: min(100%, 780px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.strength-item {
  text-align: center;
}

.strength-item__icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin: 0 auto 10px;
  color: #fff;
  border: 0;
  place-items: center;
  background: transparent;
}

.strength-item__icon .icon {
  width: 33px;
  height: 33px;
  stroke-width: 2.5;
}

.strength-item h3 {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  white-space: pre-line;
}

.strength-item p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

/* Consultation */
.consultation-section {
  background: linear-gradient(180deg, #f7f8fa, #eef2f5);
}

.consultation-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.consultation-info {
  padding-top: 13px;
}

.consultation-info .eyebrow {
  margin-bottom: 10px;
}

.consultation-info h2 {
  font-size: 38px;
}

.consultation-info__lead {
  margin-top: 21px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.consultation-info > p:not(.eyebrow):not(.consultation-info__lead) {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.consultation-phone-card {
  display: flex;
  margin-top: 28px;
  padding: 17px 18px;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d5dde5;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.consultation-phone-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  color: #fff;
  background: var(--navy-850);
  border-radius: 50%;
  place-items: center;
}

.consultation-phone-card .icon {
  width: 22px;
  height: 22px;
}

.consultation-phone-card div {
  display: flex;
  flex-direction: column;
}

.consultation-phone-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.consultation-phone-card a {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.consultation-meta {
  margin-top: 22px;
}

.consultation-meta li {
  display: flex;
  padding: 11px 0;
  gap: 10px;
  color: var(--muted);
  border-bottom: 1px solid #dfe5ea;
  font-size: 12px;
}

.consultation-meta .icon {
  width: 19px;
  height: 19px;
  color: var(--orange-500);
  stroke-width: 2.5;
}

.consultation-meta span {
  display: flex;
  flex-direction: column;
}

.consultation-meta strong {
  color: var(--ink);
  font-size: 11px;
}

.consultation-form {
  padding: 30px;
  background: #fff;
  border: 1px solid #e3e8ed;
  border-radius: 13px;
  box-shadow: var(--shadow-md);
}

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

.field {
  position: relative;
  min-width: 0;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > label,
.field__label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.field > label span {
  color: var(--orange-500);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8e0e7;
  border-radius: 7px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 178px;
  padding: 14px;
  resize: vertical;
  line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a1abb5;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #b9c5d0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d83636;
  box-shadow: 0 0 0 3px rgba(216, 54, 54, 0.1);
}

.field__counter {
  position: absolute;
  right: 11px;
  bottom: 8px;
  color: #9aa5b0;
  font-size: 10px;
}

.field--work-type {
  grid-column: 1 / 3;
  grid-row: 2;
}

.field--message {
  grid-column: 1 / 3;
  grid-row: 3;
}

.field--upload {
  display: flex;
  grid-column: 3;
  grid-row: 2 / 4;
  flex-direction: column;
}

.field--upload .upload-box {
  flex: 1 1 auto;
}

.upload-box {
  display: flex !important;
  min-height: 178px;
  margin: 0 !important;
  padding: 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #566575 !important;
  background: #f6f8fa;
  border: 1px dashed #b9c4cf;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.upload-box:hover,
.upload-box.is-dragover {
  background: #fff8f1;
  border-color: var(--orange-500);
  transform: translateY(-2px);
}

.upload-box .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  color: #758596;
  stroke-width: 1.7;
}

.upload-box strong {
  color: var(--navy-800);
  font-size: 13px;
}

.upload-box span {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.45;
}

.upload-box small {
  margin-top: 7px;
  color: #9aa5b0;
  font-size: 9px;
}

.upload-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.upload-list {
  display: flex;
  margin-top: 8px;
  gap: 6px;
  flex-wrap: wrap;
}

.upload-list li {
  max-width: 100%;
  padding: 4px 8px;
  overflow: hidden;
  color: #536273;
  background: #eef2f5;
  border-radius: 4px;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.privacy-agreement {
  display: flex;
  margin-top: 18px;
  padding: 14px 16px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: #f7f9fb;
  border-radius: 7px;
  font-size: 11px;
}

.privacy-agreement label {
  display: flex;
  min-width: 0;
  gap: 9px;
  color: #5a6877;
  cursor: pointer;
}

.privacy-agreement input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange-500);
  flex: 0 0 auto;
}

.privacy-agreement strong {
  color: var(--ink);
}

.privacy-agreement a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.consultation-form__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 17px;
}

.consultation-form.is-submitting .button-spinner {
  display: block;
}

.consultation-form.is-submitting .consultation-form__submit {
  cursor: wait;
  opacity: 0.82;
}

.button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  display: none;
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-line;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0b6c2e;
  background: #eaf8ef;
  border: 1px solid #bce8cb;
}

.form-status.is-warning {
  color: #7a5310;
  background: #fff8dd;
  border: 1px solid #f0d884;
}

.form-status.is-error {
  color: #9a2020;
  background: #fff0f0;
  border: 1px solid #f0c2c2;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.site-footer__top {
  display: flex;
  padding-block: 34px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__top > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  text-align: right;
}

.site-footer__details {
  display: flex;
  padding-block: 24px;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__details dl {
  display: flex;
  max-width: 880px;
  gap: 8px 22px;
  flex-wrap: wrap;
  font-size: 11px;
}

.site-footer__details dl > div {
  display: flex;
  gap: 7px;
}

.site-footer__details dt {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer__details dd {
  min-width: 0;
}

.site-footer__details a:hover,
.site-footer__links a:hover {
  color: #fff;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer__bottom {
  display: flex;
  padding-block: 20px 24px;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.site-footer__notice {
  text-align: right;
}

/* Fixed consultation bar */
.fixed-consult-bar {
  position: fixed;
  z-index: 1100;
  left: 0;
  bottom: 0;
  display: grid;
  width: 100%;
  min-height: var(--fixed-bar-height);
  padding: 8px max(18px, calc((100vw - var(--container)) / 2));
  grid-template-columns: 285px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  color: #fff;
  background: rgba(7, 27, 47, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 -8px 26px rgba(3, 17, 31, 0.2);
  backdrop-filter: blur(12px);
}

.fixed-consult-bar__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.fixed-consult-bar__copy strong {
  font-size: 15px;
}

.fixed-consult-bar__copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.fixed-consult-bar__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quick-action {
  display: inline-flex;
  height: 50px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
}

.quick-action:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.quick-action .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.quick-action--phone { background: var(--green); }
.quick-action--kakao { color: #262300; background: var(--yellow); }
.quick-action--sms { background: var(--blue); }
.quick-action--photo { background: #6c7d8f; }

.noscript-notice {
  position: fixed;
  z-index: 1300;
  left: 0;
  right: 0;
  top: 0;
  padding: 10px 16px;
  color: #fff;
  background: #9d2a2a;
  text-align: center;
  font-size: 12px;
}

/* Result / policy pages */
.result-page,
.policy-page {
  min-height: 100vh;
  padding-bottom: 0;
  background: #f2f5f8;
}

.result-page {
  display: grid;
  padding: 30px;
  place-items: center;
}

.result-card {
  width: min(100%, 640px);
  padding: 48px 42px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.result-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 21px;
  place-items: center;
  border-radius: 50%;
}

.result-card__icon.is-success {
  color: #12803a;
  background: #e8f8ee;
}

.result-card__icon.is-error {
  color: #b12a2a;
  background: #fff0f0;
}

.result-card__icon .icon {
  width: 43px;
  height: 43px;
  stroke-width: 2.5;
}

.result-card .eyebrow {
  margin-bottom: 8px;
}

.result-card h1 {
  color: var(--ink);
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.result-card > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.result-card__reference {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 15px;
  gap: 9px;
  background: #f4f6f8;
  border-radius: 7px;
  font-size: 13px;
}

.result-card__reference dt {
  color: var(--muted);
}

.result-card__reference dd {
  color: var(--ink);
  font-weight: 900;
}

.result-card__actions {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subpage-header {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.subpage-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand--dark {
  color: var(--navy-850);
}

.policy-content {
  max-width: 900px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.policy-content > .eyebrow {
  margin-bottom: 9px;
}

.policy-content > h1 {
  color: var(--ink);
  font-size: 42px;
  letter-spacing: -0.045em;
}

.policy-lead {
  margin-top: 16px;
  padding-bottom: 28px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.policy-content section {
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  color: var(--ink);
  font-size: 20px;
}

.policy-content section p {
  margin-top: 10px;
  color: #536273;
  font-size: 14px;
  line-height: 1.8;
}

.policy-contact {
  margin-top: 13px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-contact > div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  font-size: 13px;
}

.policy-contact > div + div {
  margin-top: 7px;
}

.policy-contact dt {
  color: var(--ink);
  font-weight: 800;
}

.policy-note {
  margin: 24px 0;
  padding: 15px 18px;
  color: #725219;
  background: #fff7df;
  border: 1px solid #f1d988;
  border-radius: 7px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1240px) {
  .site-nav {
    gap: 23px;
  }

  .hero__content-panel {
    padding-right: 38px;
  }

  .service-card {
    padding-inline: 15px;
  }

  .slider-button--prev { left: 8px; }
  .slider-button--next { right: 8px; }

}

@media (max-width: 1080px) {
  :root {
    --container: 960px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero {
    min-height: 640px;
  }

  .hero__content-panel {
    padding-top: calc(var(--header-height) + 45px);
    padding-right: 30px;
  }

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

  .hero__actions .button {
    padding-inline: 18px;
    font-size: 14px;
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .problem-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: end;
    gap: 30px;
  }

  .problem-heading .eyebrow,
  .problem-heading h2 {
    grid-column: 1;
  }

  .problem-heading h2 {
    margin-top: -4px;
  }

  .problem-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
  }

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

  .service-card {
    min-height: 280px;
  }

  .service-card__link {
    opacity: 1;
    transform: none;
  }

  .case-slider__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .strengths-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .strength-grid {
    width: min(100%, 690px);
  }

  .fixed-consult-bar {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .field--address,
  .field--work-type {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .field--message {
    grid-column: 1;
    grid-row: auto;
  }

  .field--upload {
    grid-column: 2;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-nav {
    position: fixed;
    z-index: 990;
    left: 0;
    right: 0;
    top: var(--header-height);
    display: flex;
    max-height: 0;
    padding-inline: 18px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 25, 45, 0.985);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms ease, opacity var(--transition), visibility var(--transition), padding var(--transition);
  }

  .site-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-block: 10px 20px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--navy-900);
  }

  .hero__content-panel {
    min-height: 620px;
    padding: calc(var(--header-height) + 65px) 36px 72px;
    background: var(--navy-900) url("../images/hero-mobile-top.png") center / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .hero__visual {
    height: 460px;
    background: #d6d9db url("../images/hero-mobile-bottom.png") center / cover no-repeat;
  }

  .problem-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .problem-card {
    scroll-snap-align: start;
  }

  .consultation-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .consultation-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 0 28px;
  }

  .consultation-info .eyebrow,
  .consultation-info h2,
  .consultation-info__lead,
  .consultation-info > p:not(.eyebrow):not(.consultation-info__lead) {
    grid-column: 1;
  }

  .consultation-phone-card,
  .consultation-meta {
    grid-column: 2;
  }

  .consultation-phone-card {
    grid-row: 1 / 4;
    align-self: center;
    margin-top: 0;
  }

  .consultation-meta {
    margin-top: 12px;
  }

  .fixed-consult-bar {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 12px;
  }

  .fixed-consult-bar__copy span {
    display: none;
  }

  .quick-action {
    padding-inline: 8px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --fixed-bar-height: 66px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 10px);
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .problem-heading h2,
  .consultation-info h2,
  .strengths-heading h2 {
    font-size: 31px;
  }

  .header-phone {
    display: none;
  }

  .hero__content-panel {
    min-height: 570px;
    padding: calc(var(--header-height) + 42px) 22px 55px;
  }

  .hero__kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 19px;
  }

  .hero__description br {
    display: none;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero__actions .button {
    min-height: 54px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__trust {
    gap: 12px;
  }

  .hero__visual {
    height: 370px;
  }

  .hero__visual-badge {
    right: 18px;
    bottom: 18px;
    min-width: 190px;
  }

  .problem-heading {
    display: block;
  }

  .problem-heading > p:last-child {
    margin-top: 15px;
  }

  .problem-grid {
    margin-right: -18px;
    padding-right: 18px;
    grid-template-columns: repeat(5, 190px);
  }

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

  .service-card {
    min-height: 270px;
    padding: 24px 16px 20px;
  }

  .service-card__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 17px;
  }

  .service-card__icon .icon {
    width: 45px;
    height: 45px;
  }

  .case-slider__track {
    grid-auto-columns: 86%;
    gap: 14px;
  }

  .case-card__visual {
    height: 230px;
  }

  .slider-button {
    display: none;
  }

  .process-list {
    display: grid;
    margin-right: -18px;
    padding-right: 18px;
    padding-bottom: 10px;
    grid-auto-flow: column;
    grid-auto-columns: 185px;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .process-list::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    min-height: 190px;
    scroll-snap-align: start;
  }

  .strengths-section {
    min-height: auto;
    background: var(--navy-950) url("../images/strengths-mobile.png") center / cover no-repeat;
  }

  .strengths-layout {
    display: block;
    min-height: auto;
    padding-block: 50px;
  }

  .strength-grid {
    width: 100%;
    margin-top: 29px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .strength-item:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin-inline: auto;
  }

  .consultation-info {
    display: block;
  }

  .consultation-phone-card {
    margin-top: 24px;
  }

  .consultation-form {
    padding: 22px 18px;
  }

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

  .field--wide,
  .field--address,
  .field--work-type,
  .field--message,
  .field--upload {
    grid-column: 1;
    grid-row: auto;
  }

  .field textarea,
  .upload-box {
    min-height: 160px;
  }

  .privacy-agreement {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__top,
  .site-footer__details,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top > p,
  .site-footer__notice {
    text-align: left;
  }

  .site-footer__details dl {
    flex-direction: column;
    gap: 7px;
  }

  .fixed-consult-bar {
    min-height: var(--fixed-bar-height);
    padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fixed-consult-bar__copy {
    display: none;
  }

  .fixed-consult-bar__actions {
    height: var(--fixed-bar-height);
    gap: 0;
  }

  .quick-action {
    height: 100%;
    padding: 5px 2px 4px;
    flex-direction: column;
    gap: 3px;
    border-radius: 0;
    font-size: 10px;
  }

  .quick-action .icon {
    width: 22px;
    height: 22px;
  }

  .quick-action + .quick-action {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .result-card {
    padding: 38px 22px;
  }

  .result-card h1 {
    font-size: 27px;
  }

  .subpage-header__inner .button span {
    display: none;
  }

  .policy-content {
    padding-top: 50px;
  }

  .policy-content > h1 {
    font-size: 34px;
  }
}

/* Mobile design baseline: 420px viewport and below. */
@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__logo--header {
    width: 132px;
    height: 49px;
  }

  .hero__content-panel {
    min-height: 545px;
    padding-inline: 18px;
  }

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

  .hero__lead {
    font-size: 17px;
  }

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

  .hero__trust {
    font-size: 10px;
  }

  .hero__visual {
    height: 320px;
  }

  .hero__visual-badge {
    display: none;
  }

  .problem-grid,
  .process-list {
    margin-right: -14px;
    padding-right: 14px;
  }

  .service-card {
    min-height: 250px;
    padding-inline: 12px;
  }

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

  .service-card p {
    font-size: 11px;
  }

  .case-slider__track {
    grid-auto-columns: 94%;
  }

  .case-card__visual {
    height: 205px;
  }

  .strength-item:last-child {
    width: 100%;
  }

  .consultation-info h2 {
    font-size: 34px;
  }

  .consultation-phone-card a {
    font-size: 17px;
  }

  .site-footer__links {
    white-space: normal;
    flex-wrap: wrap;
  }

  .result-page {
    padding: 16px;
  }

  .result-card__actions {
    flex-direction: column;
  }

  .result-card__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
