/* 메인 히어로 섹션 CSS (m55_1 참조) */

/* 전체 화면 메인 섹션 */
.new-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: none;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    animation: heroEntrance 1.5s ease-out forwards;
}

/* 메인 섹션 진입 애니메이션 */
@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 배경 이미지 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('./img/0.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: backgroundFadeIn 2s ease-out forwards;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

/* 배경 페이드인 애니메이션 */
@keyframes backgroundFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 배경 오버레이 */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* 콘텐츠 래퍼 */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* 헤드카피 영역 */
.hero-headline-area {
    margin-bottom: 1.5rem;
    animation: headlineSlideUp 1s ease-out 0.3s both;
}

.hero-headline {
    font-size: 6.75rem;
    font-weight: 900;
    color: #ffd700;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: -0.02em;
    animation: colorChange 4s ease-in-out infinite;
}

@keyframes headlineSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 단순 색상변환 애니메이션 */
@keyframes colorChange {
    0% {
        color: #ffd700; /* 노란색 */
    }
    25% {
        color: #ff6b6b; /* 빨간색 */
    }
    50% {
        color: #4ecdc4; /* 청록색 */
    }
    75% {
        color: #45b7d1; /* 파란색 */
    }
    100% {
        color: #ffd700; /* 노란색 */
    }
}


/* 메인 아이콘 영역 */
.hero-icon-area {
    margin-bottom: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.hero-main-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.hero-main-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.hero-main-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: #ff6b6b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* 메인 타이틀 영역 */
.hero-title-area {
    margin-bottom: 2rem;
    animation: titleSlideUp 1s ease-out 0.5s both;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
}

.highlight-red {
    color: #ff6b6b;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 부연설명 영역 */
.hero-description-area {
    margin-bottom: 3rem;
    animation: descriptionSlideUp 1s ease-out 1s both;
}

.hero-description-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

@keyframes descriptionSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 피처 아이콘들 영역 */
.hero-features-area {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: featuresSlideUp 1s ease-out 1.5s both;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
}

.hero-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-feature-item:hover .hero-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 100% 수익 아이콘 */
.hero-icon-revenue {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
}

.hero-icon-revenue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 25px;
    background: #fff;
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

.hero-icon-revenue::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #ff6b6b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 타 상품 소싱 아이콘 */
.hero-icon-sourcing {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
}

.hero-icon-sourcing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

.hero-icon-sourcing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: #4ecdc4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 자동화 운영 아이콘 */
.hero-icon-automation {
    background: linear-gradient(45deg, #d299c2, #fef9d7);
}

.hero-icon-automation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

.hero-icon-automation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #d299c2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-feature-item span {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes featuresSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .new-hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content-wrapper {
        padding: 4rem 1rem 1rem 1rem;
    }
    
    .hero-headline {
        font-size: 4.5rem;
        color: #ffd700;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        animation: colorChange 4s ease-in-out infinite;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-description-main {
        font-size: 1.2rem;
    }
    
    .hero-description-sub {
        font-size: 1rem;
    }
    
    .hero-features-area {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-feature-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-main-icon {
        width: 80px;
        height: 80px;
    }
    
    .hero-main-icon::before {
        width: 40px;
        height: 40px;
    }
    
    .hero-main-icon::after {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 3.5rem 1rem 1rem 1rem;
    }
    
    .hero-headline {
        font-size: 3.3rem;
        color: #ffd700;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        animation: colorChange 4s ease-in-out infinite;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-description-main {
        font-size: 1.1rem;
    }
    
    .hero-description-sub {
        font-size: 0.9rem;
    }
    
    .hero-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-main-icon {
        width: 70px;
        height: 70px;
    }
}

/* 접근성 고려 */
@media (prefers-reduced-motion: reduce) {
    .new-hero-section,
    .hero-background,
    .hero-icon-area,
    .hero-title-area,
    .hero-description-area,
    .hero-features-area {
        animation: none;
    }
    
    .hero-main-icon,
    .hero-main-icon::after {
        animation: none;
    }
}

/* -------------------------------------------------------------
   HERO V2 (새 와이드형)
------------------------------------------------------------- */
.pub-hero-v2 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 6vw, 72px);
    overflow: hidden;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}

.pub-hero-v2__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(15,23,42,0.8)),
                url('./img/11.png') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.02);
}

.pub-hero-v2__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 3vw, 24px);
    text-align: center;
}

.pub-hero-v2__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    max-width: 90%;
}

.pub-hero-v2__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3.5vw, 28px);
}

.pub-hero-v2__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px);
}

.pub-hero-v2__title-line {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #ffd54f, #ffb703, #ffd166, #ffe066, #ffd54f);
    background-size: 280% 280%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 28px rgba(0,0,0,0.35);
    animation: heroV2ColorShift 6s ease-in-out infinite, heroV2Glow 7s ease-in-out infinite;
}

.pub-hero-v2__subtitle {
    margin: 0;
    max-width: 820px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #e2e8f0;
}

.pub-hero-v2__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2.5vw, 18px) clamp(22px, 4vw, 30px);
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a18, #ff3d57);
    color: #fff;
    font-weight: 800;
    font-size: clamp(1rem, 2.4vw, 1.1rem);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(255, 61, 87, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pub-hero-v2__cta:hover,
.pub-hero-v2__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 61, 87, 0.45);
}

@keyframes heroV2Glow {
    0%   { filter: drop-shadow(0 10px 24px rgba(255, 122, 24, 0.35)); transform: translateY(0); }
    25%  { filter: drop-shadow(0 12px 28px rgba(255, 61, 87, 0.4));  transform: translateY(-2px); }
    50%  { filter: drop-shadow(0 14px 32px rgba(255, 255, 255, 0.35)); transform: translateY(0); }
    75%  { filter: drop-shadow(0 12px 28px rgba(255, 210, 100, 0.38)); transform: translateY(2px); }
    100% { filter: drop-shadow(0 10px 24px rgba(255, 122, 24, 0.35)); transform: translateY(0); }
}

@media (max-width: 1024px) {
    .pub-hero-v2 {
        padding: 64px 20px 80px;
        left: 0;
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pub-hero-v2 {
        padding: 56px 18px 76px;
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .pub-hero-v2__badge {
        max-width: 100%;
    }
    .pub-hero-v2__title-line {
        animation-duration: 8s;
    }
}

@media (max-width: 480px) {
    .pub-hero-v2 {
        padding: 48px 16px 70px;
    }
    .pub-hero-v2__badge {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
    .pub-hero-v2__cta {
        width: 100%;
        max-width: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-hero-v2__title-line {
        animation: none;
        -webkit-text-fill-color: #ffd54f;
        background: none;
    }
}

@keyframes heroV2ColorShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* -------------------------------------------------------------
   페인포인트 섹션
------------------------------------------------------------- */
.pub-painpoint {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 32px);
    overflow: hidden;
    box-sizing: border-box;
}

.pub-painpoint__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 45%),
        linear-gradient(135deg, #3b3f46 0%, #1f2228 60%, #181b20 100%);
    opacity: 0.95;
    z-index: 1;
}

.pub-painpoint__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
    color: #e9edf3;
}

.pub-painpoint__title {
    text-align: center;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.3;
    color: #f5f7fa;
}

.pub-painpoint__body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(24px, 4vw, 36px);
    align-items: stretch;
}

.pub-painpoint__text {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: clamp(18px, 3vw, 26px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.pub-painpoint__lead {
    margin: 0 0 16px 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: #f1f3f6;
}

.pub-painpoint__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pub-painpoint__list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #d9dee5;
}

.pub-painpoint__highlight {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: clamp(18px, 3vw, 26px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.pub-painpoint__iconset {
    display: flex;
    gap: 10px;
}

.pub-painpoint__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #5a5f69, #2f323a);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(0,0,0,0.25);
}

.pub-painpoint__icon--worry {
    position: relative;
}
.pub-painpoint__icon--worry::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #f5f7fa, #b3b7c2);
}
.pub-painpoint__icon--worry::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 3px;
    background: #1c1f25;
    border-radius: 2px;
    transform: rotate(-6deg);
}

.pub-painpoint__icon--cog {
    position: relative;
}
.pub-painpoint__icon--cog::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #f5f7fa, #c7cbd4);
    box-shadow:
        0 0 0 2px rgba(0,0,0,0.15),
        0 0 0 4px #5a5f69;
}
.pub-painpoint__icon--cog::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.6);
    animation: cogSpin 6s linear infinite;
}

.pub-painpoint__quote {
    font-weight: 700;
    font-size: clamp(1.05rem, 2.6vw, 1.3rem);
    line-height: 1.6;
    color: #f6d28f;
}

.pub-painpoint__text:hover,
.pub-painpoint__text:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.32);
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
}

.pub-painpoint__highlight:hover,
.pub-painpoint__highlight:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.34);
    border-color: rgba(255,255,255,0.16);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

@media (prefers-reduced-motion: reduce) {
    .pub-painpoint__text,
    .pub-painpoint__highlight {
        transition: none;
        transform: none;
    }
    .pub-painpoint__text:hover,
    .pub-painpoint__text:focus-within,
    .pub-painpoint__highlight:hover,
    .pub-painpoint__highlight:focus-within {
        transform: none;
    }
}

/* -------------------------------------------------------------
   페인포인트 섹션 (시장 그래프 리뉴얼)
   - 기존 pub-painpoint 콘텐츠를 완전 교체한 버전
------------------------------------------------------------- */
/* PUB-PAINPOINT-MARKET-START */
.pub-painpoint--market {
    color: #0f172a;
}

.pub-painpoint--market .pub-painpoint__bg {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.10), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.10), transparent 45%),
        radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.80), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 60%, #ffffff 100%);
    opacity: 1;
}

.pub-painpoint--market .pub-market {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.pub-painpoint--market .pub-market__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3.5vw, 28px);
    text-align: center;
}

