/* -------- RESET -------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'DM Sans', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* -------- LAYOUT WRAPPER -------- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}


.team-page main .container {
  max-width: 1200px;
  margin: 0 auto;
}


/* -------- HEADER / NAV -------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
	max-width: 1600px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 30px;      /* 원하는 높이 */
  width: auto;       /* 비율 유지 */
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 0.95rem;
  color: #333333;
	letter-spacing: 0.0625rem;
text-transform: uppercase;
}

.nav-links a {
position: relative;
  display: inline-block;
  color: #333333;
  text-decoration: none;
  transition: color 0.25s ease;
  
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: -8px;
 right: -8px;
  bottom: -6px;
  height: 2px;
  background-color: #333333;
	opacity: 0;
  transform: scaleX(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links:hover a {
	color: #999999;
}

.nav-links a:hover {
	color: #333333;
}
.nav-links a:hover::after {
 opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #16a34a;
  font-size: 0.9rem;
  font-weight: 500;
}
.btn-demo {
  display: inline-flex;
	padding: 12px 30px;
	border: 0px solid #d1d5db;
  background-color: #ffffff;
  align-items: center;
  position: relative;
  font-weight: 500;
	font-size: 1rem;
  color: #333333;
  transition: all 0.3s ease;
cursor: pointer;
	  border-radius: 999px;
	margin-top: 10px;
}

.btn-demo_black {
  display: inline-flex;
	padding: 12px 30px;
	border: 0px solid #d1d5db;
  background-color: #333333;
  align-items: center;
  position: relative;
  font-weight: 500;
	font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
cursor: pointer;
	  border-radius: 999px;
	margin-top: 20px;
}


/* -------- MOBILE NAV -------- */
.nav-toggle {
  display: none;
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  position: relative;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
}
.nav-toggle-bar::before {
  top: -6px;
}
.nav-toggle-bar::after {
  top: 6px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 15px 16px;
  font-size: 0.95rem;
}

.nav-mobile a {
  padding: 8px 0;
}

/* -------- HERO SECTION -------- */
/* -------- HERO SECTION -------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 140px 0 120px;
  color: #ffffff;
  touch-action: pan-y;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
    transition: opacity 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #ecfdf3;
  color: #333333;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #ffffff;
}

.contact-title .highlight {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

/* -------- SECTION GENERIC -------- */
section {
  padding: 56px 0;
  border-top: 1px solid #f3f4f6;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  font-weight: 400;
  margin-bottom: 0px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0px;color: #333333;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

/* -------- FEATURES / VALUE -------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  border-radius: 18px;
  /* border: 1px solid #e5e7eb;  */
  padding: 18px 16px;
  background-color: #ffffff;
	  text-align: center;
}

.feature-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.feature-icon img {
  width: 150px;   /* 원하는 크기 */
  height: 150px;
  object-fit: cover;
  border-radius: 50%; /* 동그란 이미지 유지 (선택) */
}
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.98rem;
  color: #666666;
	text-align: left;
}

/* -------- PRODUCT / CATEGORY GRID -------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: 0px;
  border: 1px solid #cccccc;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.card-image {
  background-color: #000000;
  aspect-ratio: 4 / 3;
}

.card-body {
  padding: 20px;
  font-size: 0.9rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.card-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* -------- PORTFOLIO (OUR LATEST WORK) -------- */
.section-portfolio {
  padding: 50px 0 0;
  text-align: center;
	background-color: #f5f5f5;
	
}

.section-portfolio-header {
  margin-bottom: 0px;
}

.section-portfolio-title {
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 300;
}

.section-portfolio-link {
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888888;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 5px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-item figcaption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

.portfolio-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-item p {
  font-size: 0.8rem;
  color: #d1d5db;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item:hover figcaption {
  opacity: 1;
}

/* -------- OPS SECTION -------- */
.ops-section {
  padding: 72px 0 0;
}

.ops-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.ops-heading {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 36px;
}

.ops-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  font-size: 0.98rem;
  margin-bottom: 72px;
}

.ops-feature-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.ops-feature-text {
  color: #4b5563;
}

.ops-visual-bg {
  margin-top: 0;
  padding: 80px 0;
  background-color: #e5f0ff;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 12px 12px;
}

.ops-visual-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.ops-card {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  flex: 1 1 360px;
  max-width: 520px;
}

.ops-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------- FOOTER -------- */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 64px 24px 0 24px;
  color: #333333;
}

