@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  /* --nav-font: "Poppins", sans-serif; */
  --font-primary: "Pretendard Variable", "Pretendard", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4154f1; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
/*
:root {
  --nav-color: #012970; /* The default color of the main navmenu links 
  --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active 
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu 
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items 
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. 
  --nav-dropdown-hover-color: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. 
}*/

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--font-primary);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

.hero2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/bg_2.png) top center no-repeat;
  background-size: cover;
}

.hero2 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero2 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero2 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero2 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero2 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero2 .btn-get-started:hover i {
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .hero2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero2 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

h3.highlight {
  display: inline-block; /* 줄 전체에 적용 원하면 block */
  background: linear-gradient(
    180deg,
    transparent 60%,
    #fafe63 60%,
    #fafe63 100%
  );
  font-weight: 800;
  /* #fafe63 = 연노랑 형광색, 색은 원하는 대로 바꿔도 됨 */
}

/* FAQ 아코디언 기능 */

.custom-faq {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  padding: 0 20px;
}
.custom-faq h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: none;
  transition: background 0.2s;
}
.faq-item.active {
  background: #e4e4e4;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 24px 24px 24px 24px;
  font-size: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-item:not(.active):hover .faq-question {
  background: #f7f7f7;
}
.faq-icon {
  font-size: 32px;
  font-weight: 400;
  margin-left: 8px;
  transition: transform 0.2s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg); /* X 표시 */
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 19px;
  background: #fff;
  padding: 0 24px;
  border-top: 1px solid #ededed;
  color: #222;
  line-height: 1.7;
  transition:
    max-height 0.3s cubic-bezier(0.67, 0.13, 0.1, 1.11),
    padding 0.2s;
}
.faq-item.active .faq-answer {
  padding: 18px 24px 26px 24px;
  max-height: 300px; /* 충분히 크게! */
  transition:
    max-height 0.4s cubic-bezier(0.67, 0.13, 0.1, 1.11),
    padding 0.3s;
}

@media (max-width: 600px) {
  .custom-faq h1 {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .faq-question {
    font-size: 17px;
    padding: 18px;
  }
  .faq-answer {
    font-size: 15px;
    padding: 0 18px;
  }
  .faq-item.active .faq-answer {
    padding: 14px 18px 20px 18px;
  }
}

/* 수강생 관리 css */

.hero3 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/student_bg.png) top center no-repeat;
  background-size: cover;
}

.hero3 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero3 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero3 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero3 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero3 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero3 .btn-get-started:hover i {
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .hero3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero3 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* 수강생관리 탭 부분 */

.custom-tab-area {
  margin: 30px 0;
}

.custom-tabs {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  padding: 6px 14px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 16px auto;
}

.tab-btn {
  flex: 1;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #595959;
  padding: 18px 0;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.tab-btn.active {
  background: #b8cbff;
  color: #222;
}

.tab-divider {
  width: 1px;
  height: 36px;
  background: #ececec;
  margin: 0 10px;
}

.tab-contents {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.tab-content {
  display: none;
  padding: 0;
  text-align: center;
}

.tab-content.active {
  display: block;
}

.tab-image {
  width: 100%;
  max-width: 1120px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.middlenotice {
  width: 100%;
  text-align: center;
  font-weight: 800;
  margin-bottom: 15px;
}

/* 상담관리 관리 css */

.hero4 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/counseling.png) top center no-repeat;
  background-size: cover;
}

.hero4 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero4 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero4 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero4 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero4 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero4 .btn-get-started:hover i {
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .hero4 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero4 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#registraion {
  background: url(../img/re_bg.png) top center no-repeat;
}

#experience {
  background: url(../img/experience2_bg.png) top center no-repeat;
}

/* 재등록파악 슬라이드  */
.eduslide-container {
  width: 1200px;
  margin: 40px auto;
}
.eduslide-banner-area {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 48px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
  gap: 30px;
}
.eduslide-logo-text {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 340px;
  z-index: 2;
}
.eduslide-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.eduslide-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.eduslide-txt-main {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3px;
}
.eduslide-txt-main .eduslide-highlight {
  color: #4154f1;
  font-weight: 800;
}
.eduslide-txt-sub {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0;
}
/* 슬라이딩 버튼 영역 */
.eduslide-menu-slidebox {
  flex: 1 1 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
  /* 둥근 모서리를 동일하게 적용해, 버튼리스트 잘림 현상 방지 */
  border-radius: 48px;
}
.eduslide-menu-list {
  display: flex;
  gap: 22px;
  /* 느린 슬라이드 속도: 36초 */
  animation: eduslideX 36s linear infinite;
  will-change: transform;
  align-items: center;
  /* 좌우 여백을 넉넉하게 */
  padding-left: 50px;
  padding-right: 50px;
}
@keyframes eduslideX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.eduslide-menu-btn {
  background: #fff;
  color: #222;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 18px 40px;
  margin: 0;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: none;
  white-space: nowrap;
}
.eduslide-menu-btn:hover {
  background: #4154f1;
  color: #fff;
}
/* 마우스 오버시 슬라이드 일시정지 */
.eduslide-menu-slidebox:hover .eduslide-menu-list {
  animation-play-state: paused;
}

@media (max-width: 1260px) {
  .eduslide-container {
    width: 98vw;
    min-width: 340px;
  }
  .eduslide-banner-area {
    width: 100%;
    padding: 0 8px;
  }
  .eduslide-logo-text {
    min-width: 200px;
  }
  .eduslide-menu-btn {
    padding: 16px 22px;
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .eduslide-banner-area {
    height: 72px;
  }
  .eduslide-logo {
    width: 36px;
    height: 36px;
  }
  .eduslide-logo img {
    width: 28px;
    height: 28px;
  }
  .eduslide-txt-main {
    font-size: 14px;
  }
  .eduslide-txt-sub {
    font-size: 11px;
  }
  .eduslide-menu-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .eduslide-menu-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 강사별 시간표 css */
.grows-page {
  background: #fff;
}

/* ====== Feature Section (Flipturn / Feature Tiles) ====== */
:root {
  --ft-container: 1200px;
  --ft-gap: 24px;
  --ft-radius: 18px;
  --ft-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);

  --ft-text: #111827;
  --ft-muted: #63708a;

  --ft-brown: #232326;
  --ft-brown-ink: #ffffff;

  --ft-surface: #ffffff;
  --ft-stroke: #e5ecf6;

  --ft-grad-a: #eff7f3;
  --ft-grad-b: #faf2e7;

  --ft-link: #2e90fa;
}

.ft-details {
  background: #f6f8fb;
  padding: clamp(48px, 6vw, 96px) 16px;
  color: var(--ft-text);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Noto Sans KR",
    Arial,
    sans-serif;
}
.ft-container {
  max-width: var(--ft-container);
  margin: 0 auto;
}
.ft-header {
  text-align: center;
  margin-bottom: 28px;
}
.ft-eyebrow {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ft-muted);
  margin: 0 0 6px;
}
.ft-title {
  font-size: clamp(42px, 4vw, 36px);
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  color: #232326;
}

.ft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ft-gap);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

.ft-card {
  border-radius: var(--ft-radius);
  padding: 28px;
  box-shadow: var(--ft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.ft-card--white {
  background: var(--ft-surface);
  border: 1px solid var(--ft-stroke);
}
.ft-card--brown {
  background: linear-gradient(160deg, var(--ft-grad-a), var(--ft-grad-b));
  color: var(--ft-brown-ink);
}
.ft-card--gradient {
  background: linear-gradient(160deg, var(--ft-grad-a), var(--ft-grad-b));
}

.ft-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.ft-card-title {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0;
  line-height: 1.35;
  font-weight: 600;
}
.ft-more {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-link);
  text-decoration: none;
  position: relative;
  padding-right: 18px;
}
.ft-more::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-48%);
  transition: transform 0.18s ease;
}
.ft-more:hover::after {
  transform: translate(2px, -48%);
}
.ft-card:hover {
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

/* === 이미지 영역 placeholder 전용 === */
.ft-art {
  position: relative;
  width: 100%;
  aspect-ratio: var(--art-ratio, 2/1); /* 필요 시 비율만 바꿔 사용 */
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px dashed #d5ddea;
  display: grid;
  place-items: center;
  margin-top: 18px;
}
.ft-art-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.ft-art[data-fit="cover"] .ft-art-img {
  object-fit: cover;
}

/* 플레이스홀더 표시 (이미지 비어있을 때 is-empty 유지) */
.ft-art.is-empty::before {
  content: "이미지 영역";
  font-size: 14px;
  color: #9aa6bf;
  letter-spacing: 0.02em;
}
.ft-card--brown .ft-art {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
}
.ft-card--brown .ft-art.is-empty::before {
  color: #ffffffcc;
}

/* 공통 요소 */
.ft-h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 0 18px;
}
.ft-body {
  color: #475569;
  margin: 8px 0 16px;
}
.simple-check2 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.simple-check2 li {
  display: flex; /* 텍스트와 아이콘 baseline 정렬 */
  align-items: baseline;
  gap: 6px;
  margin: 6px 0;
}
.simple-check2 li::before {
  content: "✓";
  color: #2e90fa;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(1px); /* 살짝 내려서 이미지처럼 보이게 */
}
.center {
  text-align: center;
}
.w100 {
  width: 100%;
}

