/* ==============================
   JIN KOREA HOME PAGE
================================= */

:root {
  --navy: #052653;
  --deep-navy: #020f22;
  --blue: #073d7d;
  --gold: #c8953e;
  --light-gold: #e7bd72;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --text-gray: #bac6d4;
}


/* ±âº» ¼³Á¤ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Arial,
    "Noto Sans KR",
    sans-serif;

  color: var(--white);
  background: var(--deep-navy);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}


/* ==============================
   HEADER
================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 86px;

  z-index: 1000;

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.12);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  background:
    rgba(2, 15, 34, 0.96);

  box-shadow:
    0 10px 35px
    rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* »ó´Ü ·Î°í */

.header-logo {
  width: 160px;
  height: 66px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.header-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  background: var(--white);
  border-radius: 4px;

  padding: 4px 7px;
}


/* ¸Þ´º */

.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navigation a {
  position: relative;

  padding: 9px 0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;

  color:
    rgba(255, 255, 255, 0.86);

  transition: color 0.25s ease;
}

.navigation a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.navigation a:hover {
  color: var(--white);
}

.navigation a:hover::after {
  width: 100%;
}


/* ¸ð¹ÙÀÏ ¸Þ´º ¹öÆ° */

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 6px auto;

  background: var(--white);
}


/* ==============================
   HERO
================================= */

.hero {
  position: relative;

  min-height: 100vh;
  min-height: 780px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      125deg,
      #020f22 0%,
      #052653 48%,
      #074b8d 100%
    );
}


/* °ÝÀÚ ¹è°æ */

.hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      transparent
    );
}


/* ¹è°æ ºû È¿°ú */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(30px);

  pointer-events: none;
}

.hero-glow-one {
  top: 5%;
  right: 6%;

  width: 450px;
  height: 450px;

  background:
    rgba(24, 112, 205, 0.24);
}

.hero-glow-two {
  left: 38%;
  bottom: -200px;

  width: 460px;
  height: 460px;

  background:
    rgba(200, 149, 62, 0.09);
}


/* HOME ³»ºÎ */

.hero-inner {
  position: relative;
  z-index: 10;

  padding-top: 100px;

  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(360px, 0.88fr);

  align-items: center;
  gap: 70px;
}


/* ¿ÞÂÊ ¹®±¸ */

.hero-content {
  animation:
    fadeUp 0.9s ease both;
}

.hero-small-title {
  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;

  color: var(--light-gold);
}

.hero h1 {
  max-width: 760px;

  font-size:
    clamp(48px, 6vw, 82px);

  line-height: 1.08;

  letter-spacing: -3px;

  color: var(--white);
}

.hero-subtitle {
  margin-top: 27px;

  font-size:
    clamp(19px, 2.2vw, 28px);

  line-height: 1.45;
  font-weight: 500;

  color:
    rgba(255, 255, 255, 0.84);
}

.hero-description {
  margin-top: 18px;

  font-size: 14px;
  letter-spacing: 0.7px;

  color:
    rgba(255, 255, 255, 0.55);
}


/* ¹öÆ° */

.hero-buttons {
  margin-top: 40px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-width: 156px;
  height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border: 1px solid transparent;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--gold);
}

.button-primary:hover {
  background: #daa64d;
}

.button-outline {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.5);

  background:
    rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
  border-color: var(--white);

  background:
    rgba(255, 255, 255, 0.08);
}


/* ¿À¸¥ÂÊ ·Î°í */

.hero-logo-area {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  animation:
    fadeIn 1.2s 0.2s ease both;
}

.hero-logo-card {
  position: relative;

  width: 100%;
  max-width: 500px;

  padding: 26px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 32px 80px
    rgba(0, 0, 0, 0.28);

  transform: perspective(1000px)
    rotateY(-4deg);

  transition:
    transform 0.4s ease;
}

.hero-logo-card:hover {
  transform:
    perspective(1000px)
    rotateY(0deg)
    translateY(-6px);
}

.hero-logo-card::before {
  content: "";

  position: absolute;
  inset: -1px;

  z-index: -1;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.8),
      rgba(200, 149, 62, 0.45),
      rgba(7, 61, 125, 0.7)
    );
}

.hero-logo-card img {
  width: 100%;

  object-fit: contain;

  border-radius: 10px;
}


/* ±¹°¡¸í */

.country-tags {
  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;

  color:
    rgba(255, 255, 255, 0.78);
}

.country-tags i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--gold);
}


/* ½ºÅ©·Ñ Ç¥½Ã */

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 30px;

  z-index: 10;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color:
    rgba(255, 255, 255, 0.55);
}

.scroll-down span {
  font-size: 9px;
  letter-spacing: 2px;
}

.scroll-down i {
  position: relative;

  width: 1px;
  height: 42px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.2);
}

.scroll-down i::after {
  content: "";

  position: absolute;
  top: -100%;
  left: 0;

  width: 100%;
  height: 70%;

  background: var(--gold);

  animation:
    scrollLine 1.8s infinite;
}


/* ÀÓ½Ã ´ÙÀ½ ¿µ¿ª */

.temporary-section {
  min-height: 400px;

  padding: 120px 0;

  color: #182431;
  background: var(--white);
}


/* ==============================
   ANIMATION
================================= */

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(35px);
  }

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

}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

}

@keyframes scrollLine {

  0% {
    top: -100%;
  }

  100% {
    top: 130%;
  }

}


/* ==============================
   TABLET
================================= */

@media (max-width: 1024px) {

  .navigation {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 56px;
  }

}


/* ==============================
   MOBILE
================================= */

@media (max-width: 820px) {

  .container {
    width: min(
      100% - 30px,
      650px
    );
  }

  .header {
    height: 76px;
  }

  .header-logo {
    width: 135px;
    height: 56px;
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    top: 76px;
    left: 0;

    width: 100%;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    padding: 24px 28px 30px;

    background:
      rgba(2, 15, 34, 0.98);

    border-top:
      1px solid
      rgba(255, 255, 255, 0.1);
  }

  .navigation.open {
    display: flex;
  }

  .navigation a {
    width: 100%;

    padding: 12px 0;

    font-size: 14px;
  }

  .hero {
    min-height: auto;

    padding:
      130px 0
      105px;
  }

  .hero-inner {
    padding-top: 0;

    grid-template-columns: 1fr;

    text-align: center;
    gap: 52px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size:
      clamp(42px, 12vw, 62px);

    letter-spacing: -2px;
  }

  .hero-logo-area {
    order: -1;
  }

  .hero-logo-card {
    max-width: 390px;

    padding: 18px;

    transform: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .scroll-down {
    display: none;
  }

}


/* ÀÛÀº ÈÞ´ëÆù */

@media (max-width: 480px) {

  .hero {
    padding-top: 112px;
  }

  .hero-small-title {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    max-width: 310px;

    font-size: 12px;
    line-height: 1.7;
  }

  .hero-buttons {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .country-tags {
    gap: 8px;

    font-size: 10px;
  }

}
/* ==============================
   ABOUT US
================================= */

.about-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #172536;
  background: #ffffff;
}


/* ¹è°æ Àå½Ä */

.about-section::before {
  content: "";

  position: absolute;
  top: 0;
  right: -200px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(7, 61, 125, 0.07),
      transparent 68%
    );

  pointer-events: none;
}


