* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFB800;
    --secondary-gold: #FFC300;
    --accent-gold: #FF9500;
    --light-gold: #ffd97d;
    --bright-gold: #FFD700;
    --deep-gold: #CC7A00;
    --dark-navy: #0f172a;
    --medium-navy: #1e293b;
    --light-navy: #334155;
    --success-green: #10b981;
}


/* Page Header - 골드 테마 */
.page-header {
    padding: 1.3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-gold) 50%, var(--deep-gold) 100%);
    box-shadow: 0 4px 25px rgba(255, 184, 0, 0.4);
    border-radius: 15px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 195, 0, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.page-header h4 {
    font-size: 3.0rem;
    margin-bottom: 0.97rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    color: white;
}

/* Main Content */
.yesmap-main {
    padding: 2.5rem 2rem;
    background: var(--medium-navy);
    margin-top: -8px;
    align-items: center;
}

/* 임팩트 배너 */
.impact-banner {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 149, 0, 0.1) 100%);
    border: 3px solid var(--primary-gold);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 50rem;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '🎤';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.3;
}

.impact-banner h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* 임팩트 배너2 */
.impact-banner2 {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.23) 0%, rgba(101, 0, 0, 0.19) 100%);
    border: 3px solid #ff9797;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 50rem;
    position: relative;
    overflow: hidden;
}

.impact-banner2::before {
    content: '🤝';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
}

.impact-banner2 h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-banner2 h2 {
    font-size: 2.0rem;
    color: #a1dbdb;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-banner2 h3 {
    font-size: 2.4rem;
    color: white;

    line-height: 1.3;
}

.impact-banner2 h4 {
    font-size: 1.9rem;
    color: white;
    margin-top: 1rem;
    line-height: 1.3;
}


.highlight-gold {
    color: var(--primary-gold);
    font-weight: 800;
    text-shadow: 0 0 50px rgba(255, 184, 0, 0.5);
}

.impact-banner p {
    font-size: 1.3rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.impact-banner strong {
    color: var(--light-gold);
    font-weight: 600;
}

/* About Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.about-text {
    text-align: center;
    color: #e2e8f0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.about-text h3 {
    font-size: 2.0rem;
}








/* Service Card */
.service-card {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 184, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}



.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.4));
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-card strong {
    color: #ffe4a3;
    font-weight: 500;
}

.service-desc {
    color: #94a3b8;
    font-size: 1.05rem;
}


/* Service Card-diff */
.service-card-diff {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 184, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card-diff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}


.service-card-diff p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-card-diff strong {
    color: #ffe4a3;
    font-weight: 500;
}



/* 문제점 카드 */
.problem-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);
    border: 2px solid rgba(255, 69, 0, 0.4);
    border-radius: 16px;

    padding: 2.5rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

}