.pub-painpoint--market .pub-market__title {
    margin: 0;
    font-weight: 900;
    font-size: clamp(1.7rem, 4.2vw, 2.55rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.pub-painpoint--market .pub-market__title-line {
    display: inline;
}

.pub-painpoint--market .pub-market__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
    margin-top: 12px;
}

.pub-painpoint--market .pub-market__sub {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #334155;
}

.pub-painpoint--market .pub-market__metrics {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pub-painpoint--market .pub-market__metric {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 14px 14px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pub-painpoint--market .pub-market__metric--strong {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.10);
}

.pub-painpoint--market .pub-market__year {
    font-weight: 900;
    color: #0f172a;
    font-size: 0.98rem;
}

.pub-painpoint--market .pub-market__value {
    font-weight: 900;
    color: #2563eb;
    font-size: 1.15rem;
}

.pub-painpoint--market .pub-market__metric--strong .pub-market__value {
    color: #0b5cff;
}

.pub-painpoint--market .pub-market__chart {
    width: 100%;
}

.pub-painpoint--market .pub-market-chart {
    width: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f3f8ff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.pub-painpoint--market .pub-market-chart__plot {
    position: relative;
    padding: 18px 16px 18px;
}

.pub-painpoint--market .pub-market-chart__bars {
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.pub-painpoint--market .pub-market-chart__bar-item {
    height: 230px;
    flex: 1;
    max-width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.pub-painpoint--market .pub-market-chart__bar {
    width: min(56px, 70%);
    height: calc(var(--p) * 1%);
    border-radius: 14px 14px 18px 18px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
    transform-origin: bottom;
    animation: pubMarketBarGrow 1.1s ease both;
}

.pub-painpoint--market .pub-market-chart__bar--soft {
    background: linear-gradient(180deg, rgba(147, 197, 253, 0.85), rgba(96, 165, 250, 0.35));
}

.pub-painpoint--market .pub-market-chart__bar--strong {
    background: linear-gradient(180deg, #2563eb, #60a5fa);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
}

.pub-painpoint--market .pub-market-chart__bar-label {
    font-weight: 900;
    font-size: 0.98rem;
    color: #0f172a;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    padding: 6px 10px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.pub-painpoint--market .pub-market-chart__bar-label--strong {
    border-color: rgba(37, 99, 235, 0.22);
}

.pub-painpoint--market .pub-market-chart__x {
    font-weight: 900;
    color: #334155;
    font-size: 0.95rem;
}

.pub-painpoint--market .pub-market-chart__svg {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 18px;
    height: 230px;
    width: calc(100% - 32px);
    pointer-events: none;
}

.pub-painpoint--market .pub-market-chart__line {
    fill: none;
    stroke: #0b5cff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.18));
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: pubMarketLineDraw 1.2s ease 0.15s forwards;
}

.pub-painpoint--market .pub-market-chart__dot {
    fill: #ffffff;
    stroke: #0b5cff;
    stroke-width: 1.3;
}

.pub-painpoint--market .pub-market-chart__dot--strong {
    fill: #0b5cff;
    stroke: #ffffff;
    stroke-width: 1.3;
}

.pub-painpoint--market .pub-market-chart__bubble {
    fill: #ffffff;
    stroke: rgba(11, 92, 255, 0.35);
    stroke-width: 0.7;
    filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.12));
}

.pub-painpoint--market .pub-market-chart__bubble-text {
    font-size: 4.2px;
    font-weight: 900;
    fill: #0b5cff;
    text-anchor: middle;
    dominant-baseline: middle;
}

.pub-painpoint--market .pub-market__message {
    width: 100%;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: clamp(16px, 3vw, 22px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.pub-painpoint--market .pub-market__message-text {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.02rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    color: #0f172a;
}

@keyframes pubMarketBarGrow {
    from { transform: scaleY(0.05); opacity: 0.75; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes pubMarketLineDraw {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
    .pub-painpoint--market .pub-market__metrics {
        grid-template-columns: 1fr;
    }
    .pub-painpoint--market .pub-market-chart__bars,
    .pub-painpoint--market .pub-market-chart__bar-item {
        height: 210px;
    }
    .pub-painpoint--market .pub-market-chart__svg {
        height: 210px;
    }
}

@media (max-width: 480px) {
    .pub-painpoint--market .pub-market__title-line {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-painpoint--market .pub-market-chart__bar,
    .pub-painpoint--market .pub-market-chart__line {
        animation: none;
        stroke-dashoffset: 0;
    }
}
/* PUB-PAINPOINT-MARKET-END */

/* -------------------------------------------------------------
   4번 섹션: 혜택 중심 바이럴 메시지
------------------------------------------------------------- */
.pub-viral {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(60px, 7vw, 110px) clamp(18px, 4vw, 32px);
    background: linear-gradient(135deg, #fff6e8, #ffe3c7);
    overflow: hidden;
    box-sizing: border-box;
}

.pub-viral__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 200, 150, 0.25), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 177, 120, 0.28), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.3), transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.pub-viral__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 36px);
    text-align: center;
}

.pub-viral__title {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 900;
    color: #1f2937;
    line-height: 1.3;
}

.pub-viral__visual {
    display: flex;
    gap: clamp(18px, 3vw, 28px);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pub-viral__phone {
    width: 220px;
    height: 420px;
    border-radius: 28px;
    background: linear-gradient(145deg, #e7ecf3, #d6dde8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 18px 40px rgba(0,0,0,0.15);
    position: relative;
}

.pub-viral__phone-screen {
    position: absolute;
    inset: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f2f6fb);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 12px 24px rgba(0,0,0,0.08);
}

.pub-viral__phone-hand {
    position: absolute;
    bottom: -22px;
    right: 24px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ffd6b3, #f7b07a);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.pub-viral__appliances {
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    align-items: center;
}

.pub-viral__appliance {
    width: 120px;
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fbff, #e9eef5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 16px 28px rgba(0,0,0,0.1);
    position: relative;
}

.pub-viral__appliance--washer::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 12px;
    background: #d9e2ef;
}
.pub-viral__appliance--washer::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 30%, #9ac6ff, #4f9bff);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.pub-viral__appliance--fridge::before {
    content: "";
    position: absolute;
    top: 14px; left: 12px; right: 12px; bottom: 60px;
    border-radius: 12px;
    background: #dfe6f1;
}
.pub-viral__appliance--fridge::after {
    content: "";
    position: absolute;
    top: 78px; left: 12px; right: 12px; bottom: 14px;
    border-radius: 10px;
    background: #d7deea;
}

.pub-viral__body {
    max-width: 900px;
}

.pub-viral__text {
    margin: 0;
    font-size: clamp(1rem, 2.3vw, 1.15rem);
    line-height: 1.8;
    color: #334155;
}

.pub-viral__accent--warm { color: #FF6600; font-weight: 800; }
.pub-viral__accent--cool { color: #007BFF; font-weight: 800; }

/* -------------------------------------------------------------
   4번 섹션 리뉴얼: 1인 가구 증가 차트 (SVG)
------------------------------------------------------------- */
/* PUB-VIRAL-ONEPERSON-START */
.pub-viral--oneperson {
    background: linear-gradient(180deg, #0b3b6a 0%, #08325b 55%, #062a4d 100%);
    color: #ffffff;
}

.pub-viral--oneperson .pub-viral__bg {
    background:
        radial-gradient(circle at 20% 25%, rgba(59, 130, 246, 0.18), transparent 48%),
        radial-gradient(circle at 80% 15%, rgba(14, 165, 233, 0.16), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.10), transparent 55%);
    opacity: 1;
}

.pub-viral--oneperson .pub-oneperson {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-viral--oneperson .pub-oneperson__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3.2vw, 28px);
    text-align: center;
}

.pub-viral--oneperson .pub-oneperson__title {
    margin: 0;
    font-weight: 900;
    font-size: clamp(1.7rem, 4.2vw, 2.55rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.pub-viral--oneperson .pub-oneperson__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b5cff, #0ea5e9);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(11, 92, 255, 0.28);
}

.pub-viral--oneperson .pub-oneperson__card {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 26px 52px rgba(0,0,0,0.22);
    padding: clamp(14px, 3vw, 20px);
    text-align: left;
    color: #0f172a;
}

.pub-viral--oneperson .pub-oneperson__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.pub-viral--oneperson .pub-oneperson__meta-title {
    font-weight: 900;
    font-size: 1.02rem;
    color: #0f172a;
}

.pub-viral--oneperson .pub-oneperson__meta-sub {
    font-weight: 800;
    font-size: 0.92rem;
    color: #334155;
    margin-left: 8px;
}

.pub-viral--oneperson .pub-oneperson__meta-note {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0b5cff;
}

.pub-viral--oneperson .pub-oneperson-chart {
    width: 100%;
    overflow: hidden;
}

.pub-viral--oneperson .pub-oneperson-chart__svg {
    width: 100%;
    height: auto;
    display: block;
}

.pub-viral--oneperson .pub-oneperson-chart__grid line {
    stroke: rgba(15, 23, 42, 0.10);
    stroke-width: 1;
}

.pub-viral--oneperson .pub-oneperson-chart__y text {
    fill: #64748b;
    font-weight: 800;
    font-size: 10px;
}

.pub-viral--oneperson .pub-oneperson-chart__x text {
    fill: #0f172a;
    font-weight: 900;
    font-size: 11px;
    text-anchor: middle;
}

.pub-viral--oneperson .pub-oneperson-chart__line {
    fill: none;
    stroke: #0b5cff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 10px 18px rgba(11, 92, 255, 0.18));
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: pubOnepersonLineDraw 1.25s ease 0.12s forwards;
}

.pub-viral--oneperson .pub-oneperson-chart__points circle {
    fill: #ffffff;
    stroke: #0b5cff;
    stroke-width: 3;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
    transform-origin: center;
    transform: scale(0.85);
    opacity: 0.0;
    animation: pubOnepersonDotPop 0.55s ease forwards;
}

.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(1) { animation-delay: 0.25s; }
.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(2) { animation-delay: 0.32s; }
.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(3) { animation-delay: 0.39s; }
.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(4) { animation-delay: 0.46s; }
.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(5) { animation-delay: 0.53s; }
.pub-viral--oneperson .pub-oneperson-chart__points circle:nth-child(6) { animation-delay: 0.60s; }

.pub-viral--oneperson .pub-oneperson-chart__labels text {
    fill: #0f172a;
    font-weight: 900;
    font-size: 10.5px;
    text-anchor: middle;
}

@keyframes pubOnepersonLineDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes pubOnepersonDotPop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    /* 모바일에서도 2020/2025 라벨은 노출 */
    .pub-viral--oneperson .pub-oneperson-chart__labels text {
        font-size: 9.5px;
    }
    .pub-viral--oneperson .pub-oneperson-chart__x text {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-viral--oneperson .pub-oneperson-chart__line,
    .pub-viral--oneperson .pub-oneperson-chart__points circle {
        animation: none !important;
        stroke-dashoffset: 0;
        opacity: 1;
        transform: none;
    }
}
/* PUB-VIRAL-ONEPERSON-END */

@media (max-width: 1024px) {
    .pub-viral {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        padding: 52px 18px 88px;
    }
    .pub-viral__phone {
        width: 200px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .pub-viral {
        padding: 48px 16px 76px;
    }
    .pub-viral__visual {
        flex-direction: column;
    }
    .pub-viral__appliances {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pub-viral {
        padding: 44px 14px 70px;
    }
    .pub-viral__phone {
        width: 180px;
        height: 340px;
    }
    .pub-viral__appliance {
        width: 100px;
        height: 120px;
    }
    .pub-viral__text {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-viral__phone-hand,
    .pub-viral__appliance--fridge::after,
    .pub-viral__appliance--washer::after {
        animation: none;
    }
}

/* -------------------------------------------------------------
   4번 섹션: 3단계 자동 수익 시스템
------------------------------------------------------------- */
.pub-revenue-system {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(60px, 7vw, 110px) clamp(18px, 4vw, 32px);
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-revenue-system__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.03), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.03), transparent 40%);
    z-index: 1;
    opacity: 0.8;
}

/* PUB-REVENUE-PURPLE-START */
.pub-revenue-system--purple {
    background: linear-gradient(135deg, #2b1b5a 0%, #3b1d6f 55%, #4c1d95 100%);
}

.pub-revenue-system--purple .pub-revenue-system__bg {
    background:
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.20), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.18), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.10), transparent 55%);
    opacity: 1;
}

.pub-revenue-system--purple .pub-revenue-system__title {
    color: #ffffff;
    text-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
/* PUB-REVENUE-PURPLE-END */

.pub-revenue-system__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
    text-align: center;
}

.pub-revenue-system__title {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.3;
}

.pub-revenue-system__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 26px);
}

.pub-revenue-system__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: clamp(18px, 3vw, 24px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pub-revenue-system__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff, #d9e4ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 18px rgba(0,0,0,0.08);
    font-size: 18px;
}

.pub-revenue-system__icon--arrow::before { content: "📈"; }
.pub-revenue-system__icon--network::before { content: "🕸️"; }
.pub-revenue-system__icon--team::before { content: "👥"; }

.pub-revenue-system__card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}