/* ABOUT Á¦¸ñ */

.about-heading {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin-bottom: 75px;
}

.section-label {
  position: relative;

  display: inline-block;

  margin-bottom: 18px;
  padding-left: 46px;

  color: #c8953e;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.section-label::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 32px;
  height: 2px;

  background: #c8953e;

  transform: translateY(-50%);
}

.about-heading h2 {
  color: #052653;

  font-size:
    clamp(42px, 5.3vw, 68px);

  line-height: 1.14;
  letter-spacing: -3px;
}

.about-heading-text {
  max-width: 650px;

  margin-top: 24px;

  color: #6c7988;

  font-size: 18px;
  line-height: 1.8;
}


/* È¸»ç ¼Ò°³ ¿µ¿ª */

.company-introduction {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 75px;

  padding: 55px 0;

  border-top: 1px solid
    rgba(5, 38, 83, 0.15);

  border-bottom: 1px solid
    rgba(5, 38, 83, 0.15);
}

.company-introduction-title {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.company-number {
  flex-shrink: 0;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #052653;

  font-size: 14px;
  font-weight: 800;
}

.small-title {
  margin-bottom: 7px;

  color: #c8953e;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.company-introduction-title h3 {
  color: #052653;

  font-size: 34px;
  letter-spacing: -1px;
}

.company-introduction-text {
  color: #677484;

  font-size: 18px;
  line-height: 1.9;
}

.company-introduction-text p + p {
  margin-top: 16px;
}

.company-introduction-text .company-lead {
  color: #172536;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.65;
}


/* ±¹°¡ ³×Æ®¿öÅ© */

.about-country-network {
  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr;

  align-items: center;

  margin: 55px 0 90px;
  padding: 32px 38px;

  background: #f4f7fa;

  border: 1px solid
    rgba(5, 38, 83, 0.1);
}

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

.country-name {
  display: block;

  color: #073d7d;

  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.about-country p {
  margin-top: 5px;

  color: #7b8794;

  font-size: 13px;
}

.country-line {
  position: relative;

  width: 100px;
  height: 1px;

  background:
    rgba(200, 149, 62, 0.65);
}

.country-line::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 7px;
  height: 7px;

  border-top: 1px solid #c8953e;
  border-right: 1px solid #c8953e;

  transform:
    translateY(-50%)
    rotate(45deg);
}


/* Vision Mission */

.vision-mission-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: stretch;
}

.vision-box,
.mission-box {
  position: relative;

  min-height: 520px;

  padding: 58px;

  overflow: hidden;
}

.vision-box {
  color: #172536;
  background: #f6f3ed;

  border:
    1px solid
    rgba(200, 149, 62, 0.23);
}

.mission-box {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #03172f,
      #073d7d
    );
}


/* Ä«µå »ó´Ü */

.box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 52px;
}

.box-number {
  color: #c8953e;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.box-label {
  color: #c8953e;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}


/* Vision */

.vision-box h3,
.mission-box h3 {
  font-size:
    clamp(31px, 3.3vw, 46px);

  line-height: 1.25;
  letter-spacing: -1.8px;
}

.vision-box h3 {
  color: #052653;
}

.gold-line {
  width: 65px;
  height: 3px;

  margin: 35px 0;

  background: #c8953e;
}

.vision-box > p {
  max-width: 460px;

  color: #6b7785;

  font-size: 17px;
  line-height: 1.9;
}


/* Mission */

.mission-box::after {
  content: "";

  position: absolute;
  right: -130px;
  bottom: -140px;

  width: 390px;
  height: 390px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.mission-english {
  position: relative;
  z-index: 2;

  margin-top: 25px;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 15px;
  line-height: 1.8;
}

.mission-list {
  position: relative;
  z-index: 2;

  margin-top: 34px;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 17px;

  padding: 14px 0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);

  color:
    rgba(255, 255, 255, 0.88);

  font-size: 15px;
}

.mission-list li span {
  color: #e7bd72;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}


/* ==============================
   ½ºÅ©·Ñ ¾Ö´Ï¸ÞÀÌ¼Ç
================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* ==============================
   TABLET
================================= */

@media (max-width: 1024px) {

  .company-introduction {
    gap: 45px;
  }

  .country-line {
    width: 55px;
  }

  .vision-box,
  .mission-box {
    padding: 42px;
  }

}


/* ==============================
   MOBILE
================================= */

@media (max-width: 820px) {

  .about-section {
    padding: 95px 0;
  }

  .about-heading {
    margin-bottom: 55px;
  }

  .about-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .company-introduction {
    grid-template-columns: 1fr;

    gap: 32px;

    padding: 42px 0;
  }

  .company-introduction-text .company-lead {
    font-size: 21px;
  }

  .about-country-network {
    grid-template-columns: 1fr;

    gap: 17px;

    margin-bottom: 65px;
  }

  .country-line {
    width: 1px;
    height: 30px;

    margin: 0 auto;
  }

  .country-line::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;

    transform:
      translateX(-50%)
      rotate(135deg);
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .vision-box,
  .mission-box {
    min-height: auto;

    padding: 42px 30px;
  }

  .box-top {
    margin-bottom: 36px;
  }

}


/* ÀÛÀº ÈÞ´ëÆù */

@media (max-width: 480px) {

  .about-heading h2 {
    font-size: 36px;
  }

  .about-heading-text {
    font-size: 16px;
  }

  .company-introduction-title {
    gap: 15px;
  }

  .company-number {
    width: 47px;
    height: 47px;
  }

  .company-introduction-title h3 {
    font-size: 28px;
  }

  .company-introduction-text {
    font-size: 16px;
  }

  .company-introduction-text .company-lead {
    font-size: 19px;
  }

  .about-country-network {
    padding: 28px 20px;
  }

  .vision-box,
  .mission-box {
    padding: 36px 24px;
  }

  .vision-box h3,
  .mission-box h3 {
    font-size: 31px;
  }

}


/* ==============================
   PARTNERS & ADVISORS
================================= */

.advisor-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #172536;
  background: var(--light-gray);
}


/* ¼½¼Ç Á¦¸ñ */

.advisor-heading {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin-bottom: 75px;
}

.advisor-heading h2 {
  color: #052653;

  font-size:
    clamp(42px, 5.3vw, 68px);

  line-height: 1.14;
  letter-spacing: -3px;
}


/* ¾îµå¹ÙÀÌÀú Ä«µå ±×¸®µå */

.advisor-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 24px;
}


