@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


/* ==========================================================================
   Common
========================================================================== */
:root {
  --navy: #07172f;
  --navy2: #0d2244;
  --gold: #d3aa45;
  --gold2: #e4c267;
  --cream: #f7f4ed;
  --line: #e6e2d9;
  --text: #15223a;
  --muted: #667085;
  --white: #fff;
  --kakao: #fee500;
  --shadow: 0 18px 45px rgba(15,28,50,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Pretendard',sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  word-break: keep-all;
}

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

button {
  font: inherit;
}

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

.inner-wrap {
  width: min(1024px,calc(100% - 40px));
  margin: 0 auto;
}

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

.layout-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: #0B1730;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.layout-header header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a,
footer .logo {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  color: #fff;
}

.logo {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.logo small,
.footer-brand small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #AAB7CD;
  line-height: 1.3;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: serif;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  transition: .25s;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(8,18,36,.08);
}

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

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-primary,
.btn-gold {
  background: linear-gradient(135deg,var(--gold2),var(--gold));
  color: #11203a;
}

.btn-navy {
  background: #1A2742;
  border: 1px solid #2E4267;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #17243a;
}

.btn-kakao {
  display: flex;
  gap: 8px;
  background: var(--kakao) !important;
  color: #191919;
}

.btn-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wrap.center {
  justify-content: center;
}

section {
  padding: 110px 0;
}

.dark-section {
  background: var(--navy);
  color: #fff;
}

.light-section {
  background: var(--cream);
}

.title-wrap {
  margin-bottom: 60px;
}

.title-wrap.light .desc {
  color: #8A93A8;
}

.title-wrap h3,
.case-copy h3 {
  line-height: 1.2;
  font-weight: 800;
  font-size: clamp(30px,4vw,48px);
  margin-bottom: 32px;
}

.desc {
  color: var(--muted);
  font-size: 15px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  font-size: clamp(14px, calc(12px + 0.35vw), 17px);
  font-weight: 700;
  color: var(--gold);
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--gold);
  vertical-align: middle;
}

.gold {
  color: var(--gold2) !important;
}


footer {
  background: #030913;
  color: rgba(255,255,255,.54);
  padding: 48px 0;
}

.footer-inner {
  position: relative;
  text-align: center;
}

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

.f-link {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 18px;
  font-size: 12px;
}

.f-txt {
  font-size: 15px;
  font-weight: 500;
  margin-top: 24px;
}

.f-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.f-info p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #717986;
}

.copyright {
  font-size: 12px;
  margin-top: 24px;
  font-weight: 400;
  color: #525861;
}

.layout-acting {
  position: fixed;
  top: auto;
  right: 24px;
  bottom: 120px;
  width: 78px;
  z-index: 50;
  padding: 4px 0;
  background: #fff;
  border: 2px solid #c89b32;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(9,18,34,.1);
  transform: none;
}


.layout-acting ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-acting li + li {
  margin-top: 0;
  border-top: 1px solid #edf0f4;
}

.floating-menu__link {
  display: flex;
  min-height: 93px;
  padding: 7px 2px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color .2s ease, color .2s ease;
}

.floating-menu__link:hover {
  background: #f6f8fb;
}

.floating-menu__link:focus-visible {
  outline: 2px solid #2f7fd3;
  outline-offset: -3px;
  border-radius: 10px;
}

