/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    align-items: stretch;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    z-index: 1;
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-unit {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-card>p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 0;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pricing-features .material-symbols-outlined {
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Pricing Info Badges */
.pricing-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-md);
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
}

.info-icon {
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--primary);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    color: var(--primary);
    font-size: 0.875rem;
}

.info-text span {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    text-align: center;
    border-bottom: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Email Form */
.email-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.email-form-container h4 {
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .email-form {
        flex-direction: column;
    }
}

.email-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.email-form input::placeholder {
    color: var(--text-dim);
}

.email-form input:focus {
    border-color: var(--primary);
}

.email-form button {
    white-space: nowrap;
}

.email-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    min-height: 1.5rem;
}

.form-status.success {
    color: var(--primary);
}

.form-status.error {
    color: #ff4444;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--bg-dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}