/* ¾îµå¹ÙÀÌÀú Ä«µå */

.advisor-card {
  position: relative;

  padding: 48px 45px 45px;

  background: #ffffff;

  border:
    1px solid
    rgba(5, 38, 83, 0.1);

  box-shadow:
    0 18px 45px
    rgba(5, 38, 83, 0.07);
}

.advisor-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #c8953e;
}


/* ¼Ò°³ ³»¿ë */

.advisor-role {
  display: inline-block;

  margin-bottom: 15px;

  color: #c8953e;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.advisor-name {
  color: #052653;

  font-size: 28px;
  letter-spacing: -0.5px;
}

.advisor-name-local {
  margin-top: 4px;

  color: #052653;

  font-size: 17px;
  font-weight: 700;
}

.advisor-position {
  margin-top: 14px;

  color: #6c7988;

  font-size: 14px;
  line-height: 1.7;
}

.advisor-divider {
  width: 100%;
  height: 1px;

  margin: 25px 0;

  background:
    rgba(5, 38, 83, 0.12);
}

.advisor-specialty-title {
  margin-bottom: 9px;

  color: #052653;

  font-size: 13px;
  font-weight: 800;
}

.advisor-specialty {
  margin-bottom: 22px;

  color: #4e5d6c;

  font-size: 14px;
  line-height: 1.9;
}

.advisor-description {
  margin-bottom: 28px;

  color: #677484;

  font-size: 14px;
  line-height: 1.9;
}

.advisor-link {
  display: inline-flex;
  align-items: center;

  height: 46px;

  padding: 0 22px;

  color: #052653;
  background: transparent;

  border: 1px solid #052653;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.advisor-link:hover {
  color: #ffffff;
  background: #c8953e;

  border-color: #c8953e;
}


/* ==============================
   TABLET
================================= */

@media (max-width: 1024px) {

  .advisor-card {
    padding: 38px 32px;
  }

}


/* ==============================
   MOBILE
================================= */

@media (max-width: 820px) {

  .advisor-section {
    padding: 95px 0;
  }

  .advisor-heading {
    margin-bottom: 55px;
  }

  .advisor-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .advisor-name {
    font-size: 25px;
  }

}


/* ==============================
   OUR NETWORK
================================= */

.network-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #020f22 0%,
      #052653 56%,
      #073d7d 100%
    );
}


/* ¹è°æ ºû Àå½Ä */

.network-section::before {
  content: "";

  position: absolute;
  top: -250px;
  left: -200px;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(27, 117, 210, 0.2),
      transparent 68%
    );

  pointer-events: none;
}

.network-section::after {
  content: "";

  position: absolute;
  right: -250px;
  bottom: -250px;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(200, 149, 62, 0.12),
      transparent 68%
    );

  pointer-events: none;
}


/* Á¦¸ñ */

.network-heading {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin-bottom: 65px;
}

.network-heading h2 {
  margin-top: 12px;

  color: #ffffff;

  font-size:
    clamp(42px, 5.3vw, 68px);

  line-height: 1.14;
  letter-spacing: -3px;
}

.network-heading > p {
  max-width: 700px;

  margin-top: 24px;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 17px;
  line-height: 1.9;
}


/* ¼¼°èÁöµµ */

.network-map-wrapper {
  position: relative;
  z-index: 2;

  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.27),
      rgba(200, 149, 62, 0.4),
      rgba(255, 255, 255, 0.05)
    );

  box-shadow:
    0 35px 80px
    rgba(0, 0, 0, 0.28);
}

.network-map {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #03162d,
      #062e59
    );
}

.world-network-svg {
  display: block;

  width: 100%;
  height: auto;
}


/* ´ë·ú */

.map-land {
  fill:
    rgba(255, 255, 255, 0.09);

  stroke:
    rgba(255, 255, 255, 0.17);

  stroke-width: 2;

  transition:
    fill 0.3s ease;
}

.network-map:hover .map-land {
  fill:
    rgba(255, 255, 255, 0.12);
}


/* ±¹°¡ ¿¬°á¼± */

.network-route {
  fill: none;

  stroke:
    url(#goldGradient);

  stroke-width: 3;

  stroke-linecap: round;

  stroke-dasharray: 10 12;

  opacity: 0.82;

  animation:
    networkRouteMove 9s linear infinite;
}

.route-two {
  stroke-width: 3.5;

  animation-duration: 4s;
}

.route-three {
  opacity: 0.38;

  animation-duration: 12s;
}


/* ±¹°¡ Æ÷ÀÎÆ® */

.location-wave {
  fill:
    rgba(200, 149, 62, 0.1);

  stroke:
    rgba(230, 189, 114, 0.75);

  stroke-width: 2;

  filter:
    url(#networkGlow);

  transform-box: fill-box;
  transform-origin: center;

  animation:
    locationPulse 2.4s ease-out infinite;
}

.location-point {
  fill: #e6bd72;

  stroke: #ffffff;

  stroke-width: 2;
}

.location-country {
  fill: #ffffff;

  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.location-partner {
  fill:
    rgba(255, 255, 255, 0.55);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


/* Áöµµ ÇÏ´Ü */

.map-caption {
  position: absolute;
  left: 35px;
  bottom: 28px;

  padding-left: 18px;

  border-left: 3px solid #c8953e;
}

.map-caption span {
  display: block;

  color: #e6bd72;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.map-caption p {
  margin-top: 4px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
}


/* ==============================
   ±¹°¡º° ³×Æ®¿öÅ© Èå¸§
================================= */

.network-flow {
  position: relative;
  z-index: 2;

  margin-top: 65px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    90px
    minmax(0, 1fr)
    90px
    minmax(0, 1fr);

  align-items: center;
}


/* ±¹°¡ Ä«µå */

.network-country-card {
  min-height: 410px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.97);

  color: #172536;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  box-shadow:
    0 25px 55px
    rgba(0, 0, 0, 0.19);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.network-country-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 35px 70px
    rgba(0, 0, 0, 0.26);
}


/* ÀÏº» Ä«µå Æ÷ÀÎÆ® */

.japan-card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7f3eb
    );
}


/* ¸ß½ÃÄÚ Ä«µå */

.mexico-card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f1f6f2
    );
}


/* Ä«µå »ó´Ü */

.network-card-top {
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 28px;

  background: #052653;
}

