/* 메인 페이지 전용 스타일 */
body {
    background: #ffffff !important;
    overflow-x: hidden !important;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
}

html {
    overflow-x: hidden !important;
}

.main-page {
    background: #ffffff;
    overflow-x: hidden !important;
}

/* 영역 1: 히어로 섹션 */
.hero-section {
    padding: 80px 0 80px;  
    background: #ffffff;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-video {
    flex: 0 0 55%;
    opacity: 0;
    animation: fadeInVideo 1s ease-in-out 0.5s forwards;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-title {
    font-family: 'SUIT', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #002F42;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    opacity: 0;
    transition: opacity 0.6s;
    margin-bottom: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
}

.hero-subtitle.show {
    opacity: 1;
}

.badge-text {
    display: inline-block;
    background: #315B43;
    color: #FFF100;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(49, 91, 67, 0.3);
    animation: sparkle 1s ease-in-out 5;
}

.hero-sub-description {
    font-family: 'Pretendard', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(49, 91, 67, 0.3);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 241, 0, 0.6);
        filter: brightness(1.2);
    }
}

@keyframes sparkleNoShadow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* 영역 2: GTSn 섹션 - 가로 3개 배치 */
.gtsn-section {
    background: #19503D;
    padding: 40px 0;
    color: white;
}

