/**
 * 첼로 법인등기 리디자인 - Figma Design 1:1 복제
 * 정확한 px 단위와 hex 색상 사용
 */

/* Reset & Base */
.corp-redesign * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.corp-redesign {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  color: #101828;
  background: #ffffff;
}

.corp-redesign a {
  text-decoration: none;
  color: inherit;
}

.corp-redesign img {
  display: block;
  max-width: none;
}

/* Container */
.corp-redesign .container {
  width: 1152px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================
   Top Banner Section
   ========================================== */
.corp-redesign .top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: linear-gradient(90deg, #1e3a8a 0%, #155dfc 50%, #3b82f6 100%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.corp-redesign .top-banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  width: 100%;
  padding: 0 32px;
}

.corp-redesign .banner-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.corp-redesign .banner-link {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.corp-redesign .banner-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.corp-redesign .banner-close {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: all 0.3s;
  font-weight: 300;
}

.corp-redesign .banner-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Banner Hidden State */
.corp-redesign.banner-hidden .top-banner {
  display: none;
}

.corp-redesign.banner-hidden .header {
  top: 0;
}

.corp-redesign.banner-hidden .hero-section {
  padding-top: 128px;
}

/* ==========================================
   Header Section
   ========================================== */
.corp-redesign .header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0.8px solid #e5e7eb;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s;
}

.corp-redesign .header.transparent {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.corp-redesign .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.corp-redesign .header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
}

.corp-redesign .logo-image {
  height: 40px;
  width: 60.438px;
  object-fit: cover;
}

.corp-redesign .logo-badge {
  background: #eff6ff;
  border: 0.8px solid #dbeafe;
  border-radius: 4px;
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #1447e6;
  padding: 4px 8px;
  height: 25.587px;
  display: flex;
  align-items: center;
}

.corp-redesign .header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.corp-redesign .nav-link {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #364153;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.corp-redesign .nav-link:hover {
  color: #155dfc;
}

.corp-redesign .nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #364153;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.corp-redesign .nav-link-dropdown:hover {
  color: #155dfc;
}

.corp-redesign .dropdown-icon {
  width: 20px;
  height: 20px;
}

/* Nav Dropdown Menu */
.corp-redesign .nav-dropdown {
  position: relative;
  display: inline-block;
}

.corp-redesign .nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.05);
  min-width: 160px;
  z-index: 1000;
  padding-top: 8px;
  margin-top: 0;
}

.corp-redesign .nav-dropdown:hover .dropdown-menu,
.corp-redesign .nav-dropdown .dropdown-menu:hover {
  display: block;
}

.corp-redesign .nav-dropdown .dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #364153;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.corp-redesign .nav-dropdown .dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.corp-redesign .nav-dropdown .dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

.corp-redesign .nav-dropdown .dropdown-menu a:hover {
  background-color: #f9fafb;
  color: #155dfc;
}

.corp-redesign .btn-primary-header {
  background: #155dfc;
  color: #ffffff;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.corp-redesign .btn-primary-header:hover {
  background: #1447e6;
}

.corp-redesign .mobile-menu-toggle {
  display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.corp-redesign .hero-section {
  padding: 172px 32px 80px 32px;
  background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.corp-redesign .hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.corp-redesign .hero-blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.corp-redesign .hero-blur-circle-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.6) 0%, rgba(167, 139, 250, 0.3) 50%, rgba(167, 139, 250, 0) 100%);
  right: -100px;
  top: -150px;
}

.corp-redesign .hero-blur-circle-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.5) 0%, rgba(110, 231, 183, 0.25) 50%, rgba(110, 231, 183, 0) 100%);
  left: -100px;
  top: 180px;
}

.corp-redesign .hero-blur-circle-3 {
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, rgba(96, 165, 250, 0.2) 50%, rgba(96, 165, 250, 0) 100%);
  left: 25%;
  top: 30px;
}

.corp-redesign .hero-blur-circle-4 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.7) 0%, rgba(192, 132, 252, 0.35) 50%, rgba(192, 132, 252, 0) 100%);
  right: 65%;
  top: 180px;
}

.corp-redesign .hero-blur-circle-5 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.6) 0%, rgba(52, 211, 153, 0.3) 50%, rgba(52, 211, 153, 0) 100%);
  right: 32%;
  top: 350px;
}

.corp-redesign .hero-content {
  display: grid;
  grid-template-columns: 550px 550px;
  gap: 52px;
  align-items: center;
  position: relative;
}

.corp-redesign .hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.corp-redesign .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 0.8px solid #dbeafe;
  border-radius: 26843500px;
  padding: 8px 16px;
  height: 37.6px;
  width: fit-content;
}

.corp-redesign .badge-icon {
  width: 16px;
  height: 16px;
}

.corp-redesign .hero-badge span {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1c398e;
}

.corp-redesign .hero-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-redesign .heading-line-1 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 75px;
  color: #101828;
}

.corp-redesign .heading-line-2 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 75px;
  color: #101828;
}

.corp-redesign .heading-highlight {
  color: #155dfc;
}

.corp-redesign .hero-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
}

.corp-redesign .hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.corp-redesign .hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.corp-redesign .btn-primary {
  background: #155dfc;
  color: #ffffff;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.corp-redesign .btn-primary .btn-icon {
  width: 24px;
  height: 24px;
}

.corp-redesign .btn-primary:hover {
  background: #1447e6;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.corp-redesign .btn-secondary {
  background: #ffffff;
  color: #364153;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.corp-redesign .btn-secondary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

.corp-redesign .hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.corp-redesign .trust-avatars {
  display: flex;
}

.corp-redesign .trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
}

.corp-redesign .trust-avatar:first-child {
  margin-left: 0;
}

.corp-redesign .trust-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.corp-redesign .trust-number {
  font-weight: 700;
  color: #101828;
}

/* Hero Stats */
.corp-redesign .hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.corp-redesign .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-redesign .hero-stats .stat-number {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #155dfc;
}

.corp-redesign .hero-stats .stat-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.corp-redesign .hero-stats .stat-divider {
  width: 0.8px;
  height: 48px;
  background: #e5e7eb;
}

/* Hero Process Card */
.corp-redesign .hero-right {
  position: relative;
}

.corp-redesign .hero-card-badge-floating {
  position: absolute;
  top: -12px;
  right: 134px;
  background: #155dfc;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 36px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.corp-redesign .badge-icon-aws {
  width: 16px;
  height: 16px;
}

.corp-redesign .hero-card-badge-floating span {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.corp-redesign .hero-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .hero-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.corp-redesign .card-header-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.corp-redesign .card-header-text {
  flex: 1;
}

.corp-redesign .card-badge-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #155dfc;
  margin-bottom: 4px;
}

.corp-redesign .card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101828;
}

.corp-redesign .hero-card-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
}

.corp-redesign .step-item.step-active {
  background: #eff6ff;
  border-color: #dbeafe;
}

.corp-redesign .step-item:not(.step-active) {
  background: #f9fafb;
}

.corp-redesign .step-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.corp-redesign .step-badge-blue {
  background: #155dfc;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
}

.corp-redesign .step-badge-gray {
  background: #364153;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
}

.corp-redesign .step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-redesign .step-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

.corp-redesign .step-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

/* ==========================================
   Stats Section
   ========================================== */
.corp-redesign .stats-section {
  background: #ffffff;
  padding: 80px 32px;
}

.corp-redesign .stats-header {
  text-align: center;
  margin-bottom: 64px;
}

.corp-redesign .stats-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #dbeafe 0%, #cefafe 100%);
  border: 0.8px solid #bedbff;
  color: #007595;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .stats-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  background: linear-gradient(90deg, #155dfc 0%, #0092b8 50%, #155dfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.corp-redesign .stats-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
}

/* Stats Cards */
.corp-redesign .stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.corp-redesign .stat-card {
  background: #ffffff;
  border: 0.8px solid #bedbff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 237.6px;
}

.corp-redesign .stat-card-tall {
  height: 285.6px;
}