.footer-container {
    max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}

.footer-brand {
  flex: 1 1 340px;
  max-width: 480px;
}



.footer-logo img {
  width: 200px; /* ?? */
  max-width: 80%; /* 80% ?? */
  height: auto;
} 

.footer-lead {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: 0px;
  color: #666666;
}

.footer-contact a {
  color: #666666;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-description-row {
  height: auto;
  min-height: auto;
  width: 100%;
	margin-bottom: 30px;
}

.footer-description {
  max-width: 100%;
  margin: 0;
  line-height: 1.7;
	color: #666666;
	font-size: 0.95rem;
}




.footer-links-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 100px;
}

.footer-col {
  min-width: 140px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #333333;
}



.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
	font-size: 0.95rem;
	color: #666666;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #666666;
	margin-bottom: 5px;
}

.footer-contact-item img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.footer-contact-time {
  font-size: 0.95rem;
  color: #666666;
  margin-left: 28px; /* ??? align ?? */
}

/* -------- BACK TO TOP BUTTON -------- */
#backToTop {
  position: fixed;
  right: 40px;
  bottom: 50px;
  z-index: 999;

  background-color: #111827;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    bottom 0.25s ease,
    background-color 0.2s ease;
}

/* 나타날 때 상태 */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  background-color: #16a34a;
  transform: translateY(-3px);
}



/* -------- PAGE HERO (BLOG) -------- */
.page-hero {
  padding: 72px 0 24px;
  border-top: none;
}

.page-hero-blog {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.blog-hero-inner {
  max-width: 960px;
}

.page-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-title {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 640px;
}

/* -------- BLOG LIST LAYOUT -------- */
.blog-list-section {
  padding: 40px 0 80px;
  border-top: none;
  background: #f9fafb;
}

.blog-layout {
  max-width: 1040px;
  margin: 0 auto;
}

/* Featured card (big) */
.blog-card-featured {
  display: block;
  margin-bottom: 32px;
}

/* Common blog card styles */
.blog-card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card-image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 220px;
}

.blog-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card-content {
  padding: 16px 18px 20px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: #6b7280;
}

.blog-card-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #ecfdf3;
  color: #15803d;
  font-weight: 500;
  font-size: 0.75rem;
}

.blog-card-dot {
  font-size: 0.9rem;
}

.blog-card-date {
  font-size: 0.8rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.blog-card-readmore {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 500;
}

/* Hover */
.blog-card:hover {
  border-color: #c4d4ff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.blog-card:hover .blog-card-image-wrap img {
  transform: scale(1.05);
}

/* Grid for non-featured posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* -------- PAGE HERO (BLOG) -------- */
.page-hero {
  padding: 72px 0 24px;
  border-top: none;
}

.page-hero-blog {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.blog-hero-inner {
  max-width: 960px;
}

/* 기존 page-kicker/page-title/page-subtitle 있으면 이 값으로 덮어써도 됨 */
.page-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-title {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 640px;
}

/* -------- BLOG CONTROLS (FILTER + SEARCH) -------- */
.blog-list-section {
  padding: 32px 0 80px;
  border-top: none;
  background: #f9fafb;
}

.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

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

.blog-filter-btn {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  color: #4b5563;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, box-shadow 0.15s ease;
}

.blog-filter-btn:hover {
  border-color: #c4d4ff;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.35);
}

.blog-filter-btn--active {
  background-color: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-search-input {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
  min-width: 180px;
}

.blog-search-btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.8rem;
  cursor: pointer;
}

/* -------- BLOG LIST LAYOUT -------- */
.blog-layout {
  max-width: 1040px;
  margin: 0 auto;
}

/* Featured card */
.blog-card-featured {
  display: block;
  margin-bottom: 32px;
}

/* Common blog card styles */
.blog-card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card-image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 220px;
}

.blog-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card-content {
  padding: 16px 18px 20px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: #6b7280;
}

.blog-card-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background-color: #ecfdf3;
  color: #15803d;
  font-weight: 500;
  font-size: 0.75rem;
}

