@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

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

body {}

.container2 {
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 20px 0;
}

button {
    font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    width: 200px;
    height: 44px;
}

.hero-section {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.btn-primary {
    width: 200px;
    height: 44px;
    background: #0d5c3e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #094d33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 92, 62, 0.3);
}

.btn-secondary {
    width: 200px;
    height: 44px;
    background: white;
    color: #333;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #0d5c3e;
    color: #0d5c3e;
    transform: translateY(-2px);
}

.stats-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.stat-circle {
    width: 200px;
    height: 200px;
    background: #0d5c3e;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(13, 92, 62, 0.3);
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: translateY(-10px);
}

.stat-label {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.feature-card:hover {
    background: #0d5c3e;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 92, 62, 0.4);
}

.feature-card:hover .feature-icon {
    opacity: 0;
}

.feature-card:hover .feature-title {
    opacity: 0;
}

.feature-card:hover .hover-content {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-text {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.hover-button {
    width: 100%;
    height: 44px;
    background: white;
    color: #0d5c3e;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
    transition: all 0.2s ease;
}

.hover-button:hover {
    transform: translateX(4px);
}

.arrow-icon {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* 프로모션 섹션 스타일 */
.promo-section {
    margin: 120px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.promo-content {
    flex: 1;
    max-width: 500px;
}

.promo-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.promo-description {
    margin-bottom: 60px;
}

.promo-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.promo-button-group {
    display: flex;
    gap: 16px;
}

.promo-btn-primary {
    background: #0d5c3e;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* [추가됨] 가로 중앙 정렬 */
    gap: 8px;
    transition: all 0.3s ease;
}

.promo-btn-primary:hover {
    background: #094d33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 92, 62, 0.3);
}

.promo-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-btn-secondary:hover {
    border-color: #0d5c3e;
    color: #0d5c3e;
    transform: translateY(-2px);
}

.promo-cards {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.promo-card {
    width: 220px;
    height: 220px;
    background: #0d5c3e;
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(13, 92, 62, 0.3);
}

.promo-card-title {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
}

.promo-card-price {
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.promo-label {
    font-size: 18px;
    font-weight: 500;
}

.promo-value {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.promo-unit {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .promo-section {
        flex-direction: column;
        gap: 60px;
        padding: 60px 40px;
    }

    .promo-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .promo-section {
        padding: 40px 30px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-description p {
        font-size: 14px;
    }

    .promo-button-group {
        flex-direction: column;
    }

    .promo-cards {
        flex-direction: column;
        width: 100%;
    }

    .promo-card {
        width: 100%;
        height: 200px;
        flex-direction: row;
        justify-content: space-between;
        padding: 30px;
    }

    .promo-card-title {
        margin-bottom: 0;
        text-align: left;
    }

    .promo-card-price {
        justify-content: flex-end;
    }

    .promo-value {
        font-size: 48px;
    }
}

/* 더 쉽고 더 풍성하게 섹션 스타일 */
.easy-section {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.easy-content {
    flex: 1;
    max-width: 500px;
}

.easy-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.easy-description {
    margin-bottom: 60px;
}

.easy-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.easy-button-group {
    display: flex;
    gap: 16px;
}

.easy-btn-primary {
    background: #0d5c3e;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.easy-btn-primary:hover {
    background: #094d33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 92, 62, 0.3);
}

.easy-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    max-width: 700px;
    height: 330px;
    background: #d0d5dd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .easy-section {
        flex-direction: column;
        gap: 60px;
        padding: 60px 40px;
    }

    .easy-title {
        font-size: 40px;
    }

    .placeholder-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .easy-section {
        padding: 40px 30px;
    }

    .easy-title {
        font-size: 32px;
    }

    .easy-description p {
        font-size: 14px;
    }

    .easy-button-group {
        flex-direction: column;
    }

    .placeholder-image {
        height: 200px;
    }
}

/* CTA 섹션 스타일 */
.cta-section {
    margin-bottom: 40px;
    padding: 100px 60px;
    background: url('/images/info/all_bottom_img.png') center center / cover no-repeat;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.2;
}

.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary {
    background: #0d5c3e;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #094d33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 92, 62, 0.3);
}

.cta-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: #0d5c3e;
    color: #0d5c3e;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 40px;
    }

    .cta-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 30px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cta-button-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
    }

    .stat-value {
        font-size: 32px;
    }
}

/* 가격 비교 섹션 스타일 */
.pricing-section {
    margin: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    color: #000000;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.pricing-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.pricing-subtitle {
    font-size: 16px;
    font-weight: 400;
}

.pricing-badge {
    background: #0d5c3e;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-body {
    flex: 1;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pricing-label {
    font-size: 18px;
    font-weight: 400;
}

.pricing-value {
    font-size: 24px;
    font-weight: 700;
}

.pricing-value-static {
    font-size: 18px;
    font-weight: 400;
}

.pricing-note {
    text-align: right;
    font-size: 16px;
    color: #666;
    margin-top: 16px;
}

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
        min-height: 180px;
    }

    .pricing-title {
        font-size: 24px;
    }

    .pricing-label {
        font-size: 16px;
    }

    .pricing-value {
        font-size: 20px;
    }

    .pricing-discount {
        font-size: 18px;
    }
}