.pub-revenue-system__card-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4b5563;
}

.pub-revenue-system .pub-attractive__title {
    text-align: center;
}

.pub-revenue-system .pub-attractive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: stretch;
}

.pub-revenue-system .pub-attractive__item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

.pub-revenue-system .pub-attractive__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin: 16px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    background: linear-gradient(135deg, #eef2ff, #d9e4ff);
}

.pub-revenue-system .pub-attractive__icon::before {
    content: "";
    width: 44px;
    height: 44px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.10));
}

.pub-revenue-system .pub-attractive__icon--market {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}
.pub-revenue-system .pub-attractive__icon--market::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M8%2036h32%27/%3E%3Cpath%20d%3D%27M12%2036V26%27/%3E%3Cpath%20d%3D%27M22%2036V20%27/%3E%3Cpath%20d%3D%27M32%2036V14%27/%3E%3Ccircle%20cx%3D%2734%27%20cy%3D%2714%27%20r%3D%276%27/%3E%3Cpath%20d%3D%27M34%2011v6%27/%3E%3Cpath%20d%3D%27M31%2014h6%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--invest {
    background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
}
.pub-revenue-system .pub-attractive__icon--invest::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2032l8-8%206%206%2010-14%27/%3E%3Cpath%20d%3D%27M32%2016h10v10%27/%3E%3Ccircle%20cx%3D%2716%27%20cy%3D%2736%27%20r%3D%277%27/%3E%3Cpath%20d%3D%27M16%2033v6%27/%3E%3Cpath%20d%3D%27M13%2036h6%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--demand {
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}
.pub-revenue-system .pub-attractive__icon--demand::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2718%27%20cy%3D%2718%27%20r%3D%277%27/%3E%3Cpath%20d%3D%27M6%2038c2-7%209-12%2012-12s10%205%2012%2012%27/%3E%3Cpath%20d%3D%27M30%2026l6-6%27/%3E%3Cpath%20d%3D%27M36%2020h6%27/%3E%3Cpath%20d%3D%27M36%2020v-6%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--share {
    background: linear-gradient(135deg, #f5f3ff, #ddd6fe);
}
.pub-revenue-system .pub-attractive__icon--share::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M16%2016h10a10%2010%200%200%201%2010%2010v2%27/%3E%3Cpath%20d%3D%27M12%2024v-2a10%2010%200%200%201%2010-10%27/%3E%3Cpath%20d%3D%27M12%2024l-4-4%27/%3E%3Cpath%20d%3D%27M12%2024l-4%204%27/%3E%3Cpath%20d%3D%27M36%2034l4%204%27/%3E%3Cpath%20d%3D%27M36%2034l4-4%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--expand {
    background: linear-gradient(135deg, #f0f9ff, #bae6fd);
}
.pub-revenue-system .pub-attractive__icon--expand::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2710%27%20y%3D%2710%27%20width%3D%2712%27%20height%3D%2712%27%20rx%3D%272%27/%3E%3Crect%20x%3D%2726%27%20y%3D%2710%27%20width%3D%2712%27%20height%3D%2712%27%20rx%3D%272%27/%3E%3Crect%20x%3D%2710%27%20y%3D%2726%27%20width%3D%2712%27%20height%3D%2712%27%20rx%3D%272%27/%3E%3Crect%20x%3D%2726%27%20y%3D%2726%27%20width%3D%2712%27%20height%3D%2712%27%20rx%3D%272%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--one {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
}
.pub-revenue-system .pub-attractive__icon--one::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2716%27%20r%3D%277%27/%3E%3Cpath%20d%3D%27M10%2040c2-9%2012-14%2014-14s12%205%2014%2014%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--easy {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.pub-revenue-system .pub-attractive__icon--easy::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2712%27%20y%3D%2710%27%20width%3D%2724%27%20height%3D%2728%27%20rx%3D%274%27/%3E%3Cpath%20d%3D%27M20%2022h8%27/%3E%3Cpath%20d%3D%27M24%2032v-6%27/%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2736%27%20r%3D%271.5%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-revenue-system .pub-attractive__icon--smart {
    background: linear-gradient(135deg, #fffbeb, #fde68a);
}
.pub-revenue-system .pub-attractive__icon--smart::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230f172a%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14%2014h20v20H14z%27/%3E%3Cpath%20d%3D%27M18%2024l4%204%208-10%27/%3E%3C/g%3E%3C/svg%3E");
}

.pub-revenue-system .pub-attractive__caption {
    padding: 12px 12px 14px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.35;
    font-size: 0.98rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .pub-revenue-system .pub-attractive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pub-revenue-system .pub-attractive__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* no-op */
}

.pub-revenue-system__card:hover,
.pub-revenue-system__card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    border-color: #d1d5db;
}

@media (max-width: 1024px) {
    .pub-revenue-system {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        padding: 56px 18px 90px;
    }
    .pub-revenue-system__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pub-revenue-system {
        padding: 48px 16px 80px;
    }
    .pub-revenue-system__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-revenue-system__card {
        transition: none;
        transform: none;
    }
    .pub-revenue-system__card:hover,
    .pub-revenue-system__card:focus-within {
        transform: none;
    }
}

/* -------------------------------------------------------------
   6번 섹션: 성공이 습관이 되는 곳, 홍보팡
------------------------------------------------------------- */
.pub-success-habit {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(60px, 7vw, 110px) clamp(18px, 4vw, 32px);
    background: linear-gradient(135deg, #f4f7f2, #e4f0e5);
    box-sizing: border-box;
    overflow: hidden;
}

.pub-success-habit__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(120, 170, 130, 0.25), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(240, 190, 140, 0.20), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.35), transparent 50%);
    opacity: 0.7;
    z-index: 1;
}

.pub-success-habit__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
    text-align: center;
}

.pub-success-habit__title {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 900;
    color: #1f2937;
    line-height: 1.3;
}

.pub-success-habit__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 3vw, 26px);
    align-items: center;
}

.pub-success-habit__checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.pub-success-habit__check-item {
    padding: 12px 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    font-weight: 700;
    color: #1f2937;
}

.pub-success-habit__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pub-success-habit__phone {
    width: 200px;
    height: 380px;
    border-radius: 28px;
    background: linear-gradient(145deg, #e7ecf3, #d6dde8);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 18px 40px rgba(0,0,0,0.15);
    position: relative;
}

.pub-success-habit__phone-screen {
    position: absolute;
    inset: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f2f6fb);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 12px 24px rgba(0,0,0,0.08);
}

.pub-success-habit__phone-hand {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 30% 30%, #ffd6b3, #f7b07a);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.pub-success-habit__appliances {
    display: flex;
    gap: clamp(10px, 2vw, 14px);
    align-items: center;
}

.pub-success-habit__appliance {
    width: 110px;
    height: 130px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fbff, #e9eef5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 12px 22px rgba(0,0,0,0.08);
    position: relative;
}

.pub-success-habit__appliance--washer::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 10px;
    background: #d9e2ef;
}
.pub-success-habit__appliance--washer::after {
    content: "";
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 30% 30%, #9ac6ff, #4f9bff);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.pub-success-habit__appliance--fridge::before {
    content: "";
    position: absolute;
    top: 12px; left: 10px; right: 10px; bottom: 54px;
    border-radius: 10px;
    background: #dfe6f1;
}
.pub-success-habit__appliance--fridge::after {
    content: "";
    position: absolute;
    top: 72px; left: 10px; right: 10px; bottom: 12px;
    border-radius: 10px;
    background: #d7deea;
}

.pub-success-habit__icons {
    display: flex;
    gap: 8px;
}

.pub-success-habit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 18px rgba(0,0,0,0.05);
    font-weight: 800;
    color: #111827;
}