.blog-card-dot {
  font-size: 0.9rem;
}

.blog-card-date {
  font-size: 0.8rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 10px;
}

.blog-card-readmore {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 500;
}

/* Hover */
.blog-card:hover {
  border-color: #c4d4ff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.blog-card:hover .blog-card-image-wrap img {
  transform: scale(1.05);
}

/* Grid for non-featured posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* -------- BLOG POST HERO -------- */
.blog-post-hero {
  padding: 56px 0 32px;
  border-top: none;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.blog-post-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1040px;
}

.blog-post-hero-text {
  flex: 1 1 0;
}

.blog-post-hero-image {
  flex: 1 1 0;
  max-width: 420px;
}

.blog-post-hero-image img {
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  width: 100%;
  height: auto;
}

/* -------- BLOG POST DETAIL -------- */
.blog-post {
  padding: 40px 0 72px;
  border-top: none;
}

.blog-post-inner {
  max-width: 760px;
}

.blog-post-header {
  margin-bottom: 16px;
}

.blog-back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.blog-back-link:hover {
  color: #111827;
}

.blog-post-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-post-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.blog-post-meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.blog-post-body {
  font-size: 0.98rem;
  color: #111827;
}

.blog-post-body p {
  margin-bottom: 14px;
}

.blog-post-body h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 20px 0 8px;
}

.blog-post-body ul {
  padding-left: 1.2rem;
  margin-bottom: 14px;
}

.blog-post-body li {
  margin-bottom: 6px;
}