.corp-redesign .stat-card-featured {
  height: 285.6px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: #155dfc;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .stat-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .stat-icon-1 {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.corp-redesign .stat-icon-2 {
  background: linear-gradient(135deg, #00b8db 0%, #2b7fff 100%);
}

.corp-redesign .stat-icon-3 {
  background: linear-gradient(135deg, #615fff 0%, #ad46ff 100%);
}

.corp-redesign .stat-icon-4 {
  background: linear-gradient(135deg, #ad46ff 0%, #f6339a 100%);
}

.corp-redesign .stat-card-icon img {
  width: 32px;
  height: 32px;
}

.corp-redesign .stat-card-number {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #101828;
  margin-bottom: 12px;
}

.corp-redesign .stat-card-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

/* Stats CTA Banner */
.corp-redesign .stats-cta {
  background: linear-gradient(90deg, #2b7fff 0%, #00b8db 100%);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.corp-redesign .stats-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.corp-redesign .stats-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-redesign .stats-cta-subtitle {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

.corp-redesign .stats-cta-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #ffffff;
  margin: 0;
}

.corp-redesign .btn-white {
  background: #ffffff;
  color: #155dfc;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .btn-white:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* ==========================================
   About Section
   ========================================== */
.corp-redesign .about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 96px 32px 96px 32px;
}

.corp-redesign .about-header {
  text-align: center;
  margin-bottom: 64px;
}

.corp-redesign .about-section .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #155dfc;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .about-section .heading-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.corp-redesign .about-section .heading-line-1 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #101828;
  text-align: center;
}

.corp-redesign .about-section .heading-line-2 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #155dfc;
  text-align: center;
}

.corp-redesign .about-section .description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* About Cards */
.corp-redesign .about-cards {
  display: grid;
  grid-template-columns: repeat(3, 341.325px);
  gap: 32px;
  margin-bottom: 64px;
}

.corp-redesign .about-card {
  background: #ffffff;
  border: 0.8px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .card-icon-1 {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.corp-redesign .card-icon-2 {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.corp-redesign .card-icon-3 {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.corp-redesign .card-icon img {
  width: 32px;
  height: 32px;
}

.corp-redesign .card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101828;
  margin-bottom: 12px;
}

.corp-redesign .card-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  margin-bottom: 16px;
}

.corp-redesign .card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-redesign .card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.corp-redesign .card-list li img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.corp-redesign .card-list li span {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

/* About CTA */
.corp-redesign .about-cta {
  background: linear-gradient(90deg, #155dfc 0%, #1447e6 100%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.corp-redesign .cta-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}

.corp-redesign .cta-brand {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}

.corp-redesign .cta-subtext {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #dbeafe;
}

/* ==========================================
   AWS Section
   ========================================== */
.corp-redesign .aws-section {
  background: #ffffff;
  padding: 64px 32px;
}

.corp-redesign .aws-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  height: 203.9px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 65px;
  gap: 57px;
}

.corp-redesign .aws-logo {
  width: 250px;
  height: 68.175px;
}

.corp-redesign .aws-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corp-redesign .aws-content {
  flex: 1;
}

.corp-redesign .aws-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 37.5px;
  color: #101828;
  margin-bottom: 12px;
}

.corp-redesign .aws-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.corp-redesign .amount-value {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #155dfc;
}

.corp-redesign .amount-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
}

.corp-redesign .aws-note {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.corp-redesign .aws-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #155dfc;
}

/* ==========================================
   CelloSign Section
   ========================================== */
.corp-redesign .cellosign-section {
  padding: 100px 32px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.corp-redesign .cellosign-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.corp-redesign .cellosign-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.corp-redesign .cellosign-logo {
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .cellosign-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.corp-redesign .cellosign-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}

.corp-redesign .cellosign-subtitle {
  font-size: 16px;
  color: #64748b;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

.corp-redesign .cellosign-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.corp-redesign .cellosign-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.corp-redesign .cellosign-feature:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.corp-redesign .cellosign-feature svg {
  flex-shrink: 0;
}

.corp-redesign .cellosign-feature span {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.corp-redesign .btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.corp-redesign .btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* ==========================================
   Benefits Section
   ========================================== */
.corp-redesign .benefits-section {
  background: #f9fafb;
  padding: 96px 32px 96px 32px;
}

.corp-redesign .benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.corp-redesign .benefits-section .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1447e6;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .benefits-section .heading-2 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #101828;
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .benefits-section .description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* Benefits Cards */
.corp-redesign .benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 341.325px);
  gap: 32px 32px;
}

.corp-redesign .benefit-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
}

.corp-redesign .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.corp-redesign .benefit-icon-1 {
  background: linear-gradient(135deg, #2b7fff 0%, #00b8db 100%);
}

.corp-redesign .benefit-icon-2 {
  background: linear-gradient(135deg, #ad46ff 0%, #2b7fff 100%);
}

.corp-redesign .benefit-icon-3 {
  background: linear-gradient(135deg, #00b8db 0%, #2b7fff 100%);
}

.corp-redesign .benefit-icon-4 {
  background: linear-gradient(135deg, #2b7fff 0%, #615fff 100%);
}

.corp-redesign .benefit-icon-5 {
  background: linear-gradient(135deg, #615fff 0%, #ad46ff 100%);
}

.corp-redesign .benefit-icon-6 {
  background: linear-gradient(135deg, #ad46ff 0%, #f6339a 100%);
}

.corp-redesign .benefit-icon img {
  width: 28px;
  height: 28px;
}

.corp-redesign .benefit-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24.75px;
  color: #101828;
  margin-bottom: 16px;
}

.corp-redesign .benefit-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #4a5565;
}

/* ==========================================
   Pricing Section
   ========================================== */
.corp-redesign .pricing-section {
  background: #ffffff;
  padding: 80px 32px;
}

.corp-redesign .pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.corp-redesign .pricing-section .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1447e6;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .pricing-section .heading-2 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #101828;
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .pricing-section .description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* Pricing Cards */
.corp-redesign .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 341.325px);
  gap: 32px;
  margin-bottom: 24px;
}

.corp-redesign .pricing-card {
  background: #ffffff;
  border: 1.6px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.corp-redesign .pricing-card-popular {
  border-color: #155dfc;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.corp-redesign .pricing-accent {
  height: 4px;
  background: #e5e7eb;
}

.corp-redesign .pricing-accent-popular {
  background: #155dfc;
}

.corp-redesign .popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #155dfc;
  color: #ffffff;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 24px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.corp-redesign .popular-badge img {
  width: 16px;
  height: 16px;
}

.corp-redesign .pricing-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.corp-redesign .plan-name {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #101828;
  margin-bottom: 16px;
}

.corp-redesign .plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.corp-redesign .price-amount {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #101828;
}

.corp-redesign .price-unit {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.corp-redesign .price-note {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
  margin-bottom: 24px;
}

/* Plan Features */
.corp-redesign .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.corp-redesign .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.corp-redesign .plan-features li img {
  display: none;
}

.corp-redesign .plan-features li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #155dfc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.corp-redesign .plan-features li span {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #364153;
}

/* Plan Buttons */
.corp-redesign .plan-button {
  display: block;
  width: 100%;
  height: 57.6px;
  background: #f9fafb;
  border: 0.8px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  line-height: 57.6px;
}

.corp-redesign .plan-button:hover {
  background: #f3f4f6;
}

.corp-redesign .plan-button-popular {
  background: #155dfc;
  border-color: #155dfc;
  color: #ffffff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.corp-redesign .plan-button-popular:hover {
  background: #1447e6;
}

.corp-redesign .pricing-footer-note {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  text-align: center;
}

/* ==========================================
   Footer Section
   ========================================== */
.corp-redesign .footer-section {
  background: #101828;
  border-top: 0.8px solid #1e2939;
  padding: 64.8px 32px 0 32px;
}

.corp-redesign .footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer Brand Column */
.corp-redesign .footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.corp-redesign .brand-logo {
  height: 40px;
  width: 60.438px;
}

.corp-redesign .footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.corp-redesign .brand-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.corp-redesign .legal-tech-badge {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #155dfc;
  border-radius: 8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #155dfc;
}

.corp-redesign .brand-logo-text {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.corp-redesign .brand-badge {
  background: linear-gradient(90deg, rgba(43, 127, 255, 0.2) 0%, rgba(0, 184, 219, 0.2) 100%);
  border: 0.8px solid rgba(0, 184, 219, 0.3);
  border-radius: 4px;
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #00d3f2;
  padding: 3px 8px;
}

.corp-redesign .footer-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #99a1af;
}

.corp-redesign .footer-social {
  display: flex;
  gap: 16px;
}

.corp-redesign .social-link {
  width: 40px;
  height: 40px;
  background: #1e2939;
  border: 0.8px solid #364153;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99a1af;
  transition: all 0.3s ease;
  text-decoration: none;
}

.corp-redesign .social-link:hover {
  background: #2a3544;
  border-color: #155dfc;
  color: #155dfc;
}

.corp-redesign .social-link img {
  width: 20px;
  height: 20px;
}

.corp-redesign .social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Other Columns */
.corp-redesign .footer-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 16px;
}

.corp-redesign .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corp-redesign .footer-links li a {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #99a1af;
  transition: color 0.2s;
}

.corp-redesign .footer-links li a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.corp-redesign .footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 64.8px;
  border-top: 0.8px solid #1e2939;
}

.corp-redesign .footer-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1152px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.8px solid #1e2939;
  gap: 48px;
}

.corp-redesign .contact-info {
  flex: 1;
  text-align: left;
}

.corp-redesign .contact-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #99a1af;
  margin: 0 0 12px 0;
}

.corp-redesign .contact-details {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #6a7282;
  margin: 4px 0;
}

.corp-redesign .company-info {
  flex: 1;
  text-align: left;
}

.corp-redesign .company-name {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #99a1af;
  margin: 0 0 12px 0;
}

.corp-redesign .company-details {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #6a7282;
  margin: 4px 0;
}

.corp-redesign .copyright {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
}

/* ==========================================
   Clients Section
   ========================================== */
.corp-redesign .clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 96px 32px;
}

.corp-redesign .clients-header {
  text-align: center;
  margin-bottom: 64px;
}

.corp-redesign .clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e0f2fe 0%, #dbeafe 100%);
  border: 0.8px solid #bae6fd;
  color: #0369a1;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  height: 37.6px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .clients-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  background: linear-gradient(90deg, #00C896 0%, #0088CC 50%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .clients-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* Clients Grid */
.corp-redesign .clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.corp-redesign .client-logo {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.04);
  aspect-ratio: 1;
}