.gtsn-section .section-title {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

@media (max-width: 768px) {
  .gtsn-section .section-title {
      margin-bottom: 4px; /* 모바일: 섹션 타이틀 하단 여백 축소 */
  }
}

/* PC 가로 3개 배치 - flex 사용 */
.benefit-cards.pc-only {
    display: flex !important;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .benefit-cards.pc-only {
        display: none !important;
    }
}

.benefit-cards.pc-only .benefit-card {
    flex: 1;
    max-width: 360px;
    background: #ffffff;
    border: 2px solid #E6DA4B;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* 카드 1 - 테두리 2배 */
.benefit-cards.pc-only .benefit-card:nth-child(1) {
    border: 4px solid #E6DA4B;
}

/* 카드 2 - 기본 테두리 유지 */
.benefit-cards.pc-only .benefit-card:nth-child(2) {
    border: 2px solid #E6DA4B;
}

/* 카드 3 - 하단과 오른쪽만 테두리 */
.benefit-cards.pc-only .benefit-card:nth-child(3) {
    border: none;
    border-bottom: 4px solid #E6DA4B;
    border-right: 4px solid #E6DA4B;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.vip-badge {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 3px solid #E6DA4B;
    overflow: visible;
}

.vip-badge .stars-top,
.vip-badge .stars-bottom {
    display: flex;
    justify-content: center;
    gap: 2px;
    height: 10px;
    align-items: center;
}

.vip-badge .star {
    font-size: 0.5rem;
    color: #E6DA4B;
    display: inline-block;
}

.vip-badge .stars-top .star-center {
    transform: translateY(-2px);
}

.vip-badge .stars-bottom .star-center {
    transform: translateY(2px);
}

.vip-badge .vip-text {
    font-weight: 900;
    font-size: 0.9rem;
    color: #E6DA4B;
    margin: 2px 0;
}

.vip-badge .stars-bottom {
    font-size: 0.5rem;
    line-height: 0.5;
    color: #FFD600;
}

.card-icon {
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 900;
    font-size: 1.9rem;
    margin-bottom: 10px;
    margin-top: 15px;
}

.benefit-card h3 {
    color: #19503D;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-card li {
    padding: 12px 0;
    position: relative;
    color: #19503D;
    font-size: 24px;
    line-height: 1.6;
    border-bottom: 1px dashed rgba(25, 80, 61, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefit-card li:last-child {
    border-bottom: none;
}

.benefit-card li .icon {
    flex-shrink: 0;
    font-size: 1.6rem;        /* 1.2rem → 1.6rem */
}

.benefit-card li span:not(.icon) {
    flex: 1;
    font-size: 0.9rem;
    color: #19503D;
}

.benefit-card li span:not(.icon) br + text,
.benefit-card li span:not(.icon) br::after {
    font-size: 0.75rem;
    color: rgba(25, 80, 61, 0.7);
}

/* 모바일 슬라이더 */
.benefit-slider-container {
    position: relative;
    display: none;
}

.benefit-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
  .benefit-tabs {
      margin-top: -5px;     /* 모바일에서만 위쪽 간격 축소 */
      margin-bottom: 15px; /* 필요시 아래쪽도 조정 */
  }
}

.benefit-tab {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.benefit-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #FFF100;
    transition: width 0.3s ease;
}

.benefit-tab.active {
    color: #FFF100;
}

.benefit-tab.active::after {
    width: 100%;
}

.benefit-swipe-wrapper {
    position: relative;
    overflow: hidden; /* 바깥으로 삐져나옴 방지 */
    touch-action: pan-y pinch-zoom;
    user-select: none;
    padding-top: 15px;
}

.benefit-swipe-track {
    display: flex;
    transition: transform 0.3s ease;
}

.benefit-swipe-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.benefit-swipe-slide .benefit-card {
    background: #ffffff;
    border: 2px solid #E6DA4B;
    border-radius: 20px;
    padding: 30px;
    padding-top: 40px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* 모바일 카드 테두리 스타일 */
.benefit-swipe-slide:nth-child(1) .benefit-card,
.benefit-swipe-slide:nth-child(2) .benefit-card,
.benefit-swipe-slide:nth-child(3) .benefit-card {
    border: 2px solid #E6DA4B;
}
.benefit-footer {
    margin-top: 50px;
    text-align: center;
    position: relative;
}
.plus-icon {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    font-family: 'SUIT', sans-serif;
    font-weight: 900;
    font-size: 32px;
    padding: 12px 35px;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* 하단 혜택 부모 그리드 (PC 4열) */
.benefit-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: transparent;
}


/* 하단 혜택 아이콘 4구역 카드형 — 백색 카드 */
.benefit-icons .benefit-card {
    background: #ffffff;                      /* 백색 카드 */
    border: 1.5px solid rgba(0,0,0,0.08);     /* 얇은 테두리 */
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);  /* 가벼운 그림자 */
    color: #19503D;                           /* 기본 글자색 다크그린 */
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* 카드 내부 텍스트 컬러(가독성 보정) */
.benefit-icons .benefit-card .title { color: #111827; }
.benefit-icons .benefit-card .desc  { color: #4B5563; }

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1;
    filter: saturate(1.05) brightness(1.05);  /* 이모지/아이콘 대비 소폭 강화 */
}

.benefit-icons .benefit-card .title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 18px;                          /* 18~20px */
    color: #111827;
    letter-spacing: -0.2px;
}

.benefit-icons .benefit-card .desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;                          /* 14~16px */
    color: #4B5563;
    margin-top: 6px;
}

.support-text {
    color: #FFD700;
    font-family: 'SUIT', sans-serif;
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
    animation: sparkleNoShadow 1s ease-in-out infinite;
    box-shadow: none !important;
    text-shadow: none !important;
}

.support-text .white-text {
    color: white;
}

/* 영역 3: 고민 섹션 */
.concerns-section {
    padding: 10px 0;
    background: #ffffff;
}

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

.concerns-header {
    text-align: center;
    margin-bottom: 50px;
}

.concerns-section .section-title {
    font-family: 'SUIT', sans-serif;   /* SUIT */
    font-weight: 800;                  /* Bold */
    font-size: 5rem;                   /* 구매지원 혜택과 동일 */
    line-height: 1.15;
    color: #333;
    margin-bottom: 20px;
}

.title-box {
    display: inline-block;
    background: #315B43;
    color: white;
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 700;
}

.hashtags-text {
    color: #333;
    font-size: 2rem;
    margin-top: 15px;
    font-weight: 700;
}

.concerns-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 그래프 영역 */
.concerns-graph {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    align-items: stretch;
    height: 90%;
}


.concerns-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list-title {
    color: #ff0000;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 0, 0, 0.3);
}

.concern-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.concern-item:hover {
    transform: translateX(10px);
}

.concern-item .check {
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #19503D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: 700;
}

.concern-item p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* 영역 4: 창업 이야기 */
.story-section {
    background: #19503D;
    padding: 80px 0;
    color: white;
}

.story-section .section-title {
    color: white;
    font-family: 'SUIT', sans-serif;
    font-weight: 800;        /* SUIT Bold */
    font-size: 2rem;         /* 32px */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.star-icon {
    color: #FFD700;
    font-size: 2rem;
    margin-left: 10px;
    display: inline-block;
    animation: twinkle 1.5s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.title-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, #FFD700, transparent);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-card {
    background: #236553;                             /* 리뷰 박스 밝은 그린 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 30px 30px 50px;                    /* 왼쪽 여백 확보 */
    transition: transform 0.3s;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);         /* 카드 그림자 */
}

.story-card:hover {
    transform: scale(1.05);
}

.story-card::before {
    content: "❝";                /* 리뷰 느낌 나는 큰 따옴표 아이콘 */
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'SUIT', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #FFD700;              /* 강조: 골드 */
    opacity: 0.9;
    line-height: 1;
    pointer-events: none;
}

.story-card h3 {
    color: #FFD700;
    font-family: 'SUIT', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;    /* 제목 왼쪽 라인 */
    padding-left: 10px;
}

.story-desc {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;        /* Regular */
    font-size: 16px;
    line-height: 1.6;
}


/* 영역 5: 시스템 섹션 */
.system-section {
    padding: 10px 0;
    background: #ffffff;
}

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

.system-section .section-title {
    font-family: 'SUIT', sans-serif;
    font-weight: 800;         /* SUIT Bold */
    font-size: 5rem;          /* 타이틀 크게 */
    color: #000000;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.3;
}

.system-section .section-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;         /* Pretendard Medium */
    font-size: 2.4rem;        /* 서브타이틀 크게 */
    color: #374151;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 60px;
}

.system-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.system-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.system-item.with-design {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, transparent 100%);
    border-radius: 20px;
}

.system-item.reverse {
    direction: rtl;
}

.system-item.reverse > * {
    direction: ltr;
}

.system-item.full {
    grid-template-columns: 1fr;
    text-align: center;
}

.system-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.system-image img {
    width: 100%;
    height: auto;
    display: block;
}

.system-text h3 {
    font-family: 'SUIT', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #146C43;           /* 기본 소제목 */
    margin-bottom: 20px;
}

.system-text p {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;         /* SUIT Regular */
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
}

/* ---- 파크골프 전용 모드(Full 블록) 전용 스타일 ---- */
.system-item.full .system-text h3 {
    font-family: 'SUIT', sans-serif;
    font-weight: 800;         /* SUIT Bold */
    font-size: 5rem;          /* 시스템 타이틀과 동일 */
    color: #000000;           /* 검정색으로 지정 */
}

.system-item.full .system-text .system-subhead {
    font-family: 'SUIT', sans-serif;
    font-weight: 700;         /* SUIT Bold */
    font-size: 24px;          /* 24PX */
    color: #146C43;           /* 요청 색상 */
    margin: 6px 0 10px;
}

.system-item.full .system-text .system-body {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;         /* SUIT Regular */
    font-size: 16px;          /* 16px */
    color: #4B5563;           /* 본문 색상 */
    line-height: 1.8;
}

.system-video {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.system-video video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* 영역 6: 장비 섹션 - PC 4개 가로 배치 */
.equipment-section {
    padding: 10px 0 80px;
    background: #315B43;
}

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

.equipment-section .section-title {
    font-size: 5rem;
    color: #FFF100;
    text-align: center;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1;
}

.equipment-section .section-subtitle {
    font-size: 2.4rem;
    color: white;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
    font-weight: 700;
}

/* PC 4개 가로 배치 - 기존 코드 복원 */
.equipment-grid.pc-only {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
}

@media (max-width: 768px) {
    .equipment-grid.pc-only {
        display: none !important;
    }
}

.equipment-grid .equipment-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: none;
    outline: none;
}

.equipment-item:hover {
    transform: translateY(-10px);
}

.equipment-image-box {
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    outline: none;
}

.equipment-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
}

