/* landing.css가 body 기본 배경을 흰색(--white)으로 고정해두는데, 이 페이지
   기본 배경은 FAFAFC라 여기서만 덮어쓴다. word-break: keep-all도 이
   페이지 전체에 적용 — 한글이 음절 중간이 아니라 단어 단위로 줄바꿈되게
   해서, 굳이 <br>로 줄바꿈 지점을 강제하지 않아도 자연스럽게 읽힌다. */
body {
  --body-bg: #fafafc;
  background: var(--body-bg);
  word-break: keep-all;
}

/* =====================================================================
   AI 시니어 케어 솔루션 소개 페이지 — Hero
   Figma node 3287:11259 (1920×1080 캔버스 기준, 60px 인셋 카드)
   레이아웃만 우선 구현 — 스크롤 리빌/인터랙션은 추후 추가
===================================================================== */
.care-hero {
  position: relative;
  height: 100vh;
  /* 이 프로젝트의 헤더는 실제 레이아웃 공간을 차지하는 고정 바라
     (body { padding-top } — css/header.css) 이미 상단 여백이 확보돼
     있으므로, 여기서는 카드 자체의 인셋만 최소로 둔다. */
  padding: 40px 60px 60px;
  background: #fafafc;
}

.care-hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
}

.care-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 텍스트 가독성용 좌→우 어두운 그라디언트 — 랜딩 히어로 배너와 동일한 톤 */
.care-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

/* 콘텐츠 스택(배지+타이틀+본문+버튼) — 프레임 하단-좌측에 앵커.
   좌우 위치는 사이트 전역 "1400px cap" 컨벤션(--pad-x, landing.css)을
   그대로 재사용해 1920px 기준 Figma 값(260px)과 정확히 일치시킨다. */
.care-hero-content {
  position: absolute;
  left: max(var(--pad-x), calc((100% - 1400px) / 2));
  right: max(var(--pad-x), calc((100% - 1400px) / 2));
  max-width: 1400px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ── Header: 배지 + 타이틀 ── */
.care-hero-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.care-hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 5px 19px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}
.care-hero-badge-icon {
  display: block;
  width: 24px;
  height: 24px;
}
.care-hero-badge-text {
  font-family: 'SUIT', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.care-hero-title {
  font-family: 'SUIT', sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  /* 스크롤 시 .care-hero-frame이 좁아지면서 이 텍스트가 다음 줄로
     떨어져 정신없어 보이는 문제가 있었다 — 줄바꿈을 막고, 대신
     프레임의 overflow:hidden에 그대로 잘리게 둔다(그 전에 JS가
     콘텐츠를 먼저 fade-out 시켜서 실제로는 잘리는 모습이 안 보인다) */
  white-space: nowrap;
}

/* ── Sub: 본문 설명 + 참고 문구 + 버튼 ── */
.care-hero-sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.care-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.care-hero-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  white-space: nowrap;
}
.care-hero-note {
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #c7c7c7;
  white-space: nowrap;
}

.care-hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.care-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 66px;
  border-radius: 60px;
  font-family: 'SUIT', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.care-btn:hover {
  transform: translateY(-4px);
}
.care-btn-primary {
  background: #02a590;
  border: 1px solid #02a590;
  color: var(--white);
}
.care-btn-primary:hover {
  box-shadow: 0 20px 36px rgba(2, 165, 144, 0.4);
}
.care-btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.care-btn-outline:hover {
  box-shadow: 0 20px 36px rgba(255, 255, 255, 0.25);
}

/* =====================================================================
   SERVICE  Figma node 3287:9196 "세 명의 사용자를 위한 하나의 서비스"
   목업 카드 안의 수치는 Figma 인스턴스 스케일(≈0.68x) 잔재라 깔끔한
   값으로 정리했다 — 비율/색상/라벨은 원본과 동일하게 유지
===================================================================== */
.care-service {
  background: #fafafc;
  padding: 250px max(var(--pad-x), calc((100% - 1400px) / 2)) 200px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.care-service-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.care-service-title {
  font-family: 'SUIT', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #000;
}
.care-service-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #373737;
}

.care-service-cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
}