.problem-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-item {
    background: rgba(255, 106, 106, 0.37);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.problem-item h4 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: #cbd5e1;
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.problem-card strong {
    color: #ffe4a3;
    font-weight: 500;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #ff4500;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.price-tag span {
    font-size: 1rem;
    color: #94a3b8;
}

.problem-summary {
    background: rgba(255, 69, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #ff4500;
}

.problem-summary p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0.8rem 0;
    text-align: left;
}

/* 솔루션 카드 */
.solution-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);
    border: 2px solid var(--primary-gold);


    border-radius: 16px;

    padding: 2.5rem 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card p {
    color: #cbd5e1;
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.solution-card strong {
    color: #ffe4a3;
    font-weight: 500;
}

.solution-process {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2rem;

    flex-wrap: wrap;
}

.solution-step {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 230px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s;
}

.solution-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-step h4 {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.solution-step p {
    color: #cbd5e1;
    font-size: 1.0rem;
    line-height: 1.6;
}

.arrow-right {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 0.6rem;
}


/* Features Grid - 옥수수 전용 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card-oksusu {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}

.feature-card-oksusu:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 184, 0, 0.4));
}

.feature-card-oksusu h4 {
    color: var(--light-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card-oksusu p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-card-oksusu ul {
    list-style: none;
    padding: 0 1rem;
    text-align: left;
    color: #94a3b8;

    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0rem;
    
}

.feature-card-oksusu li::before {
    content: '✓ ';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 184, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 184, 0, 0.2);
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--light-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Benefit Item */
.benefit-item {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.benefit-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.benefit-item h4 {
    color: var(--light-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    border: 2px solid rgba(255, 184, 0, 0.4);
}

/* Pricing Grid - 옥수수 */
.pricing-grid-oksusu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card-oksusu {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--medium-navy) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 상단-하단 자동 정렬 */
    height: 100%;
    /* 카드 높이 통일 */
}


.pricing-card-oksusu.featured,
.pricing-card-oksusu.featured-plan {
    border-color: var(--primary-gold);
    border-width: 3px;
}

.pricing-card-oksusu h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Plan Badge */
.plan-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 184, 0, 0.2);
    color: var(--light-gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 184, 0, 0.4);
}

.plan-badge.recommended {
    background: linear-gradient(135deg, #b9a38f 0%, #ff5500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
    border: 2px solid #ca8d8d;
}

/* Plan Price */
.plan-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: #94a3b8;
}

.plan-desc {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 2rem;
}




    /* Plan Features */
    .plan-features {
        list-style: none;
        padding: 1rem 2rem;
        margin-bottom: -0.1rem;
        text-align: left;
        margin-left: 0.5rem;
    }

.plan-features li {
    color: #94a3b8;
    padding: 0.15rem;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 4rem;
    color: #ab9315;
    font-size: 0.95rem;
}



/* Legacy pricing styles for compatibility */
.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: #cbd5e1;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
}

/* ================폰=========== */
.contact-buttons {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-start;
    /* center에서 flex-start로 변경 */
    margin-top: 1rem;
}

.phone-btn {
    display: inline-flex;
    /* inline-block에서 inline-flex로 변경 */
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(8, 147, 173, 0.3);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 50%;
    flex-shrink: 0;
    /* 추가: 버튼 크기 고정 */
}

.phone-btn svg {
    display: block;
    stroke: white;
}

.plan-btn {
    display: inline-block;
    padding: 0.8rem 0;
    /* 0.1rem에서 0.8rem로 수정 */
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    flex: 1;
    /* 추가: 남은 공간을 모두 차지 */
    text-align: center;
    /* 추가: 텍스트 중앙 정렬 */
}

.plan-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
}






/* 성과 지표 */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-card h4 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.metric-desc {
    color: #94a3b8;
    font-size: 0.95rem;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

/* 타임라인 번호 스타일 */
.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(255, 223, 138) 0%, rgb(105, 64, 7) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}


.timeline-item h4 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 100;
    padding: 0 0.5rem;
}



/* FAQ 섹션 */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 239, 207, 0.1) 0%, rgba(197, 117, 0, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c9ac11;
    transition: all 0.3s;
    text-align: left;
    /* 추가 */
}

.faq-question {
    color: #d1bb4d;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    line-height: 1.2
}

.faq-question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffa700 0%, #503305 100%);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    color: #cbd5e1;
    line-height: 1.8;
    padding-left: 2.8rem;
    text-align: left;
    /* 추가 */
}

.faq-answer p {
    font-size: 1.1rem;
    text-align: left;
    word-break: keep-all;
    /* 한글/영문 단어 단위 유지 */
    overflow-wrap: break-word;
    /* 넘치는 경우만 줄바꿈 */
    white-space: normal;
    /* 기본 줄바꿈 허용 */
    margin-bottom: 0.2rem;
}

.faq-answer strong {
    color: #4db8d1;
    font-weight: 600;
    font-size: 1.1rem;
}


    


/* Responsive Design */
@media (max-width: 768px) {

    /* Page Header */
    .page-header {
        padding: 3rem 1.5rem;
    }

    .page-header h4 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Impact Banner */
    .impact-banner {
        padding: 2rem 1.5rem;
    }

    .impact-banner h1 {
        font-size: 2rem;
    }

    .impact-banner p {
        font-size: 1.1rem;
    }

    /* Content */
    .about-text h2 {
        font-size: 2.0rem;
    }

    .about-text h3 {
        font-size: 2.0rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    /* Grids */
    .problem-examples,
    .solution-process,
    .features-grid,
    .benefits-grid,
    .success-metrics,
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }


}

