/* HyperPipe New Design CSS */

/* Color Variables */
:root {
  /* Background Colors */
  --vh-bg-dark: #001F4D;      /* 어두운 남색 - 헤더 배경 */
  --vh-bg: #FFFFFF;           /* 흰색 - 메인 콘텐츠 */
  --vh-bg-light: #F6F7F8;     /* 아주 연한 회색 - 사이 콘텐츠 */
  --vh-footer: #E6E8EA;       /* 연한 회색 - 푸터 */
  
  /* Primary Colors */
  --vh-primary: #80B3FF;      /* 연한 남색 - 버튼, 액센트 */
  --vh-secondary: #4F82C0;    /* 밝은 남색 - 텍스트, 기능 버튼 */
  --vh-navy: #1A237E;        /* 진한 남색 */
  
  /* Gray Scale */
  --vh-gray-01: #B2B7BE;
  --vh-gray-02: #989FA8;
  --vh-gray-03: #7E8792;
  --vh-gray-04: #646F7C;
  --vh-black: #212529;
  
  /* Typography */
  --vh-font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  --vh-font-weight-light: 200;
  --vh-font-weight-regular: 300;
  --vh-font-weight-medium: 400;
  --vh-font-weight-semibold: 500;
  --vh-font-weight-bold: 700;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* 가로 스크롤 방지 */
  max-width: 100%; /* 최대 너비 제한 */
}

body {
  font-family: var(--vh-font-family);
  color: var(--vh-black);
  background-color: var(--vh-bg);
  line-height: 1.6;
}

/* Main Layout Container */
.hyperpipe-layout {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden; /* 가로 스크롤 방지 */
  max-width: 100%; /* 최대 너비 제한 */
}

/* Left Sidebar (Header) */
.hyperpipe-sidebar {
  width: 520px;
  background-color: var(--vh-bg-dark);
  color: white;
  padding: 40px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Sidebar Header - Logo and CTA Button */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  min-height: 40px; /* 최소 높이 설정으로 중앙정렬 보장 */
}

/* Sidebar Logo */
.sidebar-logo img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1); /* SVG를 흰색으로 변경 */
}

/* Sidebar Main Message */
.sidebar-main-message {
  font-size: 44px;
  font-weight: var(--vh-font-weight-semibold);
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 100px;
  flex: 1;
}

.sidebar-main-message-em {
  color: var(--vh-secondary);
}

.sidebar-sub-message {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  margin-bottom: 24px;
  color: var(--vh-secondary);
  opacity: 1;
}

/* Sidebar Navigation */
.sidebar-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
  flex: 1;
}

.sidebar-nav-btn {
  background-color: var(--vh-secondary);
  color: var(--vh-bg);
  border: none;
  height: 60px;
  border-radius: 4px;
  font-family: var(--vh-font-family);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex: 1;
  min-width: 0;
  opacity: 0.6;
}

.sidebar-nav-btn:hover {
  opacity: 1;
}

/* Sidebar Footer Links */
.sidebar-footer {
  margin-top: auto;
}

.sidebar-footer p {
  color: var(--vh-gray-02);
  font-size: 14px;
  font-weight: var(--vh-font-weight-medium);
  opacity: 0.7;
}


