/* =====================================================
   MOTORS365 - Checkout & Pricing Styles
   ===================================================== */

/* Pricing Header */
.pricing-header-section {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
}

.pricing-toggle-wrapper .toggle-label {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.pricing-toggle-wrapper .toggle-label.active {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-toggle {
    width: 48px;
    height: 26px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
}

.pricing-toggle .toggle-indicator {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.pricing-toggle[data-active="dealer"] .toggle-indicator {
    transform: translateX(22px);
}

/* Pricing Section */
.pricing-section {
    padding: 0 0 6rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--border-default);
    transform: translateY(-4px);
}

.pricing-card-featured {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 168, 85, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gold);
    color: var(--text-inverse);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.plan-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-included svg {
    color: var(--success);
}

.feature-excluded {
    color: var(--text-muted);
}

.feature-excluded svg {
    color: var(--text-muted);
    opacity: 0.5;
}

.plan-note {
    text-align: center;
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing CTA */
.pricing-cta {
    padding: 6rem 0;
    text-align: center;
}

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

.pricing-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* =====================================================
   CHECKOUT PAGE STYLES
   ===================================================== */

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: 100vh;
}

.checkout-main {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.checkout-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.checkout-logo .logo-icon {
    width: 36px;
    height: 36px;
    color: var(--navy-800);
}

.checkout-steps-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.step-indicator span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

.step-indicator.active {
    color: var(--gold);
}

.step-indicator.active span {
    background: var(--gold);
    color: var(--navy-950);
}

.step-indicator.completed {
    color: var(--success);
}

.step-indicator.completed span {
    background: var(--success);
    color: white;
}

.checkout-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.checkout-step {
    display: none;
    width: 100%;
    max-width: 480px;
}

.checkout-step.active {
    display: block;
}

.checkout-step h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.step-subtitle a {
    color: var(--gold);
    font-weight: 500;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

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

.form-hint {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--success-muted);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--success);
}

.secure-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Checkout Sidebar */
.checkout-sidebar {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    padding: 2rem;
}

.order-summary {
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.plan-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.plan-option:hover {
    border-color: var(--border-default);
}

.plan-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-muted);
}

.plan-option input {
    display: none;
}

.plan-details {
    flex: 1;
}

.plan-details .plan-name {
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.plan-details .plan-desc {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.plan-price {
    font-weight: 600;
    color: var(--gold);
}

.plan-price small {
    font-weight: 400;
    color: var(--text-muted);
}

.promo-section {
    margin-bottom: 1.5rem;
}

.promo-input {
    display: flex;
    gap: 0.5rem;
}

.promo-input .form-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
}

.promo-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--success-muted);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--success);
}

.promo-applied button {
    color: var(--success);
    font-size: 1.25rem;
    line-height: 1;
}

.order-breakdown {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.order-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.938rem;
    color: var(--text-secondary);
}

.order-line.discount {
    color: var(--success);
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 1.25rem;
    font-weight: 600;
}

.order-note {
    display: block;
    font-size: 0.813rem;
    color: var(--text-muted);
    text-align: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.guarantee-badge svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* Success State */
.success-state {
    text-align: center;
    padding: 2rem 0;
}

.success-state .success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--success-muted);
    border-radius: 50%;
    color: var(--success);
}

.success-state .success-icon svg {
    width: 40px;
    height: 40px;
}

.success-state h2 {
    margin-bottom: 0.75rem;
}

