/* ========================================
   LocalPOP - 디자인 시스템 기반 스타일시트
   Namespace-based Structure
   ======================================== */

/* ────────────────────────────────────────
   ■ 1) DESIGN SYSTEM : 폰트 시스템
   ──────────────────────────────────────── */

@font-face {
  font-family: 'Paperozi';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Paperozi';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
  font-weight: 600;
}

/* ────────────────────────────────────────
   ■ 2) DESIGN SYSTEM : CSS 변수 (폰트 + 컬러)
   ──────────────────────────────────────── */

:root {
  /* Font Tokens */
  --font-title-lg: 500 30px 'Paperozi';
  --font-title-md: 500 20px 'Paperozi';
  --font-title-xs: 500 18px 'Paperozi';
  --font-text-strong: 600 16px 'Pretendard';
  --font-text-base: 300 16px 'Pretendard';
  --font-caption: 300 15px 'Pretendard';

  /* Brand Colors */
  --color-main: #2F2FBC;

  /* Accent Colors */
  --color-accent-yellow: #FFB600;
  --color-accent-orange: #FF6B43;
  --color-accent-brown: #6D5249;

  /* Text Colors */
  --color-text-strong: #151515;
  --color-text-base: #575757;
  --color-text-light: #888;

  /* Background Colors */
  --color-bg-white: #FFFFFF;
  --color-bg-soft: #F9F8F5;

  /* Line */
  --color-line: #E6E6E6;

  /* Navigation */
  --nav-width: 250px;
  --tablet-nav-height: 60px;
  --mobile-nav-height: 56px;
}

/* ────────────────────────────────────────
   ■ Reset & Base
   ──────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font: var(--font-text-base);
  color: var(--color-text-base);
  background: var(--color-bg-white);
  line-height: 1.6;
  letter-spacing: -0.1%;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ────────────────────────────────────────
   ■ 3) Container & Section Base
   ──────────────────────────────────────── */

.intro-container,
.about-container,
.service-container,
.process-container,
.team-container,
.portfolio-container,
.contact-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.intro-section,
.about-section,
.service-section,
.process-section,
.team-section,
.portfolio-section {
  padding: 60px 0 120px;
  background: var(--color-bg-white);
}

/* ────────────────────────────────────────
   ■ 4) NAVIGATION - Desktop
   ──────────────────────────────────────── */

.nav-desktop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: var(--nav-width);
  height: 100vh;
  background: var(--color-bg-white);
  border-right: 1px solid var(--color-line);
  padding: 40px 0;
  z-index: 1000;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .main-wrap {
    margin-left: var(--nav-width);
  }
}

.nav-logo {
  padding: 0 32px;
}

.nav-logo img {
  width: 80%;
}

.nav-logo-text {
  display: none;
  font: 600 24px 'Paperozi', sans-serif;
  color: var(--color-main);
}

.nav-menu {
  list-style: none;
  margin-top: 30px;
  padding: 20px 24px;
  border-top: 1px solid var(--color-line);
}

.nav-desktop .nav-menu li {
  margin-bottom: 2px;
}

.nav-desktop .nav-menu a,
.nav-menu a {
  color: var(--color-text-strong);
  text-decoration: none;
  font: var(--font-text-strong);
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--color-main);
}

.nav-desktop .nav-menu a {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 12px;
  font-weight: 400;
}

.nav-portfolio-count {
  color: var(--color-text-light);
  font: 600 11px 'Pretendard';
}

/* ────────────────────────────────────────
   ■ 5) NAVIGATION - Tablet
   ──────────────────────────────────────── */

.nav-tablet {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--tablet-nav-height);
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-line);
  z-index: 1000;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-tablet {
    display: block;
  }

  .main-wrap {
    padding-top: var(--tablet-nav-height);
  }
}

.nav-tablet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.nav-tablet .nav-logo {
  padding: 0;
}

.nav-tablet .nav-logo img {
  max-height: 36px;
  width: auto;
}

.nav-tablet .nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  border: none;
}

.nav-tablet .nav-menu a {
  font: var(--font-caption);
  font-weight: 500;
}

