/* ==============================================
   Managed Service Page Styles
   YourIT - Modern, Conversion-Optimized Design
============================================== */

/* Hero Section - Managed */
.managed-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.managed-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.managed-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.managed-hero .hero-content {
    text-align: left;
    max-width: none;
    margin: 0;
}

.managed-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
}

.managed-hero .hero-badge i {
    font-size: 16px;
}

.managed-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #191f28;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.managed-hero .hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7684;
    margin-bottom: 36px;
}

.managed-hero .hero-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.managed-hero .hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

/* Managed Illustration - 2중 궤도 시스템 */
.managed-illustration {
    position: relative;
    width: 420px;
    height: 420px;
}

/* 중앙 원 */
.central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 10;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.35);
    animation: pulse 2.5s ease-in-out infinite;
}

.inner-circle i {
    font-size: 42px;
    color: #fff;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 20px 50px rgba(0, 212, 170, 0.35); }
    50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 25px 60px rgba(0, 212, 170, 0.45); }
}

/* 궤도 링 공통 스타일 */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 212, 170, 0.2);
}

/* 내부 궤도 - 시계방향 회전 */
.orbit-ring.orbit-inner {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation: orbitSpin 25s linear infinite;
}

/* 외부 궤도 - 반시계방향 회전 */
.orbit-ring.orbit-outer {
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    animation: orbitSpinReverse 35s linear infinite;
    border-color: rgba(0, 180, 216, 0.15);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpinReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* 궤도 아이콘 */
.orbit-ring .orbit-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    /* 원형 궤도 위치 계산 */
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(calc(50% + 56px)) rotate(calc(-1 * var(--angle)));
}

.orbit-ring.orbit-inner .orbit-icon {
    transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle)));
    animation: counterRotate 25s linear infinite;
}

.orbit-ring.orbit-outer .orbit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle)));
    animation: counterRotateReverse 35s linear infinite;
}

/* 아이콘이 항상 똑바로 보이도록 역회전 */
@keyframes counterRotate {
    from { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle) - 0deg)); }
    to { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle) - 360deg)); }
}

@keyframes counterRotateReverse {
    from { transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle) + 0deg)); }
    to { transform: rotate(var(--angle)) translateX(160px) rotate(calc(-1 * var(--angle) + 360deg)); }
}

.orbit-icon i {
    font-size: 18px;
    color: var(--primary);
}

.orbit-ring.orbit-outer .orbit-icon i {
    font-size: 16px;
    color: #00B4D8;
}

/* 플로팅 라벨 - 4개, 대각선 배치 */
.floating-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #4e5968;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: floatLabel 4s ease-in-out infinite;
    white-space: nowrap;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 4개 라벨 - 사선 배치로 겹치지 않게 */
.float-label.label-1 {
    top: -5%;
    left: 5%;
    animation-delay: 0s;
}
.float-label.label-2 {
    top: 10%;
    right: -15%;
    animation-delay: 1s;
}
.float-label.label-3 {
    bottom: 10%;
    left: -10%;
    animation-delay: 2s;
}
.float-label.label-4 {
    bottom: -5%;
    right: 5%;
    animation-delay: 3s;
}

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

/* Social Proof Section */
.social-proof-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.social-proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.proof-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.proof-text i {
    font-size: 24px;
    color: var(--primary);
}

.proof-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.proof-badge i {
    font-size: 16px;
    color: var(--primary);
}

/* Stats Section - Managed */
.managed-stats {
    padding: 80px 0;
    background: #fff;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #f8fafb;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.problem-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e8eb;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.problem-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 32px;
    color: #e74c3c;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #8b95a1;
}

.solution-intro {
    text-align: center;
    margin-top: 50px;
}