.ft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #4154f1;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(46, 144, 250, 0.18);
}
.ft-btn:hover {
  transform: translateY(-1px);
  transition: 0.18s;
  background: white;
  border: 1px solid #4154f1;
  color: #4154f1;
}
.ft-btn--ghost {
  background: #fff;
  color: #2e90fa;
  border: 1px solid #cfe2ff;
  box-shadow: none;
}

/* 1) 지표 */
.ft-metrics {
  background: #fff;
}
.ft-metrics .ft-container {
  padding-block: 28px;
}
.ft-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft-metric {
  background: linear-gradient(180deg, #f7fbff, #fff);
  border: 1px solid #e6eef9;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.ft-metric-num {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ft-metric-label {
  display: block;
  margin-top: 8px;
  color: #63708a;
  font-size: 14px;
}
@media (max-width: 900px) {
  .ft-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 2) 분할 섹션 */
.ft-split {
  background: #f6f8fb;
  padding: 54px 16px;
}
.ft-split-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 54px;
}
.ft-split-row.is-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.ft-split-row.is-reverse .ft-split-media {
  order: 2;
}
.ft-split-row.is-reverse .ft-split-copy {
  order: 1;
}
.ft-split-media .ft-art {
  border: 1px solid #e5ecf6;
  background: #fff;
}
@media (max-width: 900px) {
  .ft-split-row,
  .ft-split-row.is-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ft-split-row.is-reverse .ft-split-media,
  .ft-split-row.is-reverse .ft-split-copy {
    order: unset;
  }
}

/* 3) 단계 */
.ft-steps {
  background: #fff;
  padding: 54px 16px;
}
.ft-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}
.ft-step {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 16px;
  padding: 22px;
  position: relative;
}
.ft-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #2e90fa;
  color: #fff;
  font-weight: 800;
}
.ft-step-title {
  margin: 10px 0 6px;
  font-size: 18px;
}
.ft-step-desc {
  color: #67738c;
  margin: 0;
}
@media (max-width: 900px) {
  .ft-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* 4) 가격 */
.ft-pricing {
  background: #f6f8fb;
  padding: 64px 16px;
}
.ft-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.ft-price-card {
  background: #fff;
  border: 1px solid #e7eef7;
  border-radius: 18px;
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}
.ft-price-name {
  font-size: 18px;
  margin: 0 0 8px;
}
.ft-price-cost b {
  font-size: 28px;
}
.ft-price-cost span {
  color: #6b7280;
  font-size: 14px;
}
.ft-price-list {
  margin: 14px 0 18px 18px;
  color: #4b5563;
}
.ft-price-card.is-popular {
  border-color: #cfe2ff;
  box-shadow: 0 16px 36px rgba(46, 144, 250, 0.18);
}
.ft-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2e90fa;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .ft-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* 5) 후기 (가로 스냅) */
/* 후기 카드 기본(이전에 썼던 스타일과 호환) */
.ft-testimonials {
  background: #f6f8fb;
  padding: 46px 0;
}
.ft-t-card {
  background: linear-gradient(180deg, #f8fbff, #fff);
  border: 1px solid #e6eef9;
  border-radius: 16px;
  padding: 18px;
  margin: 0;
  min-width: 280px; /* 폭 너무 작아지지 않게 */
}
.ft-t-card blockquote {
  margin: 0 0 10px;
  font-weight: 600;
}
.ft-t-card figcaption {
  color: #6b7280;
  font-size: 14px;
}

/* 마키(무한 좌향 스크롤) */
.ft-t-viewport {
  overflow: hidden;
  position: relative;
  /* 양 끝 페이드 (선택) */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.ft-t-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  width: max-content; /* 내용 폭만큼만 */
  animation: ft-marquee var(--ft-marquee-duration, 28s) linear infinite;
}
.ft-t-track:hover {
  animation-play-state: paused;
} /* 호버 시 일시정지 */

@keyframes ft-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* 세트 A만큼 왼쪽으로 */
}

/* 사용자가 모션 줄이기 설정 시 애니메이션 끔 */
@media (prefers-reduced-motion: reduce) {
  .ft-t-track {
    animation: none;
  }
}

/* 6) FAQ */
.ft-faq {
  background: #f6f8fb;
  padding: 54px 16px;
}
.ft-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.ft-faq-list details {
  background: #fff;
  border: 1px solid #e7eef7;
  border-radius: 12px;
  padding: 14px 18px;
}
.ft-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.ft-faq-list summary::-webkit-details-marker {
  display: none;
}
.ft-faq-list details[open] {
  border-color: #cfe2ff;
}

/* 전역(또는 섹션 래퍼)에 붙이세요 */
:root,
.ft-theme--ocean-twilight {
  --ft-grad-a: #dde6ff; /* periwinkle-200 */
  --ft-grad-b: #d9fff3; /* aquamarine-200 */
  --ft-cta-a: #e3e9ff;
  --ft-cta-b: #e0fff7;
  --ft-link: #6c5ce7; /* 인디고 퍼플 */
  --ft-surface: #ffffff;
  --ft-stroke: #e2eaf3;
  --ft-text: #0f172a;
  --ft-muted: #5f6b86;
}
/* 7) CTA */
.ft-cta {
  background: linear-gradient(
    140deg,
    var(--ft-cta-a, var(--ft-grad-a)),
    var(--ft-cta-b, var(--ft-grad-b))
  );
  padding: 64px 16px;
}
.ft-cta-box {
  text-align: center;
  background: #ffffffcc;
  backdrop-filter: saturate(140%) blur(4px);
  border: 1px solid #e6eef9;
  border-radius: 20px;
  padding: 30px 24px;
}
.ft-cta-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
}
.ft-cta-sub {
  margin: 0 0 16px;
  color: #556178;
}
.ft-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 상단/아래 섹션 공통: padding-left/right로 한 줄 기준 */
.grows-top-section,
.grows-section {
  width: 100%;
  box-sizing: border-box;
  padding-left: 320px;
  padding-right: 40px;
}

.grows-top-section {
  background: #232326;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 40px;
}

.grows-section {
  background: #fff;
  color: #19191b;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* 반응형 - 태블릿 */
@media (max-width: 900px) {
  .grows-top-section,
  .grows-section {
    padding-left: 24px;
    padding-right: 16px;
    padding-top: 36px;
    padding-bottom: 22px;
  }
}
/* 반응형 - 모바일 */
@media (max-width: 600px) {
  .grows-top-section,
  .grows-section {
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 24px;
    padding-bottom: 16px;
  }
}

/* 상단 내부 컨텐츠 스타일 */
.grows-top-title {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.grows-top-desc {
  color: #f5f5f7;
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.grows-top-desc strong {
  color: #fff;
  font-weight: 800;
}
.grows-top-btns {
  margin: 30px 0 36px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.grows-btn-main {
  background: #4154f1;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 15px 26px;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: -0.01em;
}
.grows-btn-main:hover {
  background: white;
  border-color: 1px solid #4154f1;
  color: #4154f1;
}
.grows-btn-sub {
  background: #232326;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 15px 26px;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: -0.01em;
  border: 1.5px solid #444;
}
.grows-btn-sub:hover {
  background: #343438;
}

/* 1~5 리스트 스타일 */
.grows-step-list {
  margin-top: 14px;
  padding-left: 0;
}
.grows-step-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 22px;
  padding: 0 6px 0 0;
}

.grows-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #19191b;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  margin-right: 16px;
  transition:
    background 0.18s,
    color 0.18s;
}
.grows-step-item.active .grows-step-num,
.grows-step-item:active .grows-step-num {
  background: #de9bfa;
  color: #19191b;
  border-color: #de9bfa;
}
.grows-step-text {
  font-size: 1.04rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/*일일입장현황 css*/
:root {
  --ft-container: 1200px;
}

/* 레이아웃 */
.split-hero {
  padding: 24px 16px;
  background: #fff;
}
.split-hero .ft-container {
  max-width: var(--ft-container);
  margin: 0 auto;
}

.split-wrap {
  /* 조절 포인트 */
  --left: 56%; /* 왼쪽(이미지) 너비 비율 */
  --seam: 50px; /* 블러 경계 두께 */
  --blur: 14px; /* 블러 강도 */
  --right-bg: #2f3a48; /* 오른쪽 배경색 */

  position: relative;
  display: grid;
  grid-template-columns: var(--left) 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: var(--right-bg);
  color: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

/* 왼쪽 이미지 */
.split-media {
  min-height: 320px;
}
.split-media img {
  width: 100%;
  height: 105%;
  object-fit: cover;
  display: block;
}

/* 오른쪽 텍스트 */
.split-copy {
  background: var(--right-bg);
  padding: 36px 40px;
  display: grid;
  align-content: center;
  gap: 12px;
}
.split-title {
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
}
.split-desc {
  margin: 2px 0 10px;
  color: #d7e0ee;
}
.split-link {
  color: #e6efff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.split-link::after {
  content: "›";
  transform: translateY(-1px);
}
.split-link:hover {
  color: #ffffff;
}

/* 가운데 블러 경계 */
.split-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left) - var(--seam) / 2);
  width: var(--seam);
  pointer-events: none;
  z-index: 2;
  /* 폴백: 블러 미지원 브라우저에서는 그라데이션만 */
  background: linear-gradient(
    90deg,
    rgba(47, 58, 72, 0) 0%,
    rgba(47, 58, 72, 0.85) 100%
  );
  opacity: 0.95;
}

/* 블러 지원 시 실제 블러 + 부드러운 페이드 */
@supports (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .split-seam {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(47, 58, 72, 0.6) 100%
    );
    -webkit-backdrop-filter: blur(var(--blur)) saturate(120%);
    backdrop-filter: blur(var(--blur)) saturate(120%);
  }
}