/* -------- BLOG POST NAV -------- */
.blog-post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.blog-post-nav-link {
  flex: 1 1 260px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.blog-post-nav-link:hover {
  background-color: #f3f4ff;
  border-color: #c4d4ff;
  transform: translateY(-2px);
}

.blog-post-nav-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.blog-post-nav-title {
  font-size: 0.95rem;
  font-weight: 500;
}

/* -------- RELATED POSTS -------- */
.blog-related {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.blog-related-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-related-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 12px 12px 14px;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.blog-related-link {
  display: block;
  color: inherit;
}

.blog-related-tag {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.blog-related-heading {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.blog-related-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.blog-related-card:hover {
  border-color: #c4d4ff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

/* -------- BLOG RESPONSIVE -------- */
@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-post-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-post-hero-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 56px;
  }

  .blog-controls {
    align-items: stretch;
  }

  .blog-search {
    width: 100%;
    justify-content: flex-start;
  }

  .blog-search-input {
    flex: 1;
  }

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

  .blog-card-image-wrap {
    max-height: 200px;
  }

  .blog-post {
    padding-top: 32px;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

/* -------- GO TO TOP BUTTON -------- */
#goTopBtn {
  position: fixed;
  right: 28px;
  bottom: 28px;               /* 기본 위치 */
  z-index: 50;

  /* 처음엔 안 보이도록 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);

  background-color: #111827;
  color: white;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    bottom 0.25s ease,
    background-color 0.2s ease;
}

/* 보여질 때 상태 */
#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#goTopBtn:hover {
  background-color: #16a34a;
  transform: translateY(-3px);
}


/* -------- HIGHLIGHTS SECTION (FULL WIDTH) -------- */
.highlights-section {
  width: 100%;
  padding: 100px 40px;    /* 좌우 여백은 화면이 너무 붙지 않도록 */
  box-sizing: border-box;
	background: #E5E5E5;
}

/* 텍스트도 왼쪽 정렬, 슬쩍 안쪽으로 */
.highlights-header {
  max-width: 1700px;      /* 너무 넓어지지 않게 */
  margin: 0 auto 40px auto;
}

.highlights-kicker {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.highlights-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
	margin-bottom: 5px;
}

/* --- FULL WIDTH GRID --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1700px;  /* 섹션이 너무 넓어보이지 않도록 */
  margin: 0 auto;
}

.highlight-card {
  /* 카드 전체는 배경/그림자 없이, 이미지만 카드처럼 보이게 */
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.25s ease;
}

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

.highlight-media {
  width: 100%;
  padding-top: 65%;   /* 비율 유지 */
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  /*box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);*/
}

.highlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

/* -------- RESPONSIVE -------- */

/* 태블릿 */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

/* 모바일 */


@media (max-width: 700px) {
  .highlights-section {
    padding: 60px 20px;
  }

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

  .highlight-card {
    border-radius: 20px;
  }
}

.highlight-card-link {
  display: block;
  height: 100%;
  cursor: pointer;
}
/*
.highlight-card:hover .highlight-media img {
  transform: scale(1.04);  light zoom-in 
}*/

.highlight-info {
  margin-top: 16px;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333; /* 원하는 컬러로 바꿔도 됨 */
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 0.95rem;
  color: #333333; /* 지금 스샷처럼 살짝 진한 초록 느낌이면 이렇게 */
  line-height: 1.5;
}

/* ================================
   MOBILE RESPONSIVE (max-width: 700px)
=================================== */
@media (max-width: 700px) {

  /* 전체 그리드: 1열로 */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  /* 카드 이미지의 비율 수정 (모바일은 더 넓게 보여야 예쁨) */
  .highlight-media {
    padding-top: 75%; /* 65% → 75% 로 조금 더 세로로 */
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  }

  /* 이미지 hover 효과는 모바일 비활성화 */
  .highlight-card:hover .highlight-media img {
    transform: none;
  }

  .highlight-media img {
    object-fit: cover;
    transform: none;
  }

  /* 텍스트 영역 간격 */
  .highlight-info {
    margin-top: 14px;
  }

  /* 타이틀 사이즈 */
  .highlight-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  /* 설명 텍스트 */
  .highlight-text {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* 섹션 헤더 간격 */
  .highlights-header {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  /* 섹션 타이틀 모양 */
  .highlights-title {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.2;
	  margin-bottom: 10px;
  }
}

v
/* ===== FULL-WIDTH STATS SECTION ===== */
.stats-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #000000; /* 블랙 배경 */
  text-align: center;
  color: #fff;
}

.stats-top-text {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 48px;
	text-align: center;
}

/* 숫자 3개 배치 */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 60px 16px;
  }

  .stat-number {
    font-size: 2.6rem;
  }
}


.contact-section {
  padding: 70px 0;
  background: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 200px;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
	 line-height: 1.15;
}



.contact-desc {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-dec .highlight {
  display: block;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 8px; /* 아이콘과 텍스트 간격 */
  font-size: 14px;
  color: #374151;
}

.contact-email img {
  width: 16px;
  height: 16px;
  opacity: 1; /* 살짝 연하게 */
}

.contact-email img {
  width: 18px;
  height: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #d1d5db;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
}


input::placeholder,
textarea::placeholder {
  font-size: 1rem;
  color: #999999;  /* ? ???? grey */
  font-weight: 400;
}



.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-weight: 600;
}

.field-error {
  color: #D32F2F;
  font-size: 0.75rem;
  display: none;
  margin-top: 2px;
  margin-bottom: 4px;
}

#demo-result {
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px; /* 이메일 / 전화 사이 간격 */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #374151;
}

.contact-item img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}


@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.two-column-feature {
  padding: 80px 0;
  background: #f5f5f5;
}

.two-column-feature__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 80px;
}

.two-column-feature__header {
  width: 100%;
  margin-bottom: 8px;
}

.two-column-feature__media {
  flex: 0 0 calc(54% - 40px);
}

.two-column-feature__content {
  flex: 0 0 calc(46% - 40px);
}