.corp-redesign .client-logo:hover {
  border-color: #0891b2;
  box-shadow: 0px 4px 6px -1px rgba(8, 145, 178, 0.1), 0px 2px 4px -2px rgba(8, 145, 178, 0.05);
  transform: translateY(-4px);
}

.corp-redesign .client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.corp-redesign .client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .corp-redesign .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet styles for CelloSign Section */
@media (max-width: 768px) {
  .corp-redesign .cellosign-section {
    padding: 60px 20px;
  }

  .corp-redesign .cellosign-card {
    padding: 32px 24px;
  }

  .corp-redesign .cellosign-title {
    font-size: 24px;
  }

  .corp-redesign .cellosign-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile styles for CelloSign Section */
@media (max-width: 480px) {
  .corp-redesign .cellosign-section {
    padding: 48px 16px;
  }

  .corp-redesign .cellosign-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .corp-redesign .cellosign-logo img {
    height: 36px;
  }

  .corp-redesign .cellosign-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .corp-redesign .cellosign-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .corp-redesign .cellosign-feature {
    padding: 12px;
  }

  .corp-redesign .cellosign-feature span {
    font-size: 14px;
  }

  .corp-redesign .btn-blue {
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .corp-redesign .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .corp-redesign .client-logo {
    padding: 24px;
  }

  .corp-redesign .clients-heading {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 480px) {
  .corp-redesign .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .corp-redesign .client-logo {
    padding: 20px;
  }
}

/* ==========================================
   Testimonials Section
   ========================================== */
.corp-redesign .testimonials-section {
  background: #ffffff;
  padding: 80px 32px 80px 32px;
}

.corp-redesign .testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.corp-redesign .testimonials-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fef9c2 0%, #ffedd4 100%);
  border: 0.8px solid #fff085;
  color: #a65f00;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  height: 37.6px;
  border-radius: 26843500px;
  margin-bottom: 16px;
}

.corp-redesign .testimonials-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  background: linear-gradient(90deg, #d08700 0%, #f54900 50%, #d08700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .testimonials-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  text-align: center;
}

/* Testimonials Slider */
.corp-redesign .testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 0;
}

.corp-redesign .testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease-in-out;
  padding-left: 120px;
}

.corp-redesign .testimonial-card {
  flex: 0 0 400px;
  min-width: 400px;
  background: #ffffff;
  border: 2px solid #b3e5fc;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.corp-redesign .testimonial-card:hover {
  border: 2px solid #00bcd4;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0px 10px 15px -3px rgba(0, 188, 212, 0.2), 0px 4px 6px -4px rgba(0, 188, 212, 0.1);
  transform: translateY(-4px);
}

.corp-redesign .testimonial-stars {
  font-size: 28px;
  color: #fbbf24;
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.corp-redesign .testimonial-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #364153;
  margin-bottom: 0;
}

.corp-redesign .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.corp-redesign .author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.corp-redesign .author-avatar::before {
  content: "👤";
  font-size: 32px;
  color: #ffffff;
}

.corp-redesign .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.corp-redesign .author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-redesign .author-name {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #101828;
}

.corp-redesign .author-role {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.corp-redesign .author-company {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1976d2;
}

.corp-redesign .author-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

/* Slider Navigation */
.corp-redesign .testimonials-prev,
.corp-redesign .testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-size: 28px;
  font-weight: 700;
  color: #4a5565;
  line-height: 1;
}

.corp-redesign .testimonials-prev {
  left: 40px;
}

.corp-redesign .testimonials-next {
  right: 40px;
}

.corp-redesign .testimonials-prev:hover,
.corp-redesign .testimonials-next:hover {
  background: #f9fafb;
  border-color: #155dfc;
  color: #155dfc;
}

/* Pagination Dots */
.corp-redesign .testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 64px;
}

.corp-redesign .testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.corp-redesign .testimonial-dot.active {
  background: #1976d2;
  width: 40px;
  border-radius: 5px;
}

/* Testimonials Stats */
.corp-redesign .testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.corp-redesign .testimonial-stat {
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .stat-value {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #101828;
}

.corp-redesign .stat-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.corp-redesign .testimonial-stat-number {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #101828;
}

.corp-redesign .testimonial-stat-orange {
  background: linear-gradient(90deg, #d08700 0%, #f54900 50%, #d08700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-redesign .testimonial-stat-blue {
  color: #1976d2;
}

.corp-redesign .testimonial-stat-purple {
  color: #9333ea;
}

.corp-redesign .testimonial-stat-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #667085;
}

/* ==========================================
   CTA Section
   ========================================== */
.corp-redesign .cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 80px 32px;
}

.corp-redesign .cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.corp-redesign .cta-header {
  text-align: center;
  margin-bottom: 72px;
}

.corp-redesign .cta-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #101828;
  margin-bottom: 24px;
}

.corp-redesign .cta-main-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #101828;
  margin-bottom: 24px;
}

.corp-redesign .cta-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 40px;
}

.corp-redesign .cta-main-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #364153;
  margin-bottom: 40px;
}

.corp-redesign .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.corp-redesign .btn-cta-primary {
  background: #155dfc;
  color: #ffffff;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 16px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .btn-cta-primary:hover {
  background: #1447e6;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.corp-redesign .btn-cta-secondary {
  background: #ffffff;
  color: #364153;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 16px 40px;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .btn-cta-secondary:hover {
  background: #f9fafb;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .btn-cta-secondary img {
  width: 20px;
  height: 20px;
}

.corp-redesign .btn-primary-large {
  background: #155dfc;
  color: #ffffff;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 20px 40px;
  height: 68px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .btn-primary-large:hover {
  background: #1447e6;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.corp-redesign .btn-primary-large .btn-icon {
  width: 24px;
  height: 24px;
}

.corp-redesign .btn-secondary-large {
  background: #ffffff;
  color: #364153;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  padding: 20px 40px;
  height: 71.2px;
  border-radius: 10px;
  border: 0.8px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .btn-secondary-large:hover {
  background: #f9fafb;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.corp-redesign .btn-secondary-large .btn-icon {
  width: 24px;
  height: 24px;
}

/* CTA Info Cards */
.corp-redesign .cta-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.corp-redesign .cta-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.corp-redesign .cta-info-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-redesign .info-icon-phone {
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.corp-redesign .info-icon-email {
  background: linear-gradient(135deg, #00b8db 0%, #2b7fff 100%);
}

.corp-redesign .info-icon img {
  width: 24px;
  height: 24px;
}

.corp-redesign .info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corp-redesign .info-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
}

.corp-redesign .info-value {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #101828;
}

.corp-redesign .cta-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .cta-info-icon img {
  width: 32px;
  height: 32px;
}

.corp-redesign .cta-info-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
}

.corp-redesign .cta-info-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.corp-redesign .cta-info-link {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 21.6px;
  color: #155dfc;
  text-decoration: none;
  transition: color 0.2s;
}

.corp-redesign .cta-info-link:hover {
  color: #1447e6;
  text-decoration: underline;
}

/* CTA Features */
.corp-redesign .cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}

.corp-redesign .cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.corp-redesign .cta-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #155dfc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-redesign .cta-feature-icon img {
  display: none;
}