/* 반응형: 모바일에서는 1열로, 경계 숨김 */
@media (max-width: 900px) {
  .split-wrap {
    grid-template-columns: 1fr;
  }
  .split-media {
    aspect-ratio: 16/9;
    min-height: 0;
  }
  .split-seam {
    display: none;
  }
  .split-copy {
    padding: 22px;
  }
}

/* ateendance*/
:root {
  --primary-color: #6c5ce7; /* 트렌디한 퍼플 블루 */
  --secondary-color: #a29bfe;
  --bg-color: #f4f7f6;
  --text-color: #2d3436;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* 애니메이션 정의: 아래에서 위로 부드럽게 등장 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* 카드 디자인 (Glassmorphism 느낌 한 스푼) */
.stat-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px); /* 마우스 올리면 둥실 */
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.bg-purple-light {
  background-color: #e0e0fc;
  color: #6c5ce7;
}
.bg-green-light {
  background-color: #dbf6e6;
  color: #00b894;
}
.bg-red-light {
  background-color: #ffecec;
  color: #ff7675;
}
.bg-yellow-light {
  background-color: #fff8e1;
  color: #fdcb6e;
}

/* 테이블 디자인 */
.custom-table-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 30px;
  margin-top: 30px;
}

.table thead th {
  border: none;
  color: #b2bec3;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 15px;
}

.table tbody td {
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 10px;
  font-weight: 500;
}

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

/* 테이블 행 마우스 호버 효과 */
.table-hover tbody tr:hover {
  background-color: #f8f9fa;
  transform: scale(1.005);
  transition: transform 0.2s ease;
}

/* 상태 뱃지 커스텀 */
.status-badge {
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}
.status-present {
  background-color: #dbf6e6;
  color: #00b894;
}
.status-absent {
  background-color: #ffecec;
  color: #ff7675;
}
.status-late {
  background-color: #fff8e1;
  color: #e17055;
}

/* 검색창 커스텀 */
.search-input {
  border-radius: 30px;
  border: 1px solid #dfe6e9;
  padding: 10px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.search-input:focus {
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.2);
  border-color: var(--primary-color);
}

/* 강사관리 페이지부터 시작 */

/* 전용 래퍼 내에서만 동작 */
.sc-wrapper {
  overflow: hidden;
  width: 100%;
}

/* 고정 섹션 설정 */
.sc-sticky-box {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* 초기 상태: 흰 배경, 검정 글씨 */
  background-color: #ffffff;
  transition: background-color 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 10;
}

.sc-main-text {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin: 0 0 20px 0;
  color: #111111; /* 초기 글씨색 */
  transition: color 0.8s ease;
}

.sc-sub-text {
  font-size: 1.2rem;
  color: #666;
  transition: color 0.8s ease;
}

/* ★ 색상 반전 상태 (클래스 부여 시) ★ */
.sc-wrapper.is-inverted .sc-sticky-box {
  background-color: #000000;
}

.sc-wrapper.is-inverted .sc-main-text {
  color: #ffffff;
}

.sc-wrapper.is-inverted .sc-sub-text {
  color: #888;
}

.sc-accent {
  color: #2b56f5; /* 그로우즈 포인트 컬러 */
}