.two-column-feature__media img {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.two-column-feature__title {
  margin: 0 0 24px;
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
}

.two-column-feature__text {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.55;
  color: #374151;
}

.two-column-feature.reverse .two-column-feature__container {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .two-column-feature {
    padding: 64px 0;
  }

  .two-column-feature__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 20px;
  }

  .two-column-feature__media,
  .two-column-feature__content {
    width: 100%;
  }

  .two-column-feature__title {
    font-size: 32px;
  }

  .two-column-feature__text {
    font-size: 18px;
    line-height: 1.6;
  }

  .two-column-feature.reverse .two-column-feature__container {
    flex-direction: column;
  }

  .two-column-feature.reverse .two-column-feature__media {
    order: 1;
  }

  .two-column-feature.reverse .two-column-feature__content {
    order: 2;
  }
}

  .two-column-feature.reverse .two-column-feature__content {
    order: 2;
  }



.two-column-feature__header {
  width: 100%;
  margin-bottom: 24px;
	margin-left: 90px;

}

/* ===== TEAM PAGE ===== */
.team-page-hero {
  padding: 32px 0 32px;
  background: #ffffff;
}

.team-page-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 500;
  color: #111827;
letter-spacing: 0.05rem;
	text-align: center;

}

.team-page-subtitle {
  font-size: 1.rem;
  color: #666666;
  margin-bottom: 12px;
	text-align: center;
}

.team-page-desc {
  font-size: 1.05rem;
  color: #374151;
  max-width: 1000px;
}

.team-members-section {
  padding: 50px 0 100px;
  background: #ffffff;
}

.team-member-row {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 100px;
}

.team-member-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.team-member-row.reverse .team-member-photo {
  order: 2;
}

.team-member-row.reverse .team-member-content {
  order: 1;
}

.team-member-photo img {
  aspect-ratio: 3 / 3;
  object-fit: cover;
}

.team-member-photo {
  /* ===== max-width: 320px;===== */
	justify-content: center;
}

.team-member-name {
  font-size: 1.625rem;
  font-weight: 400;
  color: #333333;
}

.team-member-role {
  font-size: 0.9375rem;
  color: #666666;
  margin-bottom: 5px;
}

.team-member-bio p {
  font-size: 0.9375rem;

  line-height: 1.5;
  color: #333333;
  margin-bottom: 18px;
  max-width: 700px;
}

.team-member-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
	  font-size: 0.9rem; 
  color: #666666;
}

.team-member-email img {
  width: 17px;
  height: 17;
  opacity: 0.75;
  flex-shrink: 0;
}

.team-member-email a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.team-member-email a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-member-email img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .team-member-row,
  .team-member-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .team-member-row.reverse .team-member-photo,
  .team-member-row.reverse .team-member-content {
    order: initial;
  }

  .team-page-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 370px) {
  .team-page-hero {
    padding: 56px 0 24px;
  }

  .team-members-section {
    padding: 24px 0 72px;
  }

  .team-member-name {
    font-size: 1.5rem;
  }

  .team-member-role {
    font-size: 1rem;
  }

  .team-member-bio p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}



/* Work*/


.work-showcase-section {
  padding: 20px 0 120px;
  background: #f5f5f5;
}

.work-showcase-section .container {
  max-width: 1500px;
	margin-top: 30px;
}

.work-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.work-card {
  display: block;
  text-decoration: none;
  color: #333333;
	
}


.work-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #e5e7eb;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover .work-card__image-wrap {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}

.work-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 0%;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}

/* 오른쪽 카드용 그라데이션 오버레이 */
.work-card__overlay--gradient {
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0) 0%,
    rgba(17, 24, 39, 0.08) 20%,
    rgba(17, 24, 39, 0.42) 100%
  );
}

.work-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 56px;
  padding: 0 24px;
  
  
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.04);
 
  transform: translateY(8px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.work-card__label {
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Hover */
.work-card:hover .work-card__image {
  transform: scale(1.02);
  filter: brightness(0.72);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
  background: rgba(17, 24, 39, 0.24);
}

.work-card:hover .work-card__overlay--gradient {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.02) 0%,
    rgba(17, 24, 39, 0.12) 30%,
    rgba(17, 24, 39, 0.58) 100%
  );
}