.corp-redesign .cta-feature-icon::before {
  content: "✓";
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.corp-redesign .cta-feature span {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #101828;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ========================================== */

/* ==========================================
   Tablet & Mobile - 1151px and below
   ========================================== */
@media (max-width: 1151px) {
  /* Container */
  .corp-redesign .container {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
  }

  /* Hero Section */
  .corp-redesign .hero-section {
    padding: 164px 24px 64px 24px;
  }

  .corp-redesign.banner-hidden .hero-section {
    padding-top: 120px;
  }

  .corp-redesign .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .corp-redesign .hero-card-badge-floating {
    top: -12px;
    right: 20px;
  }

  /* About, Benefits, Pricing Cards */
  .corp-redesign .about-cards,
  .corp-redesign .benefits-cards,
  .corp-redesign .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Stats Cards */
  .corp-redesign .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .corp-redesign .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ==========================================
   Mobile - 767px and below
   ========================================== */
@media (max-width: 767px) {
  /* Container */
  .corp-redesign .container {
    padding: 0 16px;
  }

  /* ========== Top Banner (Mobile) ========== */
  .corp-redesign .top-banner {
    height: 40px;
  }

  .corp-redesign .top-banner-content {
    flex-direction: row;
    gap: 8px;
    padding: 0 40px 0 12px; /* 오른쪽 여백 증가 (X 버튼 공간) */
  }

  .corp-redesign .banner-text {
    font-size: 11px;
    line-height: 16px;
    white-space: nowrap;
  }

  .corp-redesign .banner-link {
    font-size: 11px;
    line-height: 16px;
    padding: 4px 10px;
    flex-shrink: 0;
  }

  .corp-redesign .banner-close {
    right: 8px; /* 모바일에서 더 가까이 */
    font-size: 20px;
    padding: 2px 4px;
  }

  .corp-redesign .header {
    top: 40px;
  }

  .corp-redesign.banner-hidden .hero-section {
    padding-top: 96px;
  }

  /* ========== Header & Navigation ========== */
  .corp-redesign .header-content {
    height: 56px;
  }

  .corp-redesign .header-logo {
    height: 32px;
  }

  .corp-redesign .logo-image {
    height: 32px;
    width: 48.35px;
  }

  .corp-redesign .logo-badge {
    font-size: 11px;
    padding: 3px 6px;
    height: 22px;
  }

  /* Hamburger Menu Button */
  .corp-redesign .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    position: relative;
  }

  .corp-redesign .mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #364153;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .corp-redesign .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .corp-redesign .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .corp-redesign .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Navigation */
  .corp-redesign .header-nav {
    position: fixed;
    top: 56px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 56px);
    background: #ffffff;
    border-left: 0.8px solid #e5e7eb;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .corp-redesign .header-nav.active {
    right: 0;
  }

  .corp-redesign .nav-link,
  .corp-redesign .nav-link-dropdown {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid #f3f4f6;
    justify-content: flex-start;
  }

  .corp-redesign .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
  }

  .corp-redesign .nav-dropdown .nav-link {
    border-bottom: none;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    display: block;
    text-align: left;
  }

  .corp-redesign .nav-dropdown .dropdown-menu {
    display: block !important;
    position: static;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: #f9fafb;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .corp-redesign .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .corp-redesign .nav-dropdown .dropdown-menu a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    border-bottom: none;
  }

  .corp-redesign .nav-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .corp-redesign .btn-primary-header {
    margin: 16px 24px;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* ========== Hero Section ========== */
  .corp-redesign .hero-section {
    padding: 136px 16px 48px 16px;
  }

  .corp-redesign .hero-content {
    gap: 32px;
  }

  .corp-redesign .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
    height: 32px;
  }

  .corp-redesign .badge-icon {
    width: 14px;
    height: 14px;
  }

  .corp-redesign .heading-line-1,
  .corp-redesign .heading-line-2 {
    font-size: 42px;
    line-height: 52px;
  }

  .corp-redesign .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .corp-redesign .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }

  .corp-redesign .btn-primary,
  .corp-redesign .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .corp-redesign .hero-stats {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }

  .corp-redesign .hero-stats .stat-item {
    flex: 1;
    min-width: 0;
  }

  .corp-redesign .hero-stats .stat-divider {
    height: 40px;
    align-self: stretch;
  }

  .corp-redesign .hero-stats .stat-number {
    font-size: 28px;
    line-height: 32px;
  }

  .corp-redesign .hero-stats .stat-label {
    font-size: 13px;
    line-height: 18px;
  }

  /* Hero Card */
  .corp-redesign .hero-card-badge-floating {
    right: 16px;
    font-size: 12px;
    padding: 6px 12px;
    height: 32px;
  }

  .corp-redesign .hero-card {
    padding: 24px;
  }

  .corp-redesign .card-title {
    font-size: 20px;
    line-height: 28px;
  }

  .corp-redesign .step-badge {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .corp-redesign .step-title {
    font-size: 14px;
    line-height: 20px;
  }

  .corp-redesign .step-desc {
    font-size: 13px;
    line-height: 18px;
  }

  /* ========== Typography ========== */
  .corp-redesign .about-section .heading-line-1,
  .corp-redesign .about-section .heading-line-2 {
    font-size: 28px;
    line-height: 36px;
  }

  .corp-redesign .benefits-section .heading-2,
  .corp-redesign .pricing-section .heading-2,
  .corp-redesign .testimonials-heading,
  .corp-redesign .clients-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .corp-redesign .about-section .description,
  .corp-redesign .benefits-section .description,
  .corp-redesign .pricing-section .description {
    font-size: 16px;
    line-height: 24px;
  }

  /* ========== Sections ========== */
  .corp-redesign .about-section,
  .corp-redesign .benefits-section {
    padding: 64px 16px;
  }

  .corp-redesign .about-header,
  .corp-redesign .benefits-header,
  .corp-redesign .pricing-header,
  .corp-redesign .testimonials-header,
  .corp-redesign .clients-header {
    margin-bottom: 48px;
  }

  /* ========== Cards ========== */
  .corp-redesign .about-cards,
  .corp-redesign .benefits-cards,
  .corp-redesign .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .corp-redesign .about-card,
  .corp-redesign .benefit-card,
  .corp-redesign .pricing-body {
    padding: 24px;
  }

  .corp-redesign .card-icon,
  .corp-redesign .benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .corp-redesign .card-icon img,
  .corp-redesign .benefit-icon img {
    width: 28px;
    height: 28px;
  }

  .corp-redesign .card-title,
  .corp-redesign .benefit-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .corp-redesign .card-description,
  .corp-redesign .benefit-description {
    font-size: 15px;
    line-height: 22px;
  }

  /* ========== AWS Section ========== */
  .corp-redesign .aws-section {
    padding: 48px 16px;
  }

  .corp-redesign .aws-card {
    flex-direction: column;
    height: auto;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }

  .corp-redesign .aws-logo {
    width: 200px;
    height: 54.5px;
    margin: 0 auto;
  }

  .corp-redesign .aws-title {
    font-size: 22px;
    line-height: 30px;
  }

  .corp-redesign .amount-value {
    font-size: 20px;
    line-height: 28px;
  }

  .corp-redesign .amount-desc {
    font-size: 16px;
    line-height: 24px;
  }

  /* ========== Pricing Section ========== */
  .corp-redesign .pricing-section {
    padding: 64px 16px;
  }

  .corp-redesign .plan-name {
    font-size: 20px;
    line-height: 28px;
  }

  .corp-redesign .price-amount {
    font-size: 36px;
    line-height: 40px;
  }

  .corp-redesign .plan-features li span {
    font-size: 15px;
    line-height: 22px;
  }

  /* ========== Stats Section ========== */
  .corp-redesign .stats-section {
    padding: 64px 16px;
  }

  .corp-redesign .stats-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .corp-redesign .stat-card {
    padding: 24px;
    height: auto;
  }

  .corp-redesign .stat-card-tall,
  .corp-redesign .stat-card-featured {
    height: auto;
  }

  /* ========== Testimonials Section ========== */
  .corp-redesign .testimonials-section {
    padding: 64px 16px;
  }

  .corp-redesign .testimonials-slider {
    margin-bottom: 48px;
  }

  .corp-redesign .testimonials-track {
    padding-left: 16px;
    gap: 20px;
  }

  .corp-redesign .testimonial-card {
    flex: 0 0 300px;
    min-width: 300px;
    padding: 32px 24px;
  }

  .corp-redesign .testimonial-stars {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .corp-redesign .testimonial-text {
    font-size: 15px;
    line-height: 24px;
  }

  .corp-redesign .author-avatar {
    width: 56px;
    height: 56px;
  }

  .corp-redesign .author-avatar::before {
    font-size: 28px;
  }

  .corp-redesign .author-name {
    font-size: 16px;
    line-height: 22px;
  }

  .corp-redesign .author-role,
  .corp-redesign .author-company {
    font-size: 13px;
    line-height: 18px;
  }

  .corp-redesign .testimonials-prev,
  .corp-redesign .testimonials-next {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .corp-redesign .testimonials-prev {
    left: 16px;
  }

  .corp-redesign .testimonials-next {
    right: 16px;
  }

  .corp-redesign .testimonials-stats {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .corp-redesign .testimonial-stat {
    max-width: 100%;
    padding: 32px 24px;
  }

  .corp-redesign .testimonial-stat-number {
    font-size: 36px;
    line-height: 44px;
  }

  .corp-redesign .testimonial-stat-label {
    font-size: 16px;
    line-height: 24px;
  }

  /* ========== CTA Section ========== */
  .corp-redesign .cta-section {
    padding: 64px 16px;
  }

  .corp-redesign .cta-main-heading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .corp-redesign .cta-main-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .corp-redesign .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .corp-redesign .btn-primary-large,
  .corp-redesign .btn-secondary-large {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    height: auto;
  }

  .corp-redesign .cta-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .corp-redesign .cta-info-card {
    padding: 24px;
  }

  .corp-redesign .cta-info-icon {
    width: 56px;
    height: 56px;
  }

  .corp-redesign .cta-info-icon img {
    width: 28px;
    height: 28px;
  }

  .corp-redesign .cta-info-title {
    font-size: 18px;
    line-height: 26px;
  }

  .corp-redesign .cta-info-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .corp-redesign .cta-info-link {
    font-size: 16px;
    line-height: 20px;
  }

  .corp-redesign .cta-features {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 32px;
  }

  .corp-redesign .cta-feature span {
    font-size: 16px;
    line-height: 22px;
  }

  /* ========== Footer Section ========== */
  .corp-redesign .footer-section {
    padding: 48px 16px 0 16px;
  }

  .corp-redesign .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .corp-redesign .footer-brand-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .corp-redesign .brand-logo-img {
    height: 28px;
    filter: brightness(0) invert(1);
  }

  .corp-redesign .legal-tech-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .corp-redesign .footer-description {
    font-size: 14px;
    line-height: 20px;
  }

  .corp-redesign .footer-heading {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
  }

  .corp-redesign .footer-links li a {
    font-size: 13px;
    line-height: 18px;
  }

  .corp-redesign .footer-bottom {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .corp-redesign .footer-info-wrapper {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .corp-redesign .contact-info {
    text-align: left;
  }

  .corp-redesign .contact-title {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .corp-redesign .contact-details {
    font-size: 12px;
    line-height: 18px;
  }

  .corp-redesign .company-info {
    text-align: left;
  }

  .corp-redesign .company-name {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .corp-redesign .company-details {
    font-size: 12px;
    line-height: 18px;
  }

  .corp-redesign .copyright {
    font-size: 13px;
    line-height: 18px;
  }
}

/* ==========================================
   Mobile Small - 479px and below
   ========================================== */
@media (max-width: 479px) {
  /* Container */
  .corp-redesign .container {
    padding: 0 12px;
  }

  /* Hero Section */
  .corp-redesign .hero-section {
    padding: 128px 12px 40px 12px;
  }

  .corp-redesign.banner-hidden .hero-section {
    padding-top: 88px;
  }

  .corp-redesign .heading-line-1,
  .corp-redesign .heading-line-2 {
    font-size: 34px;
    line-height: 42px;
  }

  .corp-redesign .hero-description {
    font-size: 15px;
    line-height: 22px;
  }

  .corp-redesign .hero-stats {
    gap: 12px;
  }

  .corp-redesign .hero-stats .stat-number {
    font-size: 24px;
    line-height: 28px;
  }

  .corp-redesign .hero-stats .stat-label {
    font-size: 12px;
    line-height: 16px;
  }

  .corp-redesign .hero-stats .stat-divider {
    height: 36px;
  }

  /* Typography */
  .corp-redesign .about-section .heading-line-1,
  .corp-redesign .about-section .heading-line-2 {
    font-size: 24px;
    line-height: 32px;
  }

  .corp-redesign .benefits-section .heading-2,
  .corp-redesign .pricing-section .heading-2,
  .corp-redesign .testimonials-heading,
  .corp-redesign .clients-heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Sections */
  .corp-redesign .about-section,
  .corp-redesign .benefits-section,
  .corp-redesign .pricing-section,
  .corp-redesign .testimonials-section,
  .corp-redesign .cta-section {
    padding: 48px 12px;
  }

  /* Cards */
  .corp-redesign .about-card,
  .corp-redesign .benefit-card {
    padding: 20px;
  }

  .corp-redesign .pricing-body {
    padding: 20px;
  }

  /* Testimonials */
  .corp-redesign .testimonial-card {
    flex: 0 0 280px;
    min-width: 280px;
    padding: 24px 20px;
  }

  .corp-redesign .testimonial-text {
    font-size: 14px;
    line-height: 22px;
  }

  /* CTA */
  .corp-redesign .cta-main-heading {
    font-size: 28px;
    line-height: 36px;
  }

  /* Footer */
  .corp-redesign .footer-section {
    padding: 40px 12px 0 12px;
  }
}

/* ========================================
   Popup Layer Styles
   ======================================== */

#coverBG {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 101;
}

.pop-layer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 700px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1000000;
  border-radius: 8px;
  overflow: hidden;
}

.pop-layer .pop-container {
  width: 100%;
  padding: 20px 0 20px 25px;
  box-sizing: border-box;
  height: 100%;
}

.pop-layer .xBtn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 10;
}

.pop-layer .xBtn:hover {
  opacity: 0.7;
}

.pop-layer .xBtn img {
  width: 20px;
  height: 20px;
}

.pop-layer .pop-conts .title {
  text-align: center;
  margin: 20px 0;
}

.pop-layer .pop-conts .title span {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #333;
}

.pop-layer .pop-conts .subTitle {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pop-layer .pop-conts .textBox {
  width: 100%;
  height: 558px;
  overflow-y: scroll;
  padding-right: 15px;
}

.pop-layer .pop-conts .text01 {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.pop-layer .pop-conts .text02 {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.pop-layer .pop-conts .text02 div {
  line-height: 1.6;
}

.pop-layer .pop-conts .text02 table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.pop-layer .pop-conts .text02 table th {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  border: 1px dotted #ddd;
  background-color: #f4f4f4;
  text-align: center;
  padding: 10px 5px;
}

.pop-layer .pop-conts .text02 table td {
  font-size: 14px;
  color: #333;
  border: 1px dotted #ddd;
  text-align: center;
  padding: 10px 5px;
}

/* Mobile Popup Responsive */
@media (max-width: 1024px) {
  .pop-layer {
    width: 96%;
    height: 96vh;
    left: 2%;
    top: 2vh;
    transform: none;
  }

  .pop-layer .pop-container {
    padding: 20px 10px;
    box-sizing: border-box;
  }

  .pop-layer .pop-conts .title span {
    font-size: 20px;
  }

  .pop-layer .pop-conts .subTitle {
    font-size: 14px;
  }

  .pop-layer .pop-conts .text01 {
    font-size: 12px;
  }

  .pop-layer .pop-conts .text02 table th,
  .pop-layer .pop-conts .text02 table td {
    font-size: 12px;
  }

  .pop-layer .pop-conts .textBox {
    height: calc(100vh - 125px);
  }
}

/* ==========================================
   Cost Page Styles
   ========================================== */

/* Cost Container */
.corp-redesign .cost-container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero Section */
.corp-redesign .cost-hero-section {
  background: #ffffff;
  padding: 188px 0 48px 0; /* 80px + 64px (header height) + 44px (banner) */
}

.corp-redesign.banner-hidden .cost-hero-section {
  padding-top: 144px; /* 80px + 64px (header height) */
}

.corp-redesign .cost-hero-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  color: #101828;
  text-align: center;
  margin-bottom: 24px;
}

.corp-redesign .cost-hero-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  text-align: center;
  margin-bottom: 8px;
}

.corp-redesign .cost-hero-contact {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  text-align: center;
}

/* Calculator Section */
.corp-redesign .cost-calculator-section {
  background: #ffffff;
  padding: 0 0 80px 0;
}

/* Card Styles */
.corp-redesign .cost-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 24.8px;
  margin-bottom: 32px;
}

.corp-redesign .cost-input-card {
  padding: 24.8px;
}

.corp-redesign .cost-result-card {
  padding: 24.8px;
}

/* Form Group */
.corp-redesign .cost-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.corp-redesign .cost-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

/* Select Wrapper */
.corp-redesign .cost-select-wrapper {
  position: relative;
}

.corp-redesign .cost-select {
  width: 100%;
  height: 36px;
  background: #f9fafb;
  border: 0.8px solid #ffffff;
  border-radius: 8px;
  padding: 0 32px 0 12.8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #101828;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23101828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12.8px center;
  background-size: 16px 16px;
}

.corp-redesign .cost-select:focus {
  outline: none;
  border-color: #155dfc;
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.1);
}

/* Input Wrapper */
.corp-redesign .cost-input-wrapper {
  position: relative;
}

.corp-redesign .cost-input {
  width: 100%;
  height: 36px;
  background: #f9fafb;
  border: 0.8px solid #ffffff;
  border-radius: 8px;
  padding: 0 12.8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #101828;
}

.corp-redesign .cost-input:focus {
  outline: none;
  border-color: #155dfc;
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.1);
}

.corp-redesign .cost-input::placeholder {
  color: #9ca3af;
}

/* Checkbox Group */
.corp-redesign .cost-checkbox-group {
  margin: 16px 0;
}

.corp-redesign .cost-checkbox-label {
  display: flex;
  align-items: flex-start;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #101828;
  cursor: pointer;
}

.corp-redesign .cost-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
}

.corp-redesign .cost-checkbox:checked {
  background: #155dfc;
  border-color: #155dfc;
}

.corp-redesign .cost-link {
  color: #155dfc;
  text-decoration: underline;
}

/* Primary Button */
.corp-redesign .cost-btn-primary {
  width: 100%;
  height: 36px;
  background: #155dfc;
  border: none;
  border-radius: 8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
}

.corp-redesign .cost-btn-primary:hover {
  background: #1148d6;
}

.corp-redesign .cost-btn-primary:active {
  background: #0d3ab0;
}

/* Result Card */
.corp-redesign .cost-result-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin-bottom: 48px;
}