/* ────────────────────────────────────────
   ■ 6) NAVIGATION - Mobile
   ──────────────────────────────────────── */

.nav-mobile {
  display: none;
}

@media (max-width: 767px) {
  .nav-mobile {
    display: block;
  }

  .main-wrap {
    padding-top: var(--mobile-nav-height);
  }
}

.nav-mobile .nav-logo {
  padding: 0;
}

.nav-mobile .nav-logo img {
  max-height: 30px;
  width: auto;
}

.nav-mobile-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mobile-nav-height);
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1001;
}

.nav-hamburger {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-strong);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-overlay {
  position: fixed;
  top: var(--mobile-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-white);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-menu {
  list-style: none;
  padding: 24px 16px;
}

.nav-mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--color-text-strong);
  text-decoration: none;
  font: 500 18px 'Pretendard';
}

/* ════════════════════════════════════════════════════════════
   SECTION STYLES
   ════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────
   ■ 7) HERO SECTION
   ──────────────────────────────────────── */

.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero-inner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 410px;
  height: auto;
  position: relative;
  z-index: 10;
  margin-left: 3vw;
}

.hero-title {
  font: 600 48px 'Paperozi';
  color: var(--color-main);
  margin-bottom: 16px;
  line-height: 1.2;
}


/* Floating Icons */
.hero-float {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.hero-float-1 {
  width: 79px;
  left: 10vw;
  top: 31%;
  animation: float1 4s ease-in-out infinite;
}

.hero-float-2 {
  width: 62px;
  left: 4vw;
  top: 15%;
  animation: float2 5s ease-in-out infinite;
}

.hero-float-3 {
  width: 96px;
  right: 0;
  bottom: 7%;
  animation: float3 4.5s ease-in-out infinite;
}

.hero-float-4 {
  width: 70px;
  left: 14vw;
  bottom: 18%;
  animation: float4 5.5s ease-in-out infinite;
}

.hero-float-5 {
  width: 92px;
  right: 14vw;
  top: 12%;
  animation: float5 3.5s ease-in-out infinite;
}

.hero-float-6 {
  width: 110px;
  right: 7vw;
  top: 42%;
  animation: float6 4.2s ease-in-out infinite;
}

.hero-float-7 {
  width: 95px;
  left: 28vw;
  top: 8%;
  animation: float7 4.8s ease-in-out infinite;
}

.hero-float-8 {
  width: 70px;
  left: 5vw;
  bottom: 4%;
  animation: float8 5.2s ease-in-out infinite;
}

.hero-float-9 {
  width: 80px;
  left: 20vw;
  top: 56%;
  animation: float9 4.3s ease-in-out infinite;
}

.hero-float-10 {
  width: 85px;
  right: 18vw;
  bottom: 25%;
  animation: float10 4.7s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes float4 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(-3deg);
  }
}

@keyframes float5 {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes float6 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}

@keyframes float7 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(5deg);
  }
}

@keyframes float8 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes float9 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-13px) rotate(3deg);
  }
}

@keyframes float10 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-11px) rotate(-4deg);
  }
}