.work-card:hover .work-card__cta {
  transform: translateY(0);
}

/* Focus */
.work-card:focus-visible .work-card__overlay {
  opacity: 1;
}

.work-card:focus-visible .work-card__cta {
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
  .work-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
	  gap: 50px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .work-showcase-section {
    padding: 64px 0 80px;
  }



  .work-card__label {
    margin-top: 18px;
    font-size: 1rem;
  }

  .work-card__cta {
    min-width: 132px;
    height: 50px;
    font-size: 1.35rem;
  }
}

.two-column-feature__content ul {
  margin-top: 24px;
  padding-left: 20px; /* bullet 간격 */
}

.two-column-feature__content li {
  font-size: 20px;         /* 👈 핵심 */
  line-height: 1.7;        /* 👈 여유 */
  color: #4b5563;          /* body text 톤 */
  margin-bottom: 10px;
}

.service .container {
  max-width: 1500px;
}

.hero {
  touch-action: pan-y;
}

.compare-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.compare-scroll-hint {
  display: none;
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
}

.compare-table thead th {
  background: #111111;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  white-space: nowrap;
}

.compare-table tbody tr {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

.compare-table tbody tr:hover {
  background-color: #eef2f7;
}

.compare-table tbody td {
  padding: 15px 24px;
  border-bottom: 1px solid #dddddd;
  vertical-align: middle;
  font-size: 0.98rem;
  color: #333333;
  text-align: left;
  line-height: 1.6;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  width: 34%;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}

.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3),
.compare-table tbody td:nth-child(4) {
  width: 25%;
}

.compare-table tbody td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.04);
}

.compare-table tbody tr:nth-child(even) td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.06);
}

.compare-table tbody tr:hover td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.09);
}

.compare-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.compare-badge__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-badge__icon img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.compare-badge__text {
  display: inline-block;
  word-break: keep-all;
}

/* Success */
.compare-badge--success {
  color: #2e7d32;
}

.compare-badge--success .compare-badge__icon {
  background: #16a34a;
}

/* Danger */
.compare-badge--danger {
  color: #c62828;
}

.compare-badge--danger .compare-badge__icon {
  background: #ef4444;
}

/* Warning */
.compare-badge--warning {
  color: #ef6c00;
}

.compare-badge--warning .compare-badge__icon {
  background: #f59e0b;
}

/* tablet */
@media (max-width: 1023px) {
  .compare-section {
    padding: 80px 0;
  }

  .compare-table {
    min-width: 900px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 18px 20px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .compare-section {
    padding: 64px 0;
  }

  .compare-scroll-hint {
    display: block;
  }

  .compare-table {
    min-width: 820px;
  }

  .compare-table thead th {
    font-size: 0.92rem;
    padding: 14px 16px;
  }

  .compare-table tbody td {
    font-size: 0.92rem;
    padding: 14px 16px;
    line-height: 1.5;
  }

  .compare-table tbody td:first-child {
    font-size: 0.95rem;
  }

  .compare-badge {
    gap: 8px;
  }

  .compare-badge__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .compare-badge__icon img {
    width: 13px;
    height: 13px;
  }

  .compare-badge__text {
    font-size: 0.92rem;
  }
}.compare-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.compare-scroll-hint {
  display: none;
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  webkit-overflow-scrolling: touch;
	margin-top: 30px;
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
}

.compare-table thead th {
  background: #111111;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  white-space: nowrap;
}

.compare-table tbody tr {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}

.compare-table tbody tr:hover {
  background-color: #eef2f7;
}

.compare-table tbody td {
  padding: 15px 24px;
  border-bottom: 1px solid #d9d9d9;
  vertical-align: middle;
  font-size: 0.98rem;
  color: #111827;
  text-align: left;
  line-height: 1.6;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  width: 30%;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}

.compare-table tbody td:nth-child(2)
.compare-table tbody td:nth-child(3),
.compare-table tbody td:nth-child(4) {
  width: 26%;
}

.compare-table tbody td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.04);
}