/* Table */
.corp-redesign .cost-table-wrapper {
  margin-bottom: 48px;
}

.corp-redesign .cost-table {
  width: 100%;
  border-collapse: collapse;
}

.corp-redesign .cost-table thead {
  background: #f9fafb;
}

.corp-redesign .cost-table thead th {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  text-align: left;
  padding: 12.2px 16px;
  border-bottom: 0.8px solid #e5e7eb;
}

.corp-redesign .cost-table tbody tr {
  border-bottom: 0.8px solid #e5e7eb;
}

.corp-redesign .cost-table tbody td {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #101828;
  padding: 12.8px 16px;
}

.corp-redesign .cost-td-category {
  background: rgba(249, 250, 251, 0.3);
  vertical-align: middle;
}

.corp-redesign .cost-td-amount {
  text-align: right;
}

.corp-redesign .cost-tr-total {
  background: rgba(21, 93, 252, 0.05);
}

.corp-redesign .cost-tr-total td {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  padding: 18.1px 16px;
}

.corp-redesign .cost-td-total {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #155dfc;
  text-align: right;
}

/* Notice */
.corp-redesign .cost-notice {
  background: rgba(249, 250, 251, 0.3);
  border-radius: 10px;
  padding: 16px;
}

.corp-redesign .cost-notice p {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
  margin-bottom: 4px;
}

