:root {
  --blue: #4a95dc;
  --blue-dark: #256faf;
  --yellow: #f8c84e;
  --pink: #ed7ab0;
  --ink: #26323f;
  --muted: #697685;
  --line: #dde7f1;
  --surface: #ffffff;
  --soft-blue: #eef7ff;
  --soft-yellow: #fff9df;
  --soft-pink: #fff1f7;
  --page: #f7fbff;
  --shadow: 0 18px 48px rgba(31, 78, 121, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--page);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 231, 241, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: #435160;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.text-link {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--blue-dark);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(74, 149, 220, 0.26);
}

.secondary-button {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(74, 149, 220, 0.45);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 800;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 88px) clamp(48px, 7vw, 82px);
  background:
    linear-gradient(115deg, rgba(238, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 249, 223, 0.88) 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-description {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #526070;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 231, 241, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-row,
.hero-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 18px;
  background: var(--soft-blue);
  border-radius: 8px;
}

.metric-row:nth-child(2) {
  background: var(--soft-yellow);
}

.metric-row strong,
.hero-note strong {
  color: var(--blue);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.metric-row span,
.hero-note span {
  color: var(--muted);
  font-weight: 800;
}

.hero-note {
  background: var(--soft-pink);
}

.search-section,
.content-section {
  padding: clamp(54px, 7vw, 84px) clamp(20px, 6vw, 88px);
}

.search-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 84px) clamp(20px, 6vw, 88px);
  background: #fff;
}

.care-visual-copy h2 {
  margin: 0;
  color: #2f3b48;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0;
}

.care-visual-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.care-visual-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  color: #2f3b48;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1120px;
  text-align: left;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box label {
  display: grid;
  gap: 6px;
  color: #526070;
  font-size: 13px;
  font-weight: 900;
}

.search-box select,
.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.profile-card,
.feature-card,
.job-item {
  background: var(--surface);
  border: 1px solid rgba(221, 231, 241, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31, 78, 121, 0.08);
}

.profile-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.highlight-card {
  border-color: rgba(74, 149, 220, 0.45);
  box-shadow: var(--shadow);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.avatar.yellow {
  background: var(--yellow);
}

.avatar.pink {
  background: var(--pink);
}

.label {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.profile-card h3,
.feature-card h3,
.job-item h3 {
  margin: 0 0 8px;
  color: #2f3b48;
  font-size: 21px;
  line-height: 1.35;
}

.profile-card p,
.feature-card p,
.job-item p {
  margin: 0;
  color: var(--muted);
}

.profile-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #526070;
  list-style: none;
  font-weight: 700;
}

.profile-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--yellow);
  border-radius: 50%;
}

.muted {
  background: #f1f8ff;
}

.job-list {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
}

.job-item.premium {
  border-color: rgba(248, 200, 78, 0.9);
  background: linear-gradient(90deg, #fffdf1 0%, #ffffff 56%);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  color: #7a5400;
  background: #fff1b8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.badge.soft {
  color: var(--blue-dark);
  background: var(--soft-blue);
}

.feature-card {
  padding: 26px;
}

.feature-card.blue {
  background: var(--soft-blue);
}

.feature-card.yellow {
  background: var(--soft-yellow);
}

.feature-card.pink {
  background: var(--soft-pink);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  background: #fff;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 78, 121, 0.07);
}

.step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.step-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

.notice-section {
  background: #fff;
}

.notice-list {
  display: grid;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
  overflow: hidden;
}

.notice-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.notice-list li:last-child {
  border-bottom: 0;
}

.notice-list a {
  font-weight: 800;
}

.notice-list time {
  color: var(--muted);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: #fff;
  background: #26323f;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .care-visual-section {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-template-columns: 1fr 1fr;
  }

  .search-box button {
    grid-column: span 2;
  }

  .card-grid,
  .feature-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 19px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-section {
    padding: 46px 18px 42px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-actions,
  .job-item,
  .notice-list li,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .search-section,
  .care-visual-section,
  .content-section {
    padding: 46px 18px;
  }

  .search-box,
  .card-grid,
  .feature-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .search-box button {
    grid-column: auto;
  }

  .row-heading {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .section-heading,
  .row-heading {
    text-align: left;
  }

  .metric-row,
  .hero-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