.success-state > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-details {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-details .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.success-details .detail-item:last-child {
    border-bottom: none;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateX(calc(100% + 2rem));
    transition: transform var(--transition-base);
}

.toast.active {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast button {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        order: -1;
        border-left: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-main {
        padding: 1.5rem;
    }
    
    .checkout-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-indicator:not(.active) {
        padding: 0.5rem;
    }
    
    .step-indicator:not(.active)::after {
        display: none;
    }
}

.checkout-body {
    min-height: 100vh;
    background: var(--bg-primary);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--bg-secondary);
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.summary-content {
    max-width: 400px;
    margin-left: auto;
}

.checkout-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.checkout-logo .logo-icon {
    width: 36px;
    height: 36px;
    color: var(--navy-800);
}

.checkout-summary .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    transition: color var(--transition-fast);
}

.checkout-summary .back-link:hover {
    color: var(--text-primary);
}

.checkout-summary .back-link svg {
    width: 16px;
    height: 16px;
}

/* Order Card */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-header {
    margin-bottom: 1rem;
}

.order-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-plan {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.order-plan .plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.order-plan .plan-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.order-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.order-features svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.order-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.discount-code {
    padding: 0.125rem 0.5rem;
    background: var(--success-muted);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--success);
}

.discount-amount {
    color: var(--success);
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 1.125rem;
    font-weight: 600;
}

.billing-note {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Promo Section */
.promo-section {
    margin-bottom: 2rem;
}

.promo-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.promo-toggle:hover {
    color: var(--gold);
}

.promo-toggle svg {
    width: 18px;
    height: 18px;
}

.promo-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.promo-input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.promo-input:focus {
    outline: none;
    border-color: var(--gold);
}

.promo-message {
    margin-top: 0.5rem;
    font-size: 0.813rem;
}

.promo-message.success {
    color: var(--success);
}

.promo-message.error {
    color: var(--danger);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    color: var(--text-muted);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
}

/* Checkout Form Section */
.checkout-form-section {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-form-container {
    width: 100%;
    max-width: 480px;
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.checkout-steps .step.active {
    color: var(--gold);
}

.checkout-steps .step.completed {
    color: var(--success);
}

.step-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    font-size: 0.813rem;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--gold);
    color: var(--text-inverse);
}

.step.completed .step-number {
    background: var(--success);
    color: white;
}

.step span:not(.step-number) {
    font-size: 0.875rem;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: var(--border-subtle);
}

/* Step Content */
.checkout-step-content {
    display: none;
}

.checkout-step-content.active {
    display: block;
}

.checkout-step-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.checkout-step-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.checkout-step-content > p a {
    color: var(--gold);
    font-weight: 500;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Stripe Element */
.stripe-element {
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.stripe-element.StripeElement--focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-muted);
}

.stripe-element.StripeElement--invalid {
    border-color: var(--danger);
}

.card-errors {
    margin-top: 0.5rem;
    font-size: 0.813rem;
    color: var(--danger);
}

/* Payment Buttons */
.payment-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-buttons .btn-ghost {
    flex-shrink: 0;
}

.payment-buttons .btn-primary {
    flex: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.payment-methods span {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.card-icons {
    display: flex;
    gap: 0.5rem;
}

.card-icon {
    width: 38px;
    height: 24px;
    border-radius: 4px;
}

/* Review Section */
.review-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-card {
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-header h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.edit-btn {
    font-size: 0.813rem;
    color: var(--gold);
    font-weight: 500;
}

.edit-btn:hover {
    color: var(--gold-light);
}

.review-card p {
    font-size: 0.938rem;
}

.review-card .review-note {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.review-card-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card-info svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

/* Terms Agreement */
.terms-agreement {
    margin-bottom: 1.5rem;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.813rem;
    color: var(--text-muted);
}

.secure-note svg {
    width: 16px;
    height: 16px;
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--success-muted);
    border-radius: 50%;
    color: var(--success);
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-content h2 {
    margin-bottom: 0.75rem;
}

.success-content > p {
    margin-bottom: 2rem;
}

.success-details {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.detail-item:last-child {
    border-bottom: none;
}

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

.detail-value {
    font-weight: 500;
}

.detail-link {
    color: var(--gold);
    font-weight: 500;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
}

.processing-overlay.active {
    display: flex;
}

.processing-content {
    text-align: center;
}

.processing-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.processing-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.processing-content p {
    color: var(--text-muted);
}

/* Social Button in Checkout */
.checkout-form-section .btn-social {
    width: 100%;
    margin-top: 0;
}

.checkout-form-section .auth-divider {
    margin: 1.5rem 0;
}

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

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        padding: 2rem;
        order: 2;
    }

    .summary-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .checkout-form-section {
        padding: 2rem;
        order: 1;
    }
}

@media (max-width: 768px) {
    .pricing-header-section {
        padding: 6rem 0 3rem;
    }

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

    .checkout-steps .step span:not(.step-number) {
        display: none;
    }

    .payment-buttons {
        flex-direction: column;
    }

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