/* ==============================================
   Colocation Page Styles
   YourIT - 코로케이션 단독서버형
============================================== */

/* 코로케이션 페이지 전용 변수 */
.colo-page {
    --colo-primary-light: rgba(0, 212, 170, 0.1);
}

/* 코로케이션 페이지 전용 컨테이너 */
.colo-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 프로모션 배너 ===== */
.colo-page .promo-strip {
    background: linear-gradient(90deg, #191f28 0%, #2d3748 100%);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.colo-page .promo-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.colo-page .promo-strip-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.colo-page .promo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: colo-pulse 2s infinite;
}

@keyframes colo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.colo-page .promo-text {
    color: #fff;
    font-size: 18px;
}

.colo-page .promo-text strong {
    color: var(--primary);
}

/* ===== 히어로 섹션 ===== */
.colo-page .hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    text-align: center;
}

.colo-page .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--colo-primary-light);
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #00b894;
    margin-bottom: 24px;
}

.colo-page .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #191f28;
}

.colo-page .hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.colo-page .hero-subtitle {
    font-size: 18px;
    color: #4e5968;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.colo-page .hero-price-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: #ffffff;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.colo-page .hero-price-label {
    font-size: 15px;
    color: #8b95a1;
}

.colo-page .hero-price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.colo-page .hero-price-unit {
    font-size: 16px;
    color: #4e5968;
}

.colo-page .hero-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.colo-page .hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4e5968;
}

.colo-page .hero-benefit i {
    color: var(--primary);
}

/* ===== 신뢰 지표 섹션 ===== */
.colo-page .trust-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e5e8eb;
}

.colo-page .trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.colo-page .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4e5968;
    font-size: 16px;
    font-weight: 600;
}

.colo-page .trust-item i {
    font-size: 24px;
    color: var(--primary);
}

.colo-page .trust-item strong {
    font-size: 24px;
    font-weight: 800;
    color: #191f28;
}

/* ===== 상품 섹션 ===== */
.colo-page .products-section {
    padding: 80px 0;
    background: #f8fafb;
}

/* 상품 섹션 컨테이너 - PC에서 넓게 */
.colo-page .products-section .container {
    max-width: 1400px;
}

.colo-page .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.colo-page .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.colo-page .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 12px;
}

.colo-page .section-subtitle {
    font-size: 18px;
    color: #4e5968;
}

.colo-page .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .colo-page .products-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

.colo-page .products-notice {
    text-align: center;
    font-size: 14px;
    color: #8b95a1;
    margin-top: 24px;
}

.colo-page .product-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e8eb;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.colo-page .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.colo-page .product-card.featured {
    border: 2px solid var(--primary);
    overflow: visible;
    padding-top: 32px;
    position: relative;
}

.colo-page .featured-top-bar {
    position: absolute;
    top: 0;
    left: 6px;
    right: 6px;
    height: 4px;
    background: linear-gradient(90deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 16px 16px 0 0;
}

.colo-page .product-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    white-space: nowrap;
}

.colo-page .product-badge.type {
    background: #f2f4f6;
    color: #4e5968;
}

.colo-page .product-badge.popular {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.colo-page .product-badge.best {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.colo-page .product-name {
    font-size: 28px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.colo-page .product-desc {
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 20px;
}

.colo-page .product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8fafb;
    border-radius: 12px;
    flex-grow: 1;
}

.colo-page .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.colo-page .spec-label {
    font-size: 13px;
    color: #8b95a1;
    font-weight: 500;
    flex-shrink: 0;
}

.colo-page .spec-value {
    font-size: 13px;
    color: #191f28;
    font-weight: 600;
    text-align: right;
}

.colo-page .spec-value.highlight {
    color: var(--primary);
}

.colo-page .product-price {
    margin-top: auto;
    margin-bottom: 20px;
    text-align: center;
}

.colo-page .price-original {
    display: block;
    font-size: 14px;
    color: #8b95a1;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.colo-page .price-current {
    display: block;
    font-size: 16px;
    color: #4e5968;
    white-space: nowrap;
}

.colo-page .price-current strong {
    font-size: 32px;
    font-weight: 800;
    color: #191f28;
}

.colo-page .price-discount {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
}

.colo-page .price-note {
    font-size: 13px;
    color: #8b95a1;
    margin-top: 8px;
}

.colo-page .product-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f2f4f6;
    color: #4e5968;
}

.colo-page .product-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.colo-page .product-btn:hover {
    transform: translateY(-2px);
    background: #e5e8eb;
}

.colo-page .product-btn.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

/* ===== 무료 서비스 섹션 ===== */
.colo-page .benefits-section {
    padding: 100px 0;
    background: #ffffff;
}

.colo-page .benefits-category {
    margin-bottom: 48px;
}

.colo-page .category-title {
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.colo-page .category-title i {
    color: var(--primary);
}

.colo-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .colo-page .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .colo-page .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .colo-page .benefits-grid { grid-template-columns: 1fr; }
}

.colo-page .benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.colo-page .benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.15);
}

.colo-page .benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colo-primary-light);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--primary);
}

.colo-page .benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.colo-page .benefit-desc {
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 12px;
    line-height: 1.5;
}