.compare-table tbody tr:nth-child(even) td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.06);
}

.compare-table tbody tr:hover td.compare-table__joeun {
  background: rgba(46, 125, 50, 0.09);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  line-height: 1.5;

}

/* ??? ?? */
.compare-badge__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SVG ? ??? ?? */
.compare-badge__icon img {
  width: 16px;
  height: 16px;
  display: block;
  filter: none; /* ? ?? invert ?? */
}

.compare-badge__text {
  display: inline-block;
  word-break: keep-all;
	font-size: 0.9375rem;
}

/* Success */
.compare-badge--success {
  color: #2e7d32;
}

.compare-badge--success .compare-badge__icon {
  background: rgba(46, 125, 50, 0.12); /* ?? ?? */
}

/* Danger */
.compare-badge--danger {
  color: #c62828;
}

.compare-badge--danger .compare-badge__icon {
  background: rgba(198, 40, 40, 0.12);
}


/* Warning */
.compare-badge--warning {
  color: #ef6c00;
}

.compare-badge--warning .compare-badge__icon {
  background: rgba(239, 108, 0, 0.14);
}

/* tablet */
@media (max-width: 991px) {
  .compare-section {
    padding: 80px 0;
  }

  .compare-table {
    min-width: 900px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 15px 20px;
  }
}

.compare-table td:nth-child(2) .compare-badge__text {
  font-weight: 600;
}

/* mobile */
@media (max-width: 767px) {
  .compare-section {
    padding: 64px 0;
  }

  .compare-scroll-hint {
    display: block;
  }

  .compare-table {
    min-width: 820px;
  }

  .compare-table thead th {
    font-size: 0.92rem;
    padding: 14px 16px;
  }

  .compare-table tbody td {
    font-size: 0.92rem;
    padding: 14px 16px;
    line-height: 1.5;
  }

  .compare-table tbody td:first-child {
    font-size: 0.95rem;
  }

  .compare-badge {
    gap: 8px;
  }

  .compare-badge__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .compare-badge__icon img {
    width: 13px;
    height: 13px;
  }

  .compare-badge__text {
    font-size: 0.92rem;
  }
	
	  .team-member-row,
  .team-member-row.reverse {
    flex-direction: column;
    align-items: stretch; /* ? ??: center ?? ??? ?? */
  }

  .team-member-photo {
    display: flex;
    justify-content: center; /* ? ???? ??? */
    width: 100%;
    margin-bottom: 24px;
  }

  .team-member-photo img {
    display: block;
    max-width: 260px;
    width: 100%;
  }

  .team-member-content {
    width: 100%;
    text-align: left !important; /* ? ?? */
  }

  .team-member-name,
	.team-member-role {
    text-align: center !important; /* ? center ???? */
  }
  .team-member-bio,
  .team-member-bio p {
    text-align: left !important; /* ? center ???? */
  }
}

/* -------- FOOTER RESPONSIVE -------- */

@media (max-width: 767px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
	
  }
	
	.footer-links-grid {
    display: grid;
    gap: 40px; 
}
	
	.site-footer {
    padding:20px 0px;
	}
	
	.footer-brand * {
    margin-bottom: 8px;
  }
		
}



@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

  }

  .footer-links-grid {
    width: 100%;
    justify-content: flex-start;
    gap: 32px;          
  }

  .footer-col {
    min-width: 160px;
    text-align: left;
    padding-left: 0px;
  }
	
	 .footer-brand {
    flex: 0 0 auto;
    max-width: 100%;
  }
}



/* -------- RESPONSIVE -------- */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ops-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .ops-heading {
    margin-bottom: 28px;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-mobile {
    display: none;
  }
  .cards-grid,
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 40px;
  }
  .section-portfolio-title {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .ops-section {
    padding-top: 56px;
  }
  .ops-container,
  .ops-visual-inner {
    padding: 0 16px;
  }
  .ops-features {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .ops-heading {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }
  .ops-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ops-visual-bg {
    padding: 30px 0;
  }
  .ops-heading {
    margin-bottom: 20px;
  }
}