@media (max-width: 1240px) {
  .hero-logo {
    max-width: 350px;
  }

  .hero-float-1 {
    width: 79px;
    left: 10vw;
    top: 31%;
  }

  .hero-float-2 {
    width: 62px;
    left: 4vw;
    top: 15%;
  }

  .hero-float-3 {
    width: 96px;
    bottom: 20%
  }

  .hero-float-4 {
    display: none;
  }

  .hero-float-5 {
    width: 92px;
    right: 14vw;
    top: 12%;
  }

  .hero-float-6 {
    width: 110px;
    right: 7vw;
    top: 42%;
  }

  .hero-float-7 {
    width: 95px;
    left: 28vw;
    top: 8%;
  }

  .hero-float-8 {
    width: 70px;
    left: 5vw;
    bottom: 4%;
  }

  .hero-float-9 {
    width: 80px;
    left: 12vw;
    top: 56%;
  }

  .hero-float-10 {
    bottom: 6%;
    right: 25vw;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-inner {
    min-height: 500px;
  }

  .hero-logo {
    max-width: 270px;
    min-width: auto;
  }

  .hero-float {
    transform: scale(0.65);
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-inner {
    min-height: 350px;
  }

  .hero-logo {
    max-width: 180px;
  }

  .hero-float {
    transform: scale(0.5);
  }

  .hero-float-1 {
    width: 70px;
    right: 69vw;
    top: 20%;
    left: auto;
  }

  .hero-float-2 {
    width: 51px;
    top: 12%;
  }

  .hero-float-3 {
    width: 81px;
    bottom: 5%;
  }


  .hero-float-5 {
    width: 70px;
    right: 11vw;
    top: 9%;
  }

  .hero-float-6 {
    /* display: none; */
    width: 80px;
    left: 73vw;
    right: auto;
  }

  .hero-float-7 {
    display: none;
  }

  .hero-float-8 {
    width: 50px;
    left: 5vw;
    bottom: 4%;
  }

  .hero-float-9 {
    width: 60px;
    left: 12vw;
    top: 56%;
  }

  .hero-float-10 {
    display: none;
  }
}

/* ────────────────────────────────────────
   ■ 8) INTRO SECTION
   ──────────────────────────────────────── */

.intro-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.intro-headline-wrap,
.intro-content {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {

  .intro-headline-wrap,
  .intro-content {
    width: 50%;
  }
}

.intro-headline {
  font: 400 30px/1.4 'Paperozi', sans-serif;
  color: var(--color-text-strong);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .intro-headline {
    font-size: 28px;
    margin-bottom: 0;
  }
}

.intro-title {
  font: var(--font-title-md);
  color: var(--color-accent-yellow);
  margin-bottom: 22px;
}

.intro-desc {
  font: 300 16px/1.4 'Pretendard', sans-serif;
  color: var(--color-text-base);
  margin-bottom: 36px;
}

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

.intro-btn-primary,
.intro-btn-outline {
  padding: 14px 28px;
  font: 600 15px 'Pretendard', sans-serif;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.intro-btn-primary {
  background: var(--color-main);
  color: white;
  border: none;
}

.intro-btn-primary:hover {
  background: #2424a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(47, 47, 188, 0.3);
}

.intro-btn-primary.shake {
  animation: shake 0.6s ease-in-out;
}

.intro-btn-outline {
  background: transparent;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}

.intro-btn-outline:hover {
  border-color: var(--color-main);
  color: var(--color-main);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(47, 47, 188, 0.15);
}

/* ────────────────────────────────────────
   ■ 9) ABOUT SECTION
   ──────────────────────────────────────── */

.about-section {
  border-top: 1px solid var(--color-line);
}

.about-header {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 60px;
}

.about-header-left,
.about-header-right {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {

  .about-header-left,
  .about-header-right {
    width: 50%;
  }
}

.about-title {
  font: var(--font-title-lg);
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .about-title {
    gap: 8px;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
    z-index: 5;
  }
}


.about-num {
  color: var(--color-main);
}

.about-intro-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 16px;
}

.about-checklist {
  list-style: none;
  font: var(--font-text-base);
  color: var(--color-text-base);
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.about-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about-body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  gap: 40px 0;
}

@media (min-width: 768px) {
  .about-body {
    gap: 0;
  }
}

.about-image-wrap {
  padding: 0 12px;
  width: 100%;
  position: relative;
  margin-bottom: 70px;
}

.about-icon {
  position: absolute;
  z-index: 1;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(8deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-8deg);
  }
}

.about-icon.icon-1 {
  bottom: 20px;
  right: 20px;
  width: 20%;
  min-width: 90px;
  animation: float2 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.about-icon.icon-2 {
  bottom: -10%;
  left: 20px;
  width: 22%;
  min-width: 80px;
  animation-delay: 0.3s;
  animation: wave 2.5s ease-in infinite;
  transform-origin: center bottom;
}

.about-icon.icon-3 {
  top: -30px;
  right: 20px;
  width: 10%;
  min-width: 40px;
  max-width: 46px;
}

@media (min-width: 768px) {
  .about-image-wrap {
    width: 50%;
    padding-right: 30px;
  }
}

.about-image-wrap-img img {
  border-radius: 8px;
  width: 100%;
  z-index: 0;
}

.about-image-wrap.placeholder {
  background: #eaeaea;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .about-image-wrap {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    margin-bottom: 100px;
  }
}

.about-features {
  padding: 0 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 768px) {
  .about-features {
    width: 50%;
    gap: 110px;
  }
}

.about-feature-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 24px;
}

.about-feature-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  margin-bottom: 16px;
  line-height: 1.4;
}

.about-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tag {
  padding: 6px 12px;
  background: #FFF4D9;
  color: #FF9500;
  border-radius: 4px;
  font: var(--font-caption);
  font-weight: 500;
}

/* ────────────────────────────────────────
   ■ 10) SERVICE SECTION
   ──────────────────────────────────────── */

.service-section {
  border-top: 1px solid var(--color-line);
}

.service-header {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 60px;
}

.service-header-left,
.service-header-right {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {

  .service-header-left,
  .service-header-right {
    width: 50%;
  }
}

.service-title {
  font: var(--font-title-lg);
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .service-title {
    margin-bottom: 0;
  }
}


.service-num {
  color: var(--color-main);
}

.service-intro-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 12px;
}

.service-intro-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.4;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.service-card {
  position: relative;
  background: #F9F8F5;
  border-radius: 8px;
  padding: 24px;
  padding-bottom: 80px;
  min-height: 220px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-grid .service-card:nth-child(2) {
  transform: rotateZ(-3deg);
}

.service-grid .service-card:nth-child(2):hover {
  transform: rotateZ(-3deg) translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-grid .service-card:nth-child(3) {
  transform: rotateZ(2deg);
}

.service-grid .service-card:nth-child(3):hover {
  transform: rotateZ(2deg) translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card-title {
  font: var(--font-title-xs);
  color: var(--color-text-strong);
  margin-bottom: 16px;
}

.service-card-list {
  list-style: none;
}

.service-card-list li {
  font: var(--font-caption);
  color: var(--color-text-base);
  margin-bottom: 8px;
}

.service-card-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .service-card-icon {
    max-height: 48px;
  }
}

/* ────────────────────────────────────────
   ■ 11) PROCESS SECTION
   ──────────────────────────────────────── */
.process-section {
  border-top: 1px solid var(--color-line);
}

.process-container {
  position: relative;
}

@media (min-width: 1024px) {
  .process-container {
    display: flex;
    gap: 24px;
  }

  .process-left-sticky {
    width: 50%;
    position: sticky;
    top: 50px;
    align-self: flex-start;
    height: fit-content;
  }

  .process-right-content {
    width: 50%;
  }
}

.process-header {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 60px;
}

@media (min-width: 1024px) {
  .process-header {
    display: block;
    margin: 0;
  }
}

.process-header-left,
.process-header-right {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {

  .process-header-left,
  .process-header-right {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .process-header-left {
    width: 100%;
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  .process-header-right {
    width: 100%;
    margin-bottom: 60px;
  }
}

.process-title {
  font: var(--font-title-lg);
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  background: var(--color-bg-white);
  padding: 0 0 10px;
  gap: 8px;
}

@media (min-width: 768px) {
  .process-title {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .process-title {
    position: sticky;
    top: 120px;
    z-index: 5;
  }
}

.process-num {
  color: var(--color-main);
}

.process-intro-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 24px;
}

.process-intro-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.4;
}

.process-timeline {
  position: relative;
  max-width: 100%;
}

.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.process-step:first-child .process-step-badge {
  background: #AAAAFF;
}

.process-step:first-child .process-info-label {
  color: #AAAAFF;
}

.process-step:nth-child(2) .process-step-badge {
  background: #7A7AE2;
}

.process-step:nth-child(2) .process-info-label {
  color: #7A7AE2;
}

.process-step:last-child .process-step-badge {
  background: #6D5349;
}

.process-step:last-child .process-info-label {
  color: #6D5349;
}

@media (min-width: 768px) {
  .process-step {
    gap: 40px;
  }
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--color-main);
  color: var(--color-bg-white);
  font: var(--font-caption);
  font-weight: 600;
  border-radius: 4px;
  height: fit-content;
}

.process-step-line {
  position: absolute;
  left: 52px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: var(--color-line);
}

@media (min-width: 768px) {
  .process-step-line {
    left: 60px;
  }
}

.process-step:last-child .process-step-line {
  display: none;
}

.process-step-line-last {
  display: none;
}

.process-step-box {
  flex: 1;
  padding-top: 4px;
}

.process-step-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 8px;
}

.process-step-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  margin-bottom: 24px;
}

.process-step-info {
  background: var(--color-bg-soft);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-info-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

@media (min-width: 640px) {
  .process-info-row {
    flex-direction: row;
  }
}

.process-info-label {
  flex-shrink: 0;
  width: 80px;
  font: var(--font-caption);
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.6;
}

.process-info-value {
  font: var(--font-caption);
  color: var(--color-text-base);
  line-height: 1.6;
}

/* ────────────────────────────────────────
   ■ 12) TEAM SECTION
   ──────────────────────────────────────── */

.team-section {
  border-top: 1px solid var(--color-line);
}

.team-header {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 60px;
}

.team-header-left,
.team-header-right {
  padding: 0 12px;
  width: 100%;
}

@media (min-width: 768px) {

  .team-header-left,
  .team-header-right {
    width: 50%;
  }
}

.team-title {
  font: var(--font-title-lg);
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  background: var(--color-bg-white);
  padding: 10px 0;
}

@media (min-width: 768px) {
  .team-title {
    margin-bottom: 0;
    position: sticky;
    top: 50px;
    z-index: 5;
  }
}

.team-num {
  color: var(--color-main);
}

.team-intro-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 24px;
}

.team-intro-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.7;
}

.team-hashtags {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.team-hashtag-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-hashtag-tag {
  display: block;
  width: fit-content;
  padding: 6px 12px;
  background: #FFF4D9;
  color: #FF9500;
  border-radius: 4px;
  font: var(--font-caption);
  font-weight: 500;
}

.team-hashtag-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card-image {
  background: #eaeaea;
  margin-bottom: 16px;
  position: relative;
}

.team-card-image:after {
  content: "";
  display: block;
  width: 45px;
  height: 35px;
  background: url(/images/team-deco.png);
  position: absolute;
  top: -20px;
  left: calc(50% - 22px);
}

.team-card:nth-child(2) .team-card-image:after {
  transform: rotateZ(51deg);
}

.team-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.team-card-name {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 12px;
}

.team-card-role {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  font: var(--font-caption);
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 16px;
  background: #F3F3FB;
  color: var(--color-main);
}

.team-card-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-card-list {
  list-style: none;
  border-top: 1px dashed var(--color-line);
  padding-top: 16px;
}

.team-card-list li {
  font: var(--font-caption);
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.team-card-list li::before {
  content: "· ";
  color: var(--color-text-light);
}

/* ────────────────────────────────────────
   ■ 13) PORTFOLIO SECTION
   ──────────────────────────────────────── */
.portfolio-section {
  border-top: 1px solid var(--color-line);
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.portfolio-title {
  font: var(--font-title-lg);
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-num {
  color: var(--color-main);
}

.portfolio-filter {
  display: flex;
  gap: 8px;
}

@media (min-width: 768px) {
  .portfolio-filter {
    justify-content: flex-end;
  }
}

.portfolio-filter-btn {
  padding: 8px 16px;
  background: #f4f2ff;
  border: none;
  border-radius: 4px;
  font: var(--font-caption);
  font-weight: 500;
  color: var(--color-main);
  cursor: pointer;
  transition: all 0.2s;
}

.portfolio-filter-btn:hover {
  background: #e8e4ff;
}

.portfolio-filter-btn.active {
  background: var(--color-main);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 16px;
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card-image {
  aspect-ratio: 4/2.2;
  background: #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-title {
  font: var(--font-text-strong);
  color: var(--color-text-strong);
  margin-bottom: 8px;
}

.portfolio-card-type {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #EFEAFF;
  color: var(--color-main);
  font: var(--font-caption);
}

.portfolio-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--color-text-base);
}

/* Portfolio "더 보기" Button */
.portfolio-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.portfolio-more-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-main);
  color: #fff;
  font: var(--font-text-base);
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.portfolio-more-btn:hover {
  background: #4242d8;
  transform: translateY(-2px);
}

/* Portfolio Page Styles */
.portfolio-page .portfolio-section {
  padding-top: 120px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio-page .portfolio-section {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .portfolio-page .portfolio-section {
    padding-top: 80px;
  }
}

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

@media (min-width: 768px) {
  .portfolio-full-page .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-back-wrap {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
}

.portfolio-back-link {
  display: inline-block;
  color: var(--color-text-base);
  font: var(--font-text-sm);
  text-decoration: none;
  transition: color 0.2s ease;
}

.portfolio-back-link:hover {
  color: var(--color-main);
}

/* Active nav state for portfolio page */
.portfolio-page .nav-menu li.active a {
  color: var(--color-main);
  font-weight: 600;
}

/* ────────────────────────────────────────
   ■ 14) CONTACT SECTION
   ──────────────────────────────────────── */

.contact-section {
  background: var(--color-bg-soft);
  padding: 80px 0 100px;
}

.contact-header {
  margin-bottom: 48px;
}

.contact-title {
  font: var(--font-title-lg);
  margin-bottom: 12px;
  color: var(--color-text-strong);
}

.contact-subtitle {
  font: var(--font-text-base);
  color: var(--color-text-base);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 24px 20px;
  }
}

.contact-card-icon {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
}

.contact-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-card-icon svg {
  stroke: rgba(255, 255, 255, 0.5);
}

.contact-card-title {
  font: 600 16px/1.4 'Pretendard', sans-serif;
  margin-bottom: 16px;
}

.contact-card-content p {
  font: 400 14px/1.6 'Pretendard', sans-serif;
  color: var(--color-text-light);
  margin: 0;
}

.contact-card-note {
  display: block;
  font: 400 12px/1.4 'Pretendard', sans-serif;
  color: #afafaf;
  margin-top: 12px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-cta-btn {
  background: var(--color-main);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font: 500 16px/1.4 'Pretendard', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-cta-btn:hover {
  background: #2121a2;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgb(47 47 188 / 28%);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

.contact-cta-btn.shake {
  animation: shake 0.6s ease-in-out;
}

.contact-cta-note {
  font: 400 13px/1.4 'Pretendard', sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/* ────────────────────────────────────────
   ■ 15) FOOTER
   ──────────────────────────────────────── */

.footer {
  background: #4a4a4a;
  color: white;
  padding: 56px 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font: 600 28px/1.2 'Paperozi', sans-serif;
  color: #fff;
  width: min-content;
}

.footer-tagline {
  font: 400 12px/1.4 'Pretendard', sans-serif;
  color: var(--color-accent-yellow);
  text-decoration: underline;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.footer-info p {
  font: 400 13px/1.6 'Pretendard', sans-serif;
  color: rgba(255, 255, 255, 0.75);
}

.footer-copyright {
  font: 400 12px/1.4 'Pretendard', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
}

/* ────────────────────────────────────────
   ■ 16) MODAL
   ──────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 8px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-portfolio {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--color-text-strong);
}

.modal-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 24px;
}

/* Form Styles */
.modal-form-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.modal-form-group {
  padding: 0 8px;
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .modal-form-group {
    width: 50%;
  }
}

.modal-form-full {
  width: 100%;
}

.modal-form-group label {
  display: block;
  font: var(--font-caption);
  font-weight: 500;
  color: var(--color-text-strong);
  margin-bottom: 8px;
}

.modal-required {
  color: var(--color-accent-orange);
}

.modal-form-group input,
.modal-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  font: var(--font-text-base);
  transition: border-color 0.2s;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--color-main);
}

.modal-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.modal-form-hint {
  display: block;
  margin-top: 6px;
  font: 400 12px/1.4 'Pretendard', sans-serif;
  color: var(--color-text-light);
}

.modal-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-main);
  color: white;
  border: none;
  border-radius: 4px;
  font: var(--font-text-strong);
  cursor: pointer;
  transition: background 0.2s;
}

.modal-submit-btn:hover {
  background: #2424a0;
}

/* Portfolio Modal Detail */
.modal-portfolio-body h3 {
  margin-bottom: 8px;
}

.modal-portfolio-body .portfolio-card-type {
  margin-bottom: 24px;
}

.modal-portfolio-image {
  aspect-ratio: 16/9;
  background: #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.modal-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-portfolio-video {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.modal-portfolio-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.slide.video-slide {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.video-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-portfolio-title {
  font: var(--font-title-md);
  color: var(--color-text-strong);
  margin-bottom: 8px;
}

.modal-portfolio-desc {
  font: var(--font-text-base);
  color: var(--color-text-base);
  line-height: 1.7;
}

/* ────────────────────────────────────────
   ■ 18) PORTFOLIO SLIDER
   ──────────────────────────────────────── */

.portfolio-slider {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: #eaeaea;
}

.slides-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--color-text-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slide-prev:hover,
.slide-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.slide-prev {
  left: 12px;
}

.slide-next {
  right: 12px;
}

.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slide-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  color: var(--color-text-light);
  font: var(--font-caption);
}

/* Body scroll lock */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {

  .slide-prev,
  .slide-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .slide-prev {
    left: 8px;
  }

  .slide-next {
    right: 8px;
  }

  .slide-dots {
    bottom: 12px;
  }

  .slide-dot {
    width: 8px;
    height: 8px;
  }
}

/* ────────────────────────────────────────
   ■ Toast Notifications
   ──────────────────────────────────────── */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  pointer-events: auto;
  animation: toastSlideIn 0.3s ease-out;
  border-left: 4px solid var(--color-main);
}

.toast.success {
  border-left-color: #22c55e;
}

.toast.error {
  border-left-color: #ef4444;
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.toast.success .toast-icon {
  background: #dcfce7;
  color: #22c55e;
}

.toast.error .toast-icon {
  background: #fee2e2;
  color: #ef4444;
}

.toast-message {
  font: var(--font-text-base);
  color: var(--color-text-strong);
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--color-text-strong);
}

.toast.hiding {
  animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 480px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .toast {
    max-width: 100%;
  }
}

/* ────────────────────────────────────────
   ■ SCROLL ANIMATIONS
   ──────────────────────────────────────── */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.fade-out {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

.fade-in-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-in-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-in-up.delay-5 {
  transition-delay: 0.5s;
}

.fade-in-up.delay-6 {
  transition-delay: 0.6s;
}

/* ────────────────────────────────────────
   ■ HERO & INTRO INITIAL LOAD ANIMATIONS
   ──────────────────────────────────────── */

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner.animate-in {
  animation: heroFadeIn 1s ease-out forwards;
}

.intro-section.animate-in {
  animation: introSlideUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

/* ────────────────────────────────────────
   ■ ABOUT IMAGE WRAP ANIMATIONS
   ──────────────────────────────────────── */

@keyframes aboutImgFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aboutIconFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-image-wrap .about-img {
  opacity: 0;
}

.about-image-wrap.animate-in .about-img {
  animation: aboutImgFadeIn 0.8s ease-out forwards;
}

.about-image-wrap .about-icon {
  opacity: 0;
}

.about-image-wrap.animate-in .about-icon.icon-1 {
  animation: aboutIconFadeIn 0.5s ease-out 0.4s forwards;
}

.about-image-wrap.animate-in .about-icon.icon-2 {
  animation: aboutIconFadeIn 0.5s ease-out 0.6s forwards;
}

.about-image-wrap.animate-in .about-icon.icon-3 {
  animation: aboutIconFadeIn 0.5s ease-out 0.8s forwards;
}