@charset "utf-8";

/*main_visual*/

.main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #101828;
}

.mv-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv-bg-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #090e18;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-bg-placeholder .mv-placeholder-text img,
.mv-bg-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-swiper {
  width: 100%;
  height: 100%;
}
.mv-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.mv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.mv-overlay-gradient {
  background: linear-gradient(241.357deg, rgba(225, 104, 49, 0.15) 13.375%, rgba(6, 8, 13, 0.4) 35.736%, rgba(6, 8, 13, 0.8) 69.285%);
}

.mv-overlay-radial {
  background: radial-gradient(circle at 20% 50%, rgba(225, 104, 49, 0.12) 0%, rgba(0, 0, 0, 0) 50%);
}

.mv-overlay-grid {
  background-image: 
    linear-gradient(rgba(225, 104, 49, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 104, 49, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.mv-left-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(225, 104, 49) 30%, rgb(225, 104, 49) 70%, rgba(0, 0, 0, 0) 100%);
}

.mv-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
}

.mv-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.mv-tagline { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.mv-tag-line { width: 40px; height: 1px; background: #ff5903; }

.mv-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mv-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(48px, 6.5vw, 99.2px);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1px;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
}

.mv-title .title-bottom { color: #ff5903; }

.mv-desc { margin-bottom: 40px; }

.mv-desc-en {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(16px, 1.5vw, 21.6px);
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.mv-desc-ko {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(14px, 1.3vw, 19.44px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.mv-btn-row { display: flex; gap: 16px; }

.mv-btn {
  height: 54px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 234, 240, 0.2);
  color: #e8eaf0;
}

.mv-btn:hover { background: #e04f02; }

.mv-btn .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.mv-btn:hover .arrow-icon { transform: translateX(4px); }

.mv-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.mv-scroll-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 13px;
  color: rgba(232, 234, 240, 0.4);
  letter-spacing: 3px;
}

.mv-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(225, 104, 49, 0.8), rgba(0, 0, 0, 0));
  animation: scrollLineAnim 2s infinite ease-in-out;
}

@keyframes scrollLineAnim {
  0% {
    transform: scaleY(0.2);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0.2);
    transform-origin: bottom;
  }
}

@media screen and (max-width: 768px) {
  .mv-content { padding: 0 20px; }
  .mv-desc-en { line-height: 1.4; }
  .mv-desc-ko { line-height: 1.4; }
  .mv-btn-row { flex-direction: column; width: 100%; gap: 12px; }
  .mv-btn { width: 100%; justify-content: center; }
}

@media screen and (max-width: 500px) {
  .mv-tag-text { font-size: 12px; }
  .mv-title { margin-bottom: 16px; }
  .mv-desc { margin-bottom: 30px;}
  .mv-scroll-indicator { display: none; }
}


/*sec_01*/
#sec_01 {
  background: linear-gradient(to bottom, #06080d, #0a0d16);
  padding: clamp(60px, 8vw, 112px) 0;
  width: 100%;
  position: relative;
}

.sec-overview-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 64px;
}

.overview-left {
  flex: 1 1 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overview-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.overview-tag-line {
  width: 32px;
  height: 1px;
  background: #ff5903;
}

.overview-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.overview-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.25;
  color: #e8eaf0;
  letter-spacing: -0.5px;
  margin: 0 0 24px 0;
}