/* 하단 이동 대상 섹션 */
.sc-next-section {
  width: 100%;
  height: 100vh;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

/* 전용 래퍼 내에서만 스타일 적용 */
.gr-mockup-wrap {
  padding: 120px 20px;
  background-color: #ffffff;
  overflow: hidden;
  font-family: "Noto Sans KR", sans-serif;
}

.gr-mockup-wrap * {
  box-sizing: border-box;
}

.gr-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 텍스트 중앙 정렬 및 스타일 */
.gr-text-center {
  text-align: center;
  margin-bottom: 80px;
}

.gr-sub-purple {
  display: block;
  color: #7c4dff; /* 보라색 포인트 */
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.gr-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #222;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -1px;
}

/* 이미지 컨테이너 및 애니메이션 설정 */
.gr-mockup-container {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.gr-img-box {
  width: 100%;
  max-width: 1000px;
  /* 애니메이션 초기 상태: 아래에 숨어있고 투명함 */
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gr-large-img {
  width: 100%;
  height: auto;
  display: block;
  /* 부드러운 그림자 처리 */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

/* ★ 스크롤 시 애니메이션 활성화 클래스 ★ */
.gr-mockup-wrap.is-visible .gr-img-box {
  opacity: 1;
  transform: translateY(0);
}

/* 모바일 대응 (991px 이하) */
@media (max-width: 991px) {
  .gr-mockup-wrap {
    padding: 80px 20px;
  }
  .gr-main-title {
    font-size: 2.2rem; /* 모바일에서 텍스트 크기 축소 */
    word-break: keep-all;
  }
  .gr-text-center {
    margin-bottom: 40px;
  }
}

/* 글로벌 스타일 간섭 방지를 위한 래퍼 */
.st-step-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  overflow: hidden;
}

.st-step-section * {
  box-sizing: border-box;
}

.st-step-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  position: relative;
}

/* [좌측] 타이틀 스타일 */
.st-step-left {
  flex: 0 0 35%;
  position: sticky;
  top: 150px;
  height: fit-content;
}

.st-sub-title {
  color: #7c4dff;
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 20px;
}

.st-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #222;
  line-height: 1.25;
  margin: 0;
}

/* 수직 타임라인 (점과 선) */
.st-timeline-line {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0;
}

.st-dot {
  width: 12px;
  height: 12px;
  background-color: #eee;
  border-radius: 50%;
  position: relative;
  right: 5px;
  transition: all 0.3s ease;
}

.st-dot.active {
  background-color: #7c4dff;
  box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

/* [우측] 카드 스타일 */
.st-step-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.st-step-card {
  background: #ffffff;
  border: 2px solid #f0edff;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.st-step-card:hover {
  border-color: #7c4dff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(124, 77, 255, 0.08);
}

.st-step-label {
  color: #7c4dff;
  font-weight: 800;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
}

.st-card-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.st-card-content p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.st-card-visual img {
  max-width: 150px;
  height: auto;
  border-radius: 12px;
}

/* 모바일 대응 (991px 이하) */
@media (max-width: 991px) {
  .st-step-container {
    flex-direction: column;
  }
  .st-step-left {
    position: static;
    margin-bottom: 40px;
    text-align: center;
  }
  .st-main-title {
    font-size: 2.2rem;
  }
  .st-timeline-line {
    display: none;
  } /* 모바일에서 타임라인 숨김 */
  .st-step-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
/* 전용 래퍼 내에서만 스타일 적용 */
.bn-benefit-section {
  padding: 100px 20px;
  background-color: #f9fafb;
  font-family: "Noto Sans KR", sans-serif;
}

.bn-benefit-section * {
  box-sizing: border-box;
}

.bn-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 상단 제목 */
.bn-header {
  text-align: center;
  margin-bottom: 60px;
}

.bn-sub-title {
  color: #7c4dff;
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 15px;
}

.bn-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin: 0;
  letter-spacing: -1px;
}

/* 그리드 레이아웃 (좌 1: 우 1 비율) */
.bn-benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 좌측 카드를 약간 더 넓게 */
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

/* 공통 카드 스타일 */
.bn-card {
  background-color: #f3f5fb; /* 옅은 그레이 블루 배경 */
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.bn-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #7c4dff; /* 카드 제목은 보라색 */
  line-height: 1.35;
  margin: 0;
}

/* 좌측 큰 카드 전용 */
.bn-card-large {
  grid-row: span 2; /* 2줄을 차지 */
  flex-direction: column;
  justify-content: space-between;
}

.bn-card-large .bn-card-visual {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bn-img-tablet {
  max-width: 85%;
  height: auto;
}

/* 보라색 원형 배지 */
.bn-badge {
  position: absolute;
  right: 10px;
  bottom: 0;
  background-color: #7c4dff;
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  box-shadow: 0 10px 20px rgba(124, 77, 255, 0.3);
}

/* 우측 작은 카드 전용 */
.bn-card-small {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 35px 40px;
}

.bn-card-small .bn-card-text {
  flex: 1;
}

.bn-card-small h3 {
  font-size: 1.55rem;
}

.bn-card-small .bn-card-visual {
  flex: 0 0 150px;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

.bn-img-mobile {
  max-width: 120px;
}
.bn-img-zero {
  max-width: 130px;
}

/* 모바일 대응 (991px 이하) */
@media (max-width: 991px) {
  .bn-benefit-grid {
    grid-template-columns: 1fr; /* 1열로 세로 정렬 */
    grid-template-rows: auto;
  }
  .bn-card-large {
    grid-row: span 1;
  }
  .bn-main-title {
    font-size: 2rem;
  }
  .bn-card h3 {
    font-size: 1.5rem;
  }
  .bn-badge {
    width: 90px;
    height: 90px;
    font-size: 1rem;
  }
}

/* 비대면결제 css */
/* 젤상단 배너영역 */
/* 전용 래퍼: 다른 요소와 간섭 차단 */
.hp-brand-section {
  padding: 60px 20px;
  background-color: #ffffff; /* 배경색은 필요에 따라 조절 가능 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hp-img-box {
  width: 100%;
  display: inline-block;
}

.hp-brand-img {
  /* 해상도가 높아도 화면상에서는 적절한 크기로 제한 */
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;

  /* 고해상도 이미지 선명도 보정 */
  image-rendering: -webkit-optimize-contrast;
}

/* 모바일 대응 (768px 이하) 공통 설정 */
@media (max-width: 768px) {
  /* 1. 브랜드 섹션 패딩 조절 */
  .hp-brand-section {
    padding: 40px 15px;
  }

  /* 2. 브랜드 로고 이미지 크기 조절 */
  .hp-brand-img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  /* 3. 히어로 배너 배경 위치 조절 (상단 고정) */
  .pg-new-hero-bg-img {
    background-position: top center;
    /* 만약 여전히 짤린다면 아래 속성을 추가해보세요 */
    /* background-size: contain; */
  }

  /* 4. 배너 섹션 자체의 높이가 너무 높다면 조절 */
  .pg-new-hero-banner {
    height: 350px; /* PC보다 높이를 낮춰서 내용이 다 보이게 함 */
  }
}

/* 전용 래퍼 스타일 */
.pg-tab-section {
  padding: 10px 0;
  background-color: #fff;
  font-family: "Noto Sans KR", sans-serif;
}

.pg-tab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 탭 네비게이션 스타일 */

.pg-tab-nav-wrapper {
  border-bottom: 1px solid #e5e7eb; /* 전체 하단 연한 가이드 라인 */
  margin-bottom: 40px;
}

.pg-tab-nav {
  display: flex;
  justify-content: center; /* 중앙 정렬 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.pg-tab-item {
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* 활성화된 탭 (검은색 바 스타일) */
.pg-tab-item.active {
  color: #4318ff;
  font-weight: 700;
}

.pg-tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px; /* 부모 border-bottom과 겹치게 배치 */
  left: 0;
  width: 100%;
  height: 4px; /* 이미지 속 블랙 바 두께 */
  background-color: #4318ff; /* 강조색 */
}

/* 콘텐츠 패널 스타일 */
.pg-tab-pane {
  display: none; /* 기본 숨김 */
  min-height: 400px;
  animation: pgTabFadeIn 0.5s ease forwards;
}

.pg-tab-pane.active {
  display: block; /* 활성화 시 노출 */
}

/* 탭 전환 시 부드러운 효과 */
@keyframes pgTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 콘텐츠가 없을 때 보여줄 임시 박스 */
.pg-tab-placeholder {
  text-align: center;
  padding: 100px 0;
  background: #f9fafb;
  border-radius: 20px;
  color: #999;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .pg-tab-nav {
    overflow-x: auto; /* 탭이 많을 경우 스크롤 허용 */
    justify-content: flex-start;
  }
  .pg-tab-item {
    flex: 0 0 auto;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* 전용 섹션 스타일 */
.pg-excel-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  color: #111;
}

.pg-excel-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 상단 헤더 영역 */
.pg-excel-header {
  text-align: center;
  margin-bottom: 80px;
}

.pg-excel-badge {
  display: inline-block;
  background-color: #4318ff; /* 파란색 포인트 */
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.pg-excel-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
}

.pg-excel-main-desc {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

/* 그리드 레이아웃 (이미지 1.2 : 텍스트 0.8 비율) */
.pg-excel-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pg-excel-visual {
  flex: 1.2;
}

.pg-excel-mockup {
  width: 100%;
  max-width: 400px; /* 화면상에서 이미지가 가로 500px를 넘지 않게 고정 */
  margin: 0 auto; /* 모바일 등에서 중앙 정렬 유지 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); /* 그림자도 조금 더 연하게 수정 */
}

.pg-excel-img {
  width: 100%;
  height: auto;
  display: block;
}

.pg-excel-content {
  flex: 0.8;
}

.pg-excel-sub-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.pg-excel-sub-desc {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* 모바일 브레이크포인트 */
.pc-br {
  display: block;
}

@media (max-width: 991px) {
  .pg-excel-main-title {
    font-size: 2rem;
  }
  .pg-excel-grid {
    flex-direction: column;
    gap: 40px;
  }
  .pc-br {
    display: none;
  }
  .pg-excel-header {
    margin-bottom: 50px;
  }
  .pg-excel-sub-title {
    text-align: center;
    font-size: 1.8rem;
  }
  .pg-excel-sub-desc {
    text-align: center;
  }
}

/* 전용 섹션 스타일 */
.pg-app-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  color: #111;
}

.pg-app-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 그리드 레이아웃 (텍스트 1.1 : 이미지 0.9 비율) */
.pg-app-grid {
  display: flex;
  align-items: center;
  gap: 80px; /* 섹션 간 충분한 여백 */
}

/* 텍스트 컬럼 */
.pg-app-content {
  flex: 1.1;
  text-align: right; /* 텍스트를 오른쪽 정렬하여 이미지와 가깝게 배치 (선택사항) */
}

.pg-app-sub-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
  letter-spacing: -1px;
}

.pg-app-sub-desc {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
}

/* 이미지 컬럼 */
.pg-app-visual {
  flex: 0.9;
  display: flex;
  justify-content: flex-start;
}

.pg-app-mockup {
  width: 100%;
  max-width: 480px; /* 이미지 크기가 너무 크지 않도록 제한 */
  border-radius: 30px;
  overflow: hidden;
  /* 부드러운 그림자로 입체감 부여 */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pg-app-img {
  width: 100%;
  height: auto;
  display: block;
  /* 고해상도 이미지 보정 */
  image-rendering: -webkit-optimize-contrast;
}

/* 모바일 브레이크포인트 */
.pc-br {
  display: block;
}

@media (max-width: 991px) {
  .pg-app-grid {
    flex-direction: column; /* 모바일은 세로로 */
    gap: 40px;
  }

  .pg-app-content {
    order: 2; /* 모바일에서는 텍스트가 이미지 아래로 */
    text-align: center;
  }

  .pg-app-visual {
    order: 1; /* 모바일에서는 이미지가 위로 */
    justify-content: center;
    width: 100%;
  }

  .pg-app-sub-title {
    font-size: 2rem;
  }
  .pg-app-sub-desc {
    font-size: 1.1rem;
  }
  .pc-br {
    display: none;
  }

  .pg-app-mockup {
    max-width: 80%; /* 모바일에서는 화면 너비에 맞춰 더 축소 */
  }
}
/* 전용 섹션 스타일 */
.pg-result-section {
  padding: 80px 20px;

  font-family: "Noto Sans KR", sans-serif;
  color: #111;
}

.pg-result-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 그리드 레이아웃 (이미지 0.9 : 텍스트 1.1 비율) */
.pg-result-grid {
  display: flex;
  align-items: center;
  gap: 80px; /* 좌우 섹션 사이 여백 */
}

/* 이미지 컬럼 (좌측) */
.pg-result-visual {
  flex: 0.9;
  display: flex;
  justify-content: flex-end; /* 텍스트와 가깝게 배치 */
}

.pg-result-mockup {
  width: 100%;
  max-width: 450px; /* 이미지가 차지하는 시각적 크기를 제한 */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 깔끔하고 가벼운 그림자 */
}

.pg-result-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 텍스트 컬럼 (우측) */
.pg-result-content {
  flex: 1.1;
  text-align: left;
}

.pg-result-sub-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
  letter-spacing: -1px;
}

.pg-result-sub-desc {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.6;
}

/* 모바일 브레이크포인트 */
.pc-br {
  display: block;
}

@media (max-width: 991px) {
  .pg-result-grid {
    flex-direction: column;
    gap: 40px;
  }

  .pg-result-content {
    text-align: center;
  }

  .pg-result-visual {
    justify-content: center;
    width: 100%;
  }

  .pg-result-sub-title {
    font-size: 2rem;
  }
  .pg-result-sub-desc {
    font-size: 1.1rem;
  }
  .pc-br {
    display: none;
  }

  .pg-result-mockup {
    max-width: 85%; /* 모바일 환경 최적화 크기 */
  }
}

/* 매출관리 페이지 css */

/* 섹션 배경: 아주 연한 블루 그레이 */
.pg-feature-section {
  padding: 80px 20px;
  background-color: #f4f7fe;
  font-family: "Noto Sans KR", sans-serif;
}

.pg-feature-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pg-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 카드 스타일: 화이트 배경에 부드러운 그림자 */
.pg-feature-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  /* 부드럽고 깊이감 있는 그림자 */
  box-shadow: 0px 18px 40px rgba(112, 144, 176, 0.12);
  transition: all 0.3s ease;
}

.pg-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 25px 50px rgba(112, 144, 176, 0.2);
}

/* 아이콘 배경 및 색상 */
.pg-feature-icon {
  flex: 0 0 80px;
  height: 80px;
  background-color: #f4f7fe; /* 아이콘 뒤 배경 */
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pg-feature-icon img {
  width: 48px;
  height: auto;
  /* 아이콘 색상을 #4318FF 계열로 보이게 조절 (필요 시) */
}

/* 텍스트 영역 */
.pg-feature-text {
  flex: 1;
}

.pg-feature-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pg-feature-text span {
  display: block;
  font-size: 1.1rem;
  color: #707eae; /* 보조 텍스트 색상 */
  font-weight: 500;
  margin-bottom: 2px;
}

/* 메인 포인트 컬러 적용 */
.pg-feature-text h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4318ff;
  margin: 0;
  letter-spacing: -0.5px;
}

/* LIVE 배지 */
.pg-badge-live {
  background-color: #4318ff; /* 강조용 레드 */
  color: #fff;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 0 !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .pg-feature-grid {
    grid-template-columns: 1fr;
  }
  .pg-feature-card {
    padding: 30px;
  }
  .pg-feature-text h4 {
    font-size: 1.5rem;
  }
}

/* 문자 css */
/* 섹션 전체 설정 */
.pg-comp-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Noto Sans KR", sans-serif;
  color: #333;
}