.floating-menu__icon {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.floating-menu__ink {
  fill: #171b22;
}

.floating-menu__icon--online .floating-menu__ink {
  fill: #17243a;
}

.floating-menu__icon--talk .floating-menu__ink {
  fill: #3b2b22;
}

.floating-menu__icon--phone .floating-menu__ink {
  fill: #171b22;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* ==========================================================================
   SECTION 01
========================================================================== */
.hero-section {
  position: relative;
  min-height: 700px;
  background: url('../images/bg-hero.svg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 55%,rgba(210,170,69,.12),transparent 26%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  padding-top: 50px;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(36px,5vw,68px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.04em;
}

.hero-copy h2::first-line {
  color: #fff;
}

.hero-copy h2 {
  text-shadow: 0 3px 20px rgba(0,0,0,.24);
}

.hero-copy h2 br + * {
  color: var(--gold2);
}

.hero-desc {
  margin: 60px 0;
  color: rgba(255,255,255,.76);
}

.hero-desc em {
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.chip-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 14px;
  color: #C6CDD8;
}

.hero-trust-bar p {
  margin: 0;
  padding: 0 14px;
  white-space: nowrap;
}

.hero-trust-bar p:first-child {
  padding-left: 8px;
  padding-right: 16px;
}

.hero-trust-bar p + p {
  padding-left: 16px;
  padding-right: 8px;
}

.hero-copy .btn-wrap {
  justify-content: center;
  margin-top: 28px;
}

.hero-copy .chip-row {
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 02
========================================================================== */
.alert-layout {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 40px;
  align-items: center;
}

.alert-list {
  display: grid;
  gap: 24px;
}

.alert-list.right .info-card {
  border-radius: 24px 24px 24px 0px;
}

.info-card {
  position: relative;
  padding: 12px 12px;
  border-radius: 24px 24px 0px 24px;
  background: #152642;
  text-align: center;
}

.info-card strong {
  display: block;
  font-size: clamp(15px, 0.8rem + 0.3vw, 17px);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card p {
  margin: 0;
  color: #98A4B8;
  font-size: 14px;
}

.section02 {padding-bottom: 0;}

.notice-section {
  background: var(--navy2);
  padding: 56px 0;
}

.notice-band {
  width: min(820px,calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 0.85rem + 0.55vw, 24px);
  font-weight: 700;
  line-height: 1.7;
}

.notice-band .gold {
  margin-bottom: 24px;
}

.notice-band strong {
  color: #fff;
  font-weight: 700;
}


/* ==========================================================================
   SECTION 03
========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 26px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(25,35,55,.06);
}

.service-card .card-tag {
  position: absolute;
  top: -22px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 4px 12px;
  margin: 0;
  border-radius: 6px;
  background: #1f232b;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  z-index: 10;
  overflow: visible;
}

.service-card .card-tag::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid #1f232b;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  z-index: 11;
}

.service-card .step {
  display: inline-block;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 6px;
  background-color: #FBE491;
  color: #8D670D;
  font-weight: 800;
}

.service-card .card-question {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 46px;
}

.service-card h4 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

.service-card .card-sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.service-card ul {
  padding: 12px 16px;
  margin-top: 16px;
  background-color: #F5F7FA;
  border-radius: 8px;
  color: #687588;
  font-size: 14px;
}

.service-card ul li{
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card ul li + li {
  margin-top: 6px;
}

.service-card ul li::before{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

.price-row {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0px 8px;
}

.price-row strong {
  font-size: 24px;
  font-weight: 800;
}

.price-badge {
  background: #D7AE47;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.price-note {
  width: 100%;
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.service-card.fee-card h4 {
  margin-top: 22px;
}

.service-card.fee-card .fee-guide {
  display: grid;
  gap: 36px;
  margin-top: 50px;
}

.service-card.fee-card .fee-guide__item {
  padding: 16px;
  border-radius: 8px;
  background-color: #F5F7FA;
}

.service-card.fee-card .fee-guide__label {
  color: #687588;
  font-size: 15px;
  font-weight: 700;
}

.service-card.fee-card .fee-guide__note {
  margin-top: 4px;
  color: #8A95A5;
  font-size: 12px;
  line-height: 1.5;
}

.service-card.fee-card .fee-guide__price {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(25px, calc(23px + .35vw), 27px);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}


/* ==========================================================================
   SECTION 04
========================================================================== */
.team-layout > .title-wrap {
  max-width: 640px;
}

.team-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.team-photo {
  margin: 0;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

.team-photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-photo figcaption {
  padding-top: 16px;
  color: #fff;
}
.team-photo figcaption strong {
  display: block;
  width: 100%;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-photo figcaption span {
  color: var(--muted);
  font-size: 15px;
}

.team-photo figcaption b {
  color: #AAB2BF;
  font-weight: 700;
  margin: 0 8px;
}

.team-copy .script {
  font-family: 'Playfair Display',serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold2);
  margin: 0 0 6px;
}

.team-copy > p {
  color: #A8B2C2;
}

.team-copy ol {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.team-copy li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.team-copy li span {
  font-size: 20px;
  color: var(--gold2);
  font-weight: 700;
  font-family: 'Playfair Display',serif;
}

.team-copy li strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.team-copy li p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}


/* ==========================================================================
   SECTION 05
========================================================================== */
.case-section {
  background: #faf9f5;
  overflow: hidden;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 70px;
}

.case-tabs {
  display: grid;
  gap: 16px;
  margin-top: 80px;
}

.case-tab {
  width: 100%;
  max-width: 420px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  text-align: left;
  cursor: pointer;  
  font-weight: 700;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.case-tab:hover {
  border-color: var(--gold);
  transform: translateX(3px);
}

.case-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.case-tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 8px 18px rgba(211, 170, 69, .2);
}

/* 슬라이더 */
.case-slider {
  position: relative;
  min-width: 0;
}

.case-slider__viewport {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.case-card {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(230, 226, 217, .8);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(0);

  transition:
    opacity .4s ease,
    transform .45s cubic-bezier(.22, .61, .36, 1),
    visibility .4s ease;
}

.case-card.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.case-card.is-enter-right {
  z-index: 4;
  opacity: 0;
  visibility: visible;
  transform: translateX(28px);
}

.case-card.is-enter-left {
  z-index: 4;
  opacity: 0;
  visibility: visible;
  transform: translateX(-28px);
}
.case-card.is-leaving-left {
  z-index: 2;
  opacity: 0;
  visibility: visible;
  transform: translateX(-28px);
}
.case-card.is-leaving-right {
  z-index: 2;
  opacity: 0;
  visibility: visible;
  transform: translateX(28px);
}

.case-label {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
}

.case-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.case-card > p:not(.case-footnote) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.case-card .img-box {
  overflow: hidden;
  margin-top: 20px;
  border-radius: 14px;
  background: #f3f4f7;
}

.case-card .img-box img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform .65s ease;
}

.case-card.is-active .img-box img {
  transform: scale(1);
}

.case-footnote {
  margin: 8px 0 0;
  color: #9aa0ab !important;
  font-size: 13px !important;
  text-align: center;
  line-height: 1.5;
}

/* 이전·다음 컨트롤 */
.case-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  z-index: 999;
}

.case-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  background: #F3ECD9;
  color: #B88D34;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.case-control:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.case-control:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.case-control--prev {
  position: absolute;
  left: -64px;
  top: 50%;
}

.case-control--next {
  position: absolute;
  right: -64px;
  top: 50%;
}


@media (max-width: 1200px) { 
  .case-control {
    display: none;
  }
}
/* 태블릿 */
@media (max-width: 900px) {
  .case-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-slider {
    width: min(100%, 1000px);
  }
}

/* 모바일 */
@media (max-width: 560px) {
  .case-layout {
    gap: 30px;
  }

  .case-copy .desc br {
    display: none;
  }

  .case-tabs {
    gap: 8px;
    margin-top: 24px;
  }

  .case-tab {
    padding: 13px 14px;
    font-size: 15px;
  }

  .case-slider {
    width: 100%;
  }

  .case-slider__viewport {
    border-radius: 16px;
  }

  .case-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .case-card.is-enter-right {
    transform: translateX(18px);
  }

  .case-card.is-enter-left {
    transform: translateX(-18px);
  }

  .case-card.is-leaving-left {
    transform: translateX(-18px);
  }

  .case-card.is-leaving-right {
    transform: translateX(18px);
  }

  .case-card h4 {
    font-size: 19px;
  }

  .case-card > p:not(.case-footnote) {
    min-height: 64px;
    font-size: 13px;
  }

  .case-card .img-box {
    margin-top: 16px;
    border-radius: 10px;
  }

  .case-controls {
    justify-content: center;
    margin-top: 14px;
  }

  .case-control {
    width: 40px;
    height: 40px;
  }
}

/* 모션 최소화 설정 */
@media (prefers-reduced-motion: reduce) {
  .case-card,
  .case-card .img-box img,
  .case-tab,
  .case-control {
    transition: none;
  }
}


/* ==========================================================================
   SECTION 06 : FAQ
========================================================================== */

.faq-section {
  padding-top: 100px;
}

.faq-list {
  border-top: 1px solid #d9dde5;
}

.faq-list details {
  border-bottom: 1px solid #d9dde5;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
  transition:
    all .2s ease,
}

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

.faq-list summary::marker {
  display: none;
  content: '';
}

.faq-list summary::after {
  content: '';
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(#C7A45A, #C7A45A) center / 14px 2px no-repeat,
    linear-gradient(#C7A45A, #C7A45A) center / 2px 14px no-repeat;
  transform: rotate(0deg);
  transition:
    transform .2s ease,
    background-size .2s ease,
    background-color .2s ease;
}

.faq-list summary:hover{
  color: var(--gold);
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-list details[open] summary::after {
  background-size:
    14px 2px,
    2px 0;
  transform: rotate(180deg);
}

/* 답변 */
.faq-list details > p {
  display: none;
  margin: 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  background-color: #fafafa;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* HTML에 처음부터 open이 있는 경우 */
.no-js .faq-list details[open] > p {
  display: block;
}

/* 키보드 포커스 */
.faq-list summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* 모바일 */
@media (max-width: 560px) {
  .faq-section {
    padding-top: 80px;
  }

  .faq-list summary {
    gap: 14px;
    padding: 18px 4px;
    font-size: 16px;
  }

  .faq-list summary::after {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .faq-list details > p {
    padding: 20px 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .faq-list details > p br {
    display: none;
  }
}

/* 모션 최소화 사용자 설정 */
@media (prefers-reduced-motion: reduce) {
  .faq-list summary,
  .faq-list summary::after {
    transition: none;
  }
}
.cta-section {
  position: relative;
  background: linear-gradient(135deg,#c9a13f,#d7b75d);
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-section::before {
  left: -100px;
  bottom: -130px;
}

.cta-section::after {
  right: -100px;
  top: -120px;
}

.cta-section .inner-wrap {
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow {
  color: #fff;
}

.cta-section h3 {
  font-size: clamp(30px,4vw,42px);
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}

.cta-section p {
  color: rgba(255,255,255,.82);
  margin: 24px 0 0;
  font-size: 18px;
}

.cta-section .btn-wrap .btn {
 padding: 16px 40px; 
}

.trust-list {
  display: flex;
  justify-content: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* ==========================================================================
   Modal
========================================================================== */
.call-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.call-modal.is-open {
  display: block;
}

.call-modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(3,9,19,.68);
  backdrop-filter: blur(3px);
}

.call-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px,calc(100% - 40px));
  padding: 24px 24px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  transform: translate(-50%,-50%);
  z-index: 999;
}

.call-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #7a8190;
  font-size: 26px;
  cursor: pointer;
}

.call-modal__eyebrow {
  margin: 0 0 10px;
  color: #b28b31;
  font-size: 15px;
  font-weight: 700;
}

.call-modal__number {
  display: block;
  color: #07172f;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.call-modal__desc {
  margin: 14px 0 22px;
  color: #6d7480;
  font-size: 14px;
  line-height: 1.7;
}

.call-modal__desc p {
  font-weight: 700;
}
.call-modal__desc ul li{
  font-size: 13px;
}
.call-modal__desc ul li::before {
 content: '·';
 margin-right: 6px;
}

.call-modal__copy {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg,#e4c267,#d3aa45);
  color: #11203a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}


/* ==========================================================================
   반응형
========================================================================== */
@media (max-width: 1100px) {
  .service-grid {gap: 24px;}
  .service-grid .service-card {padding: 24px;}
}

@media (max-width: 900px) {
  section {
    padding: 80px 0;
  }
  .eyebrow {
    margin-bottom: 12px;
  }
  .eyebrow::before {
    width: 24px;
  }
  .title-wrap {
    margin-bottom: 40px;
  }
  .title-wrap h3, .case-copy h3 {
    margin-bottom: 24px;
  }
  .alert-layout,
  .service-grid,
  .team-content,
  .case-layout {
    grid-template-columns: 1fr;
  }
  .service-grid {
    gap: 16px;
  }
  .service-grid .service-card {
    padding: 16px;
  }
  .alert-layout {
    margin: auto;
    gap: 0;
  }
  .info-card {
    border-radius: 12px;
  }
  .service-card {
    padding: 22px;
  }
  .service-card h4 {
    font-size: 24px;
    margin-top: 8px;
  }
  .service-card ul {
    margin-top: 8px;
  }
  .service-card ul li + li {
    margin-top: 2px;
  }
  .team-copy li {
    grid-template-columns: 32px 1fr;
    padding: 16px;
  }
  .price-row {
    padding-top: 8px;
  }
  .alert-list {
    gap: 12px;
  }
  .alert-list.right {
    margin: 12px 0 24px 0;
  }
  .alert-list.right .info-card {
    border-radius: 12px;
  }

  .phone-card {
    width: 260px;
    margin: auto;
    grid-row: 1;
  }

  .team-photo {
    max-width: 520px;
  }

  .layout-acting {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    padding: 3px;
    border-radius: 14px;
    transform: none;
  }

  .layout-acting ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
  }

  .layout-acting li + li {
    margin: 0;
    border-top: 0;
    border-left: 1px solid #edf0f4;
  }

  .floating-menu__link {
    min-height: 58px;
    padding: 1px 1px 0;
    gap: 0;
    font-size: 11px;
  }

  .floating-menu__icon {
    width: 42px;
    height: 42px;
  }

  footer {
    padding-bottom: 150px;
  }
}

@media (max-width: 560px) {
  .inner-wrap {
    width: min(100% - 40px,1160px);
  }

  .layout-header header {
    height: 62px;
  }

  .logo {
    font-size: 12px;
  }

  .logo a::before {
    width: 24px;
    height: 28px;
    font-size: 17px;
  }

  .hero-section,
  .hero-inner {
    min-height: 640px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-copy h2 {
    font-size: 38px;
  }

  .hero-desc br {
    display: none;
  }

  .btn-wrap .btn {
    width: 100%;
  }

  .hero-trust-bar {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    font-size: clamp(11px, 3.3vw, 13px);
  }

  .hero-trust-bar p {
    padding: 0 9px;
  }

  .hero-trust-bar p:first-child {
    padding-left: 5px;
    padding-right: 10px;
  }

  .hero-trust-bar p + p {
    padding-left: 10px;
    padding-right: 5px;
    border-left: 0;
    border-right: 0;
  }

  .hero-trust-bar p + p::before,
  .hero-trust-bar p + p::after {
    content: none;
  }

  .alert-list {
    gap: 12px;
  }
  
  .team-content {
    gap: 30px;
  }

  .team-photo figcaption {
    display: block;
  }
  .team-photo figcaption strong {
    font-size: 17px;
  }

  .team-photo figcaption span {
    display: block;
    margin-top: 4px;
  }
  
  .trust-list {
    gap: 12px;
    flex-wrap: wrap;
  }

  .f-link {
    position: static;
    margin-top: 24px;
  }

  .layout-acting {
    padding: 3px;
  }

  .section03 .title-wrap,
  .section06 .title-wrap {
    text-align: left;
  }
}


/* 공통 스크롤 등장 */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .78s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal="left"] { transform: translate3d(-34px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(34px, 0, 0); }
.js [data-reveal="scale"] { transform: scale(.965); }
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* 히어로 첫 화면은 조금 더 자연스럽게 */
.hero-copy.is-visible h2 {
  animation: heroTitleIn .85s .08s both cubic-bezier(.22,.61,.36,1);
}
.hero-copy.is-visible .hero-desc {
  animation: heroItemIn .7s .22s both ease;
}
.hero-copy.is-visible .chip-row {
  animation: heroItemIn .7s .34s both ease;
}
.hero-copy.is-visible .btn-wrap {
  animation: heroItemIn .7s .46s both ease;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(22px); letter-spacing: -.07em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: -.04em; }
}
@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 배경의 골드 포인트를 아주 천천히 이동 */
.hero-section::after {
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .75; }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.08); opacity: 1; }
}

/* 휴대폰 목업 미세 부유 */
.motion-float.is-visible img {
  animation: phoneFloat 4.8s ease-in-out 1s infinite;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.18));
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* 카드 hover */
.service-card,
.info-card,
.team-photo {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
@media (hover:hover) {
  .service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(211,170,69,.6);
    box-shadow: 0 22px 44px rgba(25,35,55,.12);
  }
  .info-card:hover { transform: translateY(-4px); }
  .team-photo:hover {
    transform: translateY(-5px);
    border-color: rgba(228,194,103,.34);
  }
}

/* 골드 버튼 은은한 광택 */
.btn-primary,
.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after,
.btn-gold::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -55%;
  width: 32%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
  pointer-events: none;
}
@media (hover:hover) {
  .btn-primary:hover::after,
  .btn-gold:hover::after { left: 125%; }
}

/* CTA 배경 원형 장식 */
.cta-section::before { animation: ctaOrbLeft 9s ease-in-out infinite alternate; }
.cta-section::after { animation: ctaOrbRight 10s ease-in-out infinite alternate; }
@keyframes ctaOrbLeft {
  to { transform: translate(24px,-18px) rotate(10deg); }
}
@keyframes ctaOrbRight {
  to { transform: translate(-22px,20px) rotate(-12deg); }
}

/* 고정 상담 영역은 등장 후 정지, 시선 유도는 1회만 */
.motion-floating-cta {
  animation: none;
}
@keyframes floatingCtaIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatingCtaHint {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* 모션 최소화를 선택한 사용자 보호 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal], .motion-header {
    opacity: 1 !important;
    transform: none !important;
  }
}
