.pricing-wrapper {
    background: #fafafa;
    min-height: 100vh;
    padding: 6em 2em 4em;
    position: relative;
}
.pricing-wrapper::before,
.pricing-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}
.pricing-wrapper::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: -55px;
    left: -100px;
}
.pricing-wrapper::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    bottom: 0px;
    right: -100px;
}
@media (max-width: 768px) {
    .pricing-wrapper::before,
    .pricing-wrapper::after {
        display: none;
    }
}
.pricing-header {
    max-width: 1200px;
    margin: 0 auto 4em;
}
.pricing-header h1 {
    font-size: 4.5em;
    font-weight: 600;
    color: #3a3a3a;
    margin: 0 0 0.5em 0;
    letter-spacing: -0.01em;
    text-align: left;
    max-width: 800px;
}
.pricing-header p {
    font-size: 1.5em;
    color: #666;
    margin: 0;
    text-align: left;
    max-width: 800px;
}
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
}
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5em 2em;
    text-align: left;
    transition: transform 0.15s ease;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.pricing-badge {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    background: #000;
    color: white;
    padding: 0.35em 0.8em;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
}
.plan-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.3em;
}
.plan-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1.5em;
    line-height: 1.4;
}
.plan-price-container {
    margin-bottom: 1.5em;
}
.plan-price {
    font-size: 2.5em;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
}
.plan-period {
    color: #666;
    font-size: 0.9em;
    font-weight: 400;
}
.plan-includes {
    font-size: 0.85em;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.8em;
}
.plan-best {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 1.5em;
    font-style: italic;
    line-height: 1.4;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2em 0;
}
.plan-features li {
    padding: 0.5em 0;
    color: #333;
    display: flex;
    align-items: flex-start;
    font-size: 0.9em;
    line-height: 1.5;
}
.plan-features li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 0.6em;
    flex-shrink: 0;
}
.plan-cta {
    background: #000;
    color: white;
    border: none;
    padding: 0.9em 1.5em;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}
.plan-cta:hover {
    opacity: 0.85;
}
.plan-cta.secondary {
    background: white;
    color: #000;
    border: 1px solid #e0e0e0;
}
.plan-cta.secondary:hover {
    background: #fafafa;
}
.footnote {
    max-width: 1200px;
    margin: 3em auto 0;
    padding: 0 2em;
    color: #999;
    font-size: 0.85em;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .pricing-wrapper {
        padding: 4em 1.5em 3em;
    }
    .pricing-header h1 {
        font-size: 2em;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .plan-price {
        font-size: 2em;
    }
}