* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #d71920;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gray-bg: #f7f7f7;
  --line: #ececec;
  --text: #222222;
  --sub: #666666;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.inner {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d71920;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label.light {
  color: #ffb3b3;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--sub);
  font-size: 17px;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 0 auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 40px 30px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a {
  color: #fff;
  font-size: 15px;
}

.mobile-menu.active {
  display: flex;
}

/* hero */
.company-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.company-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/회사전경.jpg") center center / cover no-repeat;
  transform: scale(1.06);
}

.company-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 46%, rgba(0,0,0,0.18) 100%);
}

.company-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.company-hero-copy {
  color: #fff;
  max-width: 780px;
}

.page-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffb2b2;
  margin-bottom: 18px;
}

.company-hero-copy h1 {
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.hero-slogan {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.84);
}

/* brand */
.brand-section {
  background: #fff;
}

.brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
}

.brand-logo-box,
.brand-copy {
  width: 48%;
}

.brand-logo-img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.brand-logo-img img {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  background: #b81218;
}

.brand-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.brand-copy p {
  color: #555;
  font-size: 17px;
  margin-bottom: 14px;
}

/* vision */
.vision-section {
  background: var(--gray-bg);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vision-card {
  background: #fff;
  border-radius: 26px;
  border: 1px solid var(--line);
  padding: 34px 28px;
  transition: 0.35s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.vision-card span {
  display: inline-block;
  font-size: 52px;
  line-height: 1;
  color: rgba(215, 25, 32, 0.1);
  font-weight: 900;
  margin-bottom: 18px;
}

.vision-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: 800;
}

.vision-card p {
  color: #555;
  font-size: 15px;
}

/* business overview */
.business-overview-section {
  background: #fff;
}

.business-overview-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
}

.overview-copy,
.overview-visual {
  width: 48%;
}

.overview-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.overview-copy p {
  color: #555;
  font-size: 17px;
  margin-bottom: 14px;
}

.overview-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overview-item {
  padding: 24px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.overview-item strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 800;
}

.overview-item span {
  color: #666;
  font-size: 15px;
}

/* partners */
.partners-section {
  background: #111;
}

.partners-section .section-head h2 {
  color: #fff;
}

.partners-section .section-head p {
  color: rgba(255,255,255,0.74);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 34px 24px;
  text-align: center;
}

.partner-logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.partner-logo img {
  max-height: 70px;
  width: auto;
  max-width: 180px;
}

.partner-card p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}

/* why */
.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  padding: 30px 24px;
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.why-card p {
  color: #555;
  font-size: 15px;
}

/* value */
.value-section {
  background: var(--gray-bg);
}

.value-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
}

.value-copy,
.value-box {
  width: 48%;
}

.value-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.value-copy ul {
  list-style: none;
}

.value-copy li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #444;
  font-size: 17px;
}

.value-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.value-box {
  padding: 40px 34px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.value-box strong {
  display: block;
  font-size: 26px;
  margin-bottom: 14px;
  color: #ffb0b0;
}

.value-box p {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* cta */
.company-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.company-cta-bg {
  position: absolute;
  inset: 0;
  background: url("../img/베트남\ 도시배경.jpg") center center / cover no-repeat;
}

.company-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.company-cta-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.company-cta-inner h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.company-cta-inner p {
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

/* footer */
.footer {
  background: #111;
  color: #fff;
  padding: 70px 0 46px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  width: 28%;
}

.footer-right {
  width: 72%;
}

.footer-logo {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.footer-desc {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.52);
  font-size: 14px;
}

/* animation */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.8s ease;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* mobile header fix */
@media (max-width: 768px) {
  .header {
    width: 100%;
    overflow-x: hidden;
  }

  .header .inner,
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    gap: 12px;
    box-sizing: border-box;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 24px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    display: flex;
  }

  .mobile-menu {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .mobile-menu a {
    width: 100%;
    display: block;
  }

  body {
    overflow-x: hidden;
  }
}

/* responsive */
@media (max-width: 1200px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .inner {
    width: calc(100% - 40px);
  }

  .nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand-inner,
  .business-overview-inner,
  .value-inner,
  .footer-inner {
    flex-direction: column;
  }

  .brand-logo-box,
  .brand-copy,
  .overview-copy,
  .overview-visual,
  .value-copy,
  .value-box,
  .footer-left,
  .footer-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .company-hero {
    min-height: 76vh;
  }

  .company-hero-copy h1 {
    font-size: 52px;
  }

  .hero-slogan {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .brand-logo-img {
    min-height: 240px;
    padding: 30px;
  }

  .value-box p {
    font-size: 19px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}