.japan-card .network-card-top {
  background:
    linear-gradient(
      135deg,
      #052653,
      #073d7d
    );
}

.mexico-card .network-card-top {
  background:
    linear-gradient(
      135deg,
      #173e2d,
      #32734b
    );
}

.network-country-code {
  min-width: 47px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #052653;
  background: #e6bd72;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.partner-company-label {
  color:
    rgba(255, 255, 255, 0.65);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}


/* Ä«µå ³»¿ë */

.network-card-content {
  padding: 33px 30px 31px;
}

.network-card-number {
  color: #c8953e;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.network-card-content h3 {
  margin-top: 7px;

  color: #052653;

  font-size: 38px;
  letter-spacing: -1.5px;
}

.network-card-subtitle {
  margin-top: 2px;

  color: #c8953e;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.9px;
}

.network-card-description {
  min-height: 78px;

  margin-top: 23px;

  color: #707c89;

  font-size: 15px;
  line-height: 1.8;
}


/* È¨ÆäÀÌÁö ¹öÆ° */

.partner-website-button {
  width: 100%;
  min-height: 53px;

  margin-top: 27px;
  padding: 0 19px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff;
  background: #073d7d;

  font-size: 13px;
  font-weight: 800;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.partner-website-button:hover {
  background: #c8953e;

  transform:
    translateY(-2px);
}

.partner-website-button i {
  font-style: normal;

  font-size: 18px;
}


/* ¸ß½ÃÄÚ »óÅÂ */

.partner-status {
  min-height: 53px;

  margin-top: 27px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #1d5738;
  background: #e9f3ec;

  font-size: 13px;
  font-weight: 800;
}

.partner-status i {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #36a266;

  box-shadow:
    0 0 0 6px
    rgba(54, 162, 102, 0.13);

  animation:
    partnerStatusPulse 1.8s infinite;
}


/* Ä«µå »çÀÌ È­»ìÇ¥ */

.network-down-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.network-down-arrow span {
  position: relative;

  width: 54px;
  height: 1px;

  background:
    rgba(230, 189, 114, 0.65);
}

.network-down-arrow span::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 9px;
  height: 9px;

  border-top:
    1px solid #e6bd72;

  border-right:
    1px solid #e6bd72;

  transform:
    translateY(-50%)
    rotate(45deg);
}

.network-down-arrow p {
  color:
    rgba(255, 255, 255, 0.42);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-align: center;
}


/* ==============================
   ³×Æ®¿öÅ© °­Á¡
================================= */

.network-benefits {
  position: relative;
  z-index: 2;

  margin-top: 55px;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);
}

.network-benefit {
  min-height: 145px;

  padding: 30px;

  display: flex;
  align-items: center;
  gap: 20px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.13);
}

.network-benefit:last-child {
  border-right: 0;
}

.network-benefit > span {
  color: #e6bd72;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.network-benefit h4 {
  color: #ffffff;

  font-size: 16px;
  letter-spacing: 0.2px;
}

.network-benefit p {
  margin-top: 5px;

  color:
    rgba(255, 255, 255, 0.52);

  font-size: 13px;
}


/* ==============================
   NETWORK ANIMATION
================================= */

@keyframes networkRouteMove {

  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }

}


@keyframes locationPulse {

  0% {
    opacity: 0.9;

    transform:
      scale(0.65);
  }

  70% {
    opacity: 0.1;

    transform:
      scale(1.55);
  }

  100% {
    opacity: 0;

    transform:
      scale(1.65);
  }

}


@keyframes partnerStatusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

}


/* ==============================
   NETWORK TABLET
================================= */

@media (max-width: 1050px) {

  .network-flow {
    grid-template-columns:
      1fr 55px 1fr 55px 1fr;
  }

  .network-card-content {
    padding:
      30px 23px;
  }

  .network-card-description {
    font-size: 14px;
  }

  .network-down-arrow span {
    width: 35px;
  }

}


/* ==============================
   NETWORK MOBILE (Áöµµ ¸ð¹ÙÀÏ ÃÖÀûÈ­)
================================= */

@media (max-width: 820px) {

  .network-section {
    padding: 95px 0;
  }

  .network-heading {
    margin-bottom: 48px;
  }

  .network-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .network-heading > p {
    font-size: 16px;
  }

  /* ¸ð¹ÙÀÏ È­¸é¿¡¼­ Áöµµ°¡ Àß¸®Áö ¾Êµµ·Ï 100% ºñÀ² Àû¿ë */
  .network-map-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .network-map {
    width: 100%;
    min-height: auto;
  }

  .world-network-svg {
    width: 100% !important;
    height: auto !important;
    min-width: unset !important;
    transform: none !important;
  }

  .map-caption {
    left: 20px;
    bottom: 15px;
  }

  .network-flow {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .network-country-card {
    width: 100%;
    min-height: auto;
  }

  .network-down-arrow {
    min-height: 80px;
  }

  .network-benefits {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .network-benefit {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .network-benefit:last-child {
    border-bottom: 0;
  }
}

/* ÀÛÀº ÈÞ´ëÆù */
@media (max-width: 480px) {
  .network-heading h2 {
    font-size: 32px;
  }

  .map-caption p {
    font-size: 14px;
  }

  .location-country {
    font-size: 22px;
  }
}

/* ==============================
   NETWORK MOBILE (ÀÏº» ÅØ½ºÆ® Àß¸² ¹æÁö)
================================= */

@media (max-width: 820px) {
  
  .network-map-wrapper {
    width: 100%;
    padding: 0 10px; /* ÁÂ¿ì »ìÂ¦ÀÇ ¿©¹éÀ» µÎ¾î È­¸é¿¡ ²Ë Ã¡À» ¶§ Àß¸² ¹æÁö */
    box-sizing: border-box;
  }

  .world-network-svg {
    width: 100% !important;
    height: auto !important;
    overflow: visible; /* ¿µ¿ªÀ» »ìÂ¦ ³Ñ¾î°¡´õ¶óµµ Àß¸®Áö ¾Ê°í Ç¥ÇöµÇµµ·Ï ¼³Á¤ */
  }

  /* ¸ð¹ÙÀÏ¿¡¼­ ÅØ½ºÆ® Å©±â¸¦ ¾à°£ Á¶Á¤ÇÏ¿© °¡µ¶¼º ¹× °ø°£ È®º¸ */
  .japan-title {
    font-size: 22px;
  }
  
  .japan-sub {
    font-size: 11px;
  }
}


/* ==============================
   PRODUCTS (²÷°å´ø CSS ¹®¹ý Á¤»ó º¹±¸)
================================= */

.avocado-illustration {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 340px;
}

.avocado-half {
  position: absolute;
  width: 180px;
  height: 260px;
  padding: 18px;
  border-radius: 52% 52% 47% 47% / 38% 38% 62% 62%;
  background: #2d5a37;
}


/* ==============================
   BUSINESS
================================= */

.business-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #172536;
  background: #f5f7fa;
}


/* ¹è°æ Àå½Ä */

.business-section::before {
  content: "";

  position: absolute;
  top: -260px;
  right: -250px;

  width: 680px;
  height: 680px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(7, 61, 125, 0.1),
      transparent 68%
    );

  pointer-events: none;
}


/* Á¦¸ñ */

.business-heading {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin-bottom: 65px;
}

.business-heading h2 {
  margin-top: 12px;

  color: #052653;

  font-size:
    clamp(42px, 5.3vw, 68px);

  line-height: 1.14;
  letter-spacing: -3px;
}

.business-heading > p {
  max-width: 700px;

  margin-top: 24px;

  color: #6c7988;

  font-size: 17px;
  line-height: 1.9;
}


/* »ç¾÷ Ä«µå ¹èÄ¡ */

.business-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 24px;
}