.pub-success-habit__icon--check { color: #2f855a; }
.pub-success-habit__icon--thumb { color: #2563eb; }

.pub-success-habit__body {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.pub-success-habit__text {
    margin: 0;
    font-size: clamp(1rem, 2.3vw, 1.15rem);
    line-height: 1.8;
    color: #334155;
}

.pub-success-habit__quote {
    font-weight: 800;
    color: #1f2937;
    font-size: 1.05rem;
}

.pub-success-habit__testimonial {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.05);
    max-width: 720px;
}

.pub-success-habit__testimonial-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0c7c0, #f8dedd);
}

.pub-success-habit__testimonial-text {
    font-size: 0.95rem;
    color: #374151;
    text-align: left;
}

@media (max-width: 1024px) {
    .pub-success-habit {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        padding: 54px 18px 90px;
    }
    .pub-success-habit__content {
        grid-template-columns: 1fr;
    }
    .pub-success-habit__checklist {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .pub-success-habit {
        padding: 48px 16px 80px;
    }
    .pub-success-habit__phone {
        width: 180px;
        height: 340px;
    }
    .pub-success-habit__appliance {
        width: 100px;
        height: 120px;
    }
    .pub-success-habit__testimonial {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-success-habit__phone-hand,
    .pub-success-habit__appliance--washer::after,
    .pub-success-habit__appliance--fridge::after {
        animation: none;
    }
}

/* -------------------------------------------------------------
   6번 섹션 리뉴얼: 파트너 브랜드 소개 (첨부 반영)
------------------------------------------------------------- */
/* PUB-SUCCESS-BRANDS-START */
.pub-success-habit--brands {
    background: linear-gradient(180deg, #0b3b6a 0%, #08325b 55%, #062a4d 100%);
}

.pub-success-habit--brands .pub-success-habit__bg {
    background:
        radial-gradient(circle at 20% 25%, rgba(59, 130, 246, 0.20), transparent 48%),
        radial-gradient(circle at 80% 15%, rgba(14, 165, 233, 0.18), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.10), transparent 55%);
    opacity: 1;
}

.pub-success-habit--brands .pub-brands {
    position: relative;
    z-index: 2;
}

.pub-success-habit--brands .pub-brands__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.pub-success-habit--brands .pub-brands__logo-orbit {
    width: min(320px, 88vw);
    height: min(320px, 88vw);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 52px rgba(0,0,0,0.22);
    border: 1px solid rgba(15, 23, 42, 0.10);
    position: relative;
    overflow: hidden;
}

.pub-success-habit--brands .pub-brands__logo {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.10);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    backdrop-filter: blur(6px);
}

.pub-success-habit--brands .pub-brands__logo--samsung {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    padding: 12px 16px;
    color: #0b5cff;
    background: rgba(255,255,255,0.95);
}

.pub-success-habit--brands .pub-brands__logo--lg {
    left: 18%;
    top: 26%;
    transform: translate(-50%, -50%);
    color: #c4002f;
}

.pub-success-habit--brands .pub-brands__logo--sk {
    right: 18%;
    top: 26%;
    transform: translate(50%, -50%);
    color: #ef4444;
}

.pub-success-habit--brands .pub-brands__logo--lotte {
    left: 22%;
    bottom: 28%;
    transform: translate(-50%, 50%);
    color: #dc2626;
}

.pub-success-habit--brands .pub-brands__logo--hyundai {
    right: 22%;
    bottom: 28%;
    transform: translate(50%, 50%);
    color: #2563eb;
}

.pub-success-habit--brands .pub-brands__desc {
    margin: 0;
    width: min(560px, 92vw);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 16px 16px 18px;
    box-shadow: 0 18px 34px rgba(0,0,0,0.18);
    font-weight: 900;
    font-size: clamp(1.05rem, 2.7vw, 1.25rem);
    line-height: 1.55;
    color: #0f172a;
}

.pub-success-habit--brands .pub-brands__desc strong {
    color: #0b5cff;
}

.pub-success-habit--brands .pub-brands__pointer {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid rgba(255,255,255,0.96);
    filter: drop-shadow(0 10px 16px rgba(0,0,0,0.14));
    margin-top: -6px;
}

.pub-success-habit--brands .pub-brands__grid {
    width: 100%;
    max-width: 980px;
    background: rgba(11, 92, 255, 0.78);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 22px 48px rgba(0,0,0,0.22);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pub-success-habit--brands .pub-brands__badge {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 10px;
    padding: 10px 8px;
    font-weight: 900;
    font-size: 0.9rem;
    color: #0f172a;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 12px 22px rgba(0,0,0,0.10);
}

@media (max-width: 768px) {
    .pub-success-habit--brands .pub-brands__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .pub-success-habit--brands .pub-brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pub-success-habit--brands .pub-brands__badge {
        font-size: 0.88rem;
        padding: 10px 6px;
    }
}
/* PUB-SUCCESS-BRANDS-END */

/* -------------------------------------------------------------
   FAQ 섹션
------------------------------------------------------------- */
.pub-faq {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(56px, 7vw, 110px) clamp(18px, 4vw, 32px);
    background: #f8f9fb;
    box-sizing: border-box;
    overflow: hidden;
}

/* -------------------------------------------------------------
   FAQ 상단: 렌탈 제품 사업 혜택 섹션 (첨부 반영)
------------------------------------------------------------- */
/* PUB-BENEFITS-START */
.pub-benefits {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 54px 18px 64px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-benefits__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 55%, #f3f4f6 100%);
    z-index: 1;
}

.pub-benefits__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-benefits__title {
    margin: 0 0 22px 0;
    text-align: center;
    font-weight: 900;
    font-size: clamp(1.55rem, 4.2vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.pub-benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pub-benefits__item {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: 1fr 54px;
    gap: 12px;
    align-items: center;
}

.pub-benefits__text {
    text-align: left;
}

.pub-benefits__item-title {
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.pub-benefits__item-title strong {
    color: #0b5cff;
}

.pub-benefits__item-desc {
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #475569;
    font-weight: 700;
}

.pub-benefits__icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b5cff, #0ea5e9);
    box-shadow: 0 16px 30px rgba(11, 92, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pub-benefits__icon::before {
    content: "";
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.16));
}

.pub-benefits__icon--coin::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2724%27%20r%3D%2716%27/%3E%3Cpath%20d%3D%27M24%2016v16%27/%3E%3Cpath%20d%3D%27M20%2019h8%27/%3E%3Cpath%20d%3D%27M20%2029h8%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-benefits__icon--appliance::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2714%27%20y%3D%2710%27%20width%3D%2720%27%20height%3D%2728%27%20rx%3D%274%27/%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2726%27%20r%3D%277%27/%3E%3Cpath%20d%3D%27M18%2016h12%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-benefits__icon--person::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2718%27%20r%3D%277%27/%3E%3Cpath%20d%3D%27M12%2040c2-9%2010-14%2012-14s10%205%2012%2014%27/%3E%3Cpath%20d%3D%27M34%2014h8%27/%3E%3Cpath%20d%3D%27M38%2010v8%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-benefits__icon--card::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2710%27%20y%3D%2714%27%20width%3D%2728%27%20height%3D%2720%27%20rx%3D%274%27/%3E%3Cpath%20d%3D%27M10%2022h28%27/%3E%3Cpath%20d%3D%27M16%2028h10%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-benefits__icon--zero::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2724%27%20r%3D%2716%27/%3E%3Cpath%20d%3D%27M18%2018l12%2012%27/%3E%3Cpath%20d%3D%27M30%2018L18%2030%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-benefits__icon--wrench::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M28%2012a8%208%200%200%200-10%209l10%2010a8%208%200%200%200%209-10%27/%3E%3Cpath%20d%3D%27M16%2028L10%2034%27/%3E%3Cpath%20d%3D%27M10%2034l4%204%27/%3E%3C/g%3E%3C/svg%3E");
}

/* PUB-BENEFITS-END */

/* -------------------------------------------------------------
   FAQ 상단: 도움/지원 섹션 (첨부 반영, 그린 배경)
------------------------------------------------------------- */
/* PUB-SUPPORT-START */
.pub-support {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 64px 18px 72px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-support__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0c6a4d 0%, #0b7a4f 45%, #0a6f47 100%);
    z-index: 1;
}

.pub-support__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.12), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,0.14), transparent 55%);
    opacity: 0.9;
}

.pub-support__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-support__headline {
    margin: 0 0 26px 0;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pub-support__headline-top {
    display: block;
    font-weight: 800;
    font-size: clamp(1.05rem, 3.4vw, 1.35rem);
    opacity: 0.95;
}

.pub-support__headline-main {
    display: block;
    margin-top: 10px;
    font-weight: 900;
    font-size: clamp(1.55rem, 4.8vw, 2.05rem);
    line-height: 1.2;
}

.pub-support__card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 18px 26px;
    box-shadow: 0 28px 60px rgba(0,0,0,0.18);
    text-align: center;
}

/* 말풍선 포인터 */
.pub-support__card::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 18px solid #ffffff;
}

.pub-support__kicker {
    display: inline-block;
    margin: 0 auto 12px;
    padding: 8px 14px;
    background: #1f2937;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.pub-support__kicker strong {
    color: #93c5fd;
}

.pub-support__title {
    margin: 0 0 20px 0;
    font-weight: 900;
    color: #111827;
    font-size: clamp(1.35rem, 4.4vw, 2.0rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pub-support__title-accent {
    color: #0b5cff;
}

.pub-support__icons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.pub-support__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.pub-support__row--bottom {
    gap: 14px;
}

.pub-support__item {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 92px;
}

.pub-support__icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: #eef0f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.pub-support__icon::before {
    content: "";
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.95;
}

.pub-support__label {
    font-weight: 900;
    color: #111827;
    font-size: 0.92rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pub-support__label strong {
    font-weight: 900;
}

.pub-support__plus {
    font-weight: 900;
    color: #0b5cff;
    font-size: 1.35rem;
    line-height: 1;
    transform: translateY(-6px);
}

/* 아이콘: data-uri SVG (장식용) */
.pub-support__icon--walk::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23111827%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2732%27%20cy%3D%279%27%20r%3D%274%27/%3E%3Cpath%20d%3D%27M24%2022l6-7%27/%3E%3Cpath%20d%3D%27M24%2022l6%206%27/%3E%3Cpath%20d%3D%27M30%2015l-8%203%27/%3E%3Cpath%20d%3D%27M24%2022l-6%2014%27/%3E%3Cpath%20d%3D%27M30%2028l-2%2011%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-support__icon--coins::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23111827%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cellipse%20cx%3D%2720%27%20cy%3D%2716%27%20rx%3D%278%27%20ry%3D%274%27/%3E%3Cpath%20d%3D%27M12%2016v8c0%202.2%203.6%204%208%204s8-1.8%208-4v-8%27/%3E%3Cellipse%20cx%3D%2728%27%20cy%3D%2730%27%20rx%3D%278%27%20ry%3D%274%27/%3E%3Cpath%20d%3D%27M20%2030v4c0%202.2%203.6%204%208%204s8-1.8%208-4v-4%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-support__icon--bag::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23111827%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M18%2016c0-4%203-7%206-7s6%203%206%207%27/%3E%3Cpath%20d%3D%27M14%2018h20l-2%2022H16l-2-22z%27/%3E%3Cpath%20d%3D%27M22%2026h4%27/%3E%3Cpath%20d%3D%27M24%2024v4%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-support__icon--hand::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23111827%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%2030c6%200%209-8%2016-8h8%27/%3E%3Cpath%20d%3D%27M18%2034h14c4%200%206-2%206-6%27/%3E%3Cpath%20d%3D%27M18%2034l-6-4%27/%3E%3Ccircle%20cx%3D%2734%27%20cy%3D%2716%27%20r%3D%276%27/%3E%3Cpath%20d%3D%27M34%2012v8%27/%3E%3Cpath%20d%3D%27M31%2015h6%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-support__icon--chart::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23111827%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2036V14%27/%3E%3Cpath%20d%3D%27M12%2036h24%27/%3E%3Cpath%20d%3D%27M16%2030l6-7%205%204%209-12%27/%3E%3Ccircle%20cx%3D%2716%27%20cy%3D%2730%27%20r%3D%271.5%27%20fill%3D%27%23111827%27%20stroke%3D%27none%27/%3E%3Ccircle%20cx%3D%2722%27%20cy%3D%2723%27%20r%3D%271.5%27%20fill%3D%27%23111827%27%20stroke%3D%27none%27/%3E%3Ccircle%20cx%3D%2727%27%20cy%3D%2727%27%20r%3D%271.5%27%20fill%3D%27%23111827%27%20stroke%3D%27none%27/%3E%3Ccircle%20cx%3D%2736%27%20cy%3D%2715%27%20r%3D%271.5%27%20fill%3D%27%23111827%27%20stroke%3D%27none%27/%3E%3C/g%3E%3C/svg%3E");
}

@media (min-width: 768px) {
    .pub-support {
        padding: 78px 18px 88px;
    }
    .pub-support__card {
        padding: 34px 26px 30px;
    }
    .pub-support__item {
        min-width: 120px;
    }
    .pub-support__icon {
        width: 86px;
        height: 86px;
    }
}
/* PUB-SUPPORT-END */

/* -------------------------------------------------------------
   FAQ 상단: 고민 사례 섹션 (첨부 반영, 브랜드: 유어마케팅)
------------------------------------------------------------- */
/* PUB-CASE-START */
.pub-case {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 56px 18px 62px;
    box-sizing: border-box;
    background: #ffffff;
    overflow: hidden;
}

.pub-case__inner {
    max-width: 980px;
    margin: 0 auto;
}

.pub-case__eyebrow {
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: 900;
    color: #111827;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.pub-case__title {
    margin: 0 0 26px 0;
    text-align: center;
}

.pub-case__title-em {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1.5rem, 4.8vw, 2.05rem);
    letter-spacing: -0.02em;
}