.overview-title .highlight { color: #ff5903; }

.overview-desc { margin-bottom: 32px; }
.overview-desc p {
  font-size: clamp(15px, 1.2vw, 17.2px);
  line-height: 1.6;
  color: #8a92a6;
  font-weight: 300;
  margin: 0 0 16px 0;
  word-break: keep-all;
}

.overview-desc p:last-child { margin-bottom: 0; }
.overview-desc strong { color: #ffffff; font-weight: 500; }

.overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.overview-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.overview-link:hover { color: #ffffff; }

.overview-link:hover .arrow-icon { transform: translateX(4px); }

.overview-right {
  flex: 1 1 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.overview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(225, 104, 49, 0.12);
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.overview-card:hover {
  border-color: rgba(225, 104, 49, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.card-icon {
  height: 24px;
  display: flex;
  align-items: center;
}

.card-title {
  font-weight: 600;
  font-size: 20px;
  color: #e8eaf0;
  margin: 0;
}

.card-desc {
  font-weight: 400;
  font-size: 13px;
  color: #8a92a6;
  line-height: 1.5;
  margin: 0;
  word-break: keep-all;
}

@media screen and (max-width: 1200px) {
  .sec-overview-container { gap: 40px; }
}

@media screen and (max-width: 768px) {
  .overview-left { flex: 1 1 100%; }
  .overview-right { flex: 1 1 100%; }
}

@media screen and (max-width: 500px) {
  .overview-right { grid-template-columns: 1fr; gap: 16px; }
  .overview-card { padding: 20px; }
}

/*sec_02*/
#sec_02 {
  background: #0a0d16;
  padding: clamp(60px, 8vw, 112px) 0;
  width: 100%;
  position: relative;
}

.sec-services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-label-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.services-tag-line {
  width: 32px;
  height: 1px;
  background: #ff5903;
}

.services-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.services-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(32px, 4vw, 54.4px);
  font-weight: 700;
  color: #e8eaf0;
  margin: 0;
  letter-spacing: -0.5px;
}

.services-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
  padding-bottom: 8px;
}

.services-all-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.services-all-link:hover { color: #ffffff; }
.services-all-link:hover .arrow-icon { transform: translateX(4px); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 89, 3, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(255, 89, 3, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #e16831, #b84e1f);
  transition: width 0.3s ease;
}

.service-card:hover::after { width: 100%; }

.card-image-area {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.card-image-placeholder.AM {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.card-image-placeholder.CM {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.card-image-placeholder.PM {
  background: linear-gradient(135deg, #022c22, #0f172a);
}

.card-image-placeholder.TE {
  background: linear-gradient(135deg, #1e293b, #311042);
}

.service-card:hover .card-image-placeholder {
  transform: scale(1.05);
}

.service-card:hover .card-sublabel {
  color: #ff5903;
}

.service-card:hover .card-link {
  border: 1px solid #4a5068;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 12px;
  background: rgba(255, 89, 3, 0.15);
  border: 1px solid rgba(255, 89, 3, 0.3);
  padding: 5px 9px;
  border-radius: 2px;
}

.card-badge span {
  font-family: 'JetBrainsMono', monospace;
  font-size: 12px;
  color: #ff5903;
  letter-spacing: 2px;
  display: block;
  line-height: normal;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.card-icon {
  margin-bottom: 15px;
  height: 36px;
  display: flex;
  align-items: center;
}

.card-sublabel {
  font-family: 'JetBrainsMono', monospace;
  font-size: 12px;
  color: #8a92a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.card-body .card-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #e8eaf0;
  margin: 0 0 12px 0;
}

.card-body .card-desc {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: #8a92a6;
  line-height: 1.6;
  margin: 0 0 24px 0;
  word-break: keep-all;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #4a5068;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
  margin-top: auto;
  padding: 4px 10px;
}

.card-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.card-link:hover { color: #ff5903; }

.card-link:hover .arrow-icon {
  transform: translateX(4px);
}

@media screen and (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media screen and (max-width: 768px) {
  .services-header { margin-bottom: 40px; }
}

@media screen and (max-width: 500px) {
  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .card-body { padding: 20px; }
}


/*sec_03*/
#sec_03 {
  background: linear-gradient(to bottom, #0a0d16, #06080d);
  padding: clamp(60px, 8vw, 112px) 0;
  width: 100%;
  position: relative;
}

.sec-products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 56px;
}

.products-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.products-tag-line {
  width: 32px;
  height: 1px;
  background: #ff5903;
}

.products-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.products-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(32px, 4vw, 54.4px);
  font-weight: 700;
  color: #e8eaf0;
  margin: 0;
  letter-spacing: -0.5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: #080b14;
  border: 1px solid rgba(225, 104, 49, 0.35);
  height: 420px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #ff5903;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.product-image-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-aerospace {
  background: radial-gradient(circle at 70% 30%, #ff5903 0%, #080b14 70%);
}

.product-image-marine {
  background: radial-gradient(circle at 70% 30%, #2563eb 0%, #080b14 70%);
}

.product-card:hover .product-image-placeholder {
  transform: scale(1.05);
  opacity: 0.35;
}

.product-light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(225, 104, 49, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.5;
  z-index: 2;
}

.product-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(8, 11, 20, 0.2) 0%, rgba(8, 11, 20, 0.8) 100%);
}

.product-icon {
  margin-bottom: 16px;
  height: 28px;
  display: flex;
  align-items: center;
}

.product-sublabel {
  font-family: 'JetBrainsMono', monospace;
  font-size: 12px;
  color: #ff5903;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.product-title-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.product-desc {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(232, 234, 240, 0.65);
  line-height: 1.5;
  margin: 0 0 24px 0;
  max-width: 380px;
  word-break: keep-all;
}

.product-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-badge {
  background: rgba(255, 89, 3, 0.08);
  border: 1px solid rgba(255, 89, 3, 0.2);
  padding: 5px 10px;
  font-family: 'JetBrainsMono', monospace;
  font-size: 12px;
  color: #ff5903;
  letter-spacing: 1px;
  display: block;
  line-height: normal;
  border-radius: 2px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.product-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.product-link:hover { color: #ffffff; }
.product-link:hover .arrow-icon { transform: translateX(4px); }

@media screen and (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card { height: 450px; }
}

@media screen and (max-width: 500px) {
  .products-header { margin-bottom: 40px; }
  .product-content { padding: 24px; }
  .product-title-text { font-size: 30px; }
  .product-desc { max-width: 100%; font-size: 13px; line-height: 1.45; }
  .product-badges { gap: 6px; }
  .product-badge { padding: 4px 10px; font-size: 11px; }
}

/*sec_04*/
#sec_04 {
  background: linear-gradient(168.108deg, rgb(13, 3, 5) 0%, rgb(18, 0, 8) 50%, rgb(13, 3, 5) 100%);
  border-top: 1px solid rgba(225, 104, 49, 0.2);
  border-bottom: 1px solid rgba(225, 104, 49, 0.2);
  padding: clamp(60px, 8vw, 97px) 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sec-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(225, 104, 49, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.sec-stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.stats-grid { display: flex; width: 100%; }

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.stat-item + .stat-item { border-left: 1px solid rgba(255, 89, 3, 0.15); }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  color: #ff5903;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-family: 'JetBrainsMono', monospace;
  font-weight: 600;
  font-size: 12px;
  color: #e8eaf0;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.stat-subtitle {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #ffffff;
  margin: 0;
  word-break: keep-all;
}

@media screen and (max-width: 1024px) {
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; margin: 24px 0; }
  .stat-item + .stat-item { border-left: none; }
}

@media screen and (max-width: 500px) {
  .stat-item { flex: 1 1 100%; margin: 16px 0; }
  .stat-num { font-size: 48px; }
  .stat-subtitle { font-size: 15px; }
}

/*sec_05*/
#sec_05 {
  background: #0a0d16;
  padding: clamp(60px, 8vw, 112px) 0;
  width: 100%;
  position: relative;
}

.sec-news-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-label-group { display: flex; flex-direction: column; align-items: flex-start; }

.news-tagline { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }

.news-tag-line { width: 32px; height: 1px; background: #ff5903; }

.news-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.news-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(32px, 4vw, 54.4px);
  font-weight: 700;
  color: #e8eaf0;
  margin: 0;
  letter-spacing: -0.5px;
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
  padding-bottom: 8px;
}

.news-all-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.news-all-link:hover { color: #ffffff; }

.news-all-link:hover .arrow-icon { transform: translateX(4px); }

.news-tabs { display: flex; gap: 4px; margin-bottom: 32px; }

.news-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 21px;
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.news-tab.active {
  background: #ff5903;
  border: 1px solid #ff5903;
  color: #ffffff;
}

.news-tab:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 89, 3, 0.1);
  color: #8a92a6;
}

.news-tab:not(.active):hover {
  border-color: rgba(255, 89, 3, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 89, 3, 0.1);
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  height: 198px;
  overflow: hidden;
  position: relative;
}

.news-card:hover {
  border-color: rgba(255, 89, 3, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.news-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.news-badge {
  padding: 3px 9px;
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: 12px;
  border-radius: 2px;
  line-height: normal;
  display: block;
}

.badge-press,
.badge-notice,
.badge-archive {
  background: rgba(255, 89, 3, 0.1);
  border: 1px solid rgba(225, 104, 49, 0.2);
  color: #ff5903;
}

.news-date {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #8a92a6;
}

.news-card-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e8eaf0;
  margin: 16px 0 0 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card:hover .news-card-title { color: #ffffff; }

.news-card-desc {
  font-family: 'Noto Sans Korean', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #8a92a6;
  margin: 12px 0 0 0;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #4a5068;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
  margin-top: auto;
  padding-top: 16px;
}

.news-card-link .arrow-icon {
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.news-card:hover .news-card-link { color: #ff5903; }

.news-card-link:hover .arrow-icon { transform: translateX(4px); }

@media screen and (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card { height: auto; min-height: 198px; }
  .news-card-title { -webkit-line-clamp: 2; }
}

@media screen and (max-width: 500px) {
  .news-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none; /* Firefox */
  }
  .news-tabs::-webkit-scrollbar { display: none; /* Safari and Chrome */ }
  .news-tab { flex: 0 0 auto; }
  .news-card { padding: 20px; }
}

/*sec_06*/
#sec_06 {
  background: linear-gradient(to bottom, #06080d, #0a0205);
  padding: clamp(60px, 8vw, 112px) 0;
  width: 100%;
  position: relative;
}

.sec-contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 64px;
}

.contact-info {
  flex: 1 1 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-tag-line {
  width: 32px;
  height: 1px;
  background: #ff5903;
}

.contact-tag-text {
  font-family: 'JetBrainsMono', monospace;
  font-size: 14px;
  color: #ff5903;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-title {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: clamp(32px, 4vw, 54.4px);
  font-weight: 700;
  color: #e8eaf0;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.contact-desc {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: 16px;
  color: #8a92a6;
  line-height: 1.6;
  margin: 0 0 40px 0;
  word-break: keep-all;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  background: rgba(255, 89, 3, 0.08);
  border: 1px solid rgba(225, 104, 49, 0.2);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-label {
  font-family: 'JetBrainsMono', monospace;
  font-size: 13px;
  color: #8a92a6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-val {
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: 17px;
  color: #e8eaf0;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  word-break: keep-all;
}

.contact-form-box {
  flex: 1 1 560px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 89, 3, 0.15);
  padding: 33px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.chk_box_label,
.form-label {
  font-weight: 500;
  font-size: 12px;
  color: #8a92a6;
  letter-spacing: 1px;
}

.chk_box_view {
  display: inline-block;
  font-weight: 500;
  font-size: 11px;
  color: #8a92a6;
  letter-spacing: 1px;
  margin-left: 10px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chk_box_view:hover {
  background: rgba(255, 89, 3, 0.1);
  border-color: #ff5903;
  color: #ff5903;
}

.form-input {
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 89, 3, 0.15);
  padding: 0 17px;
  box-sizing: border-box;
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: 14px;
  color: #e8eaf0;
  transition: all 0.2s ease;
}

.form-textarea {
  width: 100%;
  height: 126px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 89, 3, 0.15);
  padding: 13px 17px;
  box-sizing: border-box;
  font-family: 'Noto Sans Korean', sans-serif;
  font-size: 14px;
  color: #e8eaf0;
  resize: none;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff5903;
  background: rgba(255, 255, 255, 0.06);
}

.form-submit-btn {
  width: 100%;
  height: 54px;
  background: #ff5903;
  border: none;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit-btn:hover { background: #e04f02; }

@media screen and (max-width: 1200px) {
  .sec-contact-container { gap: 40px; }
}

@media screen and (max-width: 768px) {
  .contact-info { flex: 1 1 100%; }
  .contact-form-box { flex: 1 1 100%; }
  .contact-desc { margin-bottom: 30px; }
}

@media screen and (max-width: 500px) {
  .contact-form-box { padding: 24px; }
  .detail-val { font-size: 15px; }
}

/* Privacy Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #111827;
    border: 1px solid rgba(255, 89, 3, 0.3);
    width: 90%;
    max-width: 600px;
    border-radius: 6px;
    box-sizing: border-box;
    overflow: hidden;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-header h3 {
    margin: 0;
    color: #ff5903;
    font-size: 16px;
    font-weight: 600;
}
.modal-close-btn {
    background: none;
    border: 0;
    color: #8a92a6;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.modal-close-btn:hover {
    color: #ffffff;
}
.modal-body {
    padding: 20px;
}
.modal-body textarea {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a3aab9;
    padding: 15px;
    box-sizing: border-box;
    resize: none;
    font-size: 13px;
    line-height: 1.6;
    outline: none;
}
.modal-footer {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}
.modal-confirm-btn {
    padding: 10px 24px;
    background: #ff5903;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s ease;
}
.modal-confirm-btn:hover {
    background: #e04f02;
}