:root {
  --navy: #1F3A5F;
  --blue: #2E6DB4;
  --orange: #F2711C;
  --bg: #FFFFFF;
  --soft: #F4F7FB;
  --text: #222222;
  --muted: #666666;
  --line: #DCE4EE;
  --navy-deep: #132B49;
  --orange-soft: #FFF1E8;
  --shadow: 0 18px 50px rgba(31, 58, 95, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

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

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

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

button,
a,
select,
input[type='checkbox'] {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(242, 113, 28, 0.42);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 238, 0.8);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--navy);
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  font-size: 21px;
  letter-spacing: -0.05em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 30px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 113, 28, 0.22);
}

.button--orange:hover,
.button--orange:focus-visible {
  background: #D9580A;
}

.button--small {
  min-height: 56px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 18px;
}

.button--outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--navy);
  color: #fff;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding-top: 82px;
  padding-bottom: 104px;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: '';
}

.hero::before {
  top: -220px;
  right: -100px;
  width: 650px;
  height: 650px;
}

.hero::after {
  top: -120px;
  right: 0;
  width: 430px;
  height: 430px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.eyebrow--light {
  color: #A9D1FF;
}

.eyebrow__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 113, 28, 0.14);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.18;
}

.hero h1 span,
h2 span {
  color: var(--orange);
}

.hero__lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.035em;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  color: #fff;
}

.hero-phone__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 22px;
}

.hero-phone span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-phone small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.hero-phone strong {
  font-size: 19px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero__proof b {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-height: 430px;
  align-self: stretch;
}

.hero__visual img {
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: 0;
  width: 105%;
  max-width: 610px;
  filter: drop-shadow(0 24px 22px rgba(7, 20, 38, 0.3));
}

.hero__visual .hero-visual__photo {
  right: 0;
  width: 100%;
  max-width: none;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px 28px 10px 28px;
  object-fit: cover;
  object-position: 68% center;
  box-shadow: 0 28px 48px rgba(4, 16, 31, 0.32);
  filter: none;
}

.hero-visual__glow {
  position: absolute;
  top: 56px;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(46, 109, 180, 0.3);
  filter: blur(10px);
}

.hero-visual__card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 35px rgba(5, 15, 29, 0.24);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.hero-visual__card strong {
  color: #A9D1FF;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual__card--top {
  top: 22px;
  right: 1%;
}

.hero-visual__card--bottom {
  bottom: 28px;
  left: 1%;
  gap: 12px;
}

.hero-visual__card--bottom > span:last-child {
  display: flex;
  flex-direction: column;
}

.hero-visual__card--bottom small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.hero-visual__number {
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #79D69A;
  box-shadow: 0 0 0 5px rgba(121, 214, 154, 0.12);
}

.hero__wave {
  position: absolute;
  right: -4%;
  bottom: -70px;
  left: -4%;
  height: 128px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--bg);
}

.section {
  padding: 120px 0;
}

.section--soft {
  background: var(--soft);
}