.pub-case__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pub-case__row {
    display: grid;
    align-items: center;
    gap: 14px;
}

.pub-case__row--bubble-left {
    grid-template-columns: 1fr 106px;
}

.pub-case__row--bubble-right {
    grid-template-columns: 106px 1fr;
}

.pub-case__bubble {
    position: relative;
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 12px;
    padding: 14px 14px;
    box-shadow: 0 18px 34px rgba(17,17,17,0.06);
}

.pub-case__bubble-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

/* 말풍선 꼬리: 좌/우 방향에 따라 다르게 */
.pub-case__row--bubble-left .pub-case__bubble::after,
.pub-case__row--bubble-left .pub-case__bubble::before {
    content: "";
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}
.pub-case__row--bubble-left .pub-case__bubble::before {
    right: -18px;
    border-left: 18px solid #111111;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.pub-case__row--bubble-left .pub-case__bubble::after {
    right: -15px;
    border-left: 16px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.pub-case__row--bubble-right .pub-case__bubble::after,
.pub-case__row--bubble-right .pub-case__bubble::before {
    content: "";
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}
.pub-case__row--bubble-right .pub-case__bubble::before {
    left: -18px;
    border-right: 18px solid #111111;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.pub-case__row--bubble-right .pub-case__bubble::after {
    left: -15px;
    border-right: 16px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.pub-case__avatar {
    width: 106px;
    height: 106px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 25%, #34a7ff 0%, #0b5cff 58%, #0a3dbf 100%);
    box-shadow: 0 26px 52px rgba(11,92,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pub-case__avatar::before {
    content: "";
    width: 62px;
    height: 62px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.92;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
}

/* 아바타 아이콘 4종(사진 대신 단순 실루엣) */
.pub-case__avatar--a::before,
.pub-case__avatar--b::before,
.pub-case__avatar--c::before,
.pub-case__avatar--d::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2732%27%20cy%3D%2724%27%20r%3D%2712%27/%3E%3Cpath%20d%3D%27M12%2056c4-13%2014-20%2020-20s16%207%2020%2020%27/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 360px) {
    .pub-case__row--bubble-left,
    .pub-case__row--bubble-right {
        grid-template-columns: 1fr 92px;
    }
    .pub-case__row--bubble-right {
        grid-template-columns: 92px 1fr;
    }
    .pub-case__avatar {
        width: 92px;
        height: 92px;
    }
    .pub-case__bubble-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .pub-case {
        padding: 70px 18px 78px;
    }
    .pub-case__list {
        gap: 22px;
    }
    .pub-case__bubble {
        padding: 18px 18px;
    }
    .pub-case__bubble-text {
        font-size: 1.0rem;
    }
}
/* PUB-CASE-END */

/* -------------------------------------------------------------
   FAQ 상단: 장벽 제거 섹션 (첨부 반영, 브랜드: 유어마케팅)
------------------------------------------------------------- */
/* PUB-BARRIERS-START */
.pub-barriers {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 62px 18px 70px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-barriers__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b5cff 0%, #2d8cff 45%, #0b5cff 100%);
    z-index: 1;
}

.pub-barriers__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18), transparent 46%),
        radial-gradient(circle at 88% 30%, rgba(0,0,0,0.18), transparent 58%);
    opacity: 0.95;
}

.pub-barriers__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-barriers__title {
    margin: 0 0 26px 0;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(1.35rem, 4.5vw, 2.05rem);
    line-height: 1.25;
}

.pub-barriers__brand {
    display: inline-block;
    font-weight: 900;
    opacity: 0.95;
}

.pub-barriers__title-strong {
    font-weight: 900;
}

.pub-barriers__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pub-barriers__item {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.25;
    box-shadow: 0 16px 30px rgba(0,0,0,0.10);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .pub-barriers {
        padding: 76px 18px 88px;
    }
    .pub-barriers__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }
    .pub-barriers__item {
        padding: 16px 12px;
        min-height: 62px;
        font-size: 1.0rem;
    }
}
/* PUB-BARRIERS-END */

/* -------------------------------------------------------------
   FAQ 상단: 데이터/신뢰 섹션 (문구/레이아웃 재구성)
------------------------------------------------------------- */
/* PUB-STORY-START */
.pub-story {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 62px 18px 64px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 55%, #ffffff 100%);
    overflow: hidden;
    z-index: 0;
}

.pub-story__inner {
    max-width: 980px;
    margin: 0 auto;
}

.pub-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

.pub-story__title {
    margin: 0 0 14px 0;
    font-weight: 900;
    font-size: clamp(1.35rem, 4.8vw, 2.05rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #111827;
}

.pub-story__title-accent {
    display: block;
    margin-top: 8px;
    color: #0b5cff;
    white-space: nowrap; /* '압도적 차이'가 밀리지 않게 한 줄 고정 */
    word-break: keep-all;
    letter-spacing: -0.04em;
    font-size: clamp(1.15rem, 3.6vw, 1.85rem);
}

.pub-story__body {
    font-weight: 800;
    font-size: 1.02rem;
    line-height: 1.65;
    letter-spacing: -0.02em;
    color: #111827;
}

.pub-story__p {
    margin: 0;
}

.pub-story__p + .pub-story__p {
    margin-top: 10px;
}

.pub-story__num {
    font-weight: 900;
    color: #0b5cff;
}

.pub-story__brand {
    font-weight: 900;
    color: #0b5cff;
}

.pub-story__strong {
    font-weight: 900;
    color: #0b5cff;
}

.pub-story__visual {
    border-radius: 18px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: 0 26px 60px rgba(17,17,17,0.10);
}

.pub-story__img {
    width: 100%;
    height: clamp(240px, 56vw, 420px);
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

@media (min-width: 768px) {
    .pub-story {
        padding: 78px 18px 86px;
    }
    .pub-story__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 26px;
    }
    .pub-story__body {
        font-size: 1.05rem;
    }
}
/* PUB-STORY-END */

/* -------------------------------------------------------------
   FAQ 상단: 솔루션 장점 그리드 섹션 (첨부 반영, 그린 배경)
------------------------------------------------------------- */
/* PUB-ADVGRID-START */
.pub-advgrid {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 54px 16px 62px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-advgrid__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0c6a4d 0%, #0b7a4f 55%, #0a6f47 100%);
    z-index: 1;
}

.pub-advgrid__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.16), transparent 46%),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,0.18), transparent 60%);
    opacity: 0.95;
}

