/* 메인 히어로 섹션 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;
    }
}

/* -------------------------------------------------------------
   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; }

@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-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__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;
    }
}

/* -------------------------------------------------------------
   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;
}

.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;
}

.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); }
}

/* -------------------------------------------------------------
   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;
    }
}

/* -------------------------------------------------------------
   라이브셀 기능 경험 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__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;
    }
}