.equipment-info {
    padding: 20px;
}

.equipment-label {
    display: inline-block;
    background: #19503D;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.equipment-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.equipment-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* 모바일 장비 슬라이더 */
.equipment-slider-container {
    position: relative;
    display: none;
}

.equipment-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.equipment-tab {
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.equipment-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #FFF100;
    transition: width 0.3s ease;
}

.equipment-tab.active {
    color: #FFF100;
}

.equipment-tab.active::after {
    width: 100%;
}

.equipment-swipe-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.equipment-swipe-track {
    display: flex;
    transition: transform 0.3s ease;
}

.equipment-swipe-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* CTA 섹션 */
.cta-section {
    padding: 40px 0 40px;
    margin: 0;
    background: #ffffff;
}

.cta-section img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
}

/* 스크롤 애니메이션 */
.scroll-animation {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.6s, transform 0.6s;
}

.scroll-animation.show {
   opacity: 1;
   transform: translateY(0);
}

/* 반응형 */
.pc-only {
   display: block;
}


.mobile-only {
   display: none;
}

/* 모바일 창업 이야기 세로 배치 */
.story-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.story-cards-mobile .story-card {
    background: #236553;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px 25px 25px 40px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.story-cards-mobile .story-card::before {
    content: "❝";
    position: absolute;
    top: 20px;
    left: 15px;
    font-family: 'SUIT', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #FFD700;
    opacity: 0.9;
    line-height: 1;
    pointer-events: none;
}