/* Main Content Area */
.hyperpipe-main {
  flex: 1;
  margin-left: 520px;
  background-color: var(--vh-bg);
  width: calc(100% - 520px);
  min-width: 0;
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

/* Intro Section */
.intro-section {
  padding: 40px 40px;
  text-align: center;
}

/* About Section */
.about-section {
  padding: 80px 40px;
  text-align: center;
}

.about-section:nth-child(even) {
  background-color: var(--vh-bg-light);
}

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

.about-logo {
  margin-bottom: 24px;
}

.about-logo img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.about-subtitle {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  color: var(--vh-gray-03);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections (for other sections) */
.content-section {
  padding: 80px 60px;
}

.content-section:nth-child(even) {
  background-color: var(--vh-bg-light);
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 0px 20px 60px 20px;
  text-align: center;
}

/* CEO Message Section */
.message-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 80px 60px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-content {
  width: 100%;
  max-width: 800px;
}

/* 데스크탑/태블릿용 hero-text 스타일 (768px 이상) */
@media (min-width: 768px) {
  .hero-text {
    font-size: 0; /* 데스크탑/태블릿: 원본 텍스트 숨김 */
    line-height: 1.5;
    text-align: left;
    margin-top: 60px;
    position: relative;
  }
  
  /* 데스크탑/태블릿에서만 hero 텍스트를 3줄로 줄바꿈하여 표시 */
  .hero-text::before {
    content: "프로덕트팀이 현재 리소스와 역량에 맞는\A적정 기술과 AI를 사용하여\A높은 반응력(Reflection)을 갖고\A임팩트 있는 프로덕트로 성과를 낼 수 있도록\A하이퍼파이프가 함께합니다.";
    white-space: pre-line;
    display: block;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    color: var(--vh-black);
  }
}

/* 모바일용 hero-text 스타일 (767px 이하) */
@media (max-width: 767px) {
  .hero-text {
    font-size: 24px; /* 원본 텍스트 보이게 */
    line-height: 1.4;
    text-align: center;
    color: var(--vh-black);
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
  }
  
  .hero-text .hero-group {
    margin-bottom: 12px; /* 그룹 사이에 간격 */
  }
  
  .hero-text .hero-group:last-child {
    margin-bottom: 0; /* 마지막 그룹은 하단 마진 제거 */
  }
  
  .hero-text .hero-line {
    display: block; /* 줄바꿈을 위해 block으로 설정 */
    margin-bottom: 0; /* 줄 사이 마진 제거 */
  }
  
}

.message-content {
  width: 100%;
  max-width: 800px;
}

.message-text {
  font-size: 18px;
  font-weight: var(--vh-font-weight-medium);
  line-height: 1.5;
  color: var(--vh-black);
  position: relative; /* 따옴표 위치 기준점 */
}

.ai-quote {
  color: var(--vh-navy);
}

.message-text-content {
  line-height: 1.8;
}

/* Section Headers */
.section-header {
  font-size: 36px;
  font-weight: var(--vh-font-weight-medium);
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: 36px;
  font-weight: var(--vh-font-weight-medium);
  color: var(--vh-black);
  margin-bottom: 60px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 0px;
  width: 100%;
  justify-items: center;
}

/* 데스크탑과 태블릿에서 모바일 텍스트 숨김 */
@media (min-width: 768px) {
  .feature-mobile-text {
    display: none;
  }
}

.features-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

/* 첫 번째 features-text만 더 큰 하단 마진 적용 */
.features-text-first {
  margin-bottom: 80px !important;
}

.feature-image {
  margin-bottom: 20px;
  width: 100%;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.25);
}

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

.feature-title {
  font-size: 24px;
  font-weight: var(--vh-font-weight-semibold);
  margin-bottom: 10px;
}

.feature-description {
  color: var(--vh-gray-03);
  line-height: 1.4;
}


/* Experience Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; /* 데스크탑에서 더 큰 간격 */
  margin-bottom: 0px;
  width: 100%;
  justify-items: center;
}


/* 데스크탑과 태블릿에서 모바일 텍스트 숨김 */
@media (min-width: 768px) {
  .experience-mobile-text {
    display: none;
  }
}

.experience-text {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

/* 첫 번째 experience-text만 더 큰 하단 마진 적용 */
.experience-text-first {
  margin-bottom: 80px !important;
}

.experience-image {
  margin-bottom: 20px;
  width: 100%;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

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

.experience-title {
  font-size: 24px;
  font-weight: var(--vh-font-weight-semibold);
  margin-bottom: 10px;
}

.experience-description {
  color: var(--vh-gray-03);
  line-height: 1.4;
}



/* Contact Section */
.contact-section {
  background-image: url('../assets/img/contact_img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 1;
}

.contact-section > * {
  position: relative;
  z-index: 2;
}

.content-section:last-child {
  background-color: white;
}

.contact-title {
  font-size: 28px;
  font-weight: var(--vh-font-weight-semibold);
  line-height: 1.5;
}


.contact-btn {
  background-color: white;
  color: var(--vh-black);
  border: none;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: var(--vh-font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-block;
  margin-top: 20px;
}

.contact-btn:hover {
  position: relative;
}

.contact-btn:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  pointer-events: none;
}

/* Footer */
.hyperpipe-footer {
  background-color: #E6E8EA;
  padding: 40px 60px;
  margin-left: 520px;
  width: calc(100% - 520px);
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  align-self: flex-start;
}

.footer-logo svg {
  height: 24px;
  width: auto;
  fill: var(--vh-gray-02);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: var(--vh-gray-03);
  margin-bottom: 4px;
}

.footer-link {
  color: var(--vh-gray-03);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--vh-black);
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--vh-gray-03);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--vh-black);
}

/* Tablet Large (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .experience-grid {
    gap: 40px; /* 큰 태블릿에서 중간 간격 */
  }
}