.pub-advgrid__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-advgrid__title {
    margin: 0 0 18px 0;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1.6rem, 4.2vw, 2.25rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.pub-advgrid__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.pub-advgrid__item {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 10px;
    padding: 14px 10px 12px;
    text-align: center;
    box-shadow: 0 18px 34px rgba(0,0,0,0.14);
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 112px;
}

.pub-advgrid__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.pub-advgrid__icon::before {
    content: "";
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pub-advgrid__txt {
    display: block;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.22;
    font-size: 0.92rem;
    word-break: keep-all;
}

.pub-advgrid__txt strong {
    display: inline-block;
    margin-top: 2px;
    font-weight: 900;
    color: #0b5cff;
}

.pub-advgrid__note {
    display: block;
    margin-top: 3px;
    font-style: normal;
    font-weight: 700;
    font-size: 0.78rem;
    color: #475569;
}

/* 아이콘 세트: 파란 라인 아이콘(간단) */
.pub-advgrid__icon--monitor::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%279%27%20y%3D%2710%27%20width%3D%2730%27%20height%3D%2720%27%20rx%3D%274%27/%3E%3Cpath%20d%3D%27M16%2038h16%27/%3E%3Cpath%20d%3D%27M24%2030v8%27/%3E%3Cpath%20d%3D%27M18%2020l4%204%208-8%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--atom::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2724%27%20r%3D%274%27/%3E%3Cellipse%20cx%3D%2724%27%20cy%3D%2724%27%20rx%3D%2718%27%20ry%3D%278%27/%3E%3Cellipse%20cx%3D%2724%27%20cy%3D%2724%27%20rx%3D%278%27%20ry%3D%2718%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--edu::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%2016l14-6%2014%206-14%206-14-6z%27/%3E%3Cpath%20d%3D%27M14%2022v10c0%203%206%206%2010%206s10-3%2010-6V22%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--search::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2721%27%20cy%3D%2721%27%20r%3D%2710%27/%3E%3Cpath%20d%3D%27M29%2029l10%2010%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--gift::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2022h24v18H12z%27/%3E%3Cpath%20d%3D%27M10%2022h28v-6H10v6z%27/%3E%3Cpath%20d%3D%27M24%2016v24%27/%3E%3Cpath%20d%3D%27M24%2016c-6%200-6-8%200-6%203%201%205%203%206%206%27/%3E%3Cpath%20d%3D%27M24%2016c6%200%206-8%200-6-3%201-5%203-6%206%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--calendar::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2710%27%20y%3D%2712%27%20width%3D%2728%27%20height%3D%2726%27%20rx%3D%274%27/%3E%3Cpath%20d%3D%27M16%2010v6%27/%3E%3Cpath%20d%3D%27M32%2010v6%27/%3E%3Cpath%20d%3D%27M10%2019h28%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--globe::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2724%27%20r%3D%2716%27/%3E%3Cpath%20d%3D%27M8%2024h32%27/%3E%3Cpath%20d%3D%27M24%208c6%206%206%2026%200%2032%27/%3E%3Cpath%20d%3D%27M24%208c-6%206-6%2026%200%2032%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--org::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2714%27%20r%3D%274%27/%3E%3Ccircle%20cx%3D%2714%27%20cy%3D%2734%27%20r%3D%274%27/%3E%3Ccircle%20cx%3D%2734%27%20cy%3D%2734%27%20r%3D%274%27/%3E%3Cpath%20d%3D%27M24%2018v6%27/%3E%3Cpath%20d%3D%27M24%2024H14v6%27/%3E%3Cpath%20d%3D%27M24%2024h10v6%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-advgrid__icon--hand::before,
.pub-advgrid__icon--chart::before,
.pub-advgrid__icon--digital::before,
.pub-advgrid__icon--people::before,
.pub-advgrid__icon--support::before,
.pub-advgrid__icon--contract::before,
.pub-advgrid__icon--phone::before,
.pub-advgrid__icon--gear::before,
.pub-advgrid__icon--headset::before,
.pub-advgrid__icon--doc::before,
.pub-advgrid__icon--update::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2036h24%27/%3E%3Cpath%20d%3D%27M12%2036V14%27/%3E%3Cpath%20d%3D%27M16%2028l6-7%205%204%209-12%27/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 420px) {
    .pub-advgrid__grid {
        gap: 8px;
    }
    .pub-advgrid__item {
        padding: 12px 8px 10px;
        min-height: 106px;
    }
    .pub-advgrid__txt {
        font-size: 0.88rem;
    }
    .pub-advgrid__note {
        font-size: 0.74rem;
    }
}

@media (max-width: 360px) {
    .pub-advgrid__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .pub-advgrid__item--wide {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .pub-advgrid {
        padding: 70px 18px 82px;
    }
    .pub-advgrid__grid {
        gap: 12px;
    }
    .pub-advgrid__item {
        min-height: 120px;
    }
}
/* PUB-ADVGRID-END */

/* -------------------------------------------------------------
   FAQ 상단: 조직 구축 시스템 섹션 (첨부 반영)
------------------------------------------------------------- */
/* PUB-ORG-START */
.pub-org {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 56px 18px 62px;
    box-sizing: border-box;
    background: #ffffff;
    overflow: hidden;
}

.pub-org__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.pub-org__title {
    margin: 0 0 18px 0;
    font-weight: 900;
    font-size: clamp(1.6rem, 4.4vw, 2.2rem);
    letter-spacing: -0.03em;
    color: #111827;
}

.pub-org__diagram {
    position: relative;
    max-width: 820px;
    margin: 0 auto 16px;
    padding: 8px 0 6px;
}

.pub-org__root {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #0b5cff;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 16px 34px rgba(11,92,255,0.22);
}

.pub-org__children {
    list-style: none;
    margin: 18px auto 0;
    padding: 22px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

/* 연결선: root 아래 세로선 + children 상단 가로선 */
.pub-org__diagram::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #cbd5e1;
}

.pub-org__children::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 10px;
    height: 2px;
    background: #cbd5e1;
}

.pub-org__child {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #0b5cff;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 26px rgba(11,92,255,0.18);
    white-space: nowrap;
}

.pub-org__child::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: #cbd5e1;
}

.pub-org__desc {
    margin-top: 10px;
    color: #111827;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.65;
}

.pub-org__desc strong {
    color: #0b5cff;
    font-weight: 900;
}

.pub-org__cards {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.pub-org__card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.pub-org__card p {
    margin: 0;
    text-align: justify; /* 우측이 비지 않게 문장 나열 */
    text-justify: inter-word;
    word-break: keep-all;
}

.pub-org__br {
    display: none; /* 모바일/PC 모두 강제 줄바꿈 제거 */
}

.pub-org__card--accent {
    background: #ffffff;
    border-color: rgba(11, 92, 255, 0.22);
    box-shadow: 0 18px 40px rgba(11, 92, 255, 0.10);
    position: relative;
}

.pub-org__card--accent::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #0b5cff;
    border-radius: 999px;
}

@media (max-width: 560px) {
    /* 작은 화면에서는 선 깨짐 방지: 2열 랩 + 선 숨김 */
    .pub-org__diagram::after,
    .pub-org__children::before,
    .pub-org__child::before {
        display: none;
    }
    .pub-org__children {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 14px;
        gap: 10px 10px;
    }
    .pub-org__child {
        flex: 0 0 calc(50% - 10px);
        height: 38px;
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .pub-org {
        padding: 70px 18px 78px;
    }
    .pub-org__desc {
        font-size: 1.02rem;
    }
    .pub-org__cards {
        gap: 14px;
    }
    .pub-org__card {
        padding: 18px 18px;
    }
}
/* PUB-ORG-END */

/* -------------------------------------------------------------
   FAQ 상단: 유어마케팅 창업조건 표 (첨부 반영, 밝은 파란 배경)
------------------------------------------------------------- */
/* PUB-TERMS-START */
.pub-terms {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 56px 18px 66px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-terms__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #eaf4ff 0%, #dff0ff 55%, #eaf4ff 100%);
    z-index: 1;
}

.pub-terms__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(11,92,255,0.10), transparent 52%),
        radial-gradient(circle at 88% 22%, rgba(14,165,233,0.10), transparent 56%);
    opacity: 0.95;
}

.pub-terms__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.pub-terms__title {
    margin: 0 0 18px 0;
    text-align: center;
    font-weight: 900;
    font-size: clamp(1.7rem, 4.6vw, 2.35rem);
    letter-spacing: -0.03em;
    color: #111827;
}

.pub-terms__table-wrap {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(17,17,17,0.10);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.pub-terms__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pub-terms__th {
    background: #0b5cff;
    color: #ffffff;
    font-weight: 900;
    padding: 14px 12px;
    font-size: 1.0rem;
    letter-spacing: -0.02em;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.pub-terms__th--blank {
    width: 86px;
    background: #0b5cff;
    border-right: 1px solid rgba(255,255,255,0.22);
}

.pub-terms__group {
    width: 86px;
    background: #f1f5f9;
    color: #111827;
    font-weight: 900;
    text-align: center;
    padding: 12px 8px;
    letter-spacing: -0.02em;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pub-terms__rowhead {
    background: #f8fafc;
    color: #111827;
    font-weight: 800;
    text-align: center;
    padding: 12px 10px;
    letter-spacing: -0.02em;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pub-terms__cell {
    background: #ffffff;
    color: #111827;
    font-weight: 800;
    text-align: center;
    padding: 12px 10px;
    letter-spacing: -0.02em;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pub-terms__accent {
    color: #0b5cff;
    font-weight: 900;
}

/* 줄무늬 느낌(가독성) */
.pub-terms__table tbody tr:nth-child(even) .pub-terms__rowhead,
.pub-terms__table tbody tr:nth-child(even) .pub-terms__cell {
    background: #f3f8ff;
}

@media (max-width: 560px) {
    .pub-terms__th,
    .pub-terms__rowhead,
    .pub-terms__cell {
        font-size: 0.92rem;
        padding: 10px 8px;
    }
    .pub-terms__th--blank,
    .pub-terms__group {
        width: 72px;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .pub-terms {
        padding: 70px 18px 82px;
    }
    .pub-terms__th {
        font-size: 1.05rem;
    }
}
/* PUB-TERMS-END */

.pub-faq__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,0.03), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,0.03), transparent 45%);
    opacity: 0.8;
    z-index: 1;
}

/* -------------------------------------------------------------
   FAQ 하단: 자동화 수익 파이프라인 (그린 배경)
------------------------------------------------------------- */
/* PUB-PIPELINE-START */
.pub-pipeline {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 66px 18px 72px;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-pipeline__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0c6a4d 0%, #0b7a4f 55%, #0a6f47 100%);
    z-index: 1;
}

.pub-pipeline__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.14), transparent 46%),
        radial-gradient(circle at 88% 30%, rgba(0,0,0,0.18), transparent 58%);
    opacity: 0.95;
}

.pub-pipeline__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.pub-pipeline__title {
    margin: 0;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    line-height: 1.15;
    text-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.pub-pipeline__en {
    display: inline-block;
    font-weight: 800;
    font-size: 0.9em;
    opacity: 0.95;
}

.pub-pipeline__lead {
    margin: 14px auto 0;
    max-width: 920px;
    color: rgba(255,255,255,0.95);
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    line-height: 1.35;
}

.pub-pipeline__map {
    margin: 28px auto 0;
    position: relative;
    max-width: 940px;
    min-height: 420px;
}

/* 연결선(마인드맵 느낌): 가로 + 세로 1개씩 */
.pub-pipeline__map::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.32);
}

.pub-pipeline__map::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 34%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.32);
}

.pub-pipeline__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 25%, #34a7ff 0%, #0b5cff 62%, #0a3dbf 100%);
    color: #ffffff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.02em;
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.pub-pipeline__node {
    position: absolute;
    width: min(290px, 34vw);
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.16);
    text-align: left;
}

.pub-pipeline__node--left {
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
}

.pub-pipeline__node--right {
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
}

.pub-pipeline__node--bottom {
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
}

.pub-pipeline__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.pub-pipeline__icon::before {
    content: "";
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pub-pipeline__icon--rental::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2724%27%20cy%3D%2724%27%20r%3D%2716%27/%3E%3Cpath%20d%3D%27M24%2014v20%27/%3E%3Cpath%20d%3D%27M18%2019h12%27/%3E%3Cpath%20d%3D%27M18%2029h12%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-pipeline__icon--store::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M10%2020l4-8h20l4%208%27/%3E%3Cpath%20d%3D%27M12%2020v16h24V20%27/%3E%3Cpath%20d%3D%27M20%2036V26h8v10%27/%3E%3C/g%3E%3C/svg%3E");
}
.pub-pipeline__icon--ai::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2048%2048%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230b5cff%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%2714%27%20y%3D%2714%27%20width%3D%2720%27%20height%3D%2720%27%20rx%3D%276%27/%3E%3Cpath%20d%3D%27M24%2010v4%27/%3E%3Cpath%20d%3D%27M24%2034v4%27/%3E%3Cpath%20d%3D%27M10%2024h4%27/%3E%3Cpath%20d%3D%27M34%2024h4%27/%3E%3Cpath%20d%3D%27M20%2022h8%27/%3E%3Cpath%20d%3D%27M20%2026h8%27/%3E%3C/g%3E%3C/svg%3E");
}

.pub-pipeline__node-title {
    margin-top: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111827;
    font-size: 1.05rem;
}