.pg-comp-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 상단 타이틀 스타일 */
.pg-comp-header {
  text-align: center;
  margin-bottom: 80px;
}

.pg-comp-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.pg-comp-sub-title {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
}

/* 4단 그리드 레이아웃 */
.pg-comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* 개별 카드 스타일 */
.pg-comp-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: left;
  /* 이미지 특유의 부드럽고 넓은 그림자 */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.pg-comp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(67, 24, 255, 0.1); /* 브랜드 컬러 그림자 */
  border-color: #4318ff;
}

/* 아이콘 박스 */
.pg-comp-icon-box {
  margin-bottom: 30px;
}

/* 아이콘 배경 박스 (기존 코드 수정) */
.pg-comp-icon-bg {
  width: 70px;
  height: 70px;
  background-color: #f4f7fe; /* 브랜드 컬러 연한 버전 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 이미지가 박스를 벗어나지 않게 설정 */
}

/* 새로 추가하는 이미지 전용 스타일 */
.pg-comp-custom-icon {
  /* 해상도를 고려해 실제 박스보다 조금 작게 배치 (여백 확보) */
  width: 70%;
  height: auto;
  display: block;
  /* 고해상도 모니터에서 선명하게 보이도록 보정 */
  image-rendering: -webkit-optimize-contrast;
}

/* 카드 텍스트 스타일 */
.pg-comp-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.pg-comp-card-text {
  font-size: 1.05rem;
  color: #777;
  line-height: 1.7;
  word-break: keep-all;
}

/* 모바일 대응 (반응형) */
@media (max-width: 1100px) {
  .pg-comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pg-comp-main-title {
    font-size: 2rem;
  }
  .pg-comp-grid {
    grid-template-columns: 1fr;
  }
  .pg-comp-card {
    padding: 40px 25px;
  }
}

/* 모달영역 */
/* 트리거 p 태그 스타일 */
.ms-modal-trigger {
  color: #4318ff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
  margin: 20px 0;
}

/* 모달 배경 (오버레이) */
.ms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* 기본 숨김 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 모달 카드 디자인 */
.ms-modal-card {
  background: #fff;
  width: 90%;
  max-width: 480px;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: "Noto Sans KR", sans-serif;
}

/* 상단 영역 */
.ms-header-img img {
  width: 100px;
  margin-bottom: 20px;
}
.ms-header-desc {
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 500;
}
.ms-header-title {
  color: #4318ff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
}

