/* ===== Reset & Base ===== */
:root {
  /* 폰트 크기 */
  --font-size-50: 3.125rem;
  --font-size-40: 2.5rem;
  --font-size-30: 1.875rem;
  --font-size-28: 1.75rem;
  --font-size-24: 1.5rem;
  --font-size-20: 1.25rem;
  --font-size-18: 1.125rem;
  --font-size-16: 1rem;
  /* 행간 */
  --line-height-tight: 1.35;
  --line-height-normal: 1.6;
  --line-height-wide: 1.7;
  /* 컨테이너 */
  --container-max: 80rem;
  --container-padding: 3rem;
  --gnb-container-max: 112.5rem;
  --gnb-padding: 3rem;
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    sans-serif;
  font-size: var(--font-size-16);
  line-height: var(--line-height-normal);
  letter-spacing: -0.03em;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

/* 텍스처 오버레이 (드로잉/스케치 느낌) */
.texture-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===== Placeholders (아이콘/이미지 위치만 - 실제 파일 없음) ===== */
.placeholder {
  display: inline-block;
  background: #e0e0e0;
  border-radius: 0.25rem;
}

.placeholder--logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.placeholder--icon-sm {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.25rem;
  vertical-align: middle;
}

.placeholder--scroll {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.placeholder--profile {
  width: 24.375rem;
  aspect-ratio: 6/7;
  display: block;
  background: #5a5a5a;
  border-radius: 0.75rem;
}

.placeholder--skill {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 0.375rem;
}

.placeholder--project {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  background: #ddd;
  border-radius: 0.75rem;
}

.placeholder--example {
  width: 100%;
  min-height: 12.5rem;
  display: block;
  background: #e8e8e8;
  border-radius: 0.75rem;
}

.placeholder--contact-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--gnb {
  max-width: var(--gnb-container-max);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  transition: backdrop-filter 0.3s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--gnb-padding);
}

.header--scrolled {
  background: #dfe0e880;
  backdrop-filter: blur(1.875rem);
  -webkit-backdrop-filter: blur(1.875rem);
}

.header--menu-open {
  z-index: 10001;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header--menu-open .header__inner {
  background: #fff;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 10;
}

.header__logo .logo-svg {
  display: block;
  height: 2rem;
  width: auto;
  flex-shrink: 0;
}

.header__logo-text {
  font-size: var(--font-size-20);
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.header--scrolled .header__logo-text {
  opacity: 1;
  transform: translateX(0);
}

/* 로고 스크롤 시 요소 간격 -4 */
.header__logo .logo__circle,
.header__logo .logo__rect,
.header__logo .logo__triangle {
  transition: transform 0.3s ease;
}

.header--scrolled .header__logo .logo__circle {
  transform: translateX(0.5rem);
}

.header--scrolled .header__logo .logo__triangle {
  transform: translateX(-0.5rem);
}

.header__menu-btn {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: relative;
  z-index: 101;
}

.header__menu-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0);
}

.header__menu-icon--open {
  transform: scale(1.3);
}

.header__menu-icon--close {
  display: none;
}

.header--menu-open .header__menu-icon--open {
  display: none;
}

.header--menu-open .header__menu-icon--close {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  filter: none;
}

.header__nav {
  display: flex;
  gap: 3.75rem;
}

.header__nav a {
  font-size: var(--font-size-16);
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.header__nav-arrow {
  display: none;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 0.125rem;
  background: #333;
  transition: width 0.3s ease;
}

.header__nav a.header__nav-link--active::after {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  box-sizing: border-box;
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem var(--container-padding) 3rem;
  min-height: 0;
}

.hero__images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: var(--container-max);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__row {
  display: flex;
  width: 100%;
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards;
}

.hero__row--1 {
  justify-content: flex-start;
  animation-delay: 0.2s;
}

.hero__row--2 {
  justify-content: flex-end;
  animation-delay: 0.5s;
}

.hero__row--3 {
  justify-content: flex-start;
  animation-delay: 0.8s;
}

.hero__img {
  height: 9.25rem;
  width: auto;
  object-fit: contain;
}

.hero__img-mobile {
  display: none;
}

.hero__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  padding-top: 3rem;
  width: 3.9375rem;
  height: 3.9375rem;
  text-decoration: none;
  margin-top: 1.5rem;
}

.hero__scroll-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__scroll-icon {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 0.875rem;
  z-index: 1;
}

.hero__scroll-btn:hover {
  opacity: 0.85;
}

.hero__scroll-btn {
  animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

/* ===== Section Common ===== */
section {
  padding: 6rem var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.section-title {
  font-size: var(--font-size-40);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5625rem;
  text-transform: uppercase;
}

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

/* ===== About ===== */
.about__content {
  --about-gap: 2.8125rem; /* 45px */
  display: grid;
  grid-template-columns: 24.375rem 1fr;
  column-gap: var(--about-gap);
  row-gap: var(--about-gap);
  align-items: start;
}

.about__image {
  grid-column: 1;
  grid-row: 1 / -1;
  min-width: 0;
  align-self: stretch;
  display: flex;
}

.about__profile-img {
  width: 100%;
  max-width: 24.375rem;
  height: 88%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.75rem;
  display: block;
}

.about__skills {
  grid-column: 1 / -1;
  grid-row: 2;
  width: fit-content;
  min-width: max-content;
}

.about__info {
  grid-column: 2;
  grid-row: 1 / -1;
  min-width: 0;
  margin-left: 0;
}

.about__name {
  font-size: var(--font-size-28);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
  color: #000;
}

.about__role {
  font-size: var(--font-size-20);
  font-weight: 400;
  color: #666;
  margin-left: 0.5rem;
}

.about__intro {
  margin-bottom: 2.5rem;
}

.about__intro-title {
  font-size: var(--font-size-28);
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.about__text {
  font-size: var(--font-size-16);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  color: #333;
}

.about__text:last-child {
  margin-bottom: 0;
}

/* PC: 모바일 전용 줄바꿈/들여쓰기 초기화 */
@media (min-width: 48.01rem) {
  .about__text-br {
    display: none;
  }

  .about__text-line {
    display: inline;
    padding-left: 0;
  }
}

.about__resume-btn {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-decoration: none;
  color: #6699ff;
  font-size: var(--font-size-20);
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.about__resume-btn:hover {
  opacity: 0.85;
}

.about__resume-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__resume-icon img {
  width: 1.625rem;
  height: 1.625rem;
}

.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  margin-bottom: 2rem;
}

.about__detail-block strong {
  display: block;
  margin-bottom: 0.5rem;
}

.about__detail-block p {
  padding-left: 0.75rem;
  line-height: 1.9;
}

.about__experience-header {
  font-size: var(--font-size-16);
  white-space: nowrap;
}

.about__experience-header strong {
  display: inline;
}

.about__experience-desc {
  font-size: var(--font-size-16);
}

.about__experience-desc strong {
  display: inline;
}

.about__education-list {
  font-size: var(--font-size-16);
}

.about__education-list strong {
  display: inline;
  font-weight: 600;
}

.about__detail-label {
  display: inline-block;
  font-size: var(--font-size-16);
  font-weight: 700;
}

.about__detail-label-inner {
  display: inline-block;
  background-image: url("../images/img-sub-title.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 0.25rem 1rem;
  width: fit-content;
  border-radius: 9999px;
}

.about__skills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__skills-label {
  display: inline-block;
  background-image: url("../images/img-sub-title.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: var(--font-size-16);
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  width: fit-content;
}

.about__skills-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  background: #f8f8fa;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem; /* 좌우 40px */
}

.about__skills-divider-wrap {
  display: flex;
  flex-shrink: 0;
}

.about__skills-divider {
  width: 0.25rem;
  height: 5.125rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.about__skills-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about__skills-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px */
}

.about__skills-icons .skill-icon {
  position: relative;
  display: inline-flex;
}

.about__skills-icons .skill-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.15s,
    visibility 0.15s;
  margin-bottom: 0.5rem;
  pointer-events: none;
}

.about__skills-icons .skill-icon:hover::after {
  opacity: 1;
  visibility: visible;
}

.about__skills-icons img {
  width: 3.125rem; /* 50px */
  height: 3.125rem;
  object-fit: contain;
  flex-shrink: 0;
}

.about__skills-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ===== Project ===== */
.project__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.project__grid .project__card:nth-child(n + 4) {
  grid-column: span 1;
}

.project__card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f5f5f5;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.project__thumb {
  position: relative;
  aspect-ratio: 1/1;
}

.project__thumb .placeholder--project,
.project__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 모션 디자인 Lottie 오버레이 (썸네일 하단 정렬, 패딩 무시) */
.project__motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  transform: scale(1.2);
}

.project__motion svg {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: bottom;
}

.project__motion--bigsplay {
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transform: scale(1.55);
  transform-origin: center;
}

.project__motion--bigsplay svg {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: bottom;
}

.project__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.5rem 1.875rem; /* 상하 40px, 좌우 30px */
  background: rgb(46, 46, 46);
  color: #fff;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    background 0.25s ease;
}

.project__card:hover .project__overlay {
  opacity: 1;
}

.project__card[data-category="web"]:hover .project__overlay {
  background: #adcc00;
}

.project__card[data-category="app"]:hover .project__overlay {
  background: #3481ff;
}

.project__card[data-category="promotion"]:hover .project__overlay {
  background: #ee6f33;
}

.project__card[data-category="others"]:hover .project__overlay {
  background: #64748b;
}

.project__card--no-link {
  cursor: default;
}

.project__overlay-top {
  display: flex;
  flex-direction: column;
}

.project__category {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.project__name {
  font-size: var(--font-size-30);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

.project__tags {
  font-size: 1.125rem; /* 18px */
  color: #fff;
}

/* Project Filter (타이틀 아래 중앙 정렬) */
.project__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.project__filter-btn {
  font-size: var(--font-size-20);
  font-weight: 700;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    background-image 0.15s ease,
    border-radius 0.15s ease;
}

.project__filter-btn:hover {
  color: #333;
}

.project__filter-btn.is-active {
  color: #fff;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  background-image: url("../images/img-sub-title.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.project__card.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* ===== AI Workflow ===== */
.ai-workflow {
  text-align: center;
}

.ai-workflow__desc {
  font-size: 1.25rem;
  line-height: var(--line-height-wide);
  margin-bottom: 2rem;
  color: #333;
}

.ai-workflow__desc-emphasis {
  font-weight: 700;
  color: #333;
}

.ai-workflow__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 48rem) {
  .ai-workflow__tabs {
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .ai-workflow__desc {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 30rem) {
  .ai-workflow__tabs {
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.ai-workflow__tab--hidden {
  display: none;
}

.ai-workflow__panel {
  display: none;
}

.ai-workflow__panel.is-active {
  display: block;
}

.ai-workflow__card {
  position: relative;
  background: #5e9bff;
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.ai-workflow__card-icon {
  display: block;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.ai-workflow__card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ai-workflow__card-title {
  font-size: var(--font-size-28);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0;
}

.ai-workflow__card-row {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.ai-workflow__card-desc {
  flex: 1;
  font-size: 1.25rem;
  line-height: var(--line-height-wide);
  margin: 0;
}

.ai-workflow__card-actions {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ai-workflow__card-actions.is-hidden {
  display: none !important;
}

.ai-workflow__card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 0.0625rem solid #fff;
  border-radius: 9999px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ai-workflow__card-btn:hover {
  background: #fff;
  color: #5e9bff;
}

.ai-workflow__card-content h3:not(.ai-workflow__card-title) {
  font-size: var(--font-size-28);
  line-height: var(--line-height-tight);
  margin: 0 0 1rem;
}

.ai-workflow__card-content p:not(.ai-workflow__card-desc) {
  font-size: var(--font-size-16);
  line-height: var(--line-height-wide);
  margin: 0 0 1.5rem;
}

.ai-workflow__question {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.ai-workflow__question-icon {
  display: block;
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.ai-workflow__question-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0;
}

.ai-workflow__examples {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.ai-workflow__example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ai-workflow__example-img {
  width: 610px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.ai-workflow__example-text h4 {
  font-size: var(--font-size-28);
  line-height: var(--line-height-tight);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-workflow__example-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.375rem;
  background: #333;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 400;
  font-size: 1.125rem;
}

.ai-workflow__example-text p {
  font-size: 1.25rem;
  line-height: var(--line-height-wide);
}

.ai-workflow__slider-nav {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ai-workflow__slider-btn {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.ai-workflow__slider-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.ai-workflow__slider-btn img {
  display: block;
}

/* ===== Contact + Footer ===== */
.contact-footer {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 37.5rem;
  margin: 0 auto;
  width: 100%;
}

.contact__card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}

.contact__card.is-hidden {
  display: none !important;
}

.contact__img.is-hidden {
  display: none !important;
}

.contact__text-box {
  flex: 0 0 30rem;
  width: 30rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 7rem;
  padding: 0 2rem;
  background: #f7f8fd;
  border-radius: 0.75rem;
  box-sizing: border-box;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact__badge--icon {
  padding: 0;
}

.contact__badge--icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.contact__text {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: #333;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

.contact__img {
  width: auto;
  height: 7rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.contact__card:nth-child(2) .contact__badge--label {
  margin-left: auto;
}

/* ===== Footer ===== */
.footer {
  flex-shrink: 0;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: var(--font-size-16);
  line-height: var(--line-height-normal);
}

/* ===== Responsive ===== */
/* 태블릿 */
@media (max-width: 64rem) {
  :root {
    --container-padding: 2rem;
    --gnb-padding: 2rem;
  }

  .hero {
    padding: 6.25rem var(--container-padding) 3.75rem;
  }

  .hero__images {
    gap: 1rem;
  }

  .hero__img {
    height: 8.75rem;
  }

  .header__inner {
    position: relative;
    z-index: 101;
    padding: 1.25rem var(--gnb-padding);
  }

  .header__logo {
    z-index: 10;
  }

  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 100%);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    font-size: 1.25rem;
    padding: 2rem var(--gnb-padding);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 1;
  }

  .header--menu-open .header__nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav a {
    font-size: 1.25rem;
  }

  .header__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    padding: 0.5rem 0;
  }

  .header__nav-arrow {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }

  .about__content {
    --about-gap: 2.8125rem; /* 45px */
  }

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

  .project__filter {
    gap: 1.5rem;
  }

  .project__filter-btn {
    font-size: var(--font-size-16);
  }

  .ai-workflow__card {
    padding: 2rem;
  }

  .ai-workflow__card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ai-workflow__card-actions {
    align-self: flex-end;
  }

  .ai-workflow__example {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ai-workflow__example-img {
    width: 100%;
    max-width: 100%;
  }

  .ai-workflow__question-text {
    font-size: 1.5rem;
  }

  .ai-workflow__example-text h4 {
    font-size: var(--font-size-28);
  }

  .ai-workflow__example-text p {
    font-size: var(--font-size-16);
  }

  .contact__cards {
    max-width: 37.5rem;
  }

  .contact__text-box {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 20rem;
    height: 5rem;
  }

  .contact__text {
    font-size: 1.5rem;
  }

  .contact__img {
    height: 5rem;
  }
}

/* 태블릿 - About 섹션 1열 전환 (겹침 방지) */
@media (max-width: 80rem) {
  .about__content {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--about-gap);
  }

  .about__image {
    grid-column: auto;
    grid-row: auto;
  }

  .about__skills {
    grid-column: auto;
    grid-row: auto;
  }

  .about__info {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
  }
}

/* 태블릿 - iPad Air 이상 (768px ~ 1280px) */
@media (min-width: 48.01rem) and (max-width: 80rem) {
  html {
    font-size: 118.75%; /* 19px - 페이지 전체 폰트 확대 */
  }

  :root {
    --container-padding: 2rem;
    --gnb-padding: 2rem;
  }

  .header__nav {
    gap: 2rem;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 3.5rem var(--container-padding) 3.5rem;
  }

  .hero__inner {
    padding: 5rem var(--container-padding) 3rem;
  }

  .hero__images {
    display: none;
  }

  .hero__img-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero__scroll-btn {
    margin-top: 1.5rem;
  }

  section {
    padding: 3.5rem var(--container-padding);
  }

  .section-title {
    font-size: var(--font-size-40);
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .about {
    min-height: auto;
  }

  .about__content {
    --about-gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .about__image {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about__info {
    order: 2;
    width: 100%;
  }

  .about__skills {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .about__image .placeholder--profile,
  .about__image .about__profile-img {
    width: 60%;
    max-width: 60%;
    height: auto;
    min-height: 12rem;
    aspect-ratio: 6/7;
    border-radius: 1rem;
    margin: 0 auto;
    display: block;
  }

  .about__name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: var(--font-size-24);
    margin-bottom: 1rem;
  }

  .about__role {
    font-size: var(--font-size-16);
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .about__intro {
    text-align: center;
    margin-bottom: 2rem;
  }

  .about__intro-title {
    font-size: var(--font-size-20);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .about__text {
    font-size: 0.9375rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 23rem;
    line-height: 1.7;
  }

  .about__text-line {
    display: block;
    line-height: 1.5;
  }

  .about__text-line--indent2 {
    margin-top: -1em;
    margin-bottom: -1em;
    line-height: 1.5;
  }

  .about__resume-btn {
    font-size: var(--font-size-16);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: none;
    width: fit-content;
  }

  .about__details {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about__detail-block {
    background: #f8f8fa;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about__detail-label .about__detail-label-inner {
    background: #4a4a4a;
    background-image: none;
  }

  .about__detail-block p {
    padding-left: 0;
    margin-top: 0.75rem;
    line-height: 1.9;
  }

  .about__experience-header {
    white-space: normal;
  }

  .about__skills-label {
    background: #4a4a4a;
    background-image: none;
  }

  .about__skills-container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: #f8f8fa;
    border-radius: 1rem;
  }

  .about__skills-divider-wrap {
    width: 100%;
    justify-content: center;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .about__skills-divider {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about__skills-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .about__skills-icons {
    gap: 0.75rem;
    justify-content: center;
  }

  .about__skills-icons img {
    width: 3rem;
    height: 3rem;
  }

  .about__skills-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #333;
  }

  .project__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .project__filter {
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .ai-workflow__tabs {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .ai-workflow__card {
    padding: 2rem;
  }

  .ai-workflow__card-title {
    font-size: var(--font-size-20);
  }

  .ai-workflow__card-desc {
    font-size: 0.9375rem;
  }

  .ai-workflow__card-btn {
    font-size: 0.875rem;
  }

  .ai-workflow__card-content h3:not(.ai-workflow__card-title) {
    font-size: var(--font-size-20);
  }

  .ai-workflow__card-content p:not(.ai-workflow__card-desc) {
    font-size: 0.875rem;
  }

  .ai-workflow__desc {
    font-size: var(--font-size-16);
    margin-bottom: 0;
  }

  .ai-workflow__question {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .ai-workflow__question-text {
    font-size: 1.5rem;
  }

  .ai-workflow__examples {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .ai-workflow__examples::-webkit-scrollbar {
    display: none;
  }

  .ai-workflow__slider-nav {
    display: flex;
  }

  .ai-workflow__example {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.125rem;
    box-sizing: border-box;
  }

  .ai-workflow__example-img {
    width: 100%;
    max-width: 100%;
  }

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

  .ai-workflow__example-text h4 {
    font-size: var(--font-size-24);
    margin-bottom: 0.875rem;
    justify-content: center;
  }

  .ai-workflow__example-text p {
    font-size: var(--font-size-16);
  }

  .ai-workflow__example-num {
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }

  .contact__cards {
    max-width: 37.5rem;
  }

  .contact__card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .contact__text-box {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 5rem;
    padding: 0 1.5rem;
  }

  .contact__text {
    font-size: 1.25rem;
  }

  .contact__img {
    flex-shrink: 0;
    height: 5rem;
    align-self: center;
  }

  .contact__card:nth-child(2) .contact__badge--label {
    margin-left: auto;
  }

  .contact-footer {
    height: auto;
    min-height: auto;
  }
}

/* 모바일 */
@media (max-width: 48rem) {
  :root {
    --container-padding: 1.5rem;
    --gnb-padding: 1.5rem;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 5rem var(--container-padding) 3rem;
  }

  .about {
    min-height: auto;
  }

  .about__content {
    --about-gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .about__image {
    order: 1;
  }

  .about__info {
    order: 2;
  }

  .about__skills {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .about__image {
    width: 100%;
  }

  .about__image .placeholder--profile,
  .about__image .about__profile-img {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 12rem;
    aspect-ratio: 1/1;
    border-radius: 1rem;
    margin: 0;
    display: block;
  }

  .about__name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: var(--font-size-24);
    margin-bottom: 1rem;
  }

  .about__role {
    font-size: var(--font-size-16);
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .about__intro {
    text-align: center;
    margin-bottom: 2rem;
  }

  .about__intro-title {
    font-size: var(--font-size-20);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .about__text {
    font-size: 0.9375rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
    line-height: 1.7;
  }

  .about__text-line {
    display: block;
    line-height: 1.5;
  }

  .about__text-line--indent2 {
    margin-top: -1em;
    margin-bottom: -1em;
    line-height: 1.5;
  }

  .about__resume-btn {
    font-size: var(--font-size-16);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    display: none;
    width: fit-content;
  }

  .about__info {
    width: 100%;
  }

  .about__details {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about__detail-block {
    background: #f8f8fa;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about__detail-label .about__detail-label-inner {
    background: #4a4a4a;
    background-image: none;
  }

  .about__detail-block p {
    padding-left: 0;
    margin-top: 0.75rem;
    line-height: 1.9;
  }

  .about__experience-header {
    white-space: normal;
  }

  .about__skills-label {
    background: #4a4a4a;
    background-image: none;
  }

  .about__skills-container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: #f8f8fa;
    border-radius: 1rem;
  }

  .about__skills-divider-wrap {
    width: 100%;
    justify-content: center;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .about__skills-divider {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about__skills-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .about__skills-icons {
    gap: 0.75rem;
    justify-content: center;
  }

  .about__skills-icons img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .about__skills-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #333;
  }

  .hero__inner {
    padding: 2.5rem 0 1.5rem;
  }

  .hero__scroll-btn {
    width: 3rem;
    height: 3rem;
    padding-top: 1.25rem;
  }

  .hero__scroll-icon {
    width: 1.25rem;
    height: 0.75rem;
  }

  .hero__images {
    display: none;
  }

  .hero__img-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  section {
    padding: 1.875rem var(--container-padding);
  }

  .section-title {
    font-size: var(--font-size-30);
    margin-bottom: 1rem;
  }

  .header__inner {
    position: relative;
    z-index: 101;
    padding: 1rem var(--gnb-padding);
  }

  .header__logo {
    z-index: 10;
  }

  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 100%);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    font-size: 1.25rem;
    padding: 2rem var(--gnb-padding);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 1;
  }

  .header--menu-open .header__nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav a {
    font-size: 1.25rem;
  }

  .header__nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    padding: 0.5rem 0;
  }

  .header__nav-arrow {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }

  .project__filter {
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .project__filter-btn {
    font-size: var(--font-size-16);
    padding: 0.5rem 0.75rem;
  }

  .project__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0rem;
  }

  .project__overlay {
    padding: 1.125rem 1.125rem;
    justify-content: center;
    align-items: center;
  }

  .project__overlay .project__overlay-top {
    align-items: center;
    text-align: center;
  }

  .project__overlay .project__category,
  .project__overlay .project__tags {
    display: none;
  }

  .project__overlay .project__name {
    font-size: var(--font-size-16);
    text-align: center;
  }

  .ai-workflow__desc {
    font-size: var(--font-size-16);
    overflow-wrap: break-word;
    margin-bottom: 0rem;
  }

  .ai-workflow__desc .ai-workflow__desc-br {
    display: none;
  }

  .ai-workflow__tabs {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .ai-workflow__card {
    padding: 1.25rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
  }

  .ai-workflow__card-icon {
    margin-bottom: 1rem;
    width: 3rem;
    height: 3rem;
    object-fit: contain;
  }

  .ai-workflow__card-content {
    gap: 1rem;
  }

  .ai-workflow__card-title {
    font-size: var(--font-size-20);
  }

  .ai-workflow__card-row {
    gap: 0.75rem;
  }

  .ai-workflow__card-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .ai-workflow__card-btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }

  .ai-workflow__card-content h3:not(.ai-workflow__card-title) {
    font-size: var(--font-size-20);
    margin-bottom: 0.75rem;
  }

  .ai-workflow__card-content p:not(.ai-workflow__card-desc) {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .ai-workflow__question {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .ai-workflow__question-icon {
    width: 48px;
  }

  .ai-workflow__question-text {
    font-size: 1.25rem;
  }

  .ai-workflow__examples {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .ai-workflow__examples::-webkit-scrollbar {
    display: none;
  }

  .ai-workflow__slider-nav {
    display: flex;
  }

  .ai-workflow__example {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.125rem;
    box-sizing: border-box;
  }

  .ai-workflow__example-img {
    width: 100%;
    max-width: 100%;
  }

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

  .ai-workflow__example-text h4 {
    font-size: var(--font-size-24);
    margin-bottom: 0.875rem;
    justify-content: center;
  }

  .ai-workflow__example-text p {
    font-size: var(--font-size-16);
  }

  .ai-workflow__example-num {
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }

  .contact__card:first-child {
    -webkit-tap-highlight-color: transparent;
  }

  .contact__card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .contact__text-box {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 5rem;
    padding: 0 1.5rem;
  }

  .contact__text {
    font-size: 1.25rem;
  }

  .contact__img {
    flex-shrink: 0;
    height: 5rem;
    align-self: center;
  }

  .contact__card:nth-child(2) .contact__badge--label {
    margin-left: auto;
  }

  .contact-footer {
    height: auto;
    min-height: auto;
  }
}

/* 소형 모바일 */
@media (max-width: 30rem) {
  :root {
    --container-padding: 1rem;
    --gnb-padding: 1rem;
  }

  .hero {
    padding: 4.5rem var(--container-padding) 2.5rem;
  }

  .hero__inner {
    padding: 2rem 0 1.25rem;
  }

  .hero__scroll-btn {
    width: 2.75rem;
    height: 2.75rem;
    padding-top: 1rem;
    margin-top: 1.5rem;
  }

  .hero__scroll-icon {
    width: 1.125rem;
    height: 0.625rem;
  }

  .hero__images {
    gap: 0.625rem;
  }

  .hero__img {
    height: 5rem;
  }

  .about__content {
    --about-gap: 1.25rem;
  }

  .about__image .placeholder--profile,
  .about__image .about__profile-img {
    aspect-ratio: 1/1;
  }

  .about__detail-block {
    padding: 1rem 1.25rem;
  }

  .about__skills-container {
    padding: 1rem 1.25rem;
  }

  .about__skills-divider-wrap {
    padding: 0 1.25rem;
  }

  .about__skills-icons img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .about__skills-category {
    font-size: 0.75rem;
  }

  .about__name {
    font-size: var(--font-size-20);
  }

  .about__intro-title {
    font-size: var(--font-size-18);
  }

  .about__text {
    font-size: 0.875rem;
  }

  .header__inner {
    padding: 0.875rem var(--gnb-padding);
  }

  .header__nav {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .header__logo .logo-svg {
    height: 1.5rem;
  }

  .header__logo-text {
    font-size: var(--font-size-16);
  }

  .section-title {
    font-size: var(--font-size-28);
    margin-bottom: 0.875rem;
  }

  .project__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .project__filter {
    gap: 0.75rem;
  }

  .project__filter-btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
  }

  .ai-workflow__card {
    padding: 1rem 1.125rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
  }

  .ai-workflow__card-icon {
    margin-bottom: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .ai-workflow__card-content {
    gap: 0.75rem;
  }

  .ai-workflow__card-title {
    font-size: var(--font-size-20);
  }

  .ai-workflow__card-desc {
    font-size: 0.875rem;
  }

  .ai-workflow__card-btn {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
  }

  .ai-workflow__question-text {
    font-size: 1.125rem;
  }

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

  .ai-workflow__example-text h4 {
    font-size: var(--font-size-20);
    justify-content: center;
  }

  .ai-workflow__example-text p {
    font-size: 0.875rem;
  }

  .contact__card:first-child {
    -webkit-tap-highlight-color: transparent;
  }

  .contact__text-box {
    height: 4.5rem;
    padding: 0 1rem;
  }

  .contact__img {
    height: 4.5rem;
  }

  .contact__text {
    font-size: 1.125rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .contact__badge {
    width: 3rem;
    height: 3rem;
    font-size: 0.625rem;
  }
}