@media (max-width: 480px) {

    .about-text h3 {
        font-size: 1.5rem;
    }

    /* 문제점 카드 */
    .problem-card {
        padding: 0.5rem 0;
    }

    .problem-examples {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
        margin: 1.0rem 0.5rem;
        margin-bottom: 0.1rem;
    }

    .problem-item {
        padding: 0.5rem;

    }

    .problem-item h4 {
        color: var(--light-gold);
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
        margin-top: 0.5rem;

    }

    .problem-item p {
        color: #cbd5e1;
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }

    .price-tag span {
        font-size: 0.9rem;
        color: #94a3b8;
    }

    .problem-summary {
        padding: 0.5rem 1.5rem;
        margin-top: 1.2rem;
        margin-bottom: -0.5rem;
    }

    .problem-summary p {
        font-size: 1.0rem;
        color: #cbd5e1;
        margin: 0.8rem 0;
        text-align: left;

    }

    .service-desc {
        color: #94a3b8;
        font-size: 0.9rem;
    }


    /* 솔루션 카드 */
    .solution-card {
        padding: 0.5rem 0;
    }

    .solution-process {
        display: flex;
        align-items: center;
        justify-content: center;



        flex-wrap: wrap;

        margin-top: 0;
        margin-bottom: 0.5rem;
        gap: 0.4rem;
    }

    .solution-step {
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);

        border-radius: 15px;
        text-align: center;
        flex: 1;
        min-width: 135px;
        max-width: 135px;
        border: 2px solid var(--primary-gold);
        transition: all 0.3s;


        padding: 0.5rem 0.5rem;
    }

    .step-icon {
        margin-bottom: -0.2rem;
    }

    .solution-step h4 {
        color: var(--light-gold);
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .solution-step p {
        color: #cbd5e1;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .arrow-right {
        font-size: 1.5rem;
        margin-left: -0.4rem;
        margin-right: -0.4rem
    }


    .service-card {
        padding: 1.5rem 0;
    }

    /* Features Grid - 옥수수 전용 */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0.5rem;
    }

    .feature-card-oksusu {
        padding: 0;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.1rem;
    }

    .feature-card-oksusu h4 {
        font-size: 1.2rem;
    }

    .feature-card-oksusu p {
        color: #cbd5e1;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .feature-card-oksusu ul {
        margin-top: 1.4rem;
        margin-bottom: -1rem;
        margin-left: 0.4rem;
        padding: 1rem 0.4rem;
        text-align: left;
        line-height: 1.2;
    }

    .feature-card-oksusu li {
        margin: -0.87rem -0.1rem;
        padding-left: 0.7rem;
        font-size: 0.9rem;
        margin-bottom: 1.6rem;
    }

    .feature-card-oksusu li::before {
        content: '✓';
        left: 0;
        font-weight: 500;
        font-size: 0.9rem;
    }


    /* Benefit Item */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
        padding: 0.5rem;
        margin-top: -1.5rem;
        margin-bottom: -1.4rem;
    }

    .benefit-item {
        padding: 0.5rem;
    }


    .benefit-number {
        margin: 1rem auto 1rem;
    }

    .benefit-item h4 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }



    /* price======================= */

    /* 모바일 (480px) 미디어쿼리 내부 */

    .service-card-diff {
        background: none;
        /* 배경 제거 */
        border-radius: 0;
        padding: 0;
        border: none;
        position: relative;
        overflow: visible;
    }

    .service-card-diff::before {
        display: none;
        /* 그라데이션 효과 제거 */
    }

    .service-card-diff h3 {
        font-size: 2.0rem;
        margin-bottom: 0.5rem;
        color: #ea8416;
    }

    .service-card-diff p {
        color: #ffd97d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .pricing-grid-oksusu {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: -1rem;
        /* negative margin 제거 */
        margin-bottom: 0;
    }

    .pricing-grid-oksusu h3 {
        font-size: 2.0rem;
        margin-bottom: 0.5rem;
        color: white;
    }






    .benefit-item {
        padding: 0.5rem;
    }


    .benefit-number {
        margin: 1rem auto 1rem;
    }

    .benefit-item h4 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }




    .page-header h4 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }







    .impact-banner h1 {
        font-size: 1.6rem;
    }

    .impact-banner p {
        font-size: 1rem;
    }






    /* Impact Banner - 회색 테마 */
    .impact-banner {
        margin: 2rem 0.5rem;
        padding: 2rem 1rem;
    }

    .impact-banner::before {
        top: -25px;
        right: -10px;
        font-size: 4rem;
    }

    .impact-banner h1 {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .impact-banner p {
        font-size: 1.1rem;
        line-height: 1.7;
    }




    /* Impact Banner - 회색 테마 */
    .impact-banner2 {
        margin: 2rem 0.5rem;
        padding: 2rem 1rem;
    }

    .impact-banner2::before {
        top: -25px;
        right: -10px;
        font-size: 4rem;
    }

    .impact-banner2 h1 {
        font-size: 2.0rem;
    }

    .impact-banner2 h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .impact-banner2 h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .impact-banner2 h4 {
        font-size: 1.3rem;
        margin-top: 0.5rem;
        line-height: 1.3;
    }




    .impact-banner2 p {
        font-size: 0.9rem;
        line-height: 1.7;
    }


    .impact-banner3::before {
        top: -25px;
        right: -5px;
        font-size: 2.5rem;
        opacity: 0.07;
    }

    .impact-banner3 h1 {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .impact-banner3 p {
        font-size: 1.1rem;

    }




    .plan-btn {
        padding: 0.2rem 0;
        /* 0.1rem에서 0.8rem로 수정 */
    }

    /* Plan Price */
    .plan-price {
        margin-top: -1.0rem;
        margin-bottom: 0.5rem;

    }

    
    /* Plan Features */
    .plan-features {
        list-style: none;
        padding: 1rem 2rem;
        margin-bottom: -0.1rem;
        text-align: left;
        margin-left: 0.5rem;
    }

.plan-features li {
    color: #94a3b8;
    padding: 0.15rem;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 4rem;
    color: #ab9315;
    font-size: 0.95rem;
}

    
/* 성과 지표 */
.success-metrics {
    margin-top: 0.5rem;
    margin-bottom: -1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    height: auto;
    gap: 0.5rem;
    padding: 1rem 0.7rem;
}
    
.metric-card {
    padding: 0;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}
.metric-icon {
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.6);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.metric-card h4 {
    color: var(--light-gold);
    font-size: 1.0rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

    
    .process-timeline {
        padding: 0.5rem 0;
        margin-top: 0;
        margin-bottom: -1.0rem;
        gap: 0.4rem;
    }

    .timeline-item {
        min-width: 135px;
        max-width: 135px;
        border: 2px solid rgba(255, 184, 0, 0.3);
        padding: 0.5rem 0.5rem;
        margin-bottom: 0.2rem
    }

/* 타임라인 번호 스타일 */
.timeline-number {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

    .timeline-arrow {
        font-size: 1.4rem;
        margin-left: -0.95rem;
        margin-right: -0.8rem
    }

    
      
    
    .faq-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.1rem;
        color: #ffbc8d;
        line-height: 1.3;
    }
    

    
.faq-answer {
    
    padding-left: 0.5rem;
    text-align: left;
    /* 추가 */
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.faq-answer strong {
    color: #4db8d1;
    font-weight: 600;
    font-size: 0.9rem;
}
 
    
    
    
.service-card p {
    
    font-size: 1.0rem;
    
}


    .service-card h3 {
        font-size: 1.4rem;
    }


    .pricing-price {
        font-size: 2rem;
    }

    .pricing-card-oksusu h4 {
        font-size: 1.5rem;
    }



}