/* 요금 리스트 스타일 */
.ms-rate-list {
  margin-bottom: 20px;
}
.ms-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ms-item-left {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms-check {
  color: #4318ff;
  font-weight: 900;
}

/* 할인 배지 */
.ms-badge-pink {
  background: #ff4b91;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 5px;
}

/* 가격 스타일 */
.ms-item-right {
  font-weight: 800;
  font-size: 1.3rem;
}
.ms-price-main {
  color: #111;
}
.ms-price-old {
  color: #bbb;
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-right: 8px;
}
.ms-price-sale {
  color: #ff4b91;
}
.ms-unit {
  font-size: 0.95rem;
  margin-left: 2px;
  color: #333;
}

.ms-vat-info {
  text-align: right;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* 닫기 버튼 */
.ms-btn-close {
  width: 100%;
  padding: 15px;
  background: #4318ff;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.ms-btn-close:hover {
  background: #3212cc;
}

/* 앱서비스 소개 페이지 */
/* --- 공통 변수 및 설정 --- */
.trendy-theme {
  --primary-color: #4318ff; /* 핵심 브랜드 컬러 */
  --secondary-color: #7b61ff; /* 보조 그라데이션 컬러 */
  --accent-color: #ff4b91; /* 강조 포인트 컬러 (모달 배지색 활용) */
  --text-dark: #111827;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08); /* 부드러운 기본 그림자 */
  --shadow-hover: 0 30px 60px rgba(67, 24, 255, 0.15); /* 호버 시 컬러 그림자 */
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.pg-app-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 1. 히어로 섹션 --- */
.pg-app-hero {
  padding: 140px 0 100px;
  position: relative;
  /* 배경: 트렌디한 메시 그라데이션 */
  background:
    radial-gradient(at top left, rgba(67, 24, 255, 0.05), transparent 70%),
    radial-gradient(at bottom right, rgba(123, 97, 255, 0.08), transparent 70%);
  overflow: visible;
}

/* 배경 그래픽 장식 */
.pg-hero-bg-graphic {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  filter: blur(150px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.pg-app-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.pg-app-hero-text {
  flex: 1;
  max-width: 540px;
}
.pg-app-badge {
  display: inline-block;
  color: var(--primary-color);
  background: rgba(67, 24, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pg-app-main-title {
  font-size: 3.8rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}
.pg-app-main-title .highlight {
  color: var(--primary-color);
}

.pg-app-main-desc {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  font-weight: 500;
}

/* 다운로드 버튼 그룹 */
.pg-app-download-group {
  display: flex;
  gap: 16px;
}
.pg-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-store {
  background: var(--text-dark);
  color: #fff;
}
.google-play {
  background: #fff;
  color: var(--text-dark);
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.pg-app-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.app-store:hover {
  background: var(--primary-color);
}
.google-play:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* 플로팅 비주얼 영역 */
.pg-app-hero-visual {
  flex: 1.1;
  position: relative;
  text-align: center;
}
.floating-animate img {
  animation: floatUp 3s ease-in-out infinite alternate;
}
@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

.pg-visual-deco-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  z-index: -1;
}
.pg-app-main-mockup {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15)); /* 목업 자체 그림자 */
}

/* --- 2. 통계 섹션 (글래스모피즘) --- */
.pg-app-stats-section {
  position: relative;
  z-index: 10;
  margin-top: -80px; /* 히어로 섹션과 겹치게 배치 */
  padding-bottom: 100px;
}
.pg-app-stats-glass {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.7); /* 반투명 배경 */
  backdrop-filter: blur(20px); /* 블러 효과 핵심 */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.pg-app-stat-item {
  text-align: center;
  flex: 1;
}
.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.pg-app-stat-item h4 {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  color: var(--text-dark);
}
.pg-app-stat-item p {
  font-size: 1.1rem;
  color: var(--text-gray);
  font-weight: 600;
  margin-top: 8px;
}
.pg-app-stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.08);
}

/* --- 3. 기능 상세 섹션 --- */
.pg-app-features {
  padding: 100px 0;
}
.pg-app-feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 160px;
}
.pg-app-feature-row.reverse {
  flex-direction: row-reverse;
}
.spacing-top {
  margin-top: 160px;
}

/* 비주얼 영역 (그래픽 배경 포함) */
.pg-app-feature-visual {
  flex: 1.1;
  position: relative;
}
.pg-feature-blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 100%;
  padding-top: 100%; /* 1:1 비율 */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F4F7FE' d='M44.7,-76.4C58.9,-69.2,71.8,-57.1,80.3,-42.6C88.8,-28.1,92.9,-11.3,90.7,4.7C88.5,20.7,80.1,35.9,69.9,49.5C59.7,63.1,47.8,75.1,33.7,82.7C19.6,90.3,3.3,93.5,-12.1,91.2C-27.5,88.9,-42,81.1,-54.9,71.1C-67.8,61.1,-79.1,48.9,-86.4,34.7C-93.7,20.5,-97.1,4.3,-94.8,-10.9C-92.5,-26.1,-84.5,-40.3,-73.7,-51.7C-62.9,-63.1,-49.3,-71.7,-35.6,-79.2C-21.9,-86.7,-8.1,-93.1,4.1,-99.5C16.3,-105.9,30.5,-96.2,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
.parent-blob {
  transform: translate(-50%, -50%) scale(1.2) rotate(45deg);
} /* 다른 모양처럼 보이게 회전 */

.pg-feature-img-framed {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--bg-white); /* 액자 효과 */
}

/* 텍스트 정보 영역 */
.pg-app-feature-info {
  flex: 0.9;
}
.pg-feature-header {
  margin-bottom: 32px;
}
.pg-app-tag-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.academy {
  background: #e0e7ff;
  color: var(--primary-color);
}
.parent {
  background: #fce7f3;
  color: var(--accent-color);
}

.pg-app-feature-info h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
}
.pg-app-feature-info h2 strong {
  font-weight: 900;
}
.pg-feature-desc {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}