.corp-redesign .cost-notice p:last-child {
  margin-bottom: 0;
}

/* Service Sections */
.corp-redesign .cost-service-section {
  padding: 80px 0;
}

.corp-redesign .cost-bg-white {
  background: #ffffff;
}

.corp-redesign .cost-bg-gray {
  background: rgba(249, 250, 251, 0.3);
}

/* Service Header */
.corp-redesign .cost-service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.corp-redesign .cost-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.corp-redesign .cost-icon-blue {
  background: rgba(21, 93, 252, 0.1);
}

.corp-redesign .cost-icon-cyan {
  background: rgba(0, 184, 219, 0.1);
}

.corp-redesign .cost-icon-circle img {
  width: 48px;
  height: 48px;
}

.corp-redesign .cost-section-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 72px;
  color: #101828;
  text-align: center;
  margin-bottom: 16px;
}

.corp-redesign .cost-section-underline {
  width: 96px;
  height: 4px;
  border-radius: 100px;
}

.corp-redesign .cost-underline-blue {
  background: #155dfc;
}

.corp-redesign .cost-underline-cyan {
  background: #00b8db;
}

/* Service Card */
.corp-redesign .cost-service-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 40.8px;
}

/* Service Card Header */
.corp-redesign .cost-service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.corp-redesign .cost-service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-redesign .cost-icon-bg-blue {
  background: rgba(21, 93, 252, 0.1);
}

.corp-redesign .cost-service-icon-box img {
  width: 32px;
  height: 32px;
}

.corp-redesign .cost-service-card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #101828;
}

/* Service Content */
.corp-redesign .cost-service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .cost-service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-redesign .cost-service-item-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25.2px;
  color: #101828;
}

.corp-redesign .cost-service-item-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(16, 24, 40, 0.9);
}

/* Simple Content */
.corp-redesign .cost-service-simple-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .cost-service-simple-content p {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #101828;
}

.corp-redesign .cost-text-highlight {
  color: #155dfc;
  font-weight: 700;
}

/* Benefit Grid */
.corp-redesign .cost-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 21px;
}

.corp-redesign .cost-benefit-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-redesign .cost-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.corp-redesign .cost-check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.corp-redesign .cost-benefit-text h4 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #101828;
  margin-bottom: 4px;
}

.corp-redesign .cost-benefit-text p {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.corp-redesign .cost-benefit-note {
  margin-top: 4px;
}

.corp-redesign .cost-benefit-footer {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #4a5565;
  text-align: center;
}

/* CTA Section */
.corp-redesign .cost-cta-section {
  background: #ffffff;
  padding: 80px 0 128px 0;
  text-align: center;
}

.corp-redesign .cost-cta-section .cost-icon-circle {
  margin: 0 auto 24px auto;
  width: 80px;
  height: 80px;
}

.corp-redesign .cost-cta-section .cost-icon-circle img {
  width: 40px;
  height: 40px;
}

.corp-redesign .cost-cta-section .cost-section-title {
  margin-bottom: 40px;
}

.corp-redesign .cost-btn-cta {
  display: inline-block;
  background: #155dfc;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 11.06px 50px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34.286px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.corp-redesign .cost-btn-cta:hover {
  background: #1148d6;
}

.corp-redesign .cost-btn-cta:active {
  background: #0d3ab0;
}

/* ==========================================
   Responsive Styles - Mobile
   ========================================== */
@media (max-width: 767px) {
  .corp-redesign .cost-container {
    padding: 0 16px;
  }

  /* Hero */
  .corp-redesign .cost-hero-section {
    padding: 124px 0 32px 0; /* 60px + 64px (header height) */
  }

  .corp-redesign .cost-hero-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
  }

  .corp-redesign .cost-hero-desc,
  .corp-redesign .cost-hero-contact {
    font-size: 14px;
    line-height: 21px;
  }

  /* Calculator */
  .corp-redesign .cost-calculator-section {
    padding: 0 0 60px 0;
  }

  .corp-redesign .cost-card {
    padding: 20px;
    margin-bottom: 24px;
  }

  /* Service Sections */
  .corp-redesign .cost-service-section {
    padding: 60px 0;
  }

  .corp-redesign .cost-service-header {
    margin-bottom: 48px;
  }

  .corp-redesign .cost-icon-circle {
    width: 80px;
    height: 80px;
  }

  .corp-redesign .cost-icon-circle img {
    width: 40px;
    height: 40px;
  }

  .corp-redesign .cost-section-title {
    font-size: 28px;
    line-height: 40px;
  }

  .corp-redesign .cost-service-card {
    padding: 24px;
  }

  .corp-redesign .cost-service-card-header {
    margin-bottom: 32px;
  }

  .corp-redesign .cost-service-icon-box {
    width: 48px;
    height: 48px;
  }

  .corp-redesign .cost-service-icon-box img {
    width: 28px;
    height: 28px;
  }

  .corp-redesign .cost-service-card-title {
    font-size: 20px;
    line-height: 30px;
  }

  .corp-redesign .cost-service-item-title {
    font-size: 16px;
    line-height: 22px;
  }

  .corp-redesign .cost-service-item-text,
  .corp-redesign .cost-service-simple-content p {
    font-size: 16px;
    line-height: 24px;
  }

  /* Benefit Grid */
  .corp-redesign .cost-benefit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CTA */
  .corp-redesign .cost-cta-section {
    padding: 60px 0 80px 0;
  }

  .corp-redesign .cost-cta-section .cost-section-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .corp-redesign .cost-btn-cta {
    font-size: 18px;
    line-height: 28px;
    padding: 12px 32px;
  }

  /* Table Responsive */
  .corp-redesign .cost-table {
    font-size: 12px;
  }

  .corp-redesign .cost-table thead th {
    font-size: 13px;
    padding: 10px 12px;
  }

  .corp-redesign .cost-table tbody td {
    font-size: 12px;
    padding: 10px 12px;
  }

  .corp-redesign .cost-tr-total td {
    font-size: 14px;
  }

  .corp-redesign .cost-td-total {
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .corp-redesign .cost-hero-title {
    font-size: 24px;
    line-height: 34px;
  }

  .corp-redesign .cost-section-title {
    font-size: 24px;
    line-height: 36px;
  }

  .corp-redesign .cost-service-card-title {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ==========================================

   Customer Service Page (main_cs.jsp)
   Figma: Customer Service Page Design -FINAL
   ========================================== */

/* Hero Section */
.corp-redesign .cs-hero-section {
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 96px 0;
  margin-top: 108px; /* 64px + 44px (banner) */
}

.corp-redesign.banner-hidden .cs-hero-section {
  margin-top: 64px;
}

.corp-redesign .cs-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.corp-redesign .cs-hero-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  color: #101828;
  text-align: center;
  margin: 0;
}

.corp-redesign .cs-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.corp-redesign .cs-hero-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 24.8px;
  transition: all 0.3s;
  cursor: pointer;
}

.corp-redesign .cs-hero-card:hover {
  border-color: #155dfc;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.corp-redesign .cs-hero-card-inner {
  display: flex;
  gap: 16px;
}

.corp-redesign .cs-hero-card-icon {
  background: rgba(21, 93, 252, 0.1);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-redesign .cs-hero-card-icon img {
  width: 20px;
  height: 20px;
}

.corp-redesign .cs-hero-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.corp-redesign .cs-hero-card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 31.2px;
  color: #101828;
  margin: 0;
}

.corp-redesign .cs-hero-card-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #6a7282;
  margin: 0;
}