.story-cards-mobile .story-card h3 {
    color: #FFD700;
    font-family: 'SUIT', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
    padding-left: 10px;
}

.story-cards-mobile .story-desc {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
   .pc-only {
       display: none !important;
   }
   
   .mobile-only {
       display: block !important;
   }
   
   body {
       overflow-x: hidden !important;
   }
   
   .hero-section .container {
       flex-direction: column;
       gap: 30px;
   }
   
   .hero-video {
       flex: 1;
       width: 100%;
       order: 2; /* 모바일에서 영상이 아래 */
   }
   
   .hero-content {
       text-align: center;
       order: 1; /* 모바일에서 텍스트가 위 */
   }
   
   .hero-title {
       font-size: 2.5rem;
   }
   
   .badge-text {
       font-size: 1rem;
       padding: 10px 20px;
   }
   
   .gtsn-section .section-title {
       font-size: 1.8rem;
   }
   .gtsn-section .section-title .highlight-text {
       font-size: 1rem; /* 모바일만 작게 */
   }
   
   .benefit-slider-container {
       display: block !important;
       padding: 20px 0;
   }
   
   .benefit-swipe-slide .benefit-card {
       min-height: auto;
       padding: 25px 20px;
   }
   
   .benefit-card .card-inner {
       min-height: auto;
       padding: 20px 15px;
   }
  
 
   .equipment-slider-container {
       display: block !important;
   }
   
   .concerns-main {
       grid-template-columns: 1fr;
   }
   
   .system-item {
       grid-template-columns: 1fr;
   }
   
   .system-item.reverse {
       direction: ltr;
   }
   
   .support-text {
       font-size: 2.5rem;
   }
   
   .benefit-icons {
       grid-template-columns: repeat(2, 1fr); /* 2열 */
       gap: 15px;                              /* 카드 간격 */
       margin: 0 20px;
       padding: 20px;
   }
   
   .benefit-icons .benefit-card {
       aspect-ratio: 1 / 1;                   /* 세로 2줄 유지 */
       height: auto;                           /* PC용 height 무효화 */
       padding: 14px;
   }
   
   .equipment-section {
       padding: 80px 0 40px;
   }
   
   .cta-section {
       padding: 40px 0 40px;
   }
}

.gtsn-section .section-title .highlight-text {
    color: #FFF100;
}

.vip-badge .stars-top,
.vip-badge .stars-bottom {
    display: flex;
    justify-content: center;
    gap: 2px;
    height: 10px;
    align-items: center;
}

.vip-badge .star {
    font-size: 0.5rem;
    color: #E6DA4B;
    display: inline-block;
}

.vip-badge .stars-top .star-center {
    transform: translateY(-2px);
}

.vip-badge .stars-bottom .star-center {
    transform: translateY(2px);
}

.vip-badge {
    overflow: visible;
    border: 3px solid #E6DA4B;
}
.gtsn-section .section-title .small-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 2.4rem;
    color: white;
}

.gtsn-section .section-title .highlight-text {
    font-family: 'SUIT', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: #FFF100;
}

/* 모바일 전용 크기 조정 */
@media (max-width: 768px) {
    .gtsn-section .section-title .highlight-text {
        font-size: 4.5rem !important;
    }
}

/* 구매지원 혜택 하단 서브카피 */
.gtsn-section .section-title .benefit-subtitle {
    display: block;
    margin-top: 12px;       /* 위 간격 살짝 넓힘 */
    margin-bottom: 40px;    /* 아래 탭 메뉴와의 간격 추가 */
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: white;
    opacity: 0.95;
}