/* 트렌디한 체크리스트 */
.pg-app-check-list-trendy {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pg-app-check-list-trendy li {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.check-icon {
  flex: 0 0 48px;
  height: 48px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(67, 24, 255, 0.2);
}
.parent .check-icon {
  background: var(--accent-color);
  box-shadow: 0 8px 16px rgba(255, 75, 145, 0.2);
}

.pg-app-check-list-trendy div {
  font-size: 1.1rem;
  color: var(--text-gray);
}
.pg-app-check-list-trendy strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* --- 4. 가이드 섹션 (카드 & 흐름) --- */
.pg-app-guide-trendy {
  padding: 120px 0;
  background-color: var(--bg-light);
}
.pg-app-section-title-center {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 80px;
}
.pg-guide-steps-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pg-guide-card {
  flex: 1;
  background: var(--bg-white);
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.pg-guide-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}
.pg-guide-card.highlight {
  background: var(--primary-color);
  color: #fff;
}
.pg-guide-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.pg-step-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight .pg-step-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pg-guide-card h5 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.pg-guide-card p {
  font-size: 1.1rem;
  color: var(--text-gray);
}
.pg-step-arrow {
  font-size: 2rem;
  color: var(--text-gray);
  opacity: 0.5;
}

/* --- 5. 하단 CTA (강렬한 임팩트) --- */
.pg-app-cta-trendy {
  padding: 140px 0;
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.pg-cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 패턴이 너무 튀지 않도록 투명도를 낮추고 브랜드 컬러를 살짝 섞음 */
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(67, 24, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 24, 255, 0.05) 0%,
      transparent 40%
    );
  opacity: 0.5;
  z-index: 0;
}
.relative-z {
  position: relative;
  z-index: 1;
}

.pg-app-cta-trendy h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 32px;
}
.pg-app-cta-trendy p {
  font-size: 1.35rem;
  margin-bottom: 56px;
  opacity: 0.9;
}
.pg-cta-btn-premium {
  display: inline-block;
  padding: 20px 48px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.pg-cta-btn-premium:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* --- 반응형 미디어 쿼리 (모바일 최적화) --- */
@media (max-width: 991px) {
  .pg-app-hero {
    padding: 100px 0 60px;
  }
  .pg-app-hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .pg-app-hero-text {
    max-width: 100%;
  }
  .pg-app-main-title {
    font-size: 2.8rem;
  }
  .pg-app-download-group {
    justify-content: center;
  }
  .pg-app-hero-visual {
    order: -1;
    max-width: 80%;
    margin: 0 auto;
  }
  .pg-hero-bg-graphic {
    width: 300px;
    height: 300px;
    right: -10%;
    top: 0;
  }

  .pg-app-stats-section {
    margin-top: 0;
    padding-bottom: 80px;
  }
  .pg-app-stats-glass {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }
  .pg-app-stat-divider {
    width: 100%;
    height: 1px;
  }
  .pg-app-stat-item h4 {
    font-size: 2.2rem;
  }

  .pg-app-feature-row,
  .pg-app-feature-row.reverse {
    flex-direction: column;
    gap: 40px;
  }
  .pg-app-feature-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .pg-app-feature-info {
    text-align: center;
  }
  .pg-app-check-list-trendy li {
    text-align: left;
  }
  .spacing-top {
    margin-top: 100px;
  }

  .pg-guide-steps-cards {
    flex-direction: column;
    gap: 16px;
  }
  .pg-guide-card {
    width: 100%;
  }
  .pg-step-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .pg-app-cta-trendy h2 {
    font-size: 2.5rem;
  }
  .pg-cta-btn-premium {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
  }
}

/* 토스 키오스크 소개 */

/* --- 현장 사진 전용 스타일 --- */

/* 1. 컨테이너: 플로팅 애니메이션 제거 및 중앙 정렬 */
.pg-toss-hero-visual.photo-style {
  animation: none !important; /* 기존 둥둥 뜨는 애니메이션 강제 해제 */
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: none; /* 3D 효과 제거 */
}

/* 2. 사진 프레임 스타일 */
.pg-toss-photo-frame {
  width: 100%;
  max-width: 650px; /* 사진의 가로폭 제한 (필요에 따라 조절) */
  height: auto;

  /* 모서리를 부드럽게 깎아 고급스러운 느낌 */
  border-radius: 30px;

  /* 사진이 바닥에 놓인 듯한 리얼한 그림자 */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

  /* 기존의 강한 필터와 3D 회전 제거 */
  filter: none;
  transform: none;

  /* 부드러운 호버 효과를 위한 트랜지션 */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* 사진 테두리에 아주 미세한 흰색 라인을 줘서 배경과 분리 */
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 3. 호버 효과: 살짝 떠오르며 강조 */
.pg-toss-hero-visual.photo-style:hover .pg-toss-photo-frame {
  transform: translateY(-10px) scale(1.02); /* 위로 살짝 뜨면서 커짐 */
  box-shadow: 0 40px 70px rgba(0, 60, 180, 0.2); /* 그림자에 토스 블루 색상을 살짝 섞어 강조 */
}

/* 모바일 대응 */
@media (max-width: 991px) {
  .pg-toss-hero-visual.photo-style {
    max-width: 100%;
    margin-top: 40px;
  }
}

/* --- 기존 trendy-theme 변수 활용 --- */
.trendy-theme {
  /* ...이전 코드와 동일한 변수 선언... */
  --toss-blue: #0064ff; /* 토스 브랜드 컬러 */
}

/* --- 스크롤 애니메이션 기본 스타일 (JS가 클래스를 추가하면 작동) --- */
[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 딜레이 옵션 */
[data-scroll][data-delay="100"] {
  transition-delay: 0.1s;
}
[data-scroll][data-delay="200"] {
  transition-delay: 0.2s;
}

/* 화면에 나타났을 때 붙는 클래스 */
[data-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 1. 히어로 섹션 --- */
.pg-toss-hero {
  padding: 160px 0 120px;
  /* 토스 느낌의 더 깨끗하고 밝은 배경 */
  background:
    radial-gradient(at top right, rgba(0, 100, 255, 0.08), transparent 60%),
    linear-gradient(to bottom, #ffffff, #f7f9fc);
  overflow: hidden;
}
.pg-toss-hero-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
.pg-toss-hero-text {
  flex: 1;
}
.toss-badge {
  color: var(--toss-blue);
  background: rgba(0, 100, 255, 0.1);
}
.pg-toss-hero-visual {
  flex: 1.2;
  position: relative;
  perspective: 1000px;
}
.toss-deco {
  background: var(--toss-blue);
}
.pg-toss-main-img {
  width: 100%;
  height: auto;
  /* 제품이 돋보이도록 강한 입체감 */
  filter: drop-shadow(0 40px 80px rgba(0, 60, 180, 0.2));
  transform: rotateY(-5deg) rotateX(5deg); /* 살짝 틀어서 입체감 부여 */
  transition: transform 0.5s;
}
.pg-toss-hero-visual:hover .pg-toss-main-img {
  transform: rotateY(0) rotateX(0);
}
.pg-hero-cta-group {
  margin-top: 40px;
}
.pg-hero-sub-txt {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 15px;
}
.floating-animate-slow img {
  animation: floatUpSlow 4s ease-in-out infinite alternate;
}
@keyframes floatUpSlow {
  from {
    transform: translateY(0) rotateY(-5deg);
  }
  to {
    transform: translateY(-15px) rotateY(-5deg);
  }
}

/* --- 2. 파트너십 소개 --- */
.pg-toss-intro {
  padding: 100px 0;
  text-align: center;
}
.pg-app-container.narrow {
  max-width: 800px;
}
.pg-intro-text-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.pg-intro-text-box p {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.8;
  word-break: keep-all;
}

/* --- 3. 특징 그리드 (글래스모피즘 카드) --- */
.pg-toss-features {
  padding: 120px 0;
  background: #f7f9fc;
}
.pg-section-title-center {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 80px;
}
.pg-toss-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pg-toss-card.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 48px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.pg-toss-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--toss-blue);
}
.pg-card-icon {
  width: 70px;
  height: 70px;
  background: var(--toss-blue);
  color: #fff;
  border-radius: 16px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 10px 20px rgba(0, 100, 255, 0.3);
}
.pg-toss-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.pg-toss-card p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* --- 4. 시너지 섹션 --- */
.pg-toss-synergy {
  padding: 140px 0;
}
.pg-synergy-box {
  display: flex;
  align-items: center;
  gap: 80px;
}
.pg-synergy-content {
  flex: 1;
}
.pg-synergy-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 24px 0 40px;
}
.pg-synergy-visual {
  flex: 1.2;
}
.pg-synergy-visual img {
  width: 100%;
}

/* --- 5. 수수료 섹션 & 모달 트리거 --- */
.pg-toss-fee-section {
  background: linear-gradient(135deg, #f5f2ff 0%, #ffffff 100%) !important;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  /* 배경이 밝아졌으므로 기본 글자색을 어두운 톤으로 변경 */
  color: #111827;
}
.pg-toss-fee-section h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.pg-fee-desc {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 60px;
}

/* 중요! 모달 트리거 버튼 스타일 */
.pg-trigger-fee-modal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: #fff;
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pg-trigger-fee-modal i {
  color: var(--toss-blue);
  font-size: 1.4rem;
}
.pg-trigger-fee-modal:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.pg-final-cta-box {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.pg-final-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--accent-color);
}
.pg-cta-btn-premium.inverted {
  background: linear-gradient(135deg, #4318ff 0%, #7b61ff 100%);
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;

  /* 2. 입체감을 주는 부드러운 컬러 그림자 */
  box-shadow: 0 10px 25px rgba(67, 24, 255, 0.3);

  /* 3. 테두리에 미세한 광택 효과 (Glassmorphism 디테일) */
  border: 1px solid rgba(255, 255, 255, 0.1);

  /* 4. 부드러운 전환 효과 */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pg-cta-btn-premium.inverted:hover {
  transform: translateY(-5px) scale(1.03);

  /* 그림자를 더 깊고 진하게 변경하여 입체감 극대화 */
  box-shadow: 0 20px 40px rgba(67, 24, 255, 0.4);

  /* 배경 밝기 조절 */
  filter: brightness(1.1);
}

.pg-cta-btn-premium.inverted:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 5px 15px rgba(67, 24, 255, 0.3);
}

/* 광택이 지나가는 듯한 애니메이션 (선택 사항) */
.pg-cta-btn-premium.inverted::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.pg-cta-btn-premium.inverted:hover::after {
  left: 100%;
}

/* --- [토스 모달 전용 스타일] --- */
/* 기존 모달 스타일(.ms-modal-*)을 기반으로 하되, 토스 느낌을 섞음 */
.pg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none; /* JS로 제어 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.pg-modal-card.toss-modal-style {
  background: #fff;
  width: 90%;
  max-width: 520px;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.pg-header-icon-toss img {
  height: 30px;
  margin-bottom: 20px;
}
.pg-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.pg-modal-desc {
  color: var(--text-gray);
  margin-bottom: 32px;
}

/* 요금 테이블 */
.pg-fee-table-wrap {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.pg-fee-table {
  width: 100%;
  border-collapse: collapse;
}
.pg-fee-table th {
  text-align: left;
  color: var(--text-gray);
  font-weight: 500;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}
.pg-fee-table td {
  text-align: left;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
}
.pg-fee-table tr:last-child td {
  border-bottom: none;
}
.pg-fee-table td.fw-bold {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg-fee-table td.fw-bold i {
  color: var(--toss-blue);
  opacity: 0.8;
}
.highlight-fee {
  color: var(--toss-blue);
  font-weight: 800;
  font-size: 1.2rem;
}
.zero-fee {
  color: var(--accent-color);
  font-weight: 800;
}

.pg-fee-notice {
  text-align: left;
  margin-bottom: 32px;
  padding-left: 16px;
}
.pg-fee-notice li {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 6px;
  list-style: disc;
}
.pg-modal-close-btn {
  width: 100%;
  padding: 18px;
  background: #4154f1;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
/* .pg-modal-close-btn:hover {
  background: #0054d6;
} */

/* --- 반응형 (모바일) --- */
@media (max-width: 991px) {
  .pg-toss-hero-flex,
  .pg-synergy-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .pg-toss-hero-visual {
    order: -1;
    max-width: 90%;
  }
  .pg-toss-feature-grid {
    grid-template-columns: 1fr;
  }
  .pg-card-icon {
    margin: 0 auto 32px;
  }
  .pg-toss-fee-section h2 {
    font-size: 2.2rem;
  }
  .pg-trigger-fee-modal {
    width: 100%;
    justify-content: center;
  }
}

/* 섹션 배경: 연한 라벤더 그라데이션 */
.pg-flow-section {
  padding: 160px 0;
  background: linear-gradient(135deg, #f5f2ff 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.pg-flow-wrapper {
  position: relative;
  max-width: 1000px;
  height: 600px; /* 고정 높이로 노드 배치 안정화 */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 중앙 이미지 스타일 */
.pg-flow-center {
  position: relative;
  z-index: 10;
  width: 320px;
  transition: transform 0.5s ease;
}

.pg-flow-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(67, 24, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.pg-flow-main-img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
}

/* 개별 노드(동그라미) 공통 스타일 */
.pg-flow-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  z-index: 20;
}

.node-circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid rgba(67, 24, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4318ff; /* 브랜드 컬러 */
  box-shadow: 0 15px 35px rgba(67, 24, 255, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pg-flow-node:hover .node-circle {
  background: #4318ff;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 20px 45px rgba(67, 24, 255, 0.25);
}

.node-text {
  text-align: center;
}

.node-text h5 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px 0;
}

.node-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* 노드 위치 배치 */
.node-tl {
  top: 0;
  left: 0;
}
.node-tr {
  top: 0;
  right: 0;
}
.node-bl {
  bottom: 0;
  left: 0;
}
.node-br {
  bottom: 0;
  right: 0;
}

/* 중앙 연결선 (SVG) */
.node-line {
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: -1;
  opacity: 0.2;
}

.node-line line {
  stroke: #4318ff;
  stroke-width: 2;
  stroke-dasharray: 5, 5; /* 점선 효과 */
}

/* 연결선 위치 (세밀한 조정 필요) */
.node-tl .node-line {
  bottom: -60px;
  right: -60px;
}
.node-tr .node-line {
  bottom: -60px;
  left: -60px;
}
.node-bl .node-line {
  top: -60px;
  right: -60px;
}
.node-br .node-line {
  top: -60px;
  left: -60px;
}

/* 모바일 대응 */
@media (max-width: 991px) {
  .pg-flow-wrapper {
    height: auto;
    flex-direction: column;
    gap: 40px;
  }
  .pg-flow-center {
    width: 240px;
    margin: 40px 0;
  }
  .pg-flow-node {
    position: static;
    width: 100%;
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }
  .node-text {
    text-align: left;
  }
  .node-line {
    display: none;
  }
}

/* 시너지 비주얼 컨테이너 */
.pg-synergy-visual {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  position: relative;
}

.pg-orbit-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 중앙 단말기 이미지 스타일 */
.pg-orbit-center {
  position: relative;
  z-index: 10;
  width: 200px;
  animation: floatSlow 3s ease-in-out infinite alternate;
}

.pg-orbit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  /* 연한 라벤더 글로우 효과 */
  /* background: radial-gradient(
    circle,
    rgba(67, 24, 255, 0.08) 0%,
    transparent 70%
  ); */
  z-index: -1;
}

.pg-orbit-main-img {
  width: 100%;
  height: auto;
  transform: scale(3) translateY(5%);

  /* 3. 확대 기준점을 중앙으로 설정 */
  transform-origin: center center;

  /* 4. 혹시 모를 크기 제한 해제 */
  max-width: none !important;

  /* 5. 기존 그림자 유지 */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));

  /* 6. 부모 요소의 overflow 속성 무시 (중요!) */
  position: relative;
  z-index: 15;
}

/* 4개 노드(동그라미) 배치 및 스타일 */
.pg-orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-circle {
  width: 70px;
  height: 70px;
  /* 연한 라벤더 그라데이션 배경 */
  background: linear-gradient(135deg, #f5f2ff 0%, #ffffff 100%);
  border: 1px solid rgba(67, 24, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #4318ff; /* 브랜드 컬러 */
  box-shadow: 0 10px 25px rgba(67, 24, 255, 0.1);
  margin-bottom: 12px;
}

.node-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
}

/* 노드별 절대 위치 (500x500 박스 기준) */
.node-1 {
  top: 50px;
  left: 50px;
} /* 무인결제시스템 */
.node-2 {
  top: 50px;
  right: 50px;
} /* 출석체크기 */
.node-3 {
  bottom: 50px;
  left: 50px;
} /* 기타상품판매 */
.node-4 {
  bottom: 50px;
  right: 50px;
} /* 수납연동 */

/* 연결선 레이어 */
.pg-orbit-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* 상호작용: 호버 시 노드가 살짝 커지며 강조 */
.pg-orbit-node:hover {
  transform: scale(1.1) translateY(-5px);
}
.pg-orbit-node:hover .node-circle {
  background: #4318ff;
  color: #fff;
  box-shadow: 0 15px 35px rgba(67, 24, 255, 0.3);
}

/* 중앙 이미지 애니메이션 */
@keyframes floatSlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

@keyframes floatSlowExpanded {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  } /* 움직임 폭도 살짝 키움 */
}

/* 모바일 대응: 모바일에서도 너무 크면 부담스러우므로 적절히 조절 */
@media (max-width: 768px) {
  .pg-orbit-main-img {
    /* 모바일에서는 1.5배 정도로만 확대 */
    transform: scale(1.5) translateY(0);
  }
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .pg-orbit-container {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 30px;
  }
  .pg-orbit-nodes {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .pg-orbit-node {
    position: static;
    width: auto;
  }
  .pg-orbit-lines,
  .pg-orbit-glow {
    display: none;
  }
}

/* 이용요금 css */
/* =========================================
   [NEW] 이용 요금 페이지 디자인 (Toss Style)
   ========================================= */

/* 1. 배경 및 레이아웃 */
.pr-section {
  background-color: #f2f4f6; /* 토스 특유의 연회색 배경 */
  padding: 150px 20px;
  font-family:
    "Pretendard",
    -apple-system,
    sans-serif;
  box-sizing: border-box;
}

.pr-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. 헤더 타이포그래피 */
.pr-header {
  text-align: center;
  margin-bottom: 60px;
}

.pr-badge {
  background: rgba(49, 130, 246, 0.1);
  color: #4154f1; /* 토스 블루 */
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
}

.pr-title {
  font-size: 42px;
  font-weight: 800;
  color: #191f28;
  line-height: 1.3;
  margin-bottom: 12px;
}

.pr-desc {
  font-size: 18px;
  color: #8b95a1;
}

/* 3. 그리드 시스템 (반응형) */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 기본 4단 */
  gap: 24px;
  align-items: center; /* 카드 높이 중앙 정렬 */
}

/* 4. 카드 공통 디자인 */
.pr-card {
  background: #ffffff;
  border-radius: 24px; /* 둥글게 */
  padding: 32px 24px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* 부드러운 그림자 */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* 5. 카드 내부 요소 */
.pr-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.pr-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #4e5968;
  margin-bottom: 16px;
}

.pr-price-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #191f28;
  margin-bottom: 12px;
}

.pr-unit {
  font-size: 16px;
  color: #8b95a1;
  margin-right: 4px;
}

.pr-price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

.pr-currency {
  font-size: 16px;
  font-weight: 600;
  margin-left: 2px;
}

.pr-plan-desc {
  font-size: 14px;
  color: #8b95a1;
  line-height: 1.5;
}

.pr-divider {
  height: 1px;
  background: #f2f4f6;
  margin: 0 0 24px 0;
}

/* 6. 기능 리스트 */
.pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1; /* 버튼을 바닥으로 밀기 위해 */
  text-align: left;
}

.pr-features li {
  font-size: 15px;
  color: #4e5968;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pr-features li i {
  color: #4154f1; /* 체크 아이콘 파란색 */
  font-size: 18px;
}

.pr-feat-strong {
  font-weight: 700;
  color: #191f28 !important;
}

/* 7. 버튼 디자인 */
.pr-btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.2s;

  /* ▼▼▼ [추가된 부분] 링크 태그(a)로 바뀌면서 꼭 필요해진 속성들 ▼▼▼ */
  display: block; /* 박스 형태로 만들기 */
  text-align: center; /* 글자 가운데 정렬 */
  text-decoration: none; /* 밑줄 제거 */
  box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

/* 기본 버튼 (회색) */
.pr-btn-basic {
  background: #f2f4f6;
  color: #4e5968;
}
.pr-btn-basic:hover {
  background: #e5e8eb;
  color: #4154f1;
}

/* 메인 버튼 (파란색) */
.pr-btn-primary {
  background: #4154f1;
  color: white;
  box-shadow: 0 4px 12px rgba(49, 130, 246, 0.3);
}
.pr-btn-primary:hover {
  background: #fff;
  color: #4154f1;
}

/* 8. [중요] 강조 카드 (30일 무료) 스타일 */
.pr-card.pr-highlight {
  border: 2px solid #4154f1;
  transform: scale(1.05); /* 살짝 더 크게 */
  z-index: 2; /* 다른 카드보다 위로 */
}
.pr-card.pr-highlight:hover {
  transform: scale(1.08); /* 호버 시 더 확대 */
}

/* 추천 뱃지 */
.pr-badge-recommend {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4154f1;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(49, 130, 246, 0.4);
}

/* 9. 엔터프라이즈 (어두운 테마) */
.pr-card.pr-dark {
  background: #191f28; /* 아주 진한 남색 */
  color: white;
}
.pr-card.pr-dark .pr-plan-name,
.pr-card.pr-dark .pr-price-box,
.pr-card.pr-dark .pr-unit,
.pr-card.pr-dark .pr-plan-desc,
.pr-card.pr-dark .pr-features li,
.pr-card.pr-dark .pr-features li i {
  color: #ffffff;
  opacity: 0.9;
}
.pr-card.pr-dark .pr-divider {
  background: rgba(255, 255, 255, 0.1);
}
.pr-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.pr-btn-outline:hover {
  background: white;
  color: #191f28;
}

/* 10. 모바일 반응형 */
@media (max-width: 1024px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr); /* 태블릿 2단 */
    gap: 30px;
  }
  .pr-card.pr-highlight {
    transform: scale(1);
  } /* 크기 확대 해제 */
  .pr-card.pr-highlight:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pr-section {
    padding: 90px 20px;
  }
  .pr-title {
    font-size: 28px;
  }
  .pr-desc {
    font-size: 15px;
  }

  .pr-grid {
    grid-template-columns: 1fr; /* 모바일 1단 */
  }
}
