/* Container */
.seo-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Hero */
.seo-pricing-hero {
    text-align: center;
    margin-bottom: 60px;
}

.seo-pricing-hero-title {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
}

.seo-pricing-hero-subtitle {
    font-size: 1.2em;
    color: #666;
}

/* Selector */
.seo-pricing-selector {
    background: #F5F7F9;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
}

.seo-pricing-selector-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-pricing-selector-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 35px;
}

/* Journey */
.seo-pricing-journey {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.seo-pricing-journey-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.seo-pricing-goals {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Goal Steps */
.seo-pricing-goal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.seo-pricing-goal-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 18px;
}

.seo-pricing-goal-circle svg {
    width: 100%;
    height: 100%;
    fill: #222;
    transition: fill 0.3s;
}

.seo-pricing-goal-circle .seo-pricing-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: filter 0.3s;
}

/* Hover state for non-active goals */
.seo-pricing-goal:not(.active):hover .seo-pricing-goal-circle {
    transform: scale(1.1);
    border-color: #666;
}

.seo-pricing-goal:not(.active):hover .seo-pricing-goal-circle svg {
    fill: #222;
}

/* Active state - MOST IMPORTANT */
.seo-pricing-goal.active .seo-pricing-goal-circle {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(1.15);
}

.seo-pricing-goal.active .seo-pricing-goal-circle svg,
.seo-pricing-container .seo-pricing-goal.active .seo-pricing-goal-circle svg {
    fill: #fff !important;
}

.seo-pricing-goal.active .seo-pricing-goal-circle .seo-pricing-icon-img {
    filter: brightness(0) saturate(100%) invert(1);
}

/* Active hover state - keep white */
.seo-pricing-goal.active:hover .seo-pricing-goal-circle svg,
.seo-pricing-container .seo-pricing-goal.active:hover .seo-pricing-goal-circle svg {
    fill: #fff !important;
}

.seo-pricing-goal.active:hover .seo-pricing-goal-circle .seo-pricing-icon-img {
    filter: brightness(0) saturate(100%) invert(1);
}

.seo-pricing-goal-label {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 5px;
}

.seo-pricing-goal-hint {
    font-size: 0.95em;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* Results */
.seo-pricing-result {
    display: none;
}

.seo-pricing-result.active {
    display: block;
}

/* Overview */
.seo-pricing-overview {
    background: #F5F7F9;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.seo-pricing-plan-info {
    flex: 1;
}

.seo-pricing-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.seo-pricing-plan-title {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 8px;
}

.seo-pricing-plan-subtitle {
    font-size: 1em;
    color: #666;
}

/* Pricing */
.seo-pricing-plan-pricing {
    display: flex;
    align-items: center;
    gap: 30px;
}

.seo-pricing-price-section {
    padding-right: 30px;
    border-right: 2px solid #e0e0e0;
}

.seo-pricing-price-amount {
    font-size: 3em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.seo-pricing-price-amount small {
    font-size: 0.4em;
    font-weight: 600;
    color: #999;
}

.seo-pricing-price-note {
    color: #999;
    font-size: 0.9em;
}

/* CTA */
.seo-pricing-cta-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-pricing-cta-primary {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.seo-pricing-cta-primary:hover {
    background: #333;
    color: #fff !important;
}

.seo-pricing-cta-secondary {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}

/* Detail Sections */
.seo-pricing-detail-section {
    background: #F5F7F9;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.seo-pricing-section-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

.seo-pricing-section-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #1a1a1a;
}

.seo-pricing-why-box {
    padding: 0;
    line-height: 1.7;
    text-align: left;
}

.seo-pricing-why-box p {
    text-align: left;
}

/* Features */
.seo-pricing-feature {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.seo-pricing-feature:hover {
    background: #f9f9f9;
    transform: translateX(3px);
}

.seo-pricing-feature.highlight {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    margin-bottom: 15px;
}

.seo-pricing-feature-icon {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2em;
}

.seo-pricing-feature.highlight .seo-pricing-feature-icon {
    color: #ffd700;
}

/* Back Button */
.seo-pricing-back {
    text-align: center;
    padding: 40px;
}

.seo-pricing-back-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-pricing-hero-title {
        font-size: 2em;
    }
    
    .seo-pricing-goals {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .seo-pricing-goal {
        flex: 0 0 calc(50% - 15px);
    }
    
    .seo-pricing-journey-line {
        display: none;
    }
    
    .seo-pricing-overview {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .seo-pricing-plan-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .seo-pricing-price-section {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 20px;
    }
}
