* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Arial,
    "Noto Sans KR",
    sans-serif;

  color: #222222;
  background-color: #ffffff;
}

/* 공통 버튼 설정 */
button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

/* 상단 로고 영역 */
.header {
  width: 100%;
  background-color: #ffffff;
}

.header-inner {
  width: 100%;
  max-width: 1100px;
  height: 105px;

  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;

  color: inherit;
  text-decoration: none;
}


.logo strong {
  color: #242424;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  margin-top: 3px;

  color: #777777;
  font-size: 10px;
  letter-spacing: 1px;
}

/* 메인 배너 */
.hero {
  position: relative;

  min-height: 550px;

  display: flex;
  align-items: center;

  background-image:
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* 배경 이미지를 어둡게 만드는 층 */
.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.57) 50%,
      rgba(0, 0, 0, 0.35) 100%
    );
}

/* 메인 글자 영역 */
.hero-content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
  padding: 70px 24px;
}

.hero-subtitle {
  margin-bottom: 28px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 340;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 22px;

  color: #ffffff;
  font-size: 52px;
  line-height: 1.25;
  letter-spacing: -2px;
  word-break: keep-all;
}

.hero h1 span {
  color: #f5a000;
}

.hero-description {
  max-width: 760px;
  margin-bottom: 34px;

  color: #eeeeee;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

.hero-button {
  display: inline-block;

  padding: 15px 28px;

  border: none;
  border-radius: 5px;

  color: #121306;
  background-color: #eba00c;

  font-size: 17px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s,
    background-color 0.2s;
}

.hero-button:hover {
  background-color: #f3a300;
  transform: translateY(-2px);
}

/* 상담 신청 영역 */
.consultation {
  padding: 32px 24px;

  color: #ffffff;
  background-color: #a90000;

  text-align: center;
}

.consultation h2 {
  margin-bottom: 22px;

  font-size: 30px;
  letter-spacing: -1px;
}

.consultation-form {
  max-width: 760px;
  margin: 0 auto 12px;

  display: grid;
  grid-template-columns: 1fr 1.25fr 1.45fr;
  gap: 10px;
}

.consultation-form input {
  width: 100%;
  height: 54px;

  padding: 0 16px;

  border: none;
  outline: none;

  background-color: #ffffff;
}

.consultation-form input:focus {
  box-shadow: inset 0 0 0 2px #ffb000;
}

.consultation-form button {
  height: 54px;

  border: none;

  color: #ffffff;
  background-color: #111111;

  font-size: 20px;
  font-weight: 800;

  transition: background-color 0.2s;
}

.consultation-form button:hover {
  background-color: #292929;
}

.agreement {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
}

/* 콘텐츠 영역 */
/* ========================================
   회원 인터뷰 영상 영역
======================================== */

.interview-section {
  width: 100%;
  padding: 110px 24px 150px;

  background-color: #ffffff;
}

.interview-heading {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto 62px;

  text-align: center;
}

.interview-subtitle {
  margin-bottom: 10px;

  color: #f07800;

  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.interview-heading h2 {
  color: #222222;

  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -2px;

  word-break: keep-all;
}

.interview-video-list {
  width: 100%;
  max-width: 860px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 45px;
}

.interview-video-card {
  width: 100%;

  overflow: hidden;

  border: 1px solid #eeeeee;
  border-radius: 14px;

  background-color: #000000;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.interview-video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  background-color: #000000;
  object-fit: contain;
}

/* 오른쪽 고정 상담 버튼 */
.floating-buttons {
  position: fixed;
  z-index: 50;

  right: 26px;
  top: 54%;

  display: flex;
  flex-direction: column;
  gap: 10px;

  transform: translateY(-50%);
}

.floating-buttons button {
  width: 92px;
  height: 92px;

  border: none;
  border-radius: 50%;

  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.kakao-button {
  color: #221f1f;
  background-color: #ffe500;
}

.telegram-button {
  color: #ffffff;
  background-color: #20bde8;
}

/* 태블릿 */
@media (max-width: 900px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .consultation-form {
    grid-template-columns: 1fr 1fr;
  }

  .consultation-form button {
    grid-column: 1 / -1;
  }

  .floating-buttons {
    right: 15px;
  }

  .floating-buttons button {
    width: 78px;
    height: 78px;

    font-size: 14px;
  }
}

/* 모바일 */
@media (max-width: 600px) {
  .header-inner {
    height: 80px;
  }

  .logo strong {
    font-size: 20px;
  }

  .hero {
    min-height: 580px;
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero h1 {
    margin-bottom: 20px;

    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
  }

  .consultation {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .consultation h2 {
    font-size: 24px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
  }

  .consultation-form button {
    grid-column: auto;
  }

  .content-section {
    padding-top: 65px;
  }

  .content-section h2 {
    font-size: 29px;
    line-height: 1.35;
  }

  .video-placeholder {
    min-height: 280px;
  }

  .floating-buttons {
    top: auto;
    right: 14px;
    bottom: 18px;

    transform: none;
  }

  .floating-buttons button {
    width: 64px;
    height: 64px;

    font-size: 12px;
  }
}

/* 상단 메뉴 */
.header {
  position: relative;
  z-index: 100;

  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff;
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  height: 98px;

  margin: 0 auto;
  padding: 0 28px 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

}

.logo {
  display: flex;
  flex-direction: column;

  color: inherit;
  text-decoration: none;
}

.logo strong {
  color: #242424;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  margin-top: 3px;

  color: #777777;
  font-size: 10px;
  letter-spacing: 1px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 72px; /* 버튼 사이 간격 넓힘 */
  margin-left: auto;
}

.header-menu a,
.header-menu a:link,
.header-menu a:visited {
  position: relative;

  color: #111111; /* 방문 후에도 검정 */
  text-decoration: none;

  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.header-menu a:hover {
  color: #8a6a2f;
}

.header-menu a.active {
  color: #111111;
  font-weight: 700;
}

.header-menu a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -10px;

  width: 100%;
  height: 2px;

  background-color: #c9974d;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.header-menu a:hover::after,
.header-menu a.active::after {
  transform: scaleX(1);
}

/* ========================================
   컨설팅 참여 페이지
======================================== */

.consent-page {
  min-height: calc(100vh - 98px);
  padding: 90px 24px 100px;

  background-color: #ffffff;
}

.consent-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.consent-column {
  min-width: 0;
}

.consent-heading {
  min-height: 210px;
  text-align: center;
}

.consent-heading h1 {
  margin-bottom: 24px;

  color: #222222;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -2px;
  word-break: keep-all;
}

.consent-heading p {
  max-width: 540px;
  margin: 0 auto;

  color: #7a7a7a;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.agreement-form {
  width: 100%;
}

.agreement-line {
  height: 1px;
  margin-bottom: 48px;

  background-color: #3a3a3a;
}

.agreement-form h2 {
  margin-bottom: 8px;

  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.required-check,
.input-group label span {
  color: #ff5b5b;
  font-weight: 400;
}

.terms-box {
  width: 100%;
  height: 205px;

  padding: 16px 18px;

  overflow-y: auto;

  border: 1px solid #dcdcdc;
  border-radius: 12px;

  background-color: #fafafa;
  color: #6f6f6f;

  font-size: 14px;
  line-height: 1.75;
}

.terms-box p {
  margin-bottom: 12px;
}

.terms-box:focus {
  outline: none;
  border-color: #c9974d;
  box-shadow: 0 0 0 3px rgba(201, 151, 77, 0.15);
}

.form-agreement {
  margin: 16px 0 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #333333;
  font-size: 15px;
  cursor: pointer;
}

.form-agreement input {
  width: 16px;
  height: 16px;

  accent-color: #1478ff;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;

  color: #222222;
  font-size: 17px;
  font-weight: 700;
}

.input-group input {
  width: 100%;
  height: 44px;

  padding: 0 14px;

  border: 1px solid #dcdcdc;
  border-radius: 11px;
  outline: none;

  background-color: #fafafa;
  color: #222222;

  font-size: 15px;

  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.input-group input:focus {
  border-color: #c9974d;
  box-shadow: 0 0 0 3px rgba(201, 151, 77, 0.13);
}

.date-group {
  width: 195px;
}

.date-group input {
  cursor: pointer;
}

.consent-submit {
  width: 230px;
  height: 78px;

  margin: 45px auto 0;

  display: block;

  border: none;
  border-radius: 12px;

  background-color: #222222;
  color: #ffffff;

  font-size: 20px;
  font-weight: 700;

  transition:
    background-color 0.2s,
    transform 0.2s;
}

.consent-submit:hover {
  background-color: #111111;
  transform: translateY(-2px);
}

/* 컨설팅 참여 페이지 태블릿 */
@media (max-width: 1000px) {
  .consent-page {
    padding-top: 70px;
  }

  .consent-container {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .consent-column {
    max-width: 720px;
    margin: 0 auto;
  }

  .consent-heading {
    min-height: auto;
    margin-bottom: 50px;
  }
}

/* 컨설팅 참여 페이지 모바일 */
@media (max-width: 600px) {
  .header-inner {
    height: 78px;
  }

  .header-menu {
    gap: 17px;
  }

  .header-menu a {
    padding: 29px 0 26px;
    font-size: 13px;
  }

  .header-menu a::after {
    bottom: 19px;
  }

  .logo strong {
    font-size: 17px;
  }

  .logo span {
    display: none;
  }

  .consent-page {
    min-height: calc(100vh - 78px);
    padding: 58px 18px 80px;
  }

  .consent-heading h1 {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .consent-heading p {
    font-size: 14px;
  }

  .agreement-line {
    margin-bottom: 36px;
  }

  .terms-box {
    height: 230px;
  }

  .date-group {
    width: 100%;
  }

  .consent-submit {
    width: 100%;
    height: 62px;
    margin-top: 35px;
  }
}
/* 태블릿 */
@media (max-width: 1000px) {
  .consent-page {
    padding-top: 70px;
  }

  .consent-container {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .consent-column {
    max-width: 720px;
    margin: 0 auto;
  }

  .consent-heading {
    min-height: auto;
    margin-bottom: 40px;
  }
}

/* 모바일 */
@media (max-width: 600px) {
  .header-inner {
    height: 78px;
  }

  .logo strong {
    font-size: 18px;
  }

  .logo span {
    display: none;
  }

  .header-menu {
    gap: 24px;
  }

  .header-menu a,
  .header-menu a:link,
  .header-menu a:visited {
    font-size: 14px;
  }

  .header-menu a::after {
    bottom: -8px;
  }

  .consent-page {
    min-height: calc(100vh - 78px);
    padding: 55px 18px 80px;
  }

  .consent-heading h1 {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .consent-heading p {
    font-size: 14px;
  }

  .agreement-line {
    margin-bottom: 35px;
  }

  .terms-box {  
    height: 230px;
  }

  .date-group {
    width: 100%;
  }

  .consent-submit {
    width: 100%;
    height: 62px;
    margin-top: 35px;
  }
}
  @media (max-width: 768px) {
  .interview-section {
    padding: 75px 16px 100px;
  }

  .interview-heading {
    margin-bottom: 38px;
  }

  .interview-subtitle {
    font-size: 17px;
  }

  .interview-heading h2 {
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: -1.3px;
  }

  .interview-video-list {
    gap: 28px;
  }

  .interview-video-card {
    border-radius: 10px;

    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.14);
  }
}
/* ========================================
   수상 및 인증 이미지 슬라이더
======================================== */

.awards-section {
  width: 100%;
  padding: 100px 0 90px;

  overflow: hidden;

  color: #ffffff;
  background-color: #050505;
}

.awards-heading {
  width: 100%;
  max-width: 1300px;

  margin: 0 auto 45px;
  padding: 0 24px;

  text-align: center;
}

.awards-heading p {
  margin-bottom: 8px;

  color: #f28a00;
  font-size: 21px;
  font-weight: 500;
}

.awards-heading h2 {
  color: #ffffff;

  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1.8px;

  word-break: keep-all;
}

.awards-slider {
  position: relative;

  width: 100%;
  max-width: 1840px;

  margin: 0 auto;
  padding: 0 55px;
}

.awards-viewport {
  width: 100%;
  overflow: hidden;
}

.awards-track {
  display: flex;
  gap: 20px;

  transition: transform 0.5s ease;
  will-change: transform;
}

.award-slide {
  flex: 0 0 calc((100% - 40px) / 3);

  height: 440px;

  overflow: hidden;

  background-color: #111111;
}

.award-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.slider-button {
  position: absolute;
  z-index: 5;
  top: 50%;

  width: 44px;
  height: 60px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;

  color: #ffffff;
  background-color: rgba(30, 30, 30, 0.65);

  font-size: 30px;

  transform: translateY(-50%);

  transition:
    background-color 0.2s,
    opacity 0.2s;
}

.slider-button:hover {
  background-color: rgba(70, 70, 70, 0.9);
}

.slider-prev {
  left: 5px;
}

.slider-next {
  right: 5px;
}

.slider-dots {
  margin-top: 27px;

  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 13px;
  height: 8px;

  padding: 0;

  border: none;
  border-radius: 999px;

  background-color: #8a8a8a;

  transition:
    width 0.25s,
    background-color 0.25s;
}

.slider-dot.active {
  width: 36px;
  background-color: #ffffff;
}

/* ========================================
   실시간 상담 연결 영역
======================================== */

.realtime-consultation {
  position: relative;

  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=85");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.realtime-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(36, 13, 0, 0.63)
    );
}

.realtime-content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1200px;

  padding: 70px 24px;

  color: #ffffff;
  text-align: center;
}

.realtime-content p {
  margin-bottom: 10px;

  font-size: 20px;
  font-weight: 500;
}

.realtime-content h2 {
  margin-bottom: 52px;

  font-size: 43px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -2px;

  word-break: keep-all;
}

.realtime-button,
.realtime-button:link,
.realtime-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;

  padding: 0 28px;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 7px;

  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.15);

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.realtime-button:hover {
  color: #111111;
  background-color: #ffffff;

  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .award-slide {
    flex-basis: calc((100% - 20px) / 2);
    height: 390px;
  }

  .awards-heading h2 {
    font-size: 31px;
  }

  .realtime-content h2 {
    font-size: 35px;
  }
}

@media (max-width: 600px) {
  .awards-section {
    padding: 70px 0 65px;
  }

  .awards-heading {
    margin-bottom: 30px;
  }

  .awards-heading p {
    font-size: 16px;
  }

  .awards-heading h2 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -1.2px;
  }

  .awards-slider {
    padding: 0 38px;
  }

  .awards-track {
    gap: 12px;
  }

  .award-slide {
    flex-basis: 100%;
    height: 430px;
  }

  .slider-button {
    width: 34px;
    height: 52px;

    font-size: 23px;
  }

  .slider-prev {
    left: 2px;
  }

  .slider-next {
    right: 2px;
  }

  .realtime-consultation {
    min-height: 430px;
  }

  .realtime-content p {
    font-size: 16px;
  }

  .realtime-content h2 {
    margin-bottom: 38px;

    font-size: 29px;
    line-height: 1.45;
    letter-spacing: -1.3px;
  }

  .realtime-button,
  .realtime-button:link,
  .realtime-button:visited {
    min-width: 200px;
    height: 54px;

    font-size: 16px;
  }
}


/* ========================================
   스크롤 등장 애니메이션
======================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(70px);

  transition:
    opacity 0.9s ease var(--reveal-delay, 0s),
    transform 0.9s ease var(--reveal-delay, 0s);

  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ========================================
   투자 성과 통계 영역
======================================== */

.performance-section {
  width: 100%;
  padding: 125px 24px 115px;

  background-color: #ffffff;
}

.performance-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  text-align: center;
}

.performance-heading {
  margin-bottom: 65px;
}

.performance-heading p {
  margin-bottom: 8px;

  color: #f17b00;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.performance-heading h2 {
  color: #222222;

  font-size: 34px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -1.8px;

  word-break: keep-all;
}

.performance-heading h2 strong {
  color: #f17b00;
  font-weight: 800;
}

.performance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;

  max-width: 1050px;
  margin: 0 auto;
}

.performance-item {
  min-width: 0;
}

.progress-circle {
  --current-percent: 0;

  position: relative;

  width: 280px;
  height: 280px;

  margin: 0 auto 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    conic-gradient(
      from 0deg,
      #f08300 0%,
      #e8a55e calc(var(--current-percent) * 1%),
      #eeeeee calc(var(--current-percent) * 1%),
      #eeeeee 100%
    );

  transform: rotate(-1deg);
}

/* 원형 그래프 안쪽의 흰색 공간 */
.progress-circle::before {
  content: "";

  position: absolute;
  inset: 19px;

  border-radius: 50%;

  background-color: #ffffff;
}

/* 캡처처럼 위쪽에 작은 빈 공간을 표현 */
.progress-circle::after {
  content: "";

  position: absolute;
  top: -2px;
  left: 50%;

  width: 22px;
  height: 38px;

  background-color: #ffffff;

  transform: translateX(-50%);
}

.progress-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: baseline;
  justify-content: center;

  transform: rotate(1deg);
}

.progress-inner strong {
  color: #ed8617;

  font-size: 61px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -3px;
}

.progress-inner span {
  margin-left: 4px;

  color: #bbbbbb;

  font-size: 30px;
  font-weight: 400;
}

.performance-item h3 {
  color: #333333;

  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.performance-action {
  margin-top: 55px;
}

.performance-button,
.performance-button:link,
.performance-button:visited {
  min-width: 280px;
  height: 54px;

  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  color: #ffffff;
  background-color: #f27900;

  font-size: 17px;
  font-weight: 700;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.performance-button:hover {
  color: #ffffff;
  background-color: #d96800;

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px rgba(242, 121, 0, 0.24);
}

.performance-notice {
  max-width: 720px;

  margin: 30px auto 0;

  color: #999999;

  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .performance-list {
    gap: 25px;
  }

  .progress-circle {
    width: 235px;
    height: 235px;
  }

  .progress-inner strong {
    font-size: 51px;
  }
}

@media (max-width: 760px) {
  .performance-section {
    padding: 85px 18px 80px;
  }

  .performance-heading {
    margin-bottom: 45px;
  }

  .performance-heading p {
    font-size: 17px;
  }

  .performance-heading h2 {
    font-size: 27px;
    line-height: 1.5;
    letter-spacing: -1.3px;
  }

  .performance-list {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .progress-circle {
    width: 250px;
    height: 250px;
    margin-bottom: 25px;
  }

  .progress-inner strong {
    font-size: 53px;
  }

  .performance-action {
    margin-top: 50px;
  }

  .performance-button,
  .performance-button:link,
  .performance-button:visited {
    width: 100%;
    max-width: 320px;
  }
}
/* ========================================
   회원 수익 사례 영역
======================================== */

.results-section {
  width: 100%;
  padding: 105px 24px 120px;

  color: #ffffff;
  background-color: #050505;
}

.results-container {
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;
}

.results-heading {
  margin-bottom: 52px;

  text-align: center;
}

.results-heading p {
  margin-bottom: 8px;

  color: #f08300;
  font-size: 22px;
  font-weight: 500;
}

.results-heading h2 {
  color: #ffffff;

  font-size: 38px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1.7px;

  word-break: keep-all;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.result-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);

  min-height: 310px;

  overflow: hidden;

  background-color: #f8f8f8;
}

.result-text {
  padding: 48px 58px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-text h3 {
  margin-bottom: 18px;

  color: #202020;

  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1.2px;
}

.result-text p {
  max-width: 610px;

  color: #777777;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.4px;

  word-break: keep-all;
}

.result-image {
  min-width: 0;
  min-height: 310px;

  overflow: hidden;

  background-color: #dddddd;
}

.result-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}



.results-notice {
  margin-top: 35px;

  color: #aaaaaa;

  font-size: 13px;
  line-height: 1.7;

  text-align: center;
}
@media (max-width: 900px) {
  .results-heading h2 {
    font-size: 32px;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-text {
    order: 1 !important;
    padding: 38px 34px;
  }

  .result-image {
    order: 2 !important;
    min-height: auto;
  }

  .result-image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .results-section {
    padding: 75px 16px 85px;
  }

  .results-heading {
    margin-bottom: 35px;
  }

  .results-heading p {
    font-size: 17px;
  }

  .results-heading h2 {
    font-size: 27px;
    line-height: 1.45;
    letter-spacing: -1.2px;
  }

  .results-list {
    gap: 24px;
  }

  .result-text {
    padding: 30px 24px;
  }

  .result-text h3 {
    margin-bottom: 14px;

    font-size: 24px;
  }

  .result-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .results-notice {
    font-size: 11px;
  }
  @media (max-width: 600px) {
  .results-section {
    padding: 75px 16px 85px;
  }

  .results-heading {
    margin-bottom: 35px;
  }

  .results-heading p {
    font-size: 17px;
  }

  .results-heading h2 {
    font-size: 27px;
    line-height: 1.45;
    letter-spacing: -1.2px;
  }

  .results-list {
    gap: 24px;
  }

  .result-text {
    padding: 30px 24px;
  }

  .result-text h3 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .result-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .results-notice {
    font-size: 11px;
  }

  /* 모바일 수상 이미지 크기 조절 */
  .awards-slider {
    width: 90%;
    margin: 0 auto;
    padding: 0 24px;
  }

  .award-slide {
    flex-basis: 100%;
    height: 380px;
  }

  .award-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-prev {
    left: 0;
  }

  .slider-next {
    right: 0;
  }
}
}
/* ========================================
   거래내역 이미지 갤러리
======================================== */

.account-gallery-section {
  width: 100%;
  padding: 80px 24px 95px;

  background-color: #ffffff;
}

.account-gallery-container {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;
}

.account-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.account-image-card {
  min-width: 0;
  height: 420px;

  overflow: hidden;

  border: 1px solid #dddddd;
  border-radius: 12px;

  background-color: #f5f5f5;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.08);
}

.account-image-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  transition: transform 0.35s ease;
}

.account-image-card:hover img {
  transform: scale(1.03);
}
/* ========================================
   투자 서비스 특징 영역
======================================== */

.service-feature-section {
  width: 100%;
  padding: 110px 24px 105px;

  background-color: #ffffff;
}

.service-feature-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  text-align: center;
}

.service-feature-heading {
  margin-bottom: 65px;
}

.service-feature-heading p {
  margin-bottom: 8px;

  color: #f27a00;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.service-feature-heading h2 {
  color: #202020;

  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -2px;

  word-break: keep-all;
}

.service-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px;
}

.service-feature-item {
  min-width: 0;
}

.feature-icon {
  width: 190px;
  height: 150px;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #dc8b00;

  font-size: 86px;
  font-weight: 800;
  line-height: 1;
}

.feature-icon-coin {
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #fff7c5 0%,
      #f9c63d 54%,
      #d98e00 100%
    );

  width: 145px;
  height: 145px;

  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.35),
    0 8px 20px rgba(217, 142, 0, 0.22);
}

.feature-icon-coin span {
  color: #a96800;
  font-size: 70px;
}

.feature-icon-message {
  border-radius: 22px 22px 35px 22px;

  background:
    linear-gradient(
      145deg,
      #ffe768,
      #c48600
    );

  box-shadow:
    0 12px 25px rgba(196, 134, 0, 0.24);
}

.feature-icon-message span {
  color: #8c5600;
}

.feature-icon-chart span {
  color: #e29b05;

  font-size: 130px;

  text-shadow:
    4px 7px 0 rgba(179, 108, 0, 0.22);
}

.service-feature-item h3 {
  min-height: 68px;

  margin-bottom: 18px;

  color: #f27500;

  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.7px;

  word-break: keep-all;
}

.service-feature-item h3 strong {
  margin-right: 5px;
  font-weight: 800;
}

.service-feature-item p {
  color: #666666;

  font-size: 15px;
  line-height: 1.8;

  word-break: keep-all;
}

.service-feature-action {
  margin-top: 55px;
}

.service-feature-button,
.service-feature-button:link,
.service-feature-button:visited {
  min-width: 280px;
  height: 54px;

  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  color: #ffffff;
  background-color: #f27800;

  font-size: 17px;
  font-weight: 700;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-feature-button:hover {
  color: #ffffff;
  background-color: #d96800;

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px rgba(242, 120, 0, 0.25);
}

.service-feature-notice {
  max-width: 700px;

  margin: 28px auto 0;

  color: #999999;

  font-size: 12px;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .account-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature-list {
    gap: 30px;
  }

  .service-feature-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .account-gallery-section {
    padding: 55px 18px 65px;
  }

  .account-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .account-image-card {
    height: 310px;
    border-radius: 8px;
  }

  .service-feature-section {
    padding: 80px 18px 75px;
  }

  .service-feature-heading {
    margin-bottom: 45px;
  }

  .service-feature-heading p {
    font-size: 17px;
  }

  .service-feature-heading h2 {
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: -1.2px;
  }

  .service-feature-list {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .feature-icon {
    margin-bottom: 22px;
  }

  .service-feature-item h3 {
    min-height: auto;

    font-size: 22px;
  }

  .service-feature-item p {
    max-width: 330px;

    margin: 0 auto;

    font-size: 15px;
  }

  .service-feature-button,
  .service-feature-button:link,
  .service-feature-button:visited {
    width: 100%;
    max-width: 320px;
  }
}
/* ========================================
   회사 위치 및 정보 영역
======================================== */

.company-info-section {
  width: 100%;
  padding: 80px 24px;

  background-color: #eeeeee;
}

.company-info-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: 70px;

  align-items: center;
}

.company-map {
  width: 100%;
  height: 460px;

  overflow: hidden;

  background-color: #dddddd;
}

.company-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: none;
}

.company-details {
  min-width: 0;
}

.company-details h2 {
  margin-bottom: 8px;

  color: #222222;

  font-size: 29px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1.2px;
}

.company-description {
  color: #f07b00;

  font-size: 15px;
  line-height: 1.7;

  word-break: keep-all;
}

.company-divider {
  width: 100%;
  height: 1px;

  margin: 27px 0 32px;

  background-color: #c8c8c8;
}

.company-data {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.company-data div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
}

.company-data dt {
  color: #222222;

  font-size: 15px;
  font-weight: 700;
}

.company-data dd {
  margin: 0;

  color: #333333;

  font-size: 15px;
  line-height: 1.6;

  word-break: keep-all;
}
/* ========================================
   텔레그램 상담 및 푸터
======================================== */

.telegram-footer-section {
  position: relative;

  width: 100%;
  min-height: 570px;

  padding: 110px 24px 38px;

  color: #ffffff;

  background-image:
    url("https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1800&q=85");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.telegram-footer-overlay {
  position: absolute;
  inset: 0;

  background-color: rgba(0, 0, 0, 0.82);
}

.telegram-footer-container {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}

.telegram-message {
  text-align: center;
}

.telegram-message h2 {
  color: #ffffff;

  font-size: 34px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -1.3px;

  word-break: keep-all;
}

.telegram-message h2 strong {
  color: #63a9ff;

  font-weight: 800;
}

.telegram-actions {
  margin-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.telegram-download-button,
.telegram-connect-button {
  min-width: 195px;
  height: 49px;

  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.telegram-download-button,
.telegram-download-button:link,
.telegram-download-button:visited {
  color: #ffffff;
  background-color: #1261ce;
}

.telegram-connect-button,
.telegram-connect-button:link,
.telegram-connect-button:visited {
  color: #111111;
  background-color: #ffffff;
}

.telegram-download-button:hover,
.telegram-connect-button:hover {
  transform: translateY(-2px);
}

.telegram-download-button:hover {
  color: #ffffff;
  background-color: #094da8;
}

.telegram-connect-button:hover {
  color: #111111;
  background-color: #eeeeee;
}

.footer-divider {
  width: 100%;
  height: 1px;

  margin: 95px 0 28px;

  background-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  color: #ffffff;
}

.footer-company-info {
  font-size: 13px;
  line-height: 1.75;
}

.footer-company-info p {
  margin: 0;
}

.footer-company-info span {
  margin-left: 18px;
}

.copyright {
  margin-top: 42px;

  color: #ffffff;

  font-size: 13px;
}
@media (max-width: 800px) {
  .company-info-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .company-map {
    height: 380px;
  }

  .company-details {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .company-info-section {
    padding: 55px 18px 65px;
  }

  .company-map {
    height: 310px;
  }

  .company-details h2 {
    font-size: 25px;
  }

  .company-description {
    font-size: 14px;
  }

  .company-data div {
    grid-template-columns: 85px 1fr;
    gap: 10px;
  }

  .company-data dt,
  .company-data dd {
    font-size: 13px;
  }

  .telegram-footer-section {
    min-height: auto;

    padding: 80px 18px 30px;
  }

  .telegram-message h2 {
    font-size: 25px;
    line-height: 1.55;
    letter-spacing: -1px;
  }

  .telegram-message h2 br {
    display: none;
  }

  .telegram-actions {
    flex-direction: column;
    gap: 12px;
  }

  .telegram-download-button,
  .telegram-connect-button {
    width: 100%;
    max-width: 300px;
  }

  .footer-divider {
    margin-top: 70px;
  }

  .footer-company-info {
    font-size: 11px;
  }

  .footer-company-info span {
    display: block;
    margin-left: 0;
  }

  .copyright {
    margin-top: 30px;

    font-size: 10px;
    line-height: 1.6;
  }
}
/* ========================================
   다산인베스트 상단 로고
======================================== */

.logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-decoration: none;
}

.logo img {
  display: block;
  width: auto;
  height: 100px;
  max-width: 720px;
  object-fit: contain;
}

/* 모바일 */
@media (max-width: 600px) {
  .logo img {
    height: 50px;
    max-width: 260px;
  }
}
/* ========================================
   최하단 카카오톡 상담 영역
======================================== */

.kakao-footer-section {
  position: relative;

  width: 100%;
  min-height: 470px;

  padding: 125px 24px 45px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-image:
    url("https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1800&q=85");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kakao-footer-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(0, 8, 17, 0.83),
      rgba(0, 0, 0, 0.9)
    );
}

.kakao-footer-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  text-align: center;
}

.kakao-footer-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: 34px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -1.4px;

  word-break: keep-all;
}

.kakao-footer-content h2 strong {
  color: #ffe500;

  font-weight: 800;
}

.kakao-footer-button,
.kakao-footer-button:link,
.kakao-footer-button:visited {
  min-width: 198px;
  height: 48px;

  margin-top: 28px;
  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;

  color: #111111;
  background-color: #ffe500;

  font-size: 17px;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.kakao-footer-button:hover {
  color: #111111;
  background-color: #f5d900;

  transform: translateY(-2px);

  box-shadow:
    0 8px 22px rgba(255, 229, 0, 0.25);
}

.kakao-footer-divider {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1240px;

  height: 1px;

  margin-top: 95px;

  background-color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 600px) {
  .kakao-footer-section {
    min-height: 380px;
    padding: 85px 18px 35px;
  }

  .kakao-footer-content h2 {
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: -1px;
  }

  .kakao-footer-content h2 br {
    display: none;
  }

  .kakao-footer-button,
  .kakao-footer-button:link,
  .kakao-footer-button:visited {
    min-width: 185px;
    height: 46px;

    margin-top: 24px;

    font-size: 15px;
  }

  .kakao-footer-divider {
    margin-top: 65px;
  }
}
/* ========================================
   최하단 Footer
======================================== */

.site-footer {
  width: 100%;
  background: #000;
}


/* 회사 정보 영역 */

.footer-company {
  width: 100%;
  background: #000;

  padding: 0 24px 48px;

  color: #fff;
}

.footer-divider {
  width: 100%;
  max-width: 1240px;
  height: 1px;

  margin: 0 auto 28px;

  background: rgba(255, 255, 255, 0.18);
}

.footer-info {
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;

  color: #fff;

  font-size: 14px;
  line-height: 1.55;
}

.footer-info p {
  margin: 0;
}

.footer-copyright {
  width: 100%;
  max-width: 1240px;

  margin: 43px auto 0;

  color: #fff;

  font-size: 14px;
}