.section--strengths {
  padding-top: 94px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-heading--center {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.25;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.strength-card {
  position: relative;
  min-height: 300px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.strength-card--featured {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 30px rgba(242, 113, 28, 0.18);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #C9D5E3;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.strength-card--featured .card-number {
  color: rgba(255, 255, 255, 0.68);
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
}

.strength-card--featured .icon-box {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.icon-box svg {
  width: 34px;
  height: 34px;
}

.strength-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.06em;
  line-height: 1.3;
}

.strength-card--featured h3 {
  color: #fff;
}

.strength-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.strength-card--featured p {
  color: rgba(255, 255, 255, 0.86);
}

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

.place-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.place-card img {
  width: 100%;
  height: 152px;
  object-fit: cover;
  background: #EAF2FC;
}

.place-card__tag,
.case-card__location {
  display: inline-block;
  width: fit-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.place-card__tag {
  margin: 22px 22px 0;
}

.place-card h3 {
  margin: 8px 22px 6px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.place-card p {
  margin: 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  margin: auto 22px 22px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.text-link span {
  color: var(--orange);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section--showcase {
  overflow: hidden;
  background: #fff;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.showcase-copy {
  max-width: 510px;
}

.showcase-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.showcase-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.showcase-points li span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  align-items: end;
  gap: 15px;
}

.showcase-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  box-shadow: 0 22px 45px rgba(20, 49, 80, 0.13);
}

.showcase-figure--detail {
  margin-bottom: 54px;
}

.showcase-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}

.showcase-figure--detail img {
  aspect-ratio: 0.82 / 1;
  object-position: 62% center;
}

.showcase-figure:hover img {
  transform: scale(1.035);
}

.showcase-figure figcaption {
  padding: 14px 17px 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.section--calculator {
  background: #fff;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.calculator-intro {
  position: sticky;
  top: 120px;
}

.calculator-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.calculator-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
  padding: 16px;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
}

.calculator-tip__icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.calculator-tip p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}

.calculator-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.choice-group + .choice-group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.choice-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.choice-label > span {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.choice-label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.choice-grid {
  display: grid;
  gap: 9px;
}

.choice-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.choice-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-button {
  min-height: 58px;
  padding: 10px 8px;
  border: 2px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.choice-button:hover {
  border-color: var(--blue);
}

.choice-button.is-selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
}

.estimate-result {
  margin-top: 32px;
  padding: 26px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.estimate-result__label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.estimate-result strong {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-size: clamp(29px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.estimate-result p {
  max-width: 430px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.estimate-summary {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.estimate-result .button {
  margin-top: 22px;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.case-card__image {
  overflow: hidden;
  background: #EAF2FC;
}

.case-card__image img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.case-card:hover .case-card__image img {
  transform: scale(1.03);
}

.case-card__body {
  padding: 22px 22px 24px;
}

.case-card__body h3 {
  margin: 7px 0 7px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.case-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.review-card {
  min-height: 296px;
  margin: 0;
  padding: 28px 25px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.review-card--dark {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.review-card__quote {
  height: 34px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 0.8;
}

.review-card blockquote {
  min-height: 105px;
  margin: 18px 0 23px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.7;
}

.review-card--dark blockquote {
  color: #fff;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
}

.review-card--dark figcaption {
  color: #fff;
}

.review-card figcaption span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.review-card--dark figcaption span {
  color: rgba(255, 255, 255, 0.64);
}

.section--faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(440px, 1.28fr);
  align-items: start;
  gap: clamp(42px, 9vw, 120px);
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.text-link--large {
  margin: 28px 0 0;
  font-size: 17px;
}

.faq-list {
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  color: var(--navy);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--navy);
  content: '';
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section--contact {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(440px, 1.16fr);
  align-items: start;
  gap: clamp(42px, 9vw, 110px);
}

.contact-copy {
  padding-top: 28px;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.contact-direct {
  margin-top: 44px;
}

.contact-direct + .contact-direct {
  margin-top: 22px;
}

.contact-direct__label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-direct__icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 19px;
}

.contact-direct strong {
  color: #fff;
  font-size: 20px;
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 20px 50px rgba(7, 20, 38, 0.24);
}

.form-card__step {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.form-card__heading h3 {
  margin: 5px 0 2px;
  color: var(--navy);
  font-size: 27px;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.form-card__heading p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

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

.field label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: 0;
}

.field input,
.field select {
  height: 56px;
  padding: 12px 14px;
}

.field select {
  appearance: auto;
}

.field textarea {
  min-height: 116px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 109, 180, 0.13);
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: var(--orange);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 20px;
}

.consent input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.consent label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consent a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  min-height: 25px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-status.is-error {
  color: var(--orange);
}

.form-status.is-success {
  color: var(--blue);
  font-weight: 800;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  padding: 58px 0 130px;
  background: var(--navy-deep);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.75fr;
  gap: 30px;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand__copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-slogan {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.footer-info h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.footer-info p {
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
}

.footer-info a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.footer-links small {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.5;
}

.mobile-action-bar {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 20px;
  display: grid;
  width: min(420px, calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(19, 43, 73, 0.96);
  box-shadow: 0 12px 32px rgba(7, 20, 38, 0.25);
}

.mobile-action {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 9px;
  color: #fff;
  line-height: 1.2;
}

.mobile-action:hover,
.mobile-action:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-action span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.mobile-action strong {
  font-size: 15px;
}

.mobile-action--quote {
  background: var(--orange);
}

.mobile-action--quote:hover,
.mobile-action--quote:focus-visible {
  background: #D9580A;
}

.mobile-action--quote span {
  color: #fff;
}

.noscript-message {
  position: fixed;
  z-index: 100;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* 하위 페이지 공통 */
.subpage-hero {
  padding: 90px 0 86px;
  background: var(--navy);
  color: #fff;
}

.subpage-hero h1 {
  max-width: 730px;
  margin: 0;
  color: #fff;
  font-size: clamp(35px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1.25;
}

.subpage-hero h1 span {
  color: var(--orange);
}

.subpage-hero p:last-child {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.subpage-section {
  padding: 90px 0;
}

.subpage-section h2 {
  margin-bottom: 25px;
}

.subpage-section > .container > p {
  max-width: 720px;
  color: var(--muted);
}

.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.subpage-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.subpage-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.05em;
}

.subpage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.privacy-content {
  max-width: 820px;
}

.privacy-content h2 {
  margin-top: 42px;
  font-size: 28px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.privacy-content ul {
  padding-left: 23px;
}

.page-cta {
  margin-top: 44px;
}

@media (max-width: 1020px) {
  .desktop-nav {
    gap: 15px;
  }

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

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 30px;
  }

  .strength-grid,
  .place-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 18px;
    padding-bottom: 82px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header__inner {
    min-height: 72px;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    min-height: 48px;
    padding: 10px 13px;
    font-size: 18px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 18px;
  }

  .brand__copy strong {
    font-size: 19px;
  }

  .brand__copy small {
    font-size: 10px;
  }

  .hero__grid {
    display: block;
    min-height: auto;
    padding-top: 57px;
    padding-bottom: 100px;
  }

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

  .hero__lead {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-phone {
    min-height: 52px;
  }

  .hero__proof {
    gap: 10px 14px;
    margin-top: 27px;
    font-size: 13px;
  }

  .hero__visual {
    min-height: 285px;
    margin-top: 30px;
  }

  .hero__visual img {
    right: -5%;
    width: 110%;
  }

  .hero__visual .hero-visual__photo {
    right: -4%;
    width: 108%;
    height: 275px;
    border-radius: 22px 22px 8px 22px;
  }

  .hero-visual__glow {
    top: 20px;
    right: 4%;
    width: 240px;
    height: 240px;
  }

  .hero-visual__card {
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero-visual__card strong {
    font-size: 10px;
  }

  .hero-visual__card--top {
    top: 2px;
    right: 0;
  }

  .hero-visual__card--bottom {
    bottom: 8px;
    left: 0;
  }

  .hero-visual__number {
    font-size: 26px;
  }

  .hero__wave {
    bottom: -47px;
    height: 90px;
  }

  .section {
    padding: 78px 0;
  }

  .section--strengths {
    padding-top: 61px;
  }

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

  .section-heading--row {
    display: block;
  }

  .section-heading--row .button {
    width: 100%;
    margin-top: 24px;
  }

  h2 {
    font-size: clamp(30px, 8.2vw, 39px);
  }

  .section-heading > p:last-child {
    margin-top: 14px;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .showcase-copy {
    max-width: none;
  }

  .showcase-gallery {
    grid-template-columns: minmax(0, 1.1fr) minmax(130px, 0.9fr);
    gap: 10px;
  }

  .showcase-figure {
    border-radius: 18px;
  }

  .showcase-figure--detail {
    margin-bottom: 26px;
  }

  .showcase-figure figcaption {
    padding: 11px 12px 13px;
    font-size: 11px;
  }

  .strength-grid,
  .place-grid,
  .case-grid,
  .review-grid,
  .subpage-card-grid {
    grid-template-columns: 1fr;
  }

  .strength-card {
    min-height: 245px;
  }

  .place-card {
    min-height: 0;
    padding-bottom: 2px;
  }

  .place-card img {
    height: 170px;
  }

  .calculator-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .calculator-intro,
  .faq-layout .section-heading {
    position: static;
  }

  .calculator-tip {
    margin-top: 26px;
  }

  .calculator-card {
    padding: 21px 16px;
    border-radius: 17px;
  }

  .choice-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .choice-button {
    min-height: 56px;
    font-size: 17px;
  }

  .choice-label {
    font-size: 16px;
  }

  .choice-label small {
    max-width: 145px;
    line-height: 1.3;
  }

  .estimate-result {
    margin-right: -5px;
    margin-left: -5px;
    padding: 24px 17px;
  }

  .estimate-result strong {
    font-size: 30px;
  }

  .case-card__image img {
    aspect-ratio: 1.65 / 1;
  }

  .review-card {
    min-height: 0;
  }

  .review-card blockquote {
    min-height: 0;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 18px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 18px;
  }

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

  .contact-direct {
    margin-top: 30px;
  }

  .form-card {
    padding: 23px 17px;
    border-radius: 17px;
  }

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

  .field input,
  .field select {
    height: 58px;
  }

  .site-footer {
    padding: 47px 0 110px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 18px;
  }

  .site-footer__grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-action-bar {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .subpage-hero {
    padding: 62px 0 60px;
  }

  .subpage-section {
    padding: 65px 0;
  }
}

@media (max-width: 390px) {
  .choice-button {
    font-size: 14px;
  }

  .choice-label small {
    font-size: 11px;
  }

  .mobile-action strong {
    font-size: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