/* °øÅë »ç¾÷ Ä«µå */

.business-card {
  position: relative;

  min-height: 620px;

  padding: 46px;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(5, 38, 83, 0.1);

  box-shadow:
    0 18px 45px
    rgba(5, 38, 83, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.business-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 30px 60px
    rgba(5, 38, 83, 0.15);
}


/* Ä«µå »ó´Ü */

.business-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 24px;

  border-bottom:
    1px solid
    rgba(5, 38, 83, 0.12);
}

.business-number {
  color: #c8953e;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.business-direction {
  color: #8a95a1;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


/* ¾ÆÀÌÄÜ */

.business-icon {
  width: 70px;
  height: 70px;

  margin-top: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef3f8;

  transition:
    background 0.3s ease;
}

.business-icon svg {
  width: 42px;
  height: 42px;

  fill: none;

  stroke: #073d7d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-card:hover .business-icon {
  background: #073d7d;
}

.business-card:hover .business-icon svg {
  stroke: #ffffff;
}


/* Ä«µå ³»¿ë */

.business-small-title {
  margin-top: 31px;

  color: #c8953e;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.2px;
}

.business-card h3 {
  margin-top: 10px;

  color: #052653;

  font-size:
    clamp(32px, 3.5vw, 46px);

  line-height: 1.22;
  letter-spacing: -1.8px;
}

.business-description {
  margin-top: 24px;

  color: #707c89;

  font-size: 15px;
  line-height: 1.85;
}


/* ±âº» ¾÷¹« ¸ñ·Ï */

.business-service-list {
  margin-top: 28px;
}

.business-service-list li {
  position: relative;

  padding: 11px 0 11px 22px;

  color: #4e5d6c;

  border-bottom:
    1px solid
    rgba(5, 38, 83, 0.09);

  font-size: 14px;
}

.business-service-list li::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #c8953e;

  transform:
    translateY(-50%);
}


/* ==============================
   TRADING AGENCY CARD
================================= */

.agency-card {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #03172f,
      #073d7d
    );

  border: 0;
}

.agency-card::after {
  content: "";

  position: absolute;
  right: -180px;
  bottom: -180px;

  width: 460px;
  height: 460px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.agency-card .business-card-header {
  position: relative;
  z-index: 2;

  border-bottom-color:
    rgba(255, 255, 255, 0.14);
}

.agency-card .business-direction {
  color:
    rgba(255, 255, 255, 0.45);
}

.agency-card .business-icon {
  position: relative;
  z-index: 2;

  background:
    rgba(255, 255, 255, 0.1);
}

.agency-card .business-icon svg {
  stroke: #e6bd72;
}

.agency-card:hover .business-icon {
  background: #c8953e;
}

.agency-card:hover .business-icon svg {
  stroke: #ffffff;
}

.agency-card h3 {
  position: relative;
  z-index: 2;

  color: #ffffff;
}

.agency-card .business-small-title,
.agency-card .business-description {
  position: relative;
  z-index: 2;
}

.agency-card .business-description {
  color:
    rgba(255, 255, 255, 0.67);
}


/* ¿¡ÀÌÀü½Ã ¾÷¹« ¸ñ·Ï */

.agency-service-grid {
  position: relative;
  z-index: 2;

  margin-top: 28px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-left:
    1px solid
    rgba(255, 255, 255, 0.13);
}

.agency-service-grid > div {
  min-height: 68px;

  padding: 13px 15px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);
}

.agency-service-grid span {
  display: block;

  color: #e6bd72;

  font-size: 9px;
  font-weight: 900;
}

.agency-service-grid p {
  margin-top: 3px;

  color:
    rgba(255, 255, 255, 0.86);

  font-size: 13px;
  font-weight: 700;
}


/* ==============================
   CONSULTING CARD
================================= */

.consulting-card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7f3eb
    );
}

.consulting-card::after {
  content: "JAPAN";

  position: absolute;
  right: -22px;
  bottom: -33px;

  color:
    rgba(200, 149, 62, 0.08);

  font-size: 115px;
  font-weight: 900;
  letter-spacing: -7px;

  pointer-events: none;
}


/* ==============================
   BUSINESS PROCESS
================================= */

.business-process {
  position: relative;
  z-index: 2;

  margin-top: 70px;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  gap: 65px;

  padding: 58px;

  color: #ffffff;

  background: #052653;
}

.business-process-title > p {
  color: #e6bd72;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.business-process-title h3 {
  margin-top: 13px;

  font-size:
    clamp(28px, 3vw, 42px);

  line-height: 1.25;
  letter-spacing: -1.5px;
}


/* ¾÷¹« °úÁ¤ */

.business-process-list {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 13px;
}

.process-item {
  flex: 1;

  min-width: 0;
}

.process-item > span {
  display: block;

  color: #e6bd72;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.process-item h4 {
  margin-top: 9px;

  color: #ffffff;

  font-size: 16px;
}

.process-item p {
  margin-top: 6px;

  color:
    rgba(255, 255, 255, 0.55);

  font-size: 12px;
  line-height: 1.6;
}

.process-arrow {
  flex-shrink: 0;

  color:
    rgba(230, 189, 114, 0.65);

  font-size: 19px;
}


/* ==============================
   BUSINESS TABLET
================================= */

@media (max-width: 1024px) {

  .business-card {
    padding: 38px;

    min-height: 620px;
  }

  .business-process {
    grid-template-columns: 1fr;

    gap: 38px;
  }

}


/* ==============================
   BUSINESS MOBILE
================================= */