/* Responsive Design */
@media (max-width: 1280px) {
  /* Tablet and below: stack vertically, sidebar not fixed */
  .hyperpipe-layout {
    flex-direction: column;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .hyperpipe-sidebar {
    width: 100%;
    min-width: 0; /* 모바일에서는 최소 너비 제거 */
    height: auto;
    position: relative;
    padding: 0; /* 패딩 제거하여 sticky가 정확히 작동하도록 */
    overflow: visible; /* sticky가 작동하도록 visible로 변경 */
  }
  .sidebar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--vh-bg-dark);
    padding: 16px 60px;
    margin: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  /* 스크롤 시 변경되는 스타일 */
  .sidebar-header.scrolled {
    background-color: white;
  }
  
  .sidebar-header.scrolled .sidebar-logo img {
    filter: none; /* 로고를 원래 색상으로 */
  }
  
  .sidebar-main-message {
    padding: 80px 40px 0 40px; /* 헤더 높이만큼 상단 여백 추가, 좌우 40px로 통일 */
  }
  
  .sidebar-sub-message {
    padding: 0 40px;
  }
  
  .sidebar-nav {
    padding: 0 40px;
    margin-bottom: 80px;
  }
  
  .sidebar-footer {
    padding: 0 40px 40px 40px;
  }
  .hyperpipe-main {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .hyperpipe-footer {
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .features-text {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .benefits-container {
    width: 100%;
    padding: 0px 60px;
  }
  .message-section {
    width: 100%;
  }
  .about-section {
    width: 100%;
  }
  .intro-section {
    width: 100%;
  }
  

}

/* Mobile Large (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .experience-grid {
    gap: 25px; /* 큰 모바일에서 작은 간격 */
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  .experience-grid {
    gap: 20px; /* 작은 모바일에서 최소 간격 */
  }
}

@media (max-width: 767px) {
  .hyperpipe-layout {
    flex-direction: column;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .hyperpipe-sidebar {
    width: 100%;
    min-width: 0; /* 모바일에서는 최소 너비 제거 */
    height: auto;
    position: relative;
    padding: 0; /* 패딩 제거하여 내부 요소가 전체 너비 사용 */
  }
  .sidebar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--vh-bg-dark);
    padding: 15px 20px;
    margin: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  
  /* 스크롤 시 변경되는 스타일 */
  .sidebar-header.scrolled {
    background-color: white;
  }
  
  .sidebar-header.scrolled .sidebar-logo img {
    filter: none; /* 로고를 원래 색상으로 */
  }
  

  .sidebar-main-message {
    padding: 120px 20px 0 20px; /* 모바일: 헤더 높이만큼 상단 여백 추가, 좌우 20px */
    font-size: 36px; /* 모바일: 메인 텍스트 사이즈 축소 (기본 44px에서) */
    line-height: 1.4; /* 모바일: 줄간격 조정 */
    margin-bottom: 80px; /* 모바일: main message와 sub message 사이 간격 줄임 */
  }
  
  .sidebar-sub-message {
    padding: 0 20px; /* 모바일: 좌우 20px */
    white-space: pre-line; /* 모바일: 줄바꿈 처리 방식 변경 */
    word-break: keep-all; /* 모바일: 한글 단어 단위로 줄바꿈 */
    line-height: 1.4; /* 모바일: 줄간격 조정 */
  }
  
  /* 모바일에서만 줄바꿈 처리 */
  .sidebar-sub-message::before {
    content: "하이퍼파이프는 프로덕트팀이\A임팩트 있는 프로덕트를 만들어\A조직에 기여하는 것을 돕습니다.";
    white-space: pre-line;
    display: block;
  }
  
  /* 모바일에서 원본 텍스트 숨김 */
  .sidebar-sub-message {
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .sidebar-sub-message::before {
    font-size: 18px; /* 모바일: 가상 요소 텍스트 크기 */
    color: var(--vh-secondary);
    opacity: 1;
  }
  
  .sidebar-nav {
    padding: 0 20px; /* 모바일: 좌우 20px */
    margin-bottom: 30px;
  }
  
  .sidebar-footer {
    padding: 0 20px 20px 20px; /* 모바일: 좌우 20px */
  }
  .hyperpipe-main {
    margin-left: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .hyperpipe-footer {
    margin-left: 0;
    width: 100%;
    padding: 20px; /* 모바일에서 패딩 20px로 설정 */
    align-items: left;
    overflow-x: hidden; /* 가로 스크롤 방지 */
  }
  .features-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 40px; /* 각 feature 항목 간 간격 */
    margin-top: 40px;
  }
  
  .experience-grid {
    gap: 10px; /* 모바일에서 작은 간격 */
  }
  
  /* 두 번째 features-grid에 상단 마진 추가 */
  .features-section .features-grid:last-child {
    margin-top: 40px !important;
  }
  
  /* 모바일에서 features-text를 숨기고 features-grid만 사용 */
  .features-text {
    display: none;
  }
  
  .feature-image {
    width: 100% !important; /* 전체 너비 사용 */
    max-width: none; /* 최대 너비 제한 해제 */
    margin: 0 auto 20px auto; /* 중앙 정렬 및 하단 여백 */
    text-align: center;
  }
  
  .feature-image img {
    width: 240px !important; /* 이미지는 240px 고정 */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* 모바일에서 추가된 텍스트 스타일 */
  .feature-mobile-text {
    text-align: center;
    margin-top: 10px;
    width: 100%; /* 전체 너비 사용 */
    padding: 0 20px; /* 좌우 패딩 20px */
    box-sizing: border-box;
  }
  
  .feature-mobile-text .feature-title {
    font-size: 26px;
    font-weight: 600;
    list-style: 1.4;
    color: var(--vh-black);
    margin-bottom: 10px;
  }
  
  .feature-mobile-text .feature-description {
    font-size: 18px;
    color: var(--vh-gray-03);
    line-height: 1.4;
    margin-bottom: 0;
    white-space: normal; /* 자연스러운 줄바꿈 허용 */
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
  }
  .benefits-container {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 20px 20px 0px 20px;
    gap: 80px;
  }
  .message-section {
    width: 100%;
    padding: 60px 20px;
  }
  
  /* 모바일에서 CEO message 텍스트 자연스러운 줄바꿈 */
  .message-text {
    white-space: normal; /* 자연스러운 줄바꿈 허용 */
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
    word-wrap: break-word; /* 긴 단어 줄바꿈 */
    line-height: 1.4; /* 모바일에서 줄간격 조정 */
    text-align: center; /* 모바일에서 중앙 정렬 */
  }
  .about-section {
    width: 100%;
    padding: 60px 20px;
  }
  .intro-section {
    width: 100%;
    padding: 20px 20px;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 20px 0px 0px 0px; /* 상단 30px, 하단 40px */
  }
  .footer-content {
    flex-direction: column;
    padding: 20px 0px 20px 0px ;
    gap: 20px;
    text-align: left;
    align-items: flex-start; /* 모든 요소를 왼쪽 정렬 */
  }
  
  /* 모바일에서 푸터 로고 왼쪽 정렬 */
  .footer-logo {
    align-self: flex-start;
  }
  
  /* 모바일에서 푸터 연락처 왼쪽 정렬 */
  .footer-contact {
    text-align: left;
    align-self: flex-start;
  }
  
  /* 모바일에서 푸터 링크 왼쪽 정렬 */
  .footer-links {
    justify-content: flex-start;
    align-self: flex-start;
  }
  
  /* 모바일에서 네비게이션 버튼 폰트 크기 및 높이 조정 */
  .sidebar-nav-btn {
    font-size: 16px;
    height: 60px; /* 모바일: 높이를 100px에서 80px로 줄임 */
  }
  
  /* 모바일에서 Features 섹션 제목 줄바꿈 */
  .features-section .section-title {
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .features-section .section-title::before {
    content: "SERVICE";
    white-space: pre-line;
    display: block;
    font-size: 32px; /* 모바일: 가상 요소 텍스트 크기 */
    font-weight: var(--vh-font-weight-medium);
    line-height: 1.4;
    color: var(--vh-black);
    text-align: center;
    margin-top: 0px;
  }
  
  /* 모바일에서 About 섹션 텍스트 줄바꿈 추가 */
  .about-subtitle {
    white-space: pre-line; /* 모바일: <br> 태그와 \A 줄바꿈 모두 지원 */
    font-size: 0; /* 모바일: 원본 텍스트 숨김 */
  }
  
  .about-subtitle::before {
    content: "하이퍼파이프는\A스타트업 공동창업과 대기업 경험을 바탕으로\A대규모 플랫폼 설계·구현부터\A성공적인 M&A까지 이끈 리더십을 갖춘 팀입니다.\A AI와 백엔드 기술 기반의 풀스택 관점에서\A실제 현업의 문제를 해결하고,\A팀 생산성을 높이는\A AI 솔루션을 구현합니다.\A또한 프로덕트팀에 적합한\A기술 스택을 선정하고\A일하는 방식과 프로세스를 체계화하여,\A팀이 임팩트 있는 프로덕트를\A구현·출시할 수 있도록 돕습니다.";
    white-space: pre-line;
    display: block;
    font-size: 18px; /* 모바일: 가상 요소 텍스트 크기 */
    font-weight: var(--vh-font-weight-medium);
    color: var(--vh-gray-03);
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  

  
  /* 추가 모바일 최적화 */ 
  .content-section {
    padding: 60px 20px;
    width: 100%;
  }
  
  /* Features 섹션만 별도 패딩 적용 */
  .features-section {
    padding-bottom: 60px;
  }
  
  /* Benefits 섹션 모바일 패딩 */
  .benefits-section {
    padding: 60px 0px;
  }
  
  .contact-section {
    margin: 0; /* 마진 제거 */
    padding: 20px !important; /* 모바일: 상하 패딩 제거, 좌우만 20px */
    width: 100%;
    min-height: 400px; /* 모바일: 최소 높이 설정 */
    box-sizing: border-box; /* 패딩을 너비에 포함 */
    justify-content: flex-end; /* 모바일: 텍스트와 버튼을 하단에 정렬 */
    align-items: flex-start; /* 모바일: 좌측 정렬 유지 */
  }
}

/* CEO Profile Section */
.profile-section {
  padding: 0px 0;
  background-color: #f8f9fa;
}

.profile-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.profile-image {
  flex-shrink: 0;
  width: 50%;
}

/* 데스크탑에서 이미지 설정 */
.desktop-img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-img {
  display: none;
}

.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-name-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.profile-name {
  font-size: 30px;
  font-weight: 600;
  color: var(--vh-black);
  line-height: 1;
}

.profile-title {
  font-size: 16px;
  color: var(--vh-gray-02);
  font-weight: var(--vh-font-weight-medium);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--vh-gray-02);
  transition: color 0.2s ease;
}

.linkedin-link:hover {
  color: #0077B5; /* LinkedIn 브랜드 컬러 */
}

.linkedin-link .material-icons {
  font-size: 18px;
  vertical-align: middle;
}

.profile-experience {
  font-size: 16px;
  color: var(--vh-gray-04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.experience-item {
  font-size: 16px;
  color: var(--vh-gray-04);
  padding: 0 20px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.role-container {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.company {
  font-size: 16px;
  font-weight: var(--vh-font-weight-bold);
  color: var(--vh-gray-04);
  width: 160px;
  flex-shrink: 0;
}

.company-sub {
  display: block;
  font-size: 14px;
  font-weight: var(--vh-font-weight-regular);
  color: var(--vh-gray-04);
  margin-top: 1px;
  margin-bottom: 0;
  line-height: 1.4;
}

.role {
  font-size: 16px !important;
  color: var(--vh-gray-04);
  flex: 1;
}

.role-link {
  display: flex;
  align-items: center;
  gap: 6px; /* role과 아이콘 사이 6px 간격 */
  text-decoration: none;
  color: inherit;
}

.role-link:hover {
  text-decoration: none;
}

.role-link:hover .role {
  opacity: 0.6; /* 마우스 오버 시 투명도 효과 */
}

.role-link:hover .article-icon {
  opacity: 0.6; /* 마우스 오버 시 아이콘 투명도 효과 */
}

.role-link .role {
  font-size: 16px !important;
  color: var(--vh-gray-04);
  flex: none; /* flex: 1 제거하여 텍스트가 늘어나지 않도록 함 */
}

.article-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  vertical-align: middle; /* 텍스트와 자연스러운 중앙 정렬 */
}

/* .related-article 스타일 제거됨 (아이콘으로 대체) */

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1199px) {
  .profile-content {
    padding: 0 40px;
  }
  
  .profile-image {
    width: 45%;
  }
  
  .profile-name {
    font-size: 28px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .profile-section {
    background-color: #f8f9fa;
    padding: 0px 0 60px 0;
  }
  
  .profile-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 20px;
  }
  
  .profile-image {
    width: 100%;
  }
  
  .desktop-img {
    display: none !important;
  }
  
  .mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  
  .profile-name-title {
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 100%;
    text-align: center;
    gap: 12px;
  }
  
  .profile-profile-info {
    gap: 20px;
    width: 100%;
  }
  
  .profile-experience {
    align-self: center;
    width: fit-content;
    max-width: 100%;
  }
  
  .profile-name {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 0;
  }
  
  .profile-title {
    font-size: 16px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .linkedin-link .material-icons {
    font-size: 16px;
  }
  
  .experience-item {
    padding: 0;
  }
  
  .company {
    width: 140px; /* 모바일: company 너비 78px로 조정 */
  }
}

.footer-business-info p {
  color: var(--vh-gray-04);
  font-size: 14px;
  font-weight: var(--vh-font-weight-medium);
  opacity: 0.7;
}

.footer-business-info-links a {
  color: var(--vh-gray-04);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-business-info-links a:hover {
  color: var(--vh-black);
}