.colo-page .benefit-value {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.colo-page .benefits-total-banner {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.colo-page .total-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colo-page .total-icon i {
    font-size: 28px;
    color: var(--primary);
}

.colo-page .total-text {
    flex: 1;
}

.colo-page .total-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.colo-page .total-value {
    font-size: 24px;
    color: #fff;
}

.colo-page .total-value strong {
    color: var(--primary);
}

.colo-page .total-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.colo-page .total-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 212, 170, 0.4);
}

@media (max-width: 768px) {
    .colo-page .benefits-total-banner {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }
}

/* ===== 장점 섹션 ===== */
.colo-page .advantages-section {
    padding: 80px 0;
    background: #f8fafb;
}

.colo-page .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.colo-page .advantage-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.colo-page .advantage-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.15);
}

.colo-page .advantage-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colo-primary-light);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
}

.colo-page .advantage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #191f28;
}

.colo-page .advantage-desc {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.6;
}

/* ===== WHY YOURIT 섹션 ===== */
.colo-page .why-yourit-section {
    padding: 100px 0;
    background: #fff;
}

.colo-page .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .colo-page .why-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.colo-page .why-card {
    padding: 32px;
    background: #f8fafb;
    border-radius: 16px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
}

.colo-page .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.15);
    border-color: var(--primary);
}

.colo-page .why-card.highlight {
    background: var(--colo-primary-light);
    border-color: rgba(0, 212, 170, 0.3);
}

.colo-page .why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.colo-page .why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.colo-page .why-card p {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.6;
    margin-bottom: 16px;
}

.colo-page .why-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--colo-primary-light);
    border-radius: 8px;
}

.colo-page .why-highlight .badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.colo-page .why-highlight .value {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

/* ===== 고객 후기 섹션 ===== */
.colo-page .testimonial-section {
    padding: 80px 0;
    background: #f8fafb;
}

.colo-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .colo-page .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .colo-page .testimonial-grid { grid-template-columns: 1fr; }
}

.colo-page .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e8eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.colo-page .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.colo-page .testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.colo-page .testimonial-rating i {
    font-size: 14px;
    color: #fbbf24;
}

.colo-page .testimonial-content {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.colo-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e5e8eb;
    margin-top: auto;
}

.colo-page .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.colo-page .testimonial-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #191f28;
    margin: 0 0 4px 0;
}

.colo-page .testimonial-info span {
    font-size: 13px;
    color: #8b95a1;
}

/* ===== 추천 서비스 섹션 ===== */
.colo-page .addon-services-section {
    padding: 80px 0;
    background: #f8fafb;
}

.colo-page .addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.colo-page .addon-header-left {
    flex: 1;
}

.colo-page .addon-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.colo-page .addon-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.colo-page .addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.colo-page .addon-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e8eb;
    position: relative;
    transition: all 0.3s ease;
}

.colo-page .addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.colo-page .addon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.colo-page .addon-badge.hot {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: #fff;
}

.colo-page .addon-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}

.colo-page .addon-icon i {
    font-size: 20px;
    color: var(--primary);
}

.colo-page .addon-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.colo-page .addon-card p {
    font-size: 14px;
    color: #4e5968;
    line-height: 1.6;
    margin-bottom: 16px;
}

.colo-page .addon-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.colo-page .addon-price .price-from {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
}

.colo-page .addon-price .price-benefit {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.colo-page .addon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.colo-page .addon-link:hover {
    gap: 10px;
}

/* ===== CTA 섹션 ===== */
.colo-page .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    text-align: center;
}

.colo-page .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.colo-page .cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.colo-page .cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.colo-page .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.colo-page .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.colo-page .cta-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.colo-page .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.colo-page .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
    .colo-page .hero-title {
        font-size: 32px;
    }

    .colo-page .hero-price-value {
        font-size: 36px;
    }

    .colo-page .section-title {
        font-size: 28px;
    }

    .colo-page .cta-box {
        padding: 40px 24px;
    }

    .colo-page .cta-title {
        font-size: 24px;
    }

    .colo-page .trust-inner {
        gap: 24px;
    }

    .colo-page .trust-item {
        font-size: 14px;
    }

    .colo-page .trust-item strong {
        font-size: 20px;
    }
}

/* ===== Footer Contact Section 색상 복원 ===== */
.colo-page .contact-section .contact-left h2 {
    color: #fff;
}

.colo-page .contact-section .contact-left p {
    color: rgba(255, 255, 255, 0.7);
}

.colo-page .contact-section .contact-label {
    color: rgba(255, 255, 255, 0.5);
}

.colo-page .contact-section .contact-sub {
    color: rgba(255, 255, 255, 0.8);
}

.colo-page .contact-section .contact-value {
    color: #fff;
}

.colo-page .contact-section .contact-icon i {
    color: #5EEAD4;
}

.colo-page .contact-section .contact-info-item.main-phone .contact-icon i {
    color: #fff;
}

.colo-page .contact-section .contact-info-item.main-phone .contact-label {
    color: rgba(255, 255, 255, 0.9);
}

.colo-page .contact-section .contact-info-item.main-phone .contact-value {
    color: #fff;
}

/* 추천 서비스 섹션 반응형 */
@media (max-width: 768px) {
    .colo-page .addon-grid {
        grid-template-columns: 1fr;
    }

    .colo-page .addon-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* 프로모션 배너 모바일 */
    .colo-page .promo-strip {
        padding: 16px 0;
    }

    .colo-page .promo-strip-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 16px;
    }

    .colo-page .promo-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .colo-page .promo-text {
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
    }
}