@media (max-width: 820px) {

  .business-section {
    padding: 95px 0;
  }

  .business-heading {
    margin-bottom: 48px;
  }

  .business-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .business-heading > p {
    font-size: 16px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: auto;
  }

  .business-process {
    margin-top: 50px;

    padding: 40px 30px;
  }

  .business-process-list {
    display: grid;
    grid-template-columns: 1fr;

    gap: 0;
  }

  .process-item {
    display: grid;
    grid-template-columns: 40px 1fr;

    align-items: start;

    padding: 20px 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.12);
  }

  .process-item > span {
    padding-top: 4px;
  }

  .process-item h4 {
    margin-top: 0;
  }

  .process-arrow {
    display: none;
  }

}


/* ÀÛÀº ÈÞ´ëÆù */

@media (max-width: 480px) {

  .business-heading h2 {
    font-size: 36px;
  }

  .business-card {
    padding: 32px 23px;
  }

  .business-card-header {
    align-items: flex-start;
    gap: 15px;
  }

  .business-direction {
    text-align: right;
  }

  .business-card h3 {
    font-size: 34px;
  }

  .agency-service-grid {
    grid-template-columns: 1fr;
  }

  .business-process {
    padding: 35px 23px;
  }

}
/* ==============================
   PRODUCTS
================================= */

.products-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #172536;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6f3ed 100%
    );
}


/* ¹è°æ Àå½Ä */

.products-section::before {
  content: "";

  position: absolute;
  top: -250px;
  left: -220px;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(7, 61, 125, 0.08),
      transparent 68%
    );

  pointer-events: none;
}

.products-section::after {
  content: "";

  position: absolute;
  right: -220px;
  bottom: 100px;

  width: 550px;
  height: 550px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(200, 149, 62, 0.09),
      transparent 68%
    );

  pointer-events: none;
}


/* Á¦¸ñ */

.products-heading {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin-bottom: 65px;
}

.products-heading h2 {
  margin-top: 12px;

  color: #052653;

  font-size:
    clamp(42px, 5.3vw, 68px);

  line-height: 1.14;
  letter-spacing: -3px;
}

.products-heading-korean {
  margin-top: 13px;

  color: #c8953e;

  font-size: 23px;
  font-weight: 800;
}

.products-heading-description {
  max-width: 700px;

  margin-top: 20px;

  color: #6c7988;

  font-size: 17px;
  line-height: 1.9;
}


/* ==============================
   ´ëÇ¥ Á¦Ç°
================================= */

.featured-product {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 540px;

  margin-bottom: 28px;

  overflow: hidden;

  box-shadow:
    0 25px 65px
    rgba(5, 38, 83, 0.15);
}


/* ´ëÇ¥ Á¦Ç° ¿ÞÂÊ */

.featured-product-visual {
  position: relative;

  min-height: 540px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #163b29,
      #3f7651
    );
}

.featured-product-pattern {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
}

.featured-product-number {
  position: absolute;
  top: 30px;
  left: 32px;

  color:
    rgba(255, 255, 255, 0.65);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.featured-label {
  position: absolute;
  right: 30px;
  bottom: 27px;

  color:
    rgba(255, 255, 255, 0.7);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}


/* ¾Æº¸Ä«µµ ÀÏ·¯½ºÆ® */

.avocado-illustration {
  position: relative;
  z-index: 2;

  width: 380px;
  height: 340px;
}

.avocado-half {
  position: absolute;

  width: 180px;
  height: 260px;

  padding: 18px;

  border-radius:
    52% 52% 47% 47% /
    38% 38% 62% 62%;

  background: #173f25;

  box-shadow:
    0 25px 40px
    rgba(0, 0, 0, 0.28);
}

.avocado-left {
  top: 30px;
  left: 28px;

  transform:
    rotate(-17deg);
}

.avocado-right {
  top: 48px;
  right: 22px;

  transform:
    rotate(16deg);
}

.avocado-flesh {
  position: relative;

  width: 100%;
  height: 100%;

  border-radius:
    52% 52% 47% 47% /
    38% 38% 62% 62%;

  background:
    radial-gradient(
      circle at 50% 60%,
      #d4dd6d 0%,
      #a8c64c 42%,
      #78a33c 72%,
      #658b34 100%
    );
}

.avocado-seed {
  position: absolute;
  left: 50%;
  bottom: 31px;

  width: 82px;
  height: 82px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 38% 32%,
      #b87542,
      #7d482a 72%
    );

  box-shadow:
    inset -8px -8px 15px
    rgba(65, 32, 17, 0.2);

  transform:
    translateX(-50%);
}


/* ´ëÇ¥ Á¦Ç° ¿À¸¥ÂÊ */

.featured-product-content {
  padding: 68px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #03172f,
      #073d7d
    );
}

.product-category {
  color: #e6bd72;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.featured-product-content h3 {
  margin-top: 15px;

  font-size:
    clamp(45px, 5vw, 68px);

  line-height: 1.04;
  letter-spacing: -3px;
}

.featured-product-subtitle {
  margin-top: 18px;

  color: #e6bd72;

  font-size: 16px;
  font-weight: 700;
}

.featured-product-description {
  margin-top: 26px;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 15px;
  line-height: 1.85;
}

.featured-product-tags {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-product-tags span {
  padding: 8px 12px;

  color:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}


/* ==============================
   Á¦Ç° Ä«µå
================================= */

.product-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.product-card {
  position: relative;

  min-height: 365px;

  padding: 29px;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(5, 38, 83, 0.1);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.product-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(200, 149, 62, 0.55);

  box-shadow:
    0 25px 50px
    rgba(5, 38, 83, 0.13);
}


/* Ä«µå »ó´Ü */

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-number {
  color: #c8953e;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.product-arrow {
  color: #052653;

  font-size: 18px;

  transition:
    transform 0.25s ease;
}

.product-card:hover .product-arrow {
  transform:
    translate(3px, -3px);
}


/* Á¦Ç° ¾ÆÀÌÄÜ */

.product-icon {
  width: 63px;
  height: 63px;

  margin-top: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef3f8;

  transition:
    background 0.3s ease;
}

.product-icon svg {
  width: 37px;
  height: 37px;

  fill: none;

  stroke: #073d7d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card:hover .product-icon {
  background: #052653;
}

.product-card:hover .product-icon svg {
  stroke: #ffffff;
}


/* Á¦Ç° ÅØ½ºÆ® */

.product-card-category {
  margin-top: 27px;

  color: #c8953e;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.product-card h3 {
  margin-top: 8px;

  color: #052653;

  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -1px;
}

.product-card > p:last-child {
  margin-top: 17px;

  color: #707c89;

  font-size: 14px;
  line-height: 1.75;
}


/* Ä«µåº° ¹è°æ Æ÷ÀÎÆ® */

.food-card {
  border-top:
    4px solid #af6b38;
}

.cosmetics-card {
  border-top:
    4px solid #82638d;
}

.beauty-card {
  border-top:
    4px solid #ac6e8c;
}

.health-card {
  border-top:
    4px solid #4f897b;
}

.daily-card {
  border-top:
    4px solid #68849b;
}

.industrial-card {
  border-top:
    4px solid #505d69;
}


/* ==============================
   Á¦Ç° Ãß°¡ Ä«µå
================================= */

.add-product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #052653,
      #0a579e
    );

  border: 0;
}