.care-service-card {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  height: 526px;
  padding: 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(49, 50, 73, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
/* hover는 마우스가 있는 기기에서만 — 터치 디바이스는 hover 개념이
   없어서(탭하면 그 순간 hover가 걸렸다 안 풀리는 등) 의미가 없다.
   care-guardian-feature/care-step의 동일 패턴 hover도 전부 이 조건으로 감싼다. */
@media (hover: hover) and (pointer: fine) {
  .care-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 48px rgba(49, 50, 73, 0.16);
  }
  /* 카드 위 목업도 같이 살짝 떠오르면서 깊이감을 더한다 */
  .care-service-card:hover .care-mock {
    transform: translateY(-6px) scale(1.03);
  }
  .care-service-card:hover .care-service-card-title {
    color: #02a590;
  }
}

.care-service-card-title {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  transition: color 0.35s ease;
}
.care-service-card-desc {
  margin-top: 20px;
  font-family: 'SUIT', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}

/* care-mock-area/-group은 데스크톱에서 레이아웃에 관여하지 않는
   순수 반응형용 래퍼 — display:contents로 지워둔다(반응형 규칙은
   미디어쿼리 안에서 덮어쓴다). */
.care-mock-area,
.care-mock-group { display: contents; }

/* ── 카드 위에 떠 있는 미니 앱 목업 ── */
.care-mock {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(44, 66, 117, 0.1);
  transition: transform 0.35s ease;
}

.care-mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'SUIT', sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.care-mock-chip-success { background: rgba(0, 206, 141, 0.1); color: #00ce8d; }
.care-mock-chip-danger  { background: rgba(255, 94, 0, 0.1); color: #ff5e00; }
.care-mock-chip b { color: #3288f1; }

/* 1) 독거 시니어 — AI 요약 */
.care-mock-ai {
  left: 55px;
  top: 102px;
  width: 343px;
  height: 140px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.care-mock-ai-head {
  display: flex;
  align-items: center;
  gap: 4px;
}
.care-mock-ai-icon {
  display: block;
  width: 20px;
  height: 20px;
}
.care-mock-ai-head span {
  font-family: 'SUIT', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #838383;
}
.care-mock-ai-text {
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #1d1d1d;
}

/* 2) 보호자 — 감정 건강 탭 + 상세 분석 (두 화면이 겹쳐서 떠 있음) */
.care-mock-tabs {
  left: 35px;
  top: -13px;
  width: 233px;
  padding: 14px;
  z-index: 1;
}
.care-mock-tabs-row {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #e7e7e7;
}
.care-mock-tab {
  flex: 1 0 0;
  padding: 10px 4px;
  font-family: 'SUIT', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #838383;
  text-align: center;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
}
.care-mock-tab.is-active {
  font-weight: 700;
  color: #1d1d1d;
  border-bottom: 2px solid #1d1d1d;
}
.care-mock-score {
  padding-top: 10px;
}
.care-mock-score-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.care-mock-score-mood {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.care-mock-score-mood-label {
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.15px;
  color: #373737;
}
.care-mock-score-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(247, 160, 0, 0.1);
  color: #f7a000;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 800;
}
.care-mock-range {
  margin-top: 10px;
}
.care-mock-range-bar {
  display: flex;
  height: 6px;
  border-radius: 68px;
  overflow: hidden;
  background: #e9e9e9;
}
.care-mock-range-seg-danger  { background: #f30000; }
.care-mock-range-seg-warning { background: #f7a000; }
.care-mock-range-seg-success { background: #00ce8d; }
.care-mock-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-family: 'SUIT', sans-serif;
  font-size: 9px;
  color: #666;
}

.care-mock-detail {
  left: 178px;
  top: 38px;
  width: 233px;
  padding: 12px;
  border: 1px dashed #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.care-mock-detail-lead {
  font-family: 'SUIT', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  color: #666;
}
.care-mock-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.care-mock-detail-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.care-mock-detail-label {
  flex-shrink: 0;
  width: 26px;
  font-family: 'SUIT', sans-serif;
  font-size: 10px;
  font-weight: 700;
}
.care-mock-detail-label-success { color: #00ce8d; }
.care-mock-detail-label-neutral { color: #a0a0a0; }
.care-mock-detail-label-info    { color: #3288f1; }
.care-mock-detail-label-warning { color: #ff5e00; }
.care-mock-detail-bar {
  flex: 1 0 0;
  display: block;
  height: 6px;
  border-radius: 68px;
  background: #e7e7e7;
  overflow: hidden;
}
.care-mock-detail-fill {
  display: block;
  height: 100%;
  border-radius: 68px;
}
.care-mock-detail-fill-success { background: #00ce8d; }
.care-mock-detail-fill-neutral { background: #a0a0a0; }
.care-mock-detail-fill-info    { background: #3288f1; }
.care-mock-detail-fill-warning { background: #ff5e00; }
.care-mock-detail-pct {
  flex-shrink: 0;
  width: 28px;
  font-family: 'SUIT', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}
.care-mock-detail-pct-success { color: #00ce8d; }
.care-mock-detail-pct-neutral { color: #a0a0a0; }
.care-mock-detail-pct-info    { color: #3288f1; }
.care-mock-detail-pct-warning { color: #ff5e00; }
.care-mock-detail-count {
  font-family: 'SUIT', sans-serif;
  font-size: 9px;
  color: #a0a0a0;
}

/* 3) 복지·요양기관 — 알림 */
.care-mock-alert {
  left: 54px;
  top: 111px;
  width: 343px;
  height: 140px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.care-mock-alert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.care-mock-alert-time {
  font-family: 'SUIT', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #838383;
}
.care-mock-alert-text {
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* =====================================================================
   SENIOR APP  Figma node 3287:9362 "단순한 챗봇이 아닙니다"
===================================================================== */
.care-senior {
  background: #fafafc;
  padding: 200px max(var(--pad-x), calc((100% - 1400px) / 2));
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.care-senior-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.care-senior-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(2, 165, 144, 0.12);
  color: #02a590;
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.care-senior-title {
  font-family: 'SUIT', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}
/* 왼쪽→오른쪽으로 검정→#999 색이 채워지는 모션용 — 그라디언트 stop
   위치(0%)를 JS(gsap)가 100%까지 움직이면서 배경을 텍스트 모양으로만
   잘라 보여준다. 기본값(0%)은 시작 전이라도 검정 텍스트와 구분이 안 가
   깜빡임이 없다. */
.care-senior-title-accent {
  background-image: linear-gradient(to right, #999 0%, #000 0%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.care-senior-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #373737;
}

.care-senior-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.care-senior-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
  /* GSAP는 이 래퍼가 아니라 안쪽 .care-senior-copy-title/-desc의 y만
     건드리므로, 래퍼 자체에 정적 transform을 얹어도 애니메이션과
     충돌하지 않는다 */
  transform: translateY(-200px);
}
.care-senior-copy-title {
  font-family: 'SUIT', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
.care-senior-copy-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
}

/* ── 폰 목업 ── */
.care-senior-phone-wrap,
.care-guardian-phone-wrap {
  flex-shrink: 0;
}
.care-phone {
  position: relative;
  flex-shrink: 0;
  width: 489px;
  height: 1000px;
  filter: drop-shadow(0 34px 34px rgba(44, 66, 117, 0.15));
}
.care-phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.care-phone-screen {
  position: absolute;
  top: 12px;
  right: 15px;
  bottom: 14px;
  left: 24px;
  overflow: hidden;
  border-radius: 70px;
  background: #f7f7f7;
}
.care-phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-phone-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  backdrop-filter: blur(8px);
}
.care-phone-greeting {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.care-phone-greeting-sub {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.24px;
  color: rgba(29, 29, 29, 0.4);
}
.care-phone-greeting-main {
  font-family: 'SUIT', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: #1d1d1d;
}
.care-phone-contact {
  position: absolute;
  top: 59px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 59px;
  height: 59px;
  border-radius: 98px;
  background: var(--white);
  opacity: 0.8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.care-phone-contact img {
  display: block;
  width: 18px;
  height: 18px;
}
.care-phone-contact span {
  font-family: 'SUIT', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1d;
}
.care-phone-mic {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  width: 194px;
  height: 194px;
  border: 11px solid rgba(183, 241, 233, 0.3);
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(155, 235, 225, 0.7) 2%, rgba(2, 165, 144, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* "듣고 있어요" 상태를 원 뒤로 퍼지는 파형(링)으로 표현 — 두 개를 반박자
   어긋나게 반복시켜 끊김 없이 이어지는 느낌을 준다. .care-phone-mic이
   이미 transform을 갖고 있어 별도 stacking context라, z-index:-1이 이
   원 뒤로만 깔리고 바깥(영상 배경 위)으로는 자연스럽게 보인다. */
.care-phone-mic::before,
.care-phone-mic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  z-index: -1;
  pointer-events: none;
  animation: care-mic-ripple 2.6s ease-out infinite;
}
.care-phone-mic::after {
  animation-delay: 1.3s;
}
@keyframes care-mic-ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
.care-phone-mic-bars {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
}
.care-phone-mic-bars span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--white);
}
.care-phone-mic p {
  font-family: 'SUIT', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

/* =====================================================================
   CTA BANNER  Figma node 3287:11354 "오늘 부모님, 별일 없으셨을까?"
===================================================================== */
.care-cta {
  padding: 60px;
}
.care-cta-banner {
  position: relative;
  width: 100%;
  padding: 150px max(var(--pad-x), calc((100% - 1400px) / 2));
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.care-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 34, 0.4);
}
.care-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
}
.care-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}
.care-cta-title {
  font-family: 'SUIT', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--white);
}
.care-cta-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}
.care-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 66px;
  border-radius: 60px;
  border: 1px solid var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: 'SUIT', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.care-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(255, 255, 255, 0.25);
}

/* =====================================================================
   GUARDIAN APP  Figma node 3287:9598 "부모님의 상태를 데이터로 확인,
   불안감을 덜어드립니다"
===================================================================== */
.care-guardian {
  background: #fafafc;
  padding: 200px max(var(--pad-x), calc((100% - 1400px) / 2));
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.care-guardian-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.care-guardian-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(107, 124, 194, 0.1);
  color: #6b7cc2;
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.care-guardian-title {
  font-family: 'SUIT', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #000;
}
.care-guardian-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #373737;
}

.care-guardian-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.care-guardian-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 510px;
  flex-shrink: 0;
  /* care-guardian-row는 align-items:center라 폰(1000px, 매우 큼) 옆에서
     이 짧은 리스트가 세로 가운데로 밀려 타이틀 영역과 멀어져 보였다 —
     이 요소만 위쪽으로 붙인다(.care-notif-row 쪽은 flex-column 안이라
     align-self가 가로 정렬에만 관여해 영향 없음). */
  align-self: flex-start;
}
.care-guardian-feature {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(49, 50, 73, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .care-guardian-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 48px rgba(49, 50, 73, 0.16);
  }
}
.care-guardian-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  flex-shrink: 0;
}
.care-guardian-feature-icon img,
.care-guardian-feature-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}
.care-guardian-feature-icon-1 { background: #ecf2ff; }
.care-guardian-feature-icon-2 { background: rgba(0, 192, 232, 0.1); }
.care-guardian-feature-icon-3 { background: rgba(255, 0, 4, 0.08); }
/* 직계 자식으로 한정 — 섹션6(알림 시스템)은 title/desc를 감싸는 div가
   하나 더 있어서(.care-guardian2-feature-title/-desc), 이 규칙이 그
   desc까지 덮어쓰면 안 된다(우선순위가 더 높아서 실제로 덮어쓰던 버그) */
.care-guardian-feature > p {
  font-family: 'SUIT', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

/* ── 폰 안의 "보호자 대시보드" 앱 화면 — HTML로 재현하던 내부를 Figma
   export PNG 한 장으로 교체(.care-notif-screen도 동일한 이미지 규칙을
   공유). .care-phone-screen이 이미 overflow:hidden + border-radius를
   갖고 있어 여기서는 꽉 채우기만 하면 된다. ── */
.care-app-screen {
  background: #f9fafb;
}
.care-app-screen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-app-topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px 14px 24px;
}
.care-app-logo {
  font-family: 'SUIT', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #000;
}
.care-app-noti {
  position: relative;
  font-size: 22px;
  line-height: 1;
}
.care-app-noti-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #02a590;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.care-app-body {
  padding: 12px 19px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.care-app-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px;
  border-radius: 14px;
  background: var(--white);
}
.care-app-avatar {
  display: block;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  object-fit: cover;
}
.care-app-profile-info {
  flex: 1 0 0;
  min-width: 0;
}
.care-app-profile-name {
  font-family: 'SUIT', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #1d1d1d;
}
.care-app-profile-name span {
  font-weight: 500;
}
.care-app-profile-sub {
  margin-top: 2px;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  color: #a0a0a0;
}
.care-app-tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 7px;
  background: #f7f8f9;
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #666;
}
.care-app-tag img {
  display: block;
  width: 21px;
  height: 21px;
}

.care-app-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px;
  border-radius: 23px;
  background: var(--white);
}
.care-app-ai-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.care-app-ai-head img {
  display: block;
  width: 28px;
  height: 28px;
}
.care-app-ai-head span {
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #838383;
}
.care-app-summary-text {
  text-align: center;
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #1d1d1d;
}

.care-app-scores {
  display: flex;
  gap: 9px;
}
.care-app-score-box {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-radius: 19px;
  border: 1px solid rgba(231, 231, 231, 0.5);
  background: var(--white);
}
.care-app-score-label {
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #838383;
}
.care-app-score-value {
  margin-top: 7px;
  font-family: 'SUIT', sans-serif;
  font-size: 37px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-app-chip {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 28px;
  padding: 0 9px;
  border-radius: 100px;
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.care-app-chip-success { background: rgba(0, 206, 141, 0.1); color: #00ce8d; }
.care-app-chip-info    { background: rgba(50, 136, 241, 0.1); color: #3288f1; font-weight: 700; }
.care-app-chip-danger  { background: rgba(255, 94, 0, 0.1); color: #ff5e00; font-size: 14px; font-weight: 800; }
.care-app-chip b { color: #3288f1; font-weight: 800; }

.care-app-date {
  text-align: right;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
}

.care-app-gauge {
  padding: 23px 12px;
}
.care-app-gauge-labels-top {
  display: flex;
  margin-bottom: 9px;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.care-app-gauge-labels-top span { flex: 1 0 0; text-align: center; }
.care-app-gauge-label-danger  { color: #f30000; }
.care-app-gauge-label-warning { color: #ff5e00; }
.care-app-gauge-label-amber   { color: #f7a000; }
.care-app-gauge-label-success { color: #00ce8d; }
.care-app-gauge-bar {
  position: relative;
  display: flex;
  height: 9px;
  border-radius: 68px;
  overflow: hidden;
}
.care-app-gauge-seg-danger  { background: #f30000; }
.care-app-gauge-seg-warning { background: #ff5e00; }
.care-app-gauge-seg-amber   { background: #f7a000; }
.care-app-gauge-seg-success { background: #00ce8d; }
.care-app-gauge-marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}
.care-app-gauge-labels-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  color: #666;
}

.care-app-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 17px;
  border: none;
  border-radius: 14px;
  background: #f7f8f9;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #a0a0a0;
  cursor: pointer;
}

.care-app-alerts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.care-app-alerts-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.care-app-alerts-head p {
  font-family: 'SUIT', sans-serif;
}
.care-app-alerts-head b {
  font-size: 21px;
  font-weight: 700;
  color: #000;
}
.care-app-alerts-head span {
  font-size: 15px;
  color: #a0a0a0;
}
.care-app-alerts-more {
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  color: #838383;
}

.care-app-alert-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 23px;
  border-radius: 23px;
  background: var(--white);
}
.care-app-alert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.care-app-alert-time {
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #838383;
}
.care-app-alert-text {
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

/* ── 폰 좌우로 떠 있는 글래스모피즘 미니 카드 4장 (Figma screen1~4,
   node 3300:xxxx) — 이제 Figma에서 export한 PNG(유리 배경/블러/그림자가
   이미 이미지에 포함됨)를 그대로 얹는다. 좌표는 .care-phone(position:relative,
   489×1000) 기준. export 이미지가 원래 카드 치수보다 살짝 커서(양옆
   backdrop-filter:blur(20px) 정도의 블리드가 캔버스에 같이 담김) 원래
   left/top에서 그 블리드만큼(각 카드 타입별 절반씩) 안쪽으로 당겨서
   카드 자체의 시각적 위치는 원래 디자인과 동일하게 맞췄다. ── */
.care-float {
  position: absolute;
  z-index: 3;
}
.care-float img {
  display: block;
  width: 100%;
  height: 100%;
}
.care-float-1 { left: -233px; top: 177px; width: 403px; height: 200px; }
.care-float-2 { left: 363px;  top: 259px; width: 275px; height: 221px; }
.care-float-3 { left: 363px;  top: 465px; width: 275px; height: 312px; }
.care-float-4 { left: -180px; top: 756px; width: 403px; height: 200px; }

/* =====================================================================
   GUARDIAN_02  Figma node 3287:9774 — 작동 방식 / 핵심 기능 / 알림 시스템
   3개 서브섹션, 같은 배경(#f3f6fb) 안에서 큰 gap으로 이어짐
===================================================================== */
.care-explain {
  background: #f3f6fb;
  padding: 200px max(var(--pad-x), calc((100% - 1400px) / 2));
  display: flex;
  flex-direction: column;
  gap: 250px;
}

/* ── 1. 세 단계로 완성되는 정서 케어 ── */
.care-steps {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.care-steps-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.care-steps-row {
  display: flex;
  height: 480px;
}
.care-step {
  flex: 1 0 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px;
  border-radius: 1000px;
  background: rgba(192, 209, 226, 0.15);
  text-align: center;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .care-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 28px 48px rgba(49, 50, 73, 0.16);
  }
}
.care-steps-row .care-step:not(:last-child) {
  margin-right: -20px;
}
.care-step-emoji {
  font-size: 50px;
  line-height: 1.7;
}
.care-step-emoji svg {
  display: inline-block;
  width: 84px;
  height: 84px;
  vertical-align: middle;
}
.care-step-title {
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.7;
  color: #000;
}
.care-step-desc {
  margin-top: 4px;
  font-family: 'SUIT', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #373737;
}

/* ── 공통 배지/타이틀/설명 (섹션 5와 동일 컴포넌트 재사용) ── */
.care-score-title-accent {
  color: #02a590;
}

/* ── 2. 설명 가능한 안녕지수 ── */
.care-score-row {
  display: flex;
  align-items: center;
  gap: 100px;
}
.care-score-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.care-score-note {
  padding: 10px 20px;
  border-left: 2px solid #6b7cc2;
  background: #f9fafb;
}
.care-score-note p {
  font-family: 'SUIT', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}

.care-score-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  border-radius: 30px;
  background: #f3f6fb;
}
.care-score-weights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  border: 1px dashed #e7e7e7;
  background: var(--white);
  box-shadow: 0 9px 28px rgba(44, 66, 117, 0.1);
}
.care-score-weights-title {
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
}
/* ── 안녕 지수 구성 원형 그래프 — conic-gradient로 누적 비중을 그리고
   가운데는 흰 원(hole)을 덮어 도넛처럼 뚫어 보이게 한다 ── */
.care-score-donut-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.care-score-donut {
  position: relative;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.care-score-donut-hole {
  position: absolute;
  inset: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
}
.care-score-donut-total {
  font-family: 'SUIT', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000;
}
.care-score-donut-total em {
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: #a0a0a0;
}
.care-score-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.care-score-donut-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.care-score-donut-dot {
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.care-score-donut-label {
  flex: 1 0 0;
  min-width: 0;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666;
}
.care-score-donut-pct {
  flex-shrink: 0;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #000;
}

.care-score-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.care-score-legend-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 19px 20px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7px);
  box-shadow: 0 9px 28px rgba(44, 66, 117, 0.1);
}
.care-score-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 100px;
  font-family: 'SUIT', sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.care-score-chip-stable { background: rgba(0, 206, 141, 0.1); color: #00c8ae; }
.care-score-chip-normal { background: rgba(235, 208, 0, 0.1); color: #ebd000; }
.care-score-chip-poor   { background: rgba(247, 160, 0, 0.1); color: #f7a000; }
.care-score-chip-low    { background: rgba(243, 0, 0, 0.1); color: #f30000; }
.care-score-legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.care-score-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.care-score-dot-stable { background: #00c8ae; }
.care-score-dot-normal { background: #ebd000; }
.care-score-dot-poor   { background: #f7a000; }
.care-score-dot-low    { background: #f30000; }

/* ── 3. 필요한 순간에만 정확하게 ── */
.care-notif-row {
  display: flex;
  align-items: center;
  gap: 100px;
}
.care-notif-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.care-notif-features {
  margin-top: 60px;
}
.care-guardian2-feature-title {
  font-family: 'SUIT', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}
.care-guardian2-feature-desc {
  margin-top: 5px;
  font-family: 'SUIT', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}

.care-notif-mockup {
  position: relative;
  flex-shrink: 0;
  width: 675px;
  height: 1019px;
}
.care-notif-phone {
  position: absolute;
  top: 0;
  right: 0;
}
.care-notif-screen {
  background: #f9fafb;
}
.care-notif-topbar {
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 30px 20px 12px;
}
.care-notif-topbar .care-app-logo {
  font-size: 24px;
}
.care-notif-list {
  flex: 1 0 0;
  min-height: 0;
  overflow: hidden;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.care-notif-day {
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #a0a0a0;
}
.care-notif-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 19px;
  border-radius: 14px;
  background: var(--white);
}
.care-notif-item-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.care-notif-item-head span:first-child {
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1d1d1d;
}
.care-notif-chip {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 8px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.care-notif-chip-danger {
  background: rgba(255, 94, 0, 0.04);
  border-color: #ff5e00;
  color: #ff5e00;
}
.care-notif-chip-error {
  background: rgba(243, 0, 0, 0.04);
  border-color: #f30000;
  color: #f30000;
}
.care-notif-unread {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-radius: 50%;
  background: #f30000;
  flex-shrink: 0;
}
.care-notif-item-title {
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1d;
}
.care-notif-item-desc {
  margin-top: 2px;
  font-family: 'SUIT', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  color: #838383;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.care-notif-item-time {
  margin-top: 8px;
  text-align: right;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #a0a0a0;
}

.care-notif-bottomnav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), var(--white));
  box-shadow: 0 -6px 23px rgba(0, 0, 0, 0.08);
}
.care-notif-nav-item {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #a0a0a0;
}
.care-notif-nav-item img {
  display: block;
  width: 20px;
  height: auto;
}
.care-notif-nav-item.is-active {
  font-weight: 800;
  color: #1d1d1d;
}

/* ── 떠 있는 알림 토스트 카드 (폰 왼쪽으로 걸쳐 나옴) — Figma export
   PNG로 교체(그림자/라운드가 이미지에 포함됨). export 캔버스가 카드보다
   살짝 커서(box-shadow 블리드 포함) 원래 left:0 기준에서 그만큼
   왼쪽으로 당겨 카드 자체의 시각적 위치를 유지한다. ── */
.care-toast {
  position: absolute;
  left: -46px;
  width: 516px;
}
.care-toast img {
  display: block;
  width: 100%;
  height: 100%;
}
.care-toast-1 { top: 256px; }
.care-toast-2 { top: 470px; }
.care-toast-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: 125px;
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.care-toast-chip-normal { background: rgba(2, 165, 144, 0.12); color: #02a590; }
.care-toast-chip-danger { background: rgba(243, 0, 0, 0.1); color: #f30000; }
.care-toast-title {
  font-family: 'SUIT', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.care-toast-desc {
  font-family: 'SUIT', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #838383;
}

/* =====================================================================
   INSTITUTION  Figma node 3287:10114 "부모님의 오늘 하루 상태를 데이터로
   한 화면에서 완벽하게 모니터링하세요" — 노트북 목업 안의 기관용 웹
   대시보드. Figma 원본이 이미 ~0.55x로 축소된 상태(라벨 8px대)라
   "읽히는 UI"가 아니라 미리보기 장식에 가깝다 — 레이아웃/색상/비율
   위주로 구현
===================================================================== */
.care-institution {
  background: #fafafc;
  padding: 200px max(var(--pad-x), calc((100% - 1400px) / 2)) 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.care-institution-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* ── 노트북 프레임 ── */
.care-laptop {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.care-laptop-lid {
  width: 100%;
  padding: 20px 20px 0;
  background: #e4e7ec;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 40px 70px -20px rgba(44, 66, 117, 0.25);
}
.care-laptop-camera {
  width: 60px;
  height: 8px;
  margin: 0 auto 12px;
  border-radius: 4px;
  background: #c7cbd3;
}
.care-laptop-screen {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #fff;
}
.care-laptop-screen-img {
  display: block;
  width: 100%;
  height: auto;
}
.care-laptop-base {
  width: 112%;
  height: 22px;
  background: linear-gradient(180deg, #d7dbe2, #b7bcc6);
  border-radius: 0 0 14px 14px;
}

/* ── 대시보드 앱 ── */
.care-inst-app {
  display: flex;
  align-items: stretch;
  font-family: 'SUIT', sans-serif;
}
.care-inst-sidebar {
  flex-shrink: 0;
  width: 190px;
  padding: 20px 14px;
  background: #fbfbfd;
  border-right: 1px solid #ececf2;
}
.care-inst-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-logo-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0399e;
}
.care-inst-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.care-inst-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}
.care-inst-nav a span {
  font-size: 10px;
  color: #a0a0a0;
}
.care-inst-nav a.is-active {
  background: rgba(224, 57, 158, 0.08);
  color: #e0399e;
  font-weight: 800;
}

.care-inst-main {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.care-inst-gnb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 44px;
  border-bottom: 1px solid #ececf2;
}
.care-inst-gnb-title {
  font-size: 12px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-gnb-title em {
  margin-left: 6px;
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: #00c8ae;
}
.care-inst-gnb-date {
  margin-left: auto;
  font-size: 10px;
  color: #a0a0a0;
}

.care-inst-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.care-inst-topgreet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.care-inst-hello {
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1d;
}
.care-inst-hello-sub {
  margin-top: 3px;
  font-size: 10px;
  color: #a0a0a0;
}
.care-inst-addbtn {
  padding: 7px 14px;
  border: none;
  border-radius: 100px;
  background: #e0399e;
  color: var(--white);
  font-family: 'SUIT', sans-serif;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* ── 통계 4칸 — 하나의 테두리 안에서 얇은 구분선으로 나뉜다 ── */
.care-inst-stats {
  display: flex;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  overflow: hidden;
}
.care-inst-stat {
  flex: 1 0 0;
  min-width: 0;
  padding: 16px;
  border-right: 1px solid #e7e7e7;
}
.care-inst-stat:last-child { border-right: none; }
.care-inst-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: #838383;
}
.care-inst-stat-value {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-stat-value span {
  margin-left: 2px;
  font-size: 9px;
  font-weight: 600;
  color: #373737;
}
.care-inst-stat-sub {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #373737;
}
.care-inst-stat-sub.is-up { color: #f30000; }
.care-inst-stat-sub.is-down { color: #3288f1; }

/* ── 좌/우 2단 컬럼 ── */
.care-inst-columns {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.care-inst-col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.care-inst-panel {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 14px;
}
.care-inst-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-panel-head b {
  color: #f30000;
  font-weight: 800;
}
.care-inst-panel-head a {
  font-weight: 500;
  color: #a0a0a0;
  cursor: pointer;
}

/* 저조/미흡 대상자 */
.care-inst-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.care-inst-avatar {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e7e7e7;
}
.care-inst-name {
  font-size: 10px;
  font-weight: 700;
  color: #1d1d1d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.care-inst-name span {
  margin-left: 4px;
  font-size: 8px;
  font-weight: 500;
  color: #a0a0a0;
}
.care-inst-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
}
.care-inst-chip-danger  { background: rgba(243, 0, 0, 0.08); color: #f30000; }
.care-inst-chip-warning { background: rgba(247, 160, 0, 0.1); color: #f7a000; }

.care-inst-risk-card {
  padding: 10px;
  border-radius: 10px;
  background: #fbfbfd;
}
.care-inst-risk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.care-inst-risk-alert {
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(243, 0, 0, 0.06);
}
.care-inst-risk-alert-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  color: #f30000;
}
.care-inst-risk-alert-head span {
  font-size: 8px;
  font-weight: 500;
  color: #a0a0a0;
}
.care-inst-risk-alert-desc {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}
.care-inst-risk-alert-quote {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #1d1d1d;
}
.care-inst-risk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fbfbfd;
}

/* 최근 개입 조치 이력 — 그리드 테이블 */
.care-inst-table {
  display: flex;
  flex-direction: column;
}
.care-inst-table-row {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 0.8fr 1.6fr 0.9fr 0.7fr;
  gap: 6px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 9px;
  color: #666;
}
.care-inst-table-row:last-child { border-bottom: none; }
.care-inst-table-head {
  font-weight: 700;
  color: #a0a0a0;
  border-bottom: 1px solid #e7e7e7;
}
.care-inst-table-row span:first-child {
  font-weight: 700;
  color: #1d1d1d;
}

/* 최근 알림 발송 */
.care-inst-noti-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.care-inst-noti-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.care-inst-unread {
  flex-shrink: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: #f30000;
}
.care-inst-unread.is-empty {
  background: transparent;
}
.care-inst-noti-name {
  font-size: 10px;
  font-weight: 700;
  color: #1d1d1d;
}
.care-inst-noti-desc {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
  color: #a0a0a0;
}

/* 안녕 지수 분포 게이지 + 대화 참여율 현황 */
.care-inst-mini-row {
  display: flex;
  gap: 16px;
}
.care-inst-mini-row .care-inst-panel {
  flex: 1 0 0;
  min-width: 0;
}
.care-inst-gauge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.care-inst-gauge svg {
  width: 100%;
  max-width: 160px;
}
.care-inst-gauge-value {
  margin-top: -20px;
  font-size: 22px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-gauge-value span {
  margin-left: 2px;
  font-size: 9px;
  font-weight: 600;
  color: #a0a0a0;
}
.care-inst-gauge-label {
  margin-top: 2px;
  font-size: 9px;
  color: #a0a0a0;
}

.care-inst-activity-panel {
  display: flex;
  flex-direction: column;
}
.care-inst-activity-stat {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fbfbfd;
}
.care-inst-activity-value {
  font-size: 18px;
  font-weight: 800;
  color: #1d1d1d;
}
.care-inst-activity-value span {
  margin-left: 2px;
  font-size: 9px;
  font-weight: 600;
  color: #a0a0a0;
}
.care-inst-activity-label {
  margin-top: 2px;
  font-size: 9px;
  color: #838383;
}

/* =====================================================================
   FINAL CTA  Figma node 3293:11384 "보호자에게는 안심을 기관에게는 효율을"
===================================================================== */
.care-final-cta {
  padding: 60px;
}
.care-final-cta-card {
  position: relative;
  height: 800px;
  padding: 200px 260px;
  border-radius: 50px;
  overflow: hidden;
  background: #1e1e1e;
  display: flex;
  align-items: center;
}
.care-final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.care-final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.care-final-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.care-final-cta-eyebrow {
  font-family: 'SUIT', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #02a590;
}
.care-final-cta-title {
  font-family: 'SUIT', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #000;
}
.care-final-cta-desc {
  margin-top: 10px;
  font-family: 'SUIT', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #373737;
}
.care-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.care-final-cta-btn-outline {
  background: transparent;
  border: 1px solid #02a590;
  color: #008271;
}
.care-final-cta-btn-outline:hover {
  box-shadow: 0 20px 36px rgba(2, 165, 144, 0.3);
}

/* =====================================================================
   반응형 — 이 페이지(ai-senior-care) 콘텐츠 전용. 헤더/푸터(GNB, footer)는
   공통 include라 landing.css가 이미 처리하고, --pad-x(landing.css)도
   전역이라 좌우 여백은 자동으로 따라온다 — 여기서는 폰트 크기, 섹션
   상하 padding, 2단 레이아웃의 스택 전환, 그리고 phone/laptop처럼
   px로 그려진 목업을 다룬다.

   목업(.care-phone, .care-notif-mockup, .care-inst-app 등)은 내부가
   전부 고정 px 절대좌표/퍼센트로 그려진 "장식"이라 개별 요소를 다시
   배치하는 대신 zoom으로 통째로 축소한다 — transform:scale과 달리
   zoom은 레이아웃이 차지하는 공간도 같이 줄어들어서(reflow에 반영)
   부모 flex 레이아웃이 남는 빈 공간 없이 자연스럽게 재배치된다.
===================================================================== */
@media (max-width: 1024px) {
  /* care-guardian-head와 같은 레벨(구조가 동일한 섹션 헤드 래퍼)인
     care-senior-head도 함께 center로 맞춘다. care-service-head/
     care-steps-head/care-institution-head는 이미 center라 대상 아님. */
  .care-guardian-head,
  .care-senior-head { align-items: center; text-align: center; }
  /* care-guardian-desc는 care-steps-head(text-align 없음)에서도 재사용돼
     위 규칙의 상속만으로는 안 닿는 경우가 있어 직접 못박는다. */
  .care-guardian-desc { text-align: center; }

  /* ── Hero ── */
  .care-hero { padding: 32px 40px 40px; }
  .care-hero-frame { border-radius: 20px; }
  .care-hero-content { gap: 24px; }
  /* JS의 clip-path 스크럽/닫힘 애니메이션이 ≤1024px에서는 꺼지므로
     (js/ai-senior-care.js의 ScrollTrigger.matchMedia 참고), 텍스트를
     nowrap으로 잘라내기 위한 전제가 사라진다 — 자연스럽게 줄바꿈되게 푼다. */
  .care-hero-title,
  .care-hero-desc,
  .care-hero-note { white-space: normal; }
  .care-hero-title { font-size: 48px; }
  .care-hero-desc { font-size: 24px; }
  .care-hero-note { font-size: 14px; }
  .care-btn { width: 210px; height: 56px; font-size: 16px; }
  .care-cta-btn { font-size: 16px; }

  /* ── Service ── */
  .care-service { padding: 140px max(var(--pad-x), calc((100% - 1400px) / 2)) 100px; gap: 60px; }
  .care-service-title { font-size: 42px; }
  .care-service-desc { font-size: 16px; }
  .care-service-card { height: 480px; padding: 30px; }
  .care-service-card-title { font-size: 20px; }
  .care-service-card-desc { font-size: 16px; }
  /* PC 버전 그래픽을 그대로 두고 크기만 축소해 상하좌우 중앙에 배치.
     care-mock-area가 카드의 남는 세로 공간을 flex:1로 차지하고(텍스트
     블록 높이만큼을 뺀 나머지 = "콘텐츠에 맞는 유동적인" 그래픽 영역),
     그 안에서 그래픽을 2축 모두 가운데 정렬한다. 카드 1/3(목업 1개)은
     .care-mock을 그대로 흐름에 놓고 zoom만 걸면 되지만, 카드 2(목업
     2개가 PC에서 대각선으로 겹치는 구성)는 개별 정렬로는 그 상대
     배치가 깨지므로, 원본 배치 그대로 유지한 채 .care-mock-group(그
     구성의 바운딩 박스 크기)을 통째로 zoom해서 하나의 그래픽처럼 다룬다. */
  .care-mock-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
    width: 100%;
    padding: 10px 0 30px 0;
    overflow: hidden;
  }
  .care-mock-area > .care-mock {
    position: static;
    flex-shrink: 0;
    zoom: 0.91;
  }
  .care-mock-group {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 376px;
    height: 272px;
    zoom: 0.91;
  }
  @media (hover: hover) and (pointer: fine) {
    .care-service-card:hover .care-mock-area > .care-mock,
    .care-service-card:hover .care-mock-group { transform: translateY(-6px); }
  }

  /* ── Senior ── */
  .care-senior { padding: 120px max(var(--pad-x), calc((100% - 1400px) / 2)); gap: 60px; }
  .care-senior-title { font-size: 42px; }
  .care-senior-desc { font-size: 16px; }
  .care-senior-copy { transform: translateY(-120px); max-width: 100%; }
  .care-senior-copy-title { font-size: 24px; }
  .care-senior-copy-desc { font-size: 16px; }
  .care-senior-row { gap: 20px; }
  .care-senior-phone-wrap .care-phone,
  .care-guardian-phone-wrap .care-phone { zoom: 0.65; }

  /* ── CTA 배너 ── */
  .care-cta-banner { padding: 100px max(var(--pad-x), calc((100% - 1400px) / 2)); border-radius: 20px; }
  .care-cta-title { font-size: 38px; }
  .care-cta-desc { font-size: 16px; }

  /* ── Guardian ── */
  /* .care-float-1~4는 .care-phone의 자식이라 .care-phone에 건 zoom을
     그대로 물려받아 같이 축소된다 — 다만 원래 좌표가 폰 바깥(음수/폭
     초과)까지 뻗어있어서, zoom이 걸려도 폰 좌우로 살짝 튀어나온다.
     지우는 대신 섹션에 overflow-x:hidden을 걸어 페이지 가로 스크롤만
     막는다(플로트 자체는 잘리는 정도로만 정리됨). */
  .care-guardian { padding: 120px max(var(--pad-x), calc((100% - 1400px) / 2)); gap: 100px; overflow-x: hidden; }
  .care-guardian-title { font-size: 42px; }
  .care-guardian-desc { font-size: 16px; }
  .care-guardian-row { gap: 20px; }
  .care-guardian-features { width: 100%; }
  .care-guardian-feature > p { font-size: 18px; }

  /* ── Explain(작동 방식/핵심 기능/알림 시스템) ── */
  .care-explain { padding: 120px max(var(--pad-x), calc((100% - 1400px) / 2)); gap: 140px; }
  .care-steps { gap: 60px; }
  .care-steps-row { height: 380px; }
  .care-step { padding: 30px; }
  .care-score-row, .care-notif-row { gap: 40px; }
  .care-score-card { padding: 0; }
  .care-score-note p { font-size: 14px; }
  .care-guardian2-feature-title { font-size: 18px; }
  .care-guardian2-feature-desc { font-size: 14px; }
  .care-notif-mockup { zoom: 0.75; }

  /* ── Institution ── */
  .care-institution { padding: 120px max(var(--pad-x), calc((100% - 1400px) / 2)) 140px; }
  .care-institution-head .care-guardian-title { font-size: 36px; }
  /* 대시보드가 HTML로 리플로우(사이드바+컬럼이 좁아지며 재배치)되지 않고,
     통째로 하나의 이미지처럼 zoom으로만 축소되게 한다 — width를 다시
     1400px 고정으로 되돌리고 zoom을 걸면, 내부 레이아웃(사이드바 190px,
     컬럼 flex 비율 등)은 데스크톱 그대로 유지된 채 시각적/레이아웃
     차지 공간만 함께 줄어든다. */
  .care-laptop { width: 1400px; zoom: 0.5; }

  /* ── Final CTA ── */
  .care-final-cta-card { height: auto; padding: 100px 60px; border-radius: 20px; }
  .care-final-cta-bg { object-position: right center; }
  .care-final-cta-title { font-size: 42px; }
  .care-final-cta-desc { font-size: 16px; }
  .care-final-cta-btn-outline { color: var(--white); border-color: var(--white); }
}

@media (max-width: 768px) {
  /* ── Hero ── */
  .care-hero { padding: 24px 24px 40px; }
  .care-hero-content { max-width: 100%; }
  .care-hero-title,
  .care-hero-desc,
  .care-hero-note { white-space: normal; }
  .care-hero-title { font-size: 34px; }
  .care-hero-desc { font-size: 19px; }
  /* care-hero-note를 배지/타이틀/설명/버튼 전부보다 아래, 맨 마지막으로
     — note는 .care-hero-copy(desc와 짝) → .care-hero-sub 두 단계 안쪽에
     있어서 order 하나로는 안 닿는다. copy와 sub를 둘 다 display:contents로
     풀어서 header/desc/actions/note를 전부 .care-hero-content의 직계 flex
     아이템으로 만든 뒤, 각각에 명시적 order를 줘서 순서를 못박는다. */
  .care-hero-copy,
  .care-hero-sub { display: contents; }
  .care-hero-header { order: 0; }
  .care-hero-desc { order: 1; }
  .care-hero-actions { order: 2; flex-direction: column; align-items: stretch; }
  .care-hero-note { order: 3; font-size: 12px; }
  .care-btn { width: 100%; height: 50px; font-size: 15px; }

  /* ── Service ── */
  .care-service { padding: 100px 24px 80px; gap: 40px; }
  .care-service-title { font-size: 30px; }
  .care-service-desc { font-size: 17px; }
  .care-service-cards { flex-direction: column; }
  /* 기본 규칙의 flex: 1 0 0(flex-basis:0)이 세로(column) 축에서는 높이를
     0으로 만들어버려서 카드가 패딩만 남고 찌그러지는 버그가 있었다 —
     column으로 바뀌는 브레이크포인트에서는 반드시 flex를 꺼야 한다. */
  .care-service-card { flex: none; width: 100%; height: auto; }
  /* 실제 기기에서 zoom 기반 스케일이 안정적이지 않아 — 모바일에서는
     그래픽 영역을 아예 숨기고 텍스트만 보여준다. */
  .care-mock-area { display: none; }

  /* ── Senior ── */
  .care-senior { padding: 100px 24px; gap: 40px; }
  .care-senior-title { font-size: 30px; }
  .care-senior-row { flex-direction: column; align-items: center; gap: 40px; }
  /* 세로로 쌓일 때는 목업이 먼저, 텍스트가 그 아래로 — DOM 순서(텍스트가
     먼저)와 반대라 order로 시각 순서만 바꾼다. */
  .care-senior-phone-wrap { order: -1; }
  .care-senior-copy { order: 1; transform: none; text-align: center; align-items: center; }
  .care-senior-copy-title { font-size: 24px; }
  .care-senior-phone-wrap .care-phone,
  .care-guardian-phone-wrap .care-phone { zoom: 0.6; }

  /* ── CTA 배너 ── */
  .care-cta { padding: 24px; }
  .care-cta-banner { padding: 70px 24px; }
  .care-cta-title { font-size: 28px; }
  .care-cta-desc { font-size: 17px; }
  .care-cta-btn { max-width: 100%; height: 50px; font-size: 15px; }

  /* ── Guardian ── */
  .care-guardian { padding: 100px 24px; gap: 60px; }
  .care-guardian-title { font-size: 30px; }
  .care-guardian-row { flex-direction: column; gap: 40px; }
  /* 세로로 쌓일 때는 목업이 먼저, 피처 카드 3개가 그 아래로 — DOM
     순서(피처가 먼저)와 반대라 order로 시각 순서만 바꾼다. */
  #care-guardian .care-guardian-phone-wrap { order: -1; }
  #care-guardian .care-guardian-features { order: 1; width: 100%; align-self: stretch; }
  #care-guardian .care-guardian-feature > p { font-size: 16px; text-align: center; }

  /* ── Explain ── */
  .care-explain { padding: 100px 24px; gap: 90px; }
  /* 아래 3줄 모두 기본 규칙이 flex: 1 0 0(flex-basis:0)인 자식을
     column으로 바꾸는 경우라, care-service-card와 동일한 이유로
     flex를 꺼주지 않으면 높이가 찌그러진다. */
  .care-steps-row { flex-direction: column; height: auto; gap: 20px; }
  .care-step { flex: none; border-radius: 40px; padding: 40px 30px; }
  .care-steps-row .care-step:not(:last-child) { margin-right: 0; }
  .care-step-title { font-size: 20px; }
  .care-step-desc { font-size: 16px; }
  .care-step-emoji svg { width: 48px; height: 48px; }
  .care-score-row { flex-direction: column; align-items: stretch; gap: 30px; }
  .care-score-left { flex: none; }
  .care-score-card { flex: none; padding: 0; }
  .care-score-donut-row { justify-content: center; }
  .care-score-legend { grid-template-columns: 1fr; }
  .care-score-legend-item { flex-direction: row; align-items: center; }
  .care-notif-row { flex-direction: column; align-items: stretch; gap: 40px; }
  /* 타이틀 → 목업 → 카드 3개 순서로 만들려면 .care-notif-left(제목+카드를
     한 덩어리로 묶은 래퍼) 안쪽에 목업을 끼워넣어야 하는데, 지금 목업은
     .care-notif-left의 형제 요소라 사이에 못 들어간다 — display:contents로
     .care-notif-left의 박스 자체를 없애서 그 자식(제목, 카드)이
     .care-notif-row의 직계 flex 아이템이 되게 만들고, order로 목업을
     그 사이에 끼운다(간격은 이제 .care-notif-row의 gap이 셋 사이에
     고르게 적용되므로 카드 리스트 자체의 margin-top은 꺼둔다). */
  .care-notif-left { display: contents; }
  .care-notif-left .care-guardian-head { order: 0; }
  .care-notif-mockup { order: 1; zoom: 0.55; margin: 0 auto; }
  .care-notif-left .care-guardian-features { order: 2; margin-top: 0; }

  /* ── Institution ── */
  .care-institution { padding: 100px 24px 100px; }
  .care-institution-head .care-guardian-title { font-size: 28px; }
  .care-laptop { zoom: 0.27; }

  /* ── Final CTA ── */
  .care-final-cta { padding: 24px; }
  .care-final-cta-card { padding: 60px 30px; }
  .care-final-cta-title { font-size: 30px; }
  .care-final-cta-desc { font-size: 17px; }
  .care-final-cta-eyebrow { font-size: 18px; }
}