.corp-redesign .cs-help-section {
  background: #ffffff;
  padding: 80px 0;
}

.corp-redesign .cs-help-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.corp-redesign .cs-help-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  color: #101828;
  text-align: center;
  margin: 0;
}

.corp-redesign .cs-help-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6a7282;
  text-align: center;
  margin: 0;
}

.corp-redesign .cs-tab-list {
  background: rgba(249, 250, 251, 0.5);
  border-radius: 10px;
  padding: 8.5px 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}

.corp-redesign .cs-tab-btn {
  background: transparent;
  border: 0.8px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding: 0.8px;
  height: 52.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #101828;
}

.corp-redesign .cs-tab-btn.active {
  background: #ffffff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.corp-redesign .cs-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.corp-redesign .cs-tab-icon {
  width: 16px;
  height: 16px;
}

.corp-redesign .cs-tab-panel {
  display: none;
}

.corp-redesign .cs-tab-panel.active {
  display: block;
}

.corp-redesign .cs-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.corp-redesign .cs-help-link {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 20.8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: pointer;
}

.corp-redesign .cs-help-link:hover {
  border-color: #155dfc;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .cs-link-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.corp-redesign .cs-link-bullet {
  width: 8px;
  height: 8px;
  background: rgba(21, 93, 252, 0.3);
  border-radius: 4px;
  flex-shrink: 0;
}

.corp-redesign .cs-link-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

.corp-redesign .cs-link-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.corp-redesign .cs-featured {
  background: rgba(21, 93, 252, 0.05);
  border-radius: 14px;
  padding: 4px;
  margin-top: 48px;
}

.corp-redesign .cs-featured-link {
  background: #ffffff;
  border-radius: 13px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: pointer;
}

.corp-redesign .cs-featured-link:hover {
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.corp-redesign .cs-featured-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.corp-redesign .cs-featured-icon {
  background: #155dfc;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-redesign .cs-featured-icon img {
  width: 24px;
  height: 24px;
}

.corp-redesign .cs-featured-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.corp-redesign .cs-featured-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .cs-featured-badge {
  background: rgba(21, 93, 252, 0.1);
  border-radius: 6px;
  padding: 3.6px 8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #155dfc;
}

.corp-redesign .cs-featured-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

.corp-redesign .cs-featured-desc {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #6a7282;
  margin: 0;
}

.corp-redesign .cs-featured-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.corp-redesign .cs-cta-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.3) 100%);
  padding: 80px 0;
}

.corp-redesign .cs-cta-content {
  background: #155dfc;
  border-radius: 14px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.corp-redesign .cs-cta-bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  pointer-events: none;
}

.corp-redesign .cs-cta-circle {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
}

.corp-redesign .cs-cta-circle-1 {
  width: 256px;
  height: 256px;
  top: -128px;
  right: 0;
}

.corp-redesign .cs-cta-circle-2 {
  width: 192px;
  height: 192px;
  bottom: 0;
  left: -96px;
}

.corp-redesign .cs-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.corp-redesign .cs-cta-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43.2px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.corp-redesign .cs-cta-brand {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43.2px;
  color: #ffffff;
}

.corp-redesign .cs-cta-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0;
}

.corp-redesign .cs-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.corp-redesign .cs-cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .cs-cta-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.corp-redesign .cs-cta-feature span {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  white-space: nowrap;
}

.corp-redesign .cs-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.corp-redesign .cs-cta-btn {
  border-radius: 10px;
  padding: 14px 24px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.corp-redesign .cs-cta-btn-primary {
  background: #ffffff;
  color: #101828;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: none;
}

.corp-redesign .cs-cta-btn-primary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.corp-redesign .cs-cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.6px solid #ffffff;
}

.corp-redesign .cs-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.corp-redesign .cs-cta-btn-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .corp-redesign .cs-hero-heading {
    font-size: 48px;
    line-height: 58px;
  }
  .corp-redesign .cs-help-heading {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 768px) {
  .corp-redesign .cs-hero-section {
    padding: 80px 0;
  }
  .corp-redesign .cs-hero-heading {
    font-size: 36px;
    line-height: 48px;
  }
  .corp-redesign .cs-hero-cards {
    grid-template-columns: 1fr;
  }
  .corp-redesign .cs-help-section {
    padding: 60px 0;
  }
  .corp-redesign .cs-help-heading {
    font-size: 32px;
    line-height: 42px;
  }
  .corp-redesign .cs-tab-list {
    grid-template-columns: 1fr 1fr;
  }
  .corp-redesign .cs-link-grid {
    grid-template-columns: 1fr;
  }
  .corp-redesign .cs-cta-heading,
  .corp-redesign .cs-cta-brand {
    font-size: 28px;
    line-height: 36px;
  }
  .corp-redesign .cs-cta-features {
    flex-direction: column;
    gap: 12px;
  }
  .corp-redesign .cs-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .corp-redesign .cs-cta-btn {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .corp-redesign .cs-hero-section {
    padding: 60px 0;
  }
  .corp-redesign .cs-hero-heading {
    font-size: 28px;
    line-height: 38px;
  }
  .corp-redesign .cs-hero-card-title {
    font-size: 20px;
    line-height: 28px;
  }
  .corp-redesign .cs-help-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .corp-redesign .cs-help-description {
    font-size: 14px;
    line-height: 21px;
  }
  .corp-redesign .cs-tab-list {
    grid-template-columns: 1fr;
  }
  .corp-redesign .cs-cta-content {
    padding: 32px 24px;
  }
  .corp-redesign .cs-cta-heading,
  .corp-redesign .cs-cta-brand {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ==========================================
   Affiliate Detail Page Styles
   ========================================== */

/* Hero Section */
.corp-redesign .affiliate-hero-section {
  background: linear-gradient(160.71deg, rgba(21, 93, 252, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 211, 242, 0.05) 100%);
  border-bottom: 0.8px solid #e5e7eb;
  padding: 172px 32px 80px 32px; /* 128px + 44px (banner) */
}

.corp-redesign.banner-hidden .affiliate-hero-section {
  padding-top: 128px;
}

.corp-redesign .affiliate-hero-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.corp-redesign .affiliate-hero-left {
  flex: 1;
  max-width: 512px;
}

.corp-redesign .affiliate-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 93, 252, 0.1);
  border-radius: 26843500px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.corp-redesign .affiliate-tag-icon {
  width: 16px;
  height: 16px;
}

.corp-redesign .affiliate-tag-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #155dfc;
}

.corp-redesign .affiliate-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0 0 16px 0;
}

.corp-redesign .affiliate-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #99a1af;
  margin: 0 0 38.5px 0;
}

.corp-redesign .affiliate-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #155dfc;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.corp-redesign .affiliate-cta-btn:hover {
  background: #0d47c7;
}

.corp-redesign .affiliate-cta-icon {
  width: 16px;
  height: 16px;
}

.corp-redesign .affiliate-hero-right {
  flex: 1;
  max-width: 512px;
  padding-top: 21.59px;
}

.corp-redesign .affiliate-image-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 199.313px;
}

.corp-redesign .affiliate-image-card img {
  max-width: 100%;
  max-height: 103.313px;
  object-fit: contain;
}

/* Main Content Sections */
.corp-redesign .affiliate-content {
  padding: 64px 32px;
  max-width: 1152px;
  margin: 0 auto;
}

.corp-redesign .affiliate-section {
  margin-bottom: 64px;
}

.corp-redesign .affiliate-section:last-child {
  margin-bottom: 0;
}

/* Section Headers */
.corp-redesign .affiliate-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.corp-redesign .affiliate-section-divider {
  width: 8px;
  height: 32px;
  background: linear-gradient(to bottom, #155dfc 0%, #00d3f2 100%);
  border-radius: 26843500px;
}

.corp-redesign .affiliate-section-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0;
}

/* Benefits List */
.corp-redesign .affiliate-benefits-box {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 40.8px;
}

.corp-redesign .affiliate-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.corp-redesign .affiliate-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.corp-redesign .affiliate-benefit-icon {
  width: 24px;
  height: 24px;
  background: rgba(21, 93, 252, 0.1);
  border-radius: 26843500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1.5px;
}

.corp-redesign .affiliate-benefit-icon img {
  width: 16px;
  height: 16px;
}

.corp-redesign .affiliate-benefit-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #101828;
  margin: 0;
}

/* Target Audience Cards */
.corp-redesign .affiliate-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.corp-redesign .affiliate-target-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 32.8px;
}

.corp-redesign .affiliate-target-icon {
  width: 48px;
  height: 48px;
  background: rgba(21, 93, 252, 0.1);
  border-radius: 26843500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.corp-redesign .affiliate-target-icon img {
  width: 24px;
  height: 24px;
}

.corp-redesign .affiliate-target-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0 0 8px 0;
}