.solution-arrow {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.solution-arrow i {
    font-size: 24px;
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.solution-intro p {
    font-size: 18px;
    color: #4e5968;
}

.solution-intro strong {
    color: var(--primary);
}

/* Service Overview Section */
.service-overview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-overview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.service-overview-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overview-icon i {
    font-size: 28px;
    color: #fff;
}

.service-overview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.service-overview-card > p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    font-size: 12px;
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #f8fafb;
}

.section-subtitle {
    font-size: 16px;
    color: #8b95a1;
    margin-top: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.pricing-card.premium .pricing-name,
.pricing-card.premium .pricing-desc,
.pricing-card.premium .price-current,
.pricing-card.premium .pricing-features li {
    color: #fff;
}

.pricing-card.premium .pricing-features li.excluded {
    color: rgba(255, 255, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-badge.free {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    color: var(--primary);
}

.pricing-badge.discount {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: #fff;
}

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: #8b95a1;
}

.pricing-price {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #e5e8eb;
    border-bottom: 1px solid #e5e8eb;
    margin-bottom: 24px;
}

.pricing-card.premium .pricing-price {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.price-current {
    font-size: 16px;
    color: #191f28;
}

.price-current strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4e5968;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-features li.included i {
    color: var(--primary);
}

.pricing-features li.excluded {
    color: #b0b8c1;
}

.pricing-features li.excluded i {
    color: #d1d5db;
}

.pricing-features li.highlight {
    font-weight: 600;
    color: var(--primary);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #f2f4f6;
    color: #4e5968;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: #e5e8eb;
}

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

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

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

/* ITO Card Style */
.pricing-card.ito {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.pricing-card.ito .pricing-name,
.pricing-card.ito .pricing-desc,
.pricing-card.ito .price-current,
.pricing-card.ito .pricing-features li {
    color: #fff;
}

.pricing-card.ito .pricing-price {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.ito .price-current strong {
    color: #fff;
    font-size: 28px;
}

.pricing-card.ito .price-sub {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.pricing-badge.ito {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-btn.ito {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-btn.ito:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-notice {
    margin-top: 40px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e8eb;
}

.pricing-notice i {
    font-size: 20px;
    color: var(--primary);
}

.pricing-notice p {
    font-size: 15px;
    color: #6b7684;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 50px;
}

.comparison-box {
    flex: 1;
    max-width: 400px;
    border-radius: 24px;
    padding: 36px;
}

.comparison-box.self {
    background: #f8fafb;
    border: 2px solid #e5e8eb;
}

.comparison-box.managed {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.comparison-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e8eb;
}

.comparison-box.managed h3 {
    border-color: rgba(0, 212, 170, 0.3);
}

.comparison-box h3 i {
    font-size: 24px;
    color: #8b95a1;
}

.comparison-box.managed h3 i {
    color: var(--primary);
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.cost-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e5e8eb;
}

.comparison-box.managed .cost-list li {
    border-color: rgba(0, 212, 170, 0.15);
}

.cost-list li:last-child {
    border-bottom: none;
}

.cost-item {
    font-size: 14px;
    color: #4e5968;
}

.cost-value {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

.cost-value.included {
    color: var(--primary);
}

.total-cost {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.comparison-box.managed .total-cost {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.total-label {
    display: block;
    font-size: 13px;
    color: #8b95a1;
    margin-bottom: 8px;
}

.comparison-box.managed .total-label {
    color: rgba(255, 255, 255, 0.8);
}

.total-value {
    font-size: 28px;
    font-weight: 800;
}

.total-value.negative {
    color: #e74c3c;
}

.total-value.positive {
    color: #fff;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-vs span {
    width: 60px;
    height: 60px;
    background: #191f28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.savings-highlight {
    margin-top: 50px;
    text-align: center;
}

.savings-content {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 30px 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.savings-label {
    font-size: 16px;
    color: #6b7684;
}

.savings-value {
    font-size: 28px;
    color: #191f28;
}

.savings-value strong {
    color: var(--primary);
    font-weight: 800;
}

/* Process Section - Managed */
.managed-process-section {
    padding: 100px 0;
    background: #f8fafb;
}

/* Promo Banner Enhancements */
.promo-remaining {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: #ff6b81;
    font-weight: 600;
}

.promo-remaining strong {
    color: #fff;
    font-size: 16px;
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-left: 8px;
}

.promo-btn.pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 170, 0); }
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.guarantee-item {
    text-align: center;
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 24px;
    color: #fff;
}

.guarantee-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    color: #8b95a1;
    line-height: 1.5;
}

/* Sticky CTA Bar (Mobile) */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta-bar .cta-inner {
    display: flex;
    gap: 10px;
}

.sticky-cta-bar .btn-sticky-primary {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.sticky-cta-bar .btn-sticky-secondary {
    padding: 14px 20px;
    background: #f2f4f6;
    color: #4e5968;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

/* ===== Addon Services Section ===== */
.addon-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

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

.addon-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #191f28;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.addon-consult-btn:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

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

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

.addon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.addon-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 5px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

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

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

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

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

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

.addon-price {
    padding-top: 16px;
    border-top: 1px solid #e5e8eb;
    margin-bottom: 16px;
}

.addon-price .price-from {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.addon-price .price-benefit {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

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

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

/* ===== Service Detail Comparison Table ===== */
.service-detail-section {
    padding: 100px 0;
    background: #f8fafb;
}

.service-detail-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.service-detail-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.service-detail-table thead {
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.service-detail-table th {
    padding: 20px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.service-detail-table th.category-col {
    text-align: left;
    width: 200px;
    background: rgba(0, 0, 0, 0.2);
}

.service-detail-table th.plan-col {
    width: 150px;
}

.service-detail-table th.plan-col.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    position: relative;
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.plan-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #fff;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
}

.plan-price {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.service-detail-table tbody tr {
    border-bottom: 1px solid #e5e8eb;
    transition: background 0.2s ease;
}

.service-detail-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.03);
}

.service-detail-table tbody tr.category-row {
    background: #f8fafb;
}

.service-detail-table tbody tr.category-row td {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #191f28;
}

.service-detail-table tbody tr.category-row td i {
    margin-right: 8px;
    color: var(--primary);
}

.service-detail-table tbody td {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #4e5968;
    vertical-align: middle;
}

.service-detail-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #191f28;
    padding-left: 24px;
}

.service-detail-table tbody td.featured-col {
    background: rgba(0, 212, 170, 0.05);
}

.service-detail-table th.plan-col.ito {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-detail-table tbody td.ito-col {
    background: rgba(102, 126, 234, 0.05);
}

.service-detail-table .text-primary {
    color: var(--primary);
}

.service-detail-table .text-gray {
    color: #d1d5db;
}

.support-type {
    display: inline-block;
    padding: 4px 12px;
    background: #f2f4f6;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7684;
}

.support-type.primary {
    background: rgba(0, 212, 170, 0.12);
    color: var(--primary);
}

.support-type.ito {
    background: rgba(103, 126, 234, 0.12);
    color: #667eea;
}

.detail-cta {
    margin-top: 40px;
    text-align: center;
}

.detail-cta p {
    font-size: 16px;
    color: #6b7684;
    margin-bottom: 16px;
}

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

.btn-detail-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

/* Guarantee Standalone Section */
.guarantee-standalone-section {
    padding: 80px 0;
    background: #fff;
}

.guarantee-standalone-section .guarantee-section {
    margin-top: 0;
}

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

    .service-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .managed-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .managed-hero .hero-content {
        text-align: center;
    }

    .managed-hero .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .managed-hero .hero-visual {
        display: none;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-visual {
        flex-direction: column;
        align-items: center;
    }

    .comparison-box {
        max-width: 100%;
    }

    .comparison-vs {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .managed-hero .hero-title {
        font-size: 36px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .comparison-visual {
        gap: 24px;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .promo-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .promo-remaining {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .promo-timer {
        margin-left: 0;
    }

    .sticky-cta-bar {
        display: block;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .addon-header {
        flex-direction: column;
    }

    .floating-cta {
        bottom: 80px;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-table-wrapper {
        margin-top: 30px;
        border-radius: 12px;
    }

    .service-detail-table th,
    .service-detail-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .plan-name {
        font-size: 14px;
    }

    .plan-price {
        font-size: 11px;
    }

    .support-type {
        padding: 3px 8px;
        font-size: 11px;
    }
}

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

    .proof-badges {
        gap: 8px;
    }

    .proof-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}