.add-product-symbol {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  color: #e6bd72;

  font-size: 30px;
  font-weight: 300;
}

.add-product-card .product-card-category {
  color: #e6bd72;
}

.add-product-card h3 {
  color: #ffffff;
}

.add-product-card > p:last-of-type {
  color:
    rgba(255, 255, 255, 0.65);
}

.add-product-message {
  margin-top: 24px;

  color:
    rgba(255, 255, 255, 0.5);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


/* ==============================
   ÇÏ´Ü ¹®ÀÇ ¹è³Ê
================================= */

.products-bottom-banner {
  position: relative;
  z-index: 2;

  margin-top: 55px;
  padding: 43px 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  color: #ffffff;
  background: #052653;
}

.products-bottom-banner > div > p {
  color: #e6bd72;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.products-bottom-banner h3 {
  margin-top: 8px;

  font-size: 27px;
}

.products-bottom-banner span {
  display: block;

  margin-top: 8px;

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 14px;
}

.products-contact-button {
  flex-shrink: 0;

  min-width: 190px;
  height: 55px;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #052653;
  background: #e6bd72;

  font-size: 13px;
  font-weight: 900;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.products-contact-button:hover {
  background: #ffffff;

  transform:
    translateY(-3px);
}

.products-contact-button i {
  font-style: normal;

  font-size: 18px;
}


/* ==============================
   PRODUCTS TABLET
================================= */

@media (max-width: 1050px) {

  .featured-product-content {
    padding: 50px;
  }

  .product-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


/* ==============================
   PRODUCTS MOBILE
================================= */

@media (max-width: 820px) {

  .products-section {
    padding: 95px 0;
  }

  .products-heading {
    margin-bottom: 48px;
  }

  .products-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product-visual {
    min-height: 430px;
  }

  .featured-product-content {
    padding: 45px 35px;
  }

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

  .products-bottom-banner {
    align-items: flex-start;
    flex-direction: column;

    padding: 38px 30px;
  }

}


/* ÀÛÀº ÈÞ´ëÆù */

@media (max-width: 520px) {

  .products-heading h2 {
    font-size: 36px;
  }

  .products-heading-description {
    font-size: 16px;
  }

  .featured-product-visual {
    min-height: 350px;
  }

  .avocado-illustration {
    width: 295px;
    height: 280px;

    transform:
      scale(0.82);
  }

  .featured-product-content {
    padding: 38px 24px;
  }

  .featured-product-content h3 {
    font-size: 46px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 340px;

    padding: 28px 24px;
  }

  .products-bottom-banner {
    padding: 34px 24px;
  }

  .products-contact-button {
    width: 100%;
  }

}

/* ==============================
   CONTACT
================================= */

.contact-section {
  position: relative;

  padding: 130px 0;

  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #020f22 0%,
      #052653 55%,
      #073d7d 100%
    );
}


/* ¹è°æ °ÝÀÚ */

.contact-background-pattern {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 65px 65px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      transparent
    );

  pointer-events: none;
}


/* ¹è°æ ºû È¿°ú */

.contact-section::before {
  content: "";

  position: absolute;
  top: -230px;
  right: -180px;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 124, 221, 0.27),
      transparent 68%
    );

  pointer-events: none;
}

.contact-section::after {
  content: "";

  position: absolute;
  left: -220px;
  bottom: -300px;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(200, 149, 62, 0.12),
      transparent 68%
    );

  pointer-events: none;
}


/* Á¦¸ñ */

.contact-heading {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin-bottom: 70px;
}

.contact-label {
  color: #e6bd72;
}

.contact-label::before {
  background: #e6bd72;
}

.contact-heading h2 {
  margin-top: 12px;

  color: #ffffff;

  font-size:
    clamp(46px, 6vw, 76px);

  line-height: 1.08;
  letter-spacing: -3px;
}

.contact-heading-korean {
  margin-top: 16px;

  color: #e6bd72;

  font-size: 23px;
  font-weight: 800;
}

.contact-heading-description {
  max-width: 620px;

  margin-top: 20px;

  color:
    rgba(255, 255, 255, 0.65);

  font-size: 17px;
  line-height: 1.9;
}


/* ¿¬¶ôÃ³ ³»ºÎ */

.contact-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(400px, 1.1fr);

  align-items: start;
  gap: 90px;
}


/* ¿ÞÂÊ ¾È³» */

.contact-small-title {
  color: #e6bd72;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.contact-introduction h3 {
  margin-top: 17px;

  color: #ffffff;

  font-size:
    clamp(33px, 4vw, 52px);

  line-height: 1.22;
  letter-spacing: -2px;
}

.contact-introduction-text {
  max-width: 520px;

  margin-top: 25px;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 16px;
  line-height: 1.9;
}


/* »ó´ã ºÐ¾ß */

.contact-service-list {
  margin-top: 42px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.15);
}

.contact-service-list > div {
  display: flex;
  align-items: center;
  gap: 22px;

  padding: 17px 0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.15);
}

.contact-service-list span {
  color: #e6bd72;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-service-list p {
  color:
    rgba(255, 255, 255, 0.82);

  font-size: 14px;
}


/* ¿À¸¥ÂÊ Ä«µå */

.contact-cards {
  display: grid;
  gap: 17px;
}

.contact-card {
  position: relative;

  min-height: 150px;

  padding: 30px 32px;

  display: grid;
  grid-template-columns:
    72px 1fr auto;

  align-items: center;
  gap: 24px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.97);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  box-shadow:
    0 22px 50px
    rgba(0, 0, 0, 0.17);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 32px 65px
    rgba(0, 0, 0, 0.25);
}


/* ¿¬¶ôÃ³ ¾ÆÀÌÄÜ */

.contact-card-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef3f8;

  transition:
    background 0.3s ease;
}

.contact-card-icon svg {
  width: 39px;
  height: 39px;

  fill: none;

  stroke: #073d7d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    stroke 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: #052653;
}

.contact-card:hover .contact-card-icon svg {
  stroke: #ffffff;
}


/* ÀÎ½ºÅ¸±×·¥ */

.instagram-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      #833ab4,
      #fd1d1d,
      #fcb045
    );
}