@media (max-width: 768px) {
  .gtsn-section .section-title .benefit-subtitle {
      margin-bottom: 5px; /* 모바일에서만 세로 간격 축소 */
  }
}

.benefit-card .card-inner {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    margin-top: 10px;
    min-height: 280px;
}

.benefit-card h3 {
    color: #19503D;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 700;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.benefit-card li {
    padding: 12px 0;
    position: relative;
    color: #19503D;
    font-size: 16px;          /* 0.9rem → 16px */
    line-height: 1.6;
    border-bottom: 1px dashed rgba(25, 80, 61, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 모바일 전용 줄바꿈 */
.mbr { display: none; }
@media (max-width: 768px) {
  .mbr { display: inline; } /* 모바일에서만 줄바꿈 보이기 */
}
/* PC 전용 줄바꿈 */
.pcbr { display: none; }
@media (min-width: 769px) {
  .pcbr { display: inline; }
}


/* === 모바일 보정 추가 === */
@media (max-width: 768px) {
  /* 1) 고민 제목 살짝 축소 + 단어 중간 줄바꿈 방지 */
  .concerns-section .section-title { font-size: 28px; line-height: 1.3; }
  .title-box { word-break: keep-all; }

  /* 2) 모바일에서 상단 히어로 타이틀 조금 더 내리기 */
  .hero-section { padding-top: 10px; } /* 필요시 120~140px로 미세조정 */
  
  /* 3) 시스템 섹션 타이틀 크기 조정 */
  .system-section .section-title { font-size: 3rem; }
  .system-section .section-subtitle { font-size: 1.5rem; }
  
  /* 4) 파크골프 전용 모드 타이틀 크기 조정 */
  .system-item.full .system-text h3 { font-size: 3rem; }
  
  /* 5) 장비 섹션 타이틀 크기 조정 */
  .equipment-section .section-title { font-size: 3rem; }
  .equipment-section .section-subtitle { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  /* 모바일 전용 카드 크기 조정 - 트랙 이동(100%)과 정합 유지 */
  .benefit-swipe-wrapper {
    overflow: hidden; /* 안전망: 모바일에서도 확실히 자르기 */
  }

  .benefit-swipe-slide {
    flex: 0 0 100%;   /* 100% 유지 → translateX(-index*100%)와 일치 */
    width: 100%;
    padding: 0 16px;  /* 좌우 여백으로 '가로 축소' 시각 효과 */
    box-sizing: border-box;
    margin: 0;        /* 중앙 정렬 불필요 */
    display: flex;    /* 카드 중앙 정렬 */
    justify-content: center; /* 카드 중앙 정렬 */
  }

  .benefit-swipe-slide .benefit-card {
    padding: 18px 15px;      /* 내부 여백 */
    border-radius: 15px;
    width: 66.666% !important;
    max-width: 66.666% !important;
    flex: 0 0 66.666% !important;
    margin: 0 auto;          /* 중앙 정렬 */
  }

  .benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .benefit-card li {
    font-size: 14px;
    padding: 8px 0;
  }

  .benefit-card .icon {
    font-size: 1.2rem;
  }

  .vip-badge {
    width: 44px;
    height: 44px;
    top: -15px;   /* 살짝 내려서 짤림 방지 */
    left: 15px;   /* 안쪽으로 이동 */
  }

  .card-icon {
    font-size: 1.2rem;
    padding: 8px 20px;
    margin-top: 10px;
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  /* 영역 2: GTSn */
  .gtsn-section { padding-top: 10px; }

  /* 영역 3: 이런 고민 있으신가요? */
  .concerns-section { padding-top: 10px; }

  /* 영역 4: 창업 이야기 */
  .story-section { padding-top: 10px; }

  /* 영역 5: 플레이 파크골프(시스템) */
  .system-section { padding-top: 10px; }

  /* 영역 6: 플레이파크 시스템 */
  .equipment-section { padding-top: 10px; }

  .equipment-section .section-subtitle {
    margin-bottom: 12px !important;
  }

  .equipment-tabs {
    margin-top: -4px !important;
    margin-bottom: 12px !important;
    gap: 8px;
  }
}

