/* ===================================
   PRICING PAGE STYLES
   =================================== */

/* Header Section */
.pricing-header {
    padding: 120px 0 60px;
    background: var(--bg-primary);
}

.pricing-header .section-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    /* Solid color for visibility */
}

.pricing-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.billing-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.billing-label.active {
    color: var(--accent-purple);
}

.save-badge {
    font-size: 0.75rem;
    background: rgba(83, 56, 158, 0.15);
    color: var(--accent-purple);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    /* Darker grey for visibility */
    transition: .4s;
    border: 1px solid #cbd5e1;
    /* Darker border */
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--accent-purple);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Cards Grid */
.pricing-cards {
    padding: 0 0 80px;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 1px var(--accent-purple), var(--shadow-md);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.charter-offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjust card header to prevent text overlap with badge */
.pricing-card.charter .card-header {
    padding-top: 20px;
}

/* Only show charter badge when charter is available */
.pricing-card.charter .charter-offer-badge {
    display: block;
}

.coming-soon-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Card Content */
.card-header {
    margin-bottom: var(--spacing-md);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.tier-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-price {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.charter-clean .card-price {
    margin-bottom: 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 2px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.billing-note {
    font-size: 0.8rem;
    color: var(--accent-purple);
    margin-top: -10px;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* Clean Charter Pricing Redesign */
.charter-clean .card-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0.25rem 0 0 0;
}

.charter-clean .standard-price-small.side-by-side {
    font-size: 1.2rem;
    color: #9ca3af;
    text-align: right;
    margin-bottom: 0;
    font-weight: 500;
}

.charter-clean .standard-price-small s {
    text-decoration-color: #9ca3af;
    text-decoration-thickness: 1px;
    color: #9ca3af;
}

.charter-clean .card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    /* No gap between currency and amount */
    margin: 0;
}

.charter-clean .card-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    top: -8px;
    /* Slight visual adjustment */
}

.charter-clean .card-price .amount {
    font-size: 3.5rem;
    /* Larger hero size */
    font-weight: 800;
    line-height: 1;
    color: #000000;
    letter-spacing: -1px;
}

.charter-clean .card-price .period {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-left: 4px;
}

.charter-clean .savings-text {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 0.5rem;
}

.charter-clean .urgency-text {
    color: var(--accent-purple);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    margin: 0.5rem 0 0.75rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    line-height: 1.2;
}

.charter-clean .trial-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.charter-clean .charter-cta {
    font-size: 1.05rem;
    padding: 14px 32px;
    white-space: nowrap;
}

.charter-clean .standard-price-small s {
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

.charter-clean .card-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.charter-clean .card-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.charter-clean .card-price .period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.charter-clean .savings-text {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.charter-clean .urgency-text {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    margin: 1.5rem 0 1rem;
    padding: 0.75rem 1rem;
    background: rgba(83, 56, 158, 0.1);
    border-radius: 8px;
}

.charter-clean .trial-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.charter-clean .charter-cta {
    font-size: 1.05rem;
    padding: 14px 32px;
    white-space: nowrap;
}

.trial-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    margin-bottom: var(--spacing-lg);
}

.card-features {
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
    flex-grow: 1;
}

.feature-intro {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.card-features h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.card-features h4:first-of-type {
    margin-top: 0;
}

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

.card-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.coming-soon-list li {
    color: var(--text-muted);
    font-style: italic;
}

.waitlist-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.table-responsive {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: var(--spacing-md);
}

.comparison-table {
    width: auto;
    margin: 0 auto;
    border-collapse: collapse;
}

.comparison-table th {
    text-align: left;
    padding: 12px 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 8px 8px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 200px;
    max-width: 200px;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
    width: 90px;
    padding: 8px 2px;
}

.section-header-row td {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding-top: var(--spacing-md);
    padding-bottom: 8px;
}

.price-row td {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    border-bottom: none;
    padding-top: 16px;
    padding-bottom: 16px;
}

.table-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Early Adopter Banner */
.early-adopter-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(83, 56, 158, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.benefit-list li {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.banner-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--bg-primary);
    text-align: center;
}

.proof-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.testimonial .quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.testimonial .author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.proof-footer {
    font-size: 0.9rem;
    color: var(--accent-purple);
    font-weight: 600;
    margin-top: var(--spacing-xl);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.final-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Utilities */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

.contact-form {
    margin-top: var(--spacing-xl);
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(83, 56, 158, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* Charter Sticky Badge */
.charter-sticky-badge {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(83, 56, 158, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.charter-sticky-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(83, 56, 158, 0.5);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Charter Modal Overlay */
.charter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.charter-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Charter Modal */
.charter-modal {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.charter-modal-overlay.active .charter-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease, background 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

/* Modal Content */
.modal-content {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-badge {
    display: inline-block;
    background: var(--accent-purple);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-subtitle strong {
    color: var(--accent-purple);
    font-weight: 700;
}

.discount-highlight {
    display: inline-block;
    background: rgba(83, 56, 158, 0.1);
    color: var(--accent-purple);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Counter Box */
.charter-counter-box {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.counter-display {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.spots-number {
    color: var(--accent-purple);
}

.spots-total {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), #a48cf0);
    transition: width 0.3s ease;
}

/* Benefits Grid */
.modal-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-content strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-content span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

/* Modal Disclaimer */
.modal-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 20px 0;
    text-align: center;
    line-height: 1.5;
}

/* Don't Show Again Checkbox */
.modal-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.modal-checkbox input[type="checkbox"] {
    cursor: pointer;
}

/* Animation for modal entrance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.charter-modal-overlay.active .charter-modal {
    animation: slideIn 0.4s ease-out;
}

/* Charter Pricing Display */
.price-with-charter {
    margin-bottom: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.charter-clean .price-with-charter {
    margin-bottom: 0;
}

/* ============================================
   PRO TIER - CHARTER PRICING DISPLAY
   ============================================ */

/* Price comparison layout */
.price-comparison {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Struck-through standard price */
.standard-price-struck {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #6b7280;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 3px;
}

/* Arrow between prices */
.price-arrow {
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-purple);
}

/* Charter price uses standard card-price styling */
.pricing-card .price-with-charter .card-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 2px;
    margin: 0;
    width: auto;
}

.pricing-card .price-with-charter .card-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Savings badge */
.savings-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 6px 14px;
    border-radius: 14px;
    margin-top: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}


.charter-price-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

.info-trigger {
    background: none;
    border: none;
    color: var(--accent-purple);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-weight: 600;
}

.info-trigger:hover {
    color: var(--accent-purple-light);
}

/* Charter CTA Styling */
.charter-cta {
    position: relative;
    overflow: hidden;
}

.charter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.charter-cta:hover::before {
    left: 100%;
}

.spots-inline {
    color: var(--accent-purple);
    font-weight: 700;
}

/* Ensure price alignment across cards */
.pricing-card .card-price {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charter-clean .card-price {
    min-height: auto;
}

/* Standard price display (when charter sells out) */
.price-standard .card-price {
    margin-bottom: var(--spacing-md);
}

/* Comparison Table Charter Styles */
.charter-price-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.charter-price-cell s {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.charter-tag-small {
    font-size: 0.65rem;
    background: rgba(83, 56, 158, 0.1);
    color: var(--accent-purple);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .pricing-header .section-title {
        font-size: 2.5rem;
    }

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

    .faq-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 0.85rem;
        padding: 8px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Stack badges vertically on mobile */
    .charter-offer-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        display: inline-block;
        margin-bottom: 10px;
        align-self: center;
    }

    .pricing-card.charter {
        display: flex;
        flex-direction: column;
    }

    .price-comparison {
        gap: 0.5rem;
    }

    .standard-price-struck {
        font-size: 2.5rem;
    }

    .price-arrow {
        font-size: 1.5rem;
    }

    .charter-sticky-badge {
        top: 60px;
        right: 10px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .badge-text {
        display: none;
    }

    .modal-content {
        padding: 24px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-benefits {
        grid-template-columns: 1fr;
    }

    .counter-display {
        font-size: 2rem;
    }
}