.instagram-icon {
  background:
    linear-gradient(
      135deg,
      rgba(131, 58, 180, 0.12),
      rgba(253, 29, 29, 0.12),
      rgba(252, 176, 69, 0.12)
    );
}

.instagram-card:hover .instagram-icon {
  background:
    linear-gradient(
      135deg,
      #833ab4,
      #fd1d1d,
      #fcb045
    );
}

.instagram-small-circle {
  fill: #073d7d;
  stroke: none;
}

.instagram-card:hover
.instagram-small-circle {
  fill: #ffffff;
}


/* Ä«µå ±ÛÀÚ */

.contact-card-label {
  display: block;

  color: #c8953e;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-card-text strong {
  display: block;

  margin-top: 6px;

  color: #052653;

  font-size:
    clamp(18px, 2vw, 24px);

  word-break: break-word;
}

.contact-card-text p {
  margin-top: 4px;

  color: #7a8693;

  font-size: 13px;
}

.contact-card-arrow {
  color: #052653;

  font-size: 24px;

  transition:
    transform 0.25s ease;
}

.contact-card:hover
.contact-card-arrow {
  transform:
    translate(4px, -4px);
}


/* ÀÀ´ä ¾È³» */

.contact-response-info {
  min-height: 92px;

  padding: 22px 28px;

  display: flex;
  align-items: center;
  gap: 20px;

  border:
    1px solid
    rgba(255, 255, 255, 0.15);

  background:
    rgba(255, 255, 255, 0.06);
}

.response-light {
  flex-shrink: 0;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #e6bd72;

  box-shadow:
    0 0 0 7px
    rgba(230, 189, 114, 0.12);

  animation:
    contactLight 1.8s infinite;
}

.contact-response-info strong {
  color: #ffffff;

  font-size: 14px;
}

.contact-response-info p {
  margin-top: 4px;

  color:
    rgba(255, 255, 255, 0.52);

  font-size: 12px;
}


/* ==============================
   FOOTER
================================= */

.footer {
  padding: 48px 0 25px;

  color:
    rgba(255, 255, 255, 0.65);

  background: #010a13;
}

.footer-inner {
  display: grid;
  grid-template-columns:
    190px 1fr auto;

  align-items: center;
  gap: 45px;

  padding-bottom: 35px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 180px;
  height: 92px;

  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 100%;
  height: 100%;

  padding: 5px 8px;

  object-fit: contain;

  background: #ffffff;

  border-radius: 4px;
}

.footer-information p {
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
}

.footer-information span {
  display: block;

  margin-top: 5px;

  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  position: relative;

  padding-bottom: 5px;

  color:
    rgba(255, 255, 255, 0.75);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.footer-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: #e6bd72;

  transition:
    width 0.25s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  font-size: 11px;
}

.footer-bottom a {
  color: #e6bd72;

  font-weight: 800;
  letter-spacing: 1px;
}


/* ==============================
   ANIMATION
================================= */

@keyframes contactLight {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }

}


/* ==============================
   CONTACT TABLET
================================= */

@media (max-width: 1000px) {

  .contact-content {
    grid-template-columns: 1fr;

    gap: 60px;
  }

}


/* ==============================
   CONTACT MOBILE
================================= */

@media (max-width: 820px) {

  .contact-section {
    padding: 95px 0;
  }

  .contact-heading {
    margin-bottom: 52px;
  }

  .contact-heading h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .contact-card {
    min-height: 135px;

    grid-template-columns:
      62px 1fr auto;

    gap: 17px;

    padding: 25px 22px;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;

    align-items: flex-start;
    gap: 25px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

}


/* ÀÛÀº ÈÞ´ëÆù */

@media (max-width: 520px) {

  .contact-heading h2 {
    font-size: 40px;
  }

  .contact-heading-description {
    font-size: 16px;
  }

  .contact-card {
    grid-template-columns:
      54px 1fr;

    gap: 15px;
  }

  .contact-card-icon {
    width: 54px;
    height: 54px;
  }

  .contact-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-card-arrow {
    display: none;
  }

  .contact-card-text strong {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}
/* style.css ÇÏ´Ü Ãß°¡ ÃßÃµ */
.network-map-wrapper {
  width: 100%;
  overflow: hidden;
}

.world-network-svg {
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 768px) {
  /* ¸ð¹ÙÀÏ È­¸é¿¡¼­ ÅØ½ºÆ® Å©±â °¡µ¶¼º È®º¸ */
  .location-country {
    font-size: 16px !important;
  }
  .location-partner {
    font-size: 10px !important;
  }
}


/* ==============================
   STUDY IN JAPAN
================================= */

.study-japan-card {
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f8f5ee 100%
    );

  border-top:
    4px solid #c8953e;
}


/* STUDY IN JAPAN ºÎÁ¦¸ñ */

.study-japan-subtitle {
  margin-top: 12px;

  color: #c8953e;

  font-size: 16px;
  font-weight: 800;
}


/* ¾ÆÀÌÄÜ Æ÷ÀÎÆ® */

.study-japan-card .business-icon {
  background:
    rgba(200, 149, 62, 0.12);
}

.study-japan-card .business-icon svg {
  stroke: #c8953e;
}

.study-japan-card:hover
.business-icon {
  background: #c8953e;
}

.study-japan-card:hover
.business-icon svg {
  stroke: #ffffff;
}



/* 05 STUDY IN JAPAN Ä«µå Àü¿ë ½ºÅ¸ÀÏ */
.study-japan-card {
  margin-top: 0; /* ºÒÇÊ¿äÇÑ ¿ÜºÎ ¿©¹é Á¦°Å */
}

/* ºÎÁ¦¸ñ (ÀÏº» ´ëÇÐ À¯ÇÐ»ý ¼Ò°³) °­Á¶ ½ºÅ¸ÀÏ */
.study-japan-subtitle {
  margin-top: 8px;
  margin-bottom: 12px;
  color: #c8953e;
  font-size: 14px;
  font-weight: 700;
}

/* ºñÁî´Ï½º Ä«µå ±×¸®µå ÄÁÅ×ÀÌ³Ê ±âº» ¼³Á¤ */
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2¿­ ¹èÄ¡ */
  gap: 24px;
}

/* ¸ðµç Ä«µå°¡ 1Ä­(half-width)¸¸ Â÷ÁöÇÏµµ·Ï ¼³Á¤ */
.business-card {
  grid-column: span 1 !important;
  width: 100%;
  box-sizing: border-box;
}

/* ¸ð¹ÙÀÏ È­¸é ¹ÝÀÀÇü ¼³Á¤ */
@media (max-width: 768px) {
  .business-grid {
    grid-template-columns: 1fr; /* ¸ð¹ÙÀÏ¿¡¼­´Â 1¿­·Î ¼¼·Î Á¤·Ä */
  }
}