.pub-pipeline__node-desc {
    margin-top: 6px;
    font-weight: 800;
    color: #475569;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.pub-pipeline__highlight {
    margin: 22px auto 0;
    max-width: 940px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 14px 14px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.pub-pipeline__highlight strong {
    color: #eaf2ff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pub-pipeline__cta-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.pub-pipeline__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 28px;
    border-radius: 999px;
    /* 화려한 CTA: 컬러 그라데이션 + 쉬머 레이어 */
    background-image:
        linear-gradient(135deg, #00d2ff 0%, #0072ff 30%, #7f00ff 62%, #00ffcc 100%),
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.65) 45%, transparent 60%);
    background-size: 320% 320%, 220% 100%;
    background-position: 0% 50%, -120% 0%;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    /* 어떤 배경 구간에서도 글자 가독성 확보 */
    text-shadow:
        0 2px 0 rgba(0,0,0,0.20),
        0 10px 24px rgba(0,0,0,0.22);
    box-shadow:
        0 24px 56px rgba(0,0,0,0.22),
        0 0 0 2px rgba(255,255,255,0.22) inset;
    border: 2px solid rgba(255,255,255,0.55);
    position: relative;
    isolation: isolate;
    transform: translateZ(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    animation:
        pubPipelineCtaBg 3.2s ease-in-out infinite,
        pubPipelineCtaShine 2.2s linear infinite;
}

.pub-pipeline__cta:visited {
    color: #ffffff !important;
}

.pub-pipeline__cta::after {
    content: ">";
    font-weight: 900;
    opacity: 0.9;
}

.pub-pipeline__cta::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.20), transparent 60%);
    z-index: -1;
    opacity: 0.9;
    animation: pubPipelineCtaPulse 1.8s ease-in-out infinite;
}

.pub-pipeline__cta:hover,
.pub-pipeline__cta:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 30px 68px rgba(0,0,0,0.26);
    filter: saturate(1.15) brightness(1.04);
    color: #ffffff !important;
}

@media (prefers-reduced-motion: reduce) {
    .pub-pipeline__cta,
    .pub-pipeline__cta::before {
        animation: none;
        transition: none;
    }
}

@keyframes pubPipelineCtaBg {
    0%, 100% { background-position: 0% 50%, -120% 0%; }
    50% { background-position: 100% 50%, -120% 0%; }
}

@keyframes pubPipelineCtaShine {
    0% { background-position: 0% 50%, -120% 0%; }
    100% { background-position: 0% 50%, 140% 0%; }
}

@keyframes pubPipelineCtaPulse {
    0%, 100% { transform: scale(0.98); opacity: 0.65; }
    50% { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 768px) {
    .pub-pipeline__map {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .pub-pipeline__map::before,
    .pub-pipeline__map::after {
        display: none;
    }
    .pub-pipeline__center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 84px;
        border-radius: 18px;
        margin-bottom: 6px;
    }
    .pub-pipeline__node {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }
}
/* PUB-PIPELINE-END */

.pub-faq__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
}

.pub-faq__title {
    margin: 0;
    text-align: center;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 900;
    color: #1f2937;
    line-height: 1.3;
}

.pub-faq__subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-top: 6px;
}

.pub-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pub-faq__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.pub-faq__question {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    transition: background-color 0.2s ease;
}

.pub-faq__question:hover,
.pub-faq__question:focus {
    background: #f3f4f6;
}

.pub-faq__q {
    color: #2563eb;
    font-weight: 900;
}

.pub-faq__q-text {
    flex: 1;
}

.pub-faq__toggle {
    font-weight: 900;
    color: #2563eb;
}

.pub-faq__answer {
    display: none;
    padding: 0 16px 14px 16px;
    font-size: 0.98rem;
    color: #374151;
    line-height: 1.6;
    border-top: 1px solid #e5e7eb;
}

.pub-faq__item.is-open .pub-faq__answer {
    display: block;
}

.pub-faq__item.is-open .pub-faq__toggle {
    transform: rotate(180deg);
}

.pub-faq__cta {
    background: linear-gradient(135deg, #ffb347, #ff6b6b, #36cfc9);
    border-radius: 16px;
    padding: clamp(18px, 3vw, 26px);
    color: #fff;
    text-align: center;
    box-shadow: 0 16px 28px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pub-faq__cta-note {
    margin: 0;
    font-weight: 700;
}

.pub-faq__cta-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.pub-faq__cta-text {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.pub-faq__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: #111827;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.pub-faq__cta-btn:visited { color: #fff !important; }

.pub-faq__cta-btn:hover,
.pub-faq__cta-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.22);
    background: #0f172a;
}

@media (max-width: 768px) {
    .pub-faq {
        padding: 48px 16px 80px;
        overflow-x: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-faq__question,
    .pub-faq__cta-btn {
        transition: none;
    }
    .pub-faq__item.is-open .pub-faq__toggle {
        transform: none;
    }
}

@keyframes cogSpin {
    to { transform: rotate(360deg); }
}

/* -------------------------------------------------------------
   FAQ 테마: 첨부(Q&A 카드형) 스타일로 톤 교체
   - 동작(아코디언)은 유지, 색/레이아웃만 오버라이드
------------------------------------------------------------- */
/* PUB-FAQ-THEME-START */
.pub-faq {
    background: #eef1f5;
}

.pub-faq__bg {
    background: transparent;
    opacity: 1;
}

.pub-faq__title {
    color: #111827;
}

.pub-faq__title::before {
    content: "Q&A";
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    color: #0b5cff;
    letter-spacing: -0.02em;
}

.pub-faq__subtitle {
    display: none;
}

.pub-faq__list {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    padding: clamp(16px, 2.6vw, 22px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
    gap: 0;
}

.pub-faq__item {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.pub-faq__item + .pub-faq__item {
    border-top: 2px dashed rgba(100, 116, 139, 0.50);
}

.pub-faq__question {
    padding: 18px 8px 10px;
    background: transparent;
}

.pub-faq__question:hover,
.pub-faq__question:focus {
    background: rgba(11, 92, 255, 0.04);
}

.pub-faq__q {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #0b5cff;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    flex: 0 0 34px;
}

.pub-faq__q-text {
    font-weight: 900;
    color: #111827;
}

.pub-faq__toggle {
    color: #0b5cff;
}

.pub-faq__answer {
    border-top: 0;
    padding: 0 8px 18px 8px;
    color: #374151;
}
/* PUB-FAQ-THEME-END */

/* =============================================================
   PUB-HERO-YM (유어마케팅 히어로 전용 콘텐츠)
   - 배경(.pub-hero-v2__bg)의 이미지 URL은 기존 그대로 사용
   - index.php의 PUB-HERO-YM-START/END 블록에만 적용
============================================================= */
/* PUB-HERO-YM-START */
.pub-hero-v2 .pub-hero-ym {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pub-hero-v2 .pub-hero-ym__inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 3vw, 22px);
}

.pub-hero-v2 .pub-hero-ym__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #eaf2ff;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    backdrop-filter: blur(6px);
}

.pub-hero-v2 .pub-hero-ym__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 10px);
}

.pub-hero-v2 .pub-hero-ym__title-line {
    display: inline-block;
    position: relative;
    font-size: clamp(2.05rem, 4.2vw, 3.55rem);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #ffd54f;
    text-shadow: 0 12px 28px rgba(0,0,0,0.42);
    transform: translateZ(0);
    will-change: transform, filter, background-position;
    animation: pubHeroYmFloat 3.8s ease-in-out infinite, pubHeroYmGlow 2.9s ease-in-out infinite;
}

.pub-hero-v2 .pub-hero-ym__title-line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: min(78%, 520px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0),
        rgba(255, 213, 79, 0.95),
        rgba(255, 183, 3, 0.85),
        rgba(255,255,255,0)
    );
    transform: translateX(-50%) scaleX(0.75);
    opacity: 0.85;
    filter: drop-shadow(0 8px 16px rgba(255, 183, 3, 0.30));
    animation: pubHeroYmUnderline 2.6s ease-in-out infinite;
    pointer-events: none;
}

.pub-hero-v2 .pub-hero-ym__title-line:nth-child(2)::after {
    animation-delay: 0.25s;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .pub-hero-v2 .pub-hero-ym__title-line {
        background-image: linear-gradient(110deg,
            #ffffff 0%,
            #fff3b0 16%,
            #ffd54f 34%,
            #ffb703 52%,
            #ffe066 70%,
            #ffffff 100%
        );
        background-size: 240% 240%;
        background-position: 0% 50%;
        -webkit-background-clip: text;
        background-clip: text;
        /* 텍스트를 투명으로 만들어 그라데이션이 보이게 */
        color: transparent;
        -webkit-text-fill-color: transparent;
        animation:
            pubHeroYmFloat 3.8s ease-in-out infinite,
            pubHeroYmGlow 2.9s ease-in-out infinite,
            pubHeroYmShimmer 2.4s linear infinite;
    }
}

.pub-hero-v2 .pub-hero-ym__title-line:nth-child(1) {
    animation-delay: 0s, 0s;
}

.pub-hero-v2 .pub-hero-ym__title-line:nth-child(2) {
    animation-delay: 0.18s, 0.22s;
}

@keyframes pubHeroYmShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pubHeroYmGlow {
    0% {
        filter: drop-shadow(0 10px 24px rgba(255, 183, 3, 0.18));
        text-shadow: 0 12px 28px rgba(0,0,0,0.42), 0 0 26px rgba(255, 213, 79, 0.22);
    }
    50% {
        filter: drop-shadow(0 14px 32px rgba(255, 213, 79, 0.24));
        text-shadow: 0 12px 28px rgba(0,0,0,0.42), 0 0 40px rgba(255, 236, 153, 0.30);
    }
    100% {
        filter: drop-shadow(0 10px 24px rgba(255, 183, 3, 0.18));
        text-shadow: 0 12px 28px rgba(0,0,0,0.42), 0 0 26px rgba(255, 213, 79, 0.22);
    }
}

@keyframes pubHeroYmFloat {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50%      { transform: translateY(-3px) translateZ(0); }
}

@keyframes pubHeroYmUnderline {
    0%   { transform: translateX(-50%) scaleX(0.65); opacity: 0.55; }
    50%  { transform: translateX(-50%) scaleX(1.02); opacity: 0.95; }
    100% { transform: translateX(-50%) scaleX(0.65); opacity: 0.55; }
}

.pub-hero-v2 .pub-hero-ym__subtitle {
    margin: 0;
    max-width: 820px;
    font-size: clamp(1.02rem, 2.3vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.pub-hero-v2 .pub-hero-ym__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.pub-hero-v2 .pub-hero-ym__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.pub-hero-v2 .pub-hero-ym__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2.6vw, 18px) clamp(22px, 4.2vw, 34px);
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1.02rem, 2.3vw, 1.1rem);
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    outline: none;
}

.pub-hero-v2 .pub-hero-ym__cta:hover,
.pub-hero-v2 .pub-hero-ym__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
    opacity: 0.98;
}