.corp-redesign .affiliate-target-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #99a1af;
  margin: 0;
}

/* Application Method */
.corp-redesign .affiliate-method-box {
  background: linear-gradient(170.93deg, rgba(21, 93, 252, 0.05) 0%, rgba(0, 211, 242, 0.05) 100%);
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  padding: 40.8px;
}

.corp-redesign .affiliate-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.corp-redesign .affiliate-method-item {
  display: flex;
  gap: 16px;
}

.corp-redesign .affiliate-method-number {
  width: 32px;
  height: 32px;
  background: #155dfc;
  color: #ffffff;
  border-radius: 26843500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  flex-shrink: 0;
}

.corp-redesign .affiliate-method-content {
  flex: 1;
}

.corp-redesign .affiliate-method-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0 0 8px 0;
}

.corp-redesign .affiliate-method-title-bold {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
}

.corp-redesign .affiliate-method-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #99a1af;
  margin: 0 0 8px 0;
}

.corp-redesign .affiliate-method-description:last-child {
  margin-bottom: 0;
}

.corp-redesign .affiliate-method-email {
  display: flex;
  align-items: center;
  gap: 8px;
}

.corp-redesign .affiliate-method-email-icon {
  width: 16px;
  height: 16px;
}

.corp-redesign .affiliate-method-email-text {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #155dfc;
}

/* Contact Channel */
.corp-redesign .affiliate-contact-box {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 40.8px;
}

.corp-redesign .affiliate-contact-main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.corp-redesign .affiliate-contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 211, 242, 0.1);
  border-radius: 26843500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-redesign .affiliate-contact-icon img {
  width: 24px;
  height: 24px;
}

.corp-redesign .affiliate-contact-info {
  flex: 1;
}

.corp-redesign .affiliate-contact-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #101828;
  margin: 0 0 8px 0;
}

.corp-redesign .affiliate-contact-value {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28.8px;
  color: #00d3f2;
  margin: 0;
}

.corp-redesign .affiliate-contact-note {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #99a1af;
  margin: 0;
}

/* FAQ Section */
.corp-redesign .affiliate-faq-section {
  background: rgba(249, 250, 251, 0.3);
  border-top: 0.8px solid #e5e7eb;
  padding: 80px 32px 80px 32px;
}

.corp-redesign .affiliate-faq-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.corp-redesign .affiliate-faq-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 32.8px;
}

.corp-redesign .affiliate-faq-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.corp-redesign .affiliate-faq-icon {
  width: 24px;
  height: 24px;
}

.corp-redesign .affiliate-faq-heading {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0;
}

.corp-redesign .affiliate-faq-content {
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-redesign .affiliate-faq-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #99a1af;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1152px) {
  .corp-redesign .affiliate-hero-container {
    padding: 0 16px;
  }

  .corp-redesign .affiliate-content {
    padding: 48px 16px;
  }

  .corp-redesign .affiliate-faq-section {
    padding: 64px 16px 64px 16px;
  }
}

@media (max-width: 992px) {
  .corp-redesign .affiliate-hero-container {
    flex-direction: column;
    gap: 32px;
  }

  .corp-redesign .affiliate-hero-left,
  .corp-redesign .affiliate-hero-right {
    max-width: 100%;
  }

  .corp-redesign .affiliate-target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corp-redesign .affiliate-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .corp-redesign .affiliate-hero-section {
    padding: 136px 24px 64px 24px; /* 96px + 40px (mobile banner) */
  }

  .corp-redesign.banner-hidden .affiliate-hero-section {
    padding-top: 96px;
  }

  .corp-redesign .affiliate-title {
    font-size: 24px;
    line-height: 32px;
  }

  .corp-redesign .affiliate-description {
    font-size: 16px;
    line-height: 24px;
  }

  .corp-redesign .affiliate-target-grid {
    grid-template-columns: 1fr;
  }

  .corp-redesign .affiliate-benefits-box,
  .corp-redesign .affiliate-method-box,
  .corp-redesign .affiliate-contact-box {
    padding: 24px;
  }

  .corp-redesign .affiliate-benefit-text {
    font-size: 16px;
    line-height: 24px;
  }

  .corp-redesign .affiliate-faq-card {
    padding: 24px;
  }
}

@media (max-width: 479px) {
  .corp-redesign .affiliate-hero-section {
    padding: 120px 16px 48px 16px; /* 80px + 40px (mobile banner) */
  }

  .corp-redesign.banner-hidden .affiliate-hero-section {
    padding-top: 80px;
  }

  .corp-redesign .affiliate-tag {
    font-size: 14px;
    line-height: 20px;
  }

  .corp-redesign .affiliate-title {
    font-size: 20px;
    line-height: 28px;
  }

  .corp-redesign .affiliate-description {
    font-size: 14px;
    line-height: 21px;
  }

  .corp-redesign .affiliate-image-card {
    padding: 32px 24px;
  }

  .corp-redesign .affiliate-benefits-box,
  .corp-redesign .affiliate-method-box,
  .corp-redesign .affiliate-contact-box {
    padding: 20px;
  }

  .corp-redesign .affiliate-section {
    margin-bottom: 48px;
  }
}



/* ==========================================
   제휴혜택 목록 페이지 (Partnership Benefits Page)
   Figma Design 1:1 복제
   ========================================== */

.corp-redesign .affiliate-benefits-section {
  background: #ffffff;
  padding: 140px 32px 0 32px; /* 32px + 44px (banner) + 64px (header) */
  min-height: calc(100vh - 64px);
}

.corp-redesign.banner-hidden .affiliate-benefits-section {
  padding-top: 96px; /* 32px + 64px (header only) */
}

.corp-redesign .affiliate-benefits-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100px;
  margin-bottom: 48px;
}

.corp-redesign .affiliate-benefits-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  color: #101828;
  text-align: center;
  margin: 0;
}

.corp-redesign .affiliate-benefits-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  text-align: center;
  margin: 0;
}

.corp-redesign .affiliate-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 532px);
  gap: 24px;
  justify-content: center;
  padding-bottom: 64px;
}

.corp-redesign .affiliate-card {
  background: #ffffff;
  border: 0.8px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  cursor: pointer;
}

.corp-redesign .affiliate-card:hover {
  border-color: #155dfc;
  box-shadow: 0px 4px 12px 0px rgba(21, 93, 252, 0.15);
  transform: translateY(-2px);
}

.corp-redesign .affiliate-card-logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.corp-redesign .affiliate-card-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.corp-redesign .affiliate-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
}

.corp-redesign .affiliate-card-tag {
  background: #f9fafb;
  border-radius: 6px;
  padding: 3.8px 8px;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #99a1af;
  display: inline-flex;
  align-items: center;
  height: 24px;
}

.corp-redesign .affiliate-card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0;
}

.corp-redesign .affiliate-card-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.corp-redesign .affiliate-card-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 7.998px;
  min-height: 25px;
}

.corp-redesign .affiliate-card-benefit-bullet {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #155dfc;
  flex-shrink: 0;
  margin-top: 4px;
  width: 4.912px;
}

.corp-redesign .affiliate-card-benefit-text {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #101828;
  margin: -0.4px 0 0 0;
}

/* 반응형: 태블릿 (768px ~ 1200px) */
@media (max-width: 1200px) {
  .corp-redesign .affiliate-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1088px;
    gap: 20px;
  }

  .corp-redesign .affiliate-card {
    padding: 28px 20px 20px 20px;
  }

  .corp-redesign .affiliate-benefits-title {
    font-size: 40px;
    line-height: 52px;
  }
}

/* 반응형: 모바일 (768px 이하) */
@media (max-width: 768px) {
  .corp-redesign .affiliate-benefits-section {
    padding: 120px 16px 0 16px; /* 24px + 40px (mobile banner) + 56px (mobile header) */
  }

  .corp-redesign.banner-hidden .affiliate-benefits-section {
    padding-top: 80px; /* 24px + 56px (mobile header only) */
  }

  .corp-redesign .affiliate-benefits-header {
    height: auto;
    gap: 12px;
    margin-bottom: 32px;
  }

  .corp-redesign .affiliate-benefits-title {
    font-size: 32px;
    line-height: 40px;
  }

  .corp-redesign .affiliate-benefits-description {
    font-size: 14px;
    line-height: 21px;
  }

  .corp-redesign .affiliate-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 48px;
  }

  .corp-redesign .affiliate-card {
    padding: 24px 16px 16px 16px;
  }

  .corp-redesign .affiliate-card-logo {
    height: 40px;
  }

  .corp-redesign .affiliate-card-logo img {
    height: 40px;
  }

  .corp-redesign .affiliate-card-title {
    font-size: 15px;
    line-height: 22px;
  }

  .corp-redesign .affiliate-card-benefit-text {
    font-size: 13px;
    line-height: 19px;
  }
}