@media (max-width: 480px) {
    .pub-hero-v2 .pub-hero-ym__brand {
        font-size: 0.95rem;
        padding: 9px 12px;
    }
    .pub-hero-v2 .pub-hero-ym__chip {
        font-size: 0.95rem;
        padding: 9px 12px;
    }
    .pub-hero-v2 .pub-hero-ym__cta {
        width: 100%;
        max-width: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-hero-v2 .pub-hero-ym__title-line,
    .pub-hero-v2 .pub-hero-ym__title-line::after {
        animation: none !important;
    }
    .pub-hero-v2 .pub-hero-ym__title-line {
        background: none !important;
        color: #ffd54f !important;
        -webkit-text-fill-color: #ffd54f !important;
        filter: none !important;
        transform: none !important;
    }
    .pub-hero-v2 .pub-hero-ym__cta {
        transition: none;
        transform: none;
    }
    .pub-hero-v2 .pub-hero-ym__cta:hover,
    .pub-hero-v2 .pub-hero-ym__cta:focus {
        transform: none;
    }
}
/* PUB-HERO-YM-END */

/* -------------------------------------------------------------
   3번 섹션: 홍보팡 3가지 강점
------------------------------------------------------------- */
.pub-reasons {
    padding: clamp(52px, 6vw, 96px) clamp(18px, 4vw, 32px);
    background: #f6f7fb;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}

.pub-reasons__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 40px);
    text-align: center;
}

.pub-reasons__title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.pub-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
}

.pub-reasons__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: clamp(18px, 3vw, 26px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.pub-reasons__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef2ff, #d9e4ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 18px rgba(0,0,0,0.08);
}

.pub-reasons__icon--zero::before {
    content: "0";
    font-weight: 800;
    color: #111827;
}

.pub-reasons__icon--shield::before {
    content: "🛡️";
    font-size: 22px;
}

.pub-reasons__icon--triple::before {
    content: "⤴⤴⤴";
    font-size: 16px;
    letter-spacing: -2px;
}

.pub-reasons__card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.4;
}

.pub-reasons__card-main {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
}

.pub-reasons__card-sub {
    margin: 0;
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.6;
}

.pub-reasons__card:hover,
.pub-reasons__card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    border-color: #d1d5db;
    background-color: #fdfefe;
}

.pub-reasons__card:hover .pub-reasons__icon,
.pub-reasons__card:focus-within .pub-reasons__icon {
    background: linear-gradient(135deg, #e8edff, #d2dcff);
}

@media (prefers-reduced-motion: reduce) {
    .pub-reasons__card {
        transition: none;
        transform: none;
    }
    .pub-reasons__card:hover,
    .pub-reasons__card:focus-within {
        transform: none;
    }
}

/* -------------------------------------------------------------
   3번 섹션 리뉴얼: '렌탈 서비스' 시장이 성장하는 이유 (가로 막대 차트)
------------------------------------------------------------- */
/* PUB-REASONS-RENTALWHY-START */
.pub-reasons--rental-why {
    background:
        radial-gradient(circle at 20% 15%, rgba(34, 197, 94, 0.35), transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.28), transparent 55%),
        linear-gradient(135deg, #0b2f22 0%, #0f3d2e 55%, #115a3b 100%);
}

.pub-reasons--rental-why .pub-reasons__inner {
    max-width: 980px;
}

.pub-reasons--rental-why .pub-rental-why__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pub-reasons--rental-why .pub-rental-why__title {
    margin: 0;
    font-size: clamp(1.75rem, 4.2vw, 2.6rem);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #f8fff8;
    text-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.pub-reasons--rental-why .pub-rental-why__title-line {
    display: inline;
}

.pub-reasons--rental-why .pub-rental-why__accent {
    color: #bbf7d0;
}

.pub-reasons--rental-why .pub-rental-why__arrows {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.pub-reasons--rental-why .pub-rental-why__arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(187, 247, 208, 0.75);
    border-bottom: 2px solid rgba(187, 247, 208, 0.75);
    transform: rotate(45deg);
    border-radius: 1px;
    opacity: 0.95;
}

.pub-reasons--rental-why .pub-rental-why__card {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 24px;
    padding: clamp(16px, 3vw, 22px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.pub-reasons--rental-why .pub-rental-why__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pub-reasons--rental-why .pub-rental-why__item {
    --pct: 0;
    display: grid;
    grid-template-columns: 1fr minmax(140px, 240px) 64px;
    gap: 10px;
    align-items: center;
    text-align: left;
}

.pub-reasons--rental-why .pub-rental-why__label {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    font-size: 0.98rem;
    line-height: 1.35;
}

.pub-reasons--rental-why .pub-rental-why__item.is-checked .pub-rental-why__label {
    color: #15803d;
}

.pub-reasons--rental-why .pub-rental-why__item.is-checked .pub-rental-why__label::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
    font-weight: 900;
    font-size: 0.95rem;
}

.pub-reasons--rental-why .pub-rental-why__bar {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.pub-reasons--rental-why .pub-rental-why__bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(var(--pct) * 1%);
    border-radius: 999px;
    background: linear-gradient(90deg, #16a34a, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    animation: pubRentalWhyFill 1.1s ease forwards;
}

.pub-reasons--rental-why .pub-rental-why__item--minor .pub-rental-why__bar-fill {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.70), rgba(52, 211, 153, 0.55));
}

.pub-reasons--rental-why .pub-rental-why__pct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(229, 231, 235, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #15803d;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.pub-reasons--rental-why .pub-rental-why__item.is-checked .pub-rental-why__pct {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.95), rgba(52, 211, 153, 0.95));
    color: #0b2f22;
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.20);
}

/* 항목별로 살짝 딜레이를 줘서 자연스럽게 채워짐 */
.pub-reasons--rental-why .pub-rental-why__item:nth-child(1) .pub-rental-why__bar-fill { animation-delay: 0.05s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(2) .pub-rental-why__bar-fill { animation-delay: 0.10s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(3) .pub-rental-why__bar-fill { animation-delay: 0.15s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(4) .pub-rental-why__bar-fill { animation-delay: 0.20s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(5) .pub-rental-why__bar-fill { animation-delay: 0.25s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(6) .pub-rental-why__bar-fill { animation-delay: 0.30s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(7) .pub-rental-why__bar-fill { animation-delay: 0.35s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(8) .pub-rental-why__bar-fill { animation-delay: 0.40s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(9) .pub-rental-why__bar-fill { animation-delay: 0.45s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(10) .pub-rental-why__bar-fill { animation-delay: 0.50s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(11) .pub-rental-why__bar-fill { animation-delay: 0.55s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(12) .pub-rental-why__bar-fill { animation-delay: 0.60s; }
.pub-reasons--rental-why .pub-rental-why__item:nth-child(13) .pub-rental-why__bar-fill { animation-delay: 0.65s; }

@keyframes pubRentalWhyFill {
    to { transform: scaleX(1); }
}

@media (max-width: 860px) {
    .pub-reasons--rental-why .pub-rental-why__item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .pub-reasons--rental-why .pub-rental-why__pct {
        justify-self: start;
    }
    .pub-reasons--rental-why .pub-rental-why__bar {
        height: 12px;
    }
}

@media (max-width: 480px) {
    .pub-reasons--rental-why .pub-rental-why__title-line {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-reasons--rental-why .pub-rental-why__bar-fill {
        animation: none;
        transform: none;
    }
}
/* PUB-REASONS-RENTALWHY-END */

/* -------------------------------------------------------------
   라이브셀 기능 경험 CTA 섹션 (와이드)
------------------------------------------------------------- */
.pub-live-cta {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: clamp(48px, 6vw, 96px) clamp(18px, 4vw, 32px);
    background: linear-gradient(135deg, #2f3a5a, #1b2238);
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.pub-live-cta__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(47, 58, 90, 0.78), rgba(27, 34, 56, 0.88)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 200, 160, 0.14), transparent 45%),
        url('./img/0-2.jpg') center/cover no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.pub-live-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.pub-live-cta__title {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
}

.pub-live-cta__title-anim {
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

@supports (-webkit-background-clip: text) {
    .pub-live-cta__title-anim {
        background-image: linear-gradient(90deg, #ffffff 0%, #ffeb3b 20%, #00e5ff 45%, #ff4dff 70%, #ffffff 100%);
        background-size: 320% 100%;
        background-position: 0% 50%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
        animation: pubLiveCtaTitleSheen 2.8s ease-in-out infinite;
    }
}

.pub-live-cta__title-anim::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,235,59,0.85), rgba(0,229,255,0.85), rgba(255,77,255,0.85), rgba(255,255,255,0));
    background-size: 240% 100%;
    opacity: 0.85;
    animation: pubLiveCtaUnderline 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .pub-live-cta__title-anim,
    .pub-live-cta__title-anim::after {
        animation: none !important;
    }
}

@keyframes pubLiveCtaTitleSheen {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pubLiveCtaUnderline {
    0%, 100% { background-position: 0% 50%; opacity: 0.55; }
    50% { background-position: 100% 50%; opacity: 0.95; }
}

.pub-live-cta__subtitle {
    margin: 0;
    font-size: clamp(1.02rem, 2.5vw, 1.2rem);
    color: #e5e7eb;
}

.pub-live-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: clamp(14px, 2.5vw, 18px) clamp(22px, 4.2vw, 32px);
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a18, #ff3d57);
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.05rem, 2.4vw, 1.15rem);
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pub-live-cta__button:hover,
.pub-live-cta__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.pub-live-cta__timer {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #e8edf3;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.pub-live-cta__timer-label {
    color: #cbd5e1;
}

.pub-live-cta__timer-value {
    color: #fff;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

@media (max-width: 768px) {
    .pub-live-cta {
        padding: 42px 16px 70px;
        overflow-x: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pub-live-cta__button {
        transition: none;
        transform: none;
    }
}
@media (max-width: 960px) {
    .pub-reasons {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .pub-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pub-reasons {
        padding: 44px 16px 56px;
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .pub-reasons__grid {
        grid-template-columns: 1fr;
    }
    .pub-reasons__card {
        text-align: left;
    }
}
@media (max-width: 1024px) {
    .pub-painpoint {
        left: 50%;
        margin-left: -50vw;
        width: 100vw;
        padding: 48px 20px 64px;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .pub-painpoint__body {
        grid-template-columns: 1fr;
    }
    .pub-painpoint__highlight {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .pub-painpoint {
        padding: 40px 16px 56px;
        left: 50%;
        margin-left: -50vw;
        width: 100vw;
        overflow-x: hidden;
    }
    .pub-painpoint__icon {
        width: 44px;
        height: 44px;
    }
    .pub-painpoint__quote {
        font-size: 1.05rem;
    }
}
