/* ===========================================
   Pricing Page Styles - Table Layout
   =========================================== */

/* ===========================================
   Currency Toggle
   =========================================== */

.currency-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.currency-label {
    font-size: 0.9rem;
    color: var(--theme-text-tertiary);
}

.currency-toggle {
    display: flex;
    position: relative;
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 10px;
    padding: 4px;
}

.currency-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--theme-text-tertiary);
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 7px;
}

.currency-btn:hover {
    color: var(--theme-text-secondary);
}

.currency-btn.active {
    color: white;
}

.currency-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    border-radius: 7px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(30, 79, 226, 0.3);
}

.currency-btn[data-currency="chf"].active ~ .currency-toggle-slider {
    transform: translateX(100%);
}

/* ===========================================
   Hero Section
   =========================================== */

.pricing-hero-subtitle {
    font-size: 1.15rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.coming-soon-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon svg {
    width: 18px;
    height: 18px;
    color: var(--octigen-orange);
}

/* ===========================================
   Pricing Table
   =========================================== */

.pricing-table-section {
    padding-top: 0rem !important;
    padding-bottom: 4rem !important;
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.pricing-table {
    min-width: 900px;
    background: transparent;
    border: none;
    position: relative;
}

/* Mobile cards - hidden by default */
.pricing-cards-mobile {
    display: none;
}

/* Table Header */
.pricing-table-header {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    background: transparent;
}

.pricing-col {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* First cell (row 1, col 1) - styled same as plan columns */
.pricing-table-header .feature-col {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-right: none;
    border-bottom: 1px solid var(--theme-glass-border);
    border-top-left-radius: 20px;
}

.feature-col {
    padding-left: 1.5rem;
}

.plan-col {
    text-align: center;
    position: relative;
}

/* Header plan columns - styled as connected cards */
.pricing-table-header .plan-col {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-right: none;
    border-bottom: 1px solid var(--theme-glass-border);
}

/* First plan column (Pay-As-You-Go) - no special rounding needed, first feature-col has top-left */
.pricing-table-header > .pricing-col:nth-child(2) {
    /* No border radius - connects to feature-col */
}

/* Last plan column (Business) - round top-right corner */
.pricing-table-header > .pricing-col:nth-child(4) {
    border-top-right-radius: 20px;
    border-right: 1px solid var(--theme-glass-border);
}

.plan-col-featured {
    background: linear-gradient(180deg, rgba(30, 79, 226, 0.05) 0%, rgba(30, 79, 226, 0.02) 100%);
}

/* Featured column - no top border highlight */

.featured-label {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(30, 79, 226, 0.3);
}

/* Early Adopter Discount Badge */
.early-adopter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* Original price (strikethrough) */
.price-original {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

/* Price currency */
.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

/* Better price layout with discount */
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.1rem;
}

.plan-price.has-discount {
    gap: 0.2rem;
}

.plan-price.has-discount .price-original {
    margin-right: 0.15rem;
}

.plan-price.has-discount .price-currency {
    margin-left: 0.15rem;
}

.plan-header {
    padding: 0.25rem 0;
}

.plan-col-featured .plan-header {
    padding-top: 1.5rem;
}

.plan-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    margin: 0 0 0.2rem 0;
}

.plan-tagline {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
    margin: 0 0 0.85rem 0;
    opacity: 1;
    line-height: 1.3;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.75rem;
    color: var(--theme-text-tertiary);
}

.plan-cta {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-cta-primary {
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 79, 226, 0.25);
}

.plan-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 79, 226, 0.35);
    color: white;
}

.plan-cta-outline {
    background: transparent;
    color: var(--theme-text-primary);
    border: 1.5px solid var(--theme-border-primary);
}

.plan-cta-outline:hover {
    border-color: var(--octigen-blue);
    color: var(--octigen-blue);
    background: rgba(30, 79, 226, 0.05);
}

/* Pricing sections container */
.pricing-section {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-top: none;
}

.pricing-section:first-of-type {
    border-top: 1px solid var(--theme-glass-border);
    margin-top: -1px;
    border-top-left-radius: 20px;
}

.pricing-section:last-of-type {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.section-title-row {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.06), rgba(30, 79, 226, 0.02));
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--theme-border-secondary);
}


.section-title-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-title-content svg {
    width: 18px;
    height: 18px;
    color: var(--octigen-blue);
    opacity: 0.8;
}

.section-title-row span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    letter-spacing: 0.3px;
}

/* Feature Rows */
.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pricing-row {
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.pricing-row:last-child {
    border-bottom: none;
}

@media (hover: hover) {
    .pricing-row:hover {
        background: var(--theme-bg-elevated);
    }
}

.pricing-row .feature-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.feature-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--theme-text-primary);
}

.feature-desc {
    font-size: 0.75rem;
    color: var(--theme-text-muted);
    line-height: 1.4;
}

.pricing-row .plan-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.1rem 1rem;
    border-left: 1px solid var(--theme-border-secondary);
}

.pricing-row .plan-col-featured {
    background: rgba(30, 79, 226, 0.02);
}

/* Remove any inherited ::before from rows */
.pricing-row .plan-col-featured::before {
    display: none;
}

/* Cell Values */
.cell-value {
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    font-weight: 500;
    text-align: center;
}

.cell-value.cell-highlight {
    color: var(--octigen-blue);
    font-weight: 600;
}

.cell-sub {
    font-size: 0.7rem;
    color: var(--theme-text-muted);
    text-align: center;
}

.cell-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.cell-check svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

.cell-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 50%;
}

.cell-x svg {
    width: 14px;
    height: 14px;
    color: #ef4444;
    opacity: 0.5;
}

/* ===========================================
   Enterprise Section
   =========================================== */

.enterprise-section {
    padding-top: 0 !important;
    padding-bottom: 4rem !important;
}

.enterprise-container {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.enterprise-header {
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 1px solid var(--theme-border-secondary);
}

.enterprise-header-content {
    max-width: 600px;
}

.enterprise-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--theme-text-primary);
    margin: 0.5rem 0 0.5rem 0;
}

.enterprise-header p {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin: 0;
    line-height: 1.6;
    opacity: 1;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.enterprise-option {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .enterprise-option:hover {
        border-color: var(--octigen-blue);
        box-shadow: 0 4px 20px rgba(30, 79, 226, 0.1);
        transform: translateY(-2px);
    }
}

.enterprise-option.enterprise-option-highlight {
    grid-column: span 2;
    border-color: rgba(30, 79, 226, 0.3);
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.04), rgba(30, 79, 226, 0.01));
}

@media (hover: hover) {
    .enterprise-option.enterprise-option-highlight:hover {
        border-color: var(--octigen-blue);
        background: linear-gradient(135deg, rgba(30, 79, 226, 0.08), rgba(30, 79, 226, 0.03));
    }
}

.option-header {
    margin-bottom: 0.75rem;
}

.option-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--theme-text-muted);
    background: var(--theme-border-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.option-badge.highlight {
    color: white;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
}

.option-header h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    margin: 0 0 0.25rem 0;
}

.option-header p {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
    margin: 0;
    line-height: 1.5;
    opacity: 1;
}

.option-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.option-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-text-primary);
}

.option-period {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
}

.option-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--theme-border-secondary);
    font-size: 0.75rem;
    color: #10b981;
}

.option-bonus svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.enterprise-note {
    padding: 1.25rem 1.5rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.enterprise-note p {
    font-size: 0.85rem;
    color: var(--theme-text-tertiary);
    margin: 0;
    opacity: 1;
}

/* ===========================================
   FAQ Section
   =========================================== */

.faq-section {
    padding-top: 0 !important;
    padding-bottom: 4rem !important;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--theme-text-primary);
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.expanded {
    border-color: var(--octigen-blue);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--theme-text-primary);
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--theme-text-tertiary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.expanded .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin: 0;
    line-height: 1.7;
    opacity: 1;
}

/* ===========================================
   Contact Sales Section
   =========================================== */

.contact-section {
    padding-top: 0 !important;
    padding-bottom: 5rem !important;
    scroll-margin-top: 100px;
}

.contact-wrapper {
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.contact-info-side {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-side h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--theme-text-primary);
    margin: 0.75rem 0 1rem 0;
}

.contact-intro {
    font-size: 1rem;
    color: var(--theme-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 1;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: auto;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-benefit .benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(30, 79, 226, 0.1), rgba(30, 79, 226, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-benefit .benefit-icon svg {
    color: var(--octigen-blue);
}

.contact-benefit .benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

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

.contact-benefit .benefit-text span {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
}

.contact-form-side {
    padding: 2.5rem;
    background: var(--theme-bg-elevated);
    height: 100%;
}

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

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

.contact-form-enhanced .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form-enhanced label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--theme-text-secondary);
}

.contact-form-enhanced input,
.contact-form-enhanced select,
.contact-form-enhanced textarea {
    padding: 0.75rem 1rem;
    background: var(--theme-glass-bg);
    border: 1px solid var(--theme-glass-border);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--theme-text-primary);
    transition: all 0.2s ease;
    font-family: inherit;
}

.contact-form-enhanced input:focus,
.contact-form-enhanced select:focus,
.contact-form-enhanced textarea:focus {
    outline: none;
    border-color: var(--octigen-blue);
    box-shadow: 0 0 0 3px rgba(30, 79, 226, 0.1);
}

.contact-form-enhanced input::placeholder,
.contact-form-enhanced textarea::placeholder {
    color: var(--theme-text-muted);
}

.contact-form-enhanced select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.contact-form-enhanced textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--octigen-blue);
    cursor: pointer;
}

.form-consent label {
    font-size: 0.8rem;
    color: var(--theme-text-tertiary);
}

.form-consent label a {
    color: var(--octigen-blue);
    text-decoration: none;
}

.form-consent label a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 79, 226, 0.25);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 79, 226, 0.35);
}

.contact-submit-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.form-status {
    font-size: 0.85rem;
    padding: 0.75rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ===========================================
   Responsive - Tablet
   =========================================== */

@media (max-width: 1100px) {
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enterprise-option.enterprise-option-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .pricing-table {
        min-width: 800px;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .enterprise-option {
        padding: 1.25rem;
    }
    
    .enterprise-option.enterprise-option-highlight {
        grid-column: span 2;
    }
}

/* ===========================================
   Responsive - Mobile
   =========================================== */

@media (max-width: 991px) {
    /* Add extra top padding for hero on mobile/tablet to match other pages */
    .hero-section {
        padding-top: 6rem;
    }
}

@media (max-width: 768px) {
    .currency-toggle-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .currency-label {
        font-size: 0.85rem;
    }
    
    .currency-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-notice {
        flex-direction: row;
        text-align: left;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .pricing-table-section {
        padding-bottom: 3rem !important;
    }
    
    /* Mobile: Hide the table and show cards */
    .pricing-table-wrapper {
        overflow-x: visible;
        margin: 0;
        padding: 0;
    }
    
    .pricing-table {
        display: none;
    }
    
    .pricing-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-card-mobile {
        background: var(--theme-glass-bg);
        border: 1px solid var(--theme-glass-border);
        border-radius: 20px;
        overflow: hidden;
    }
    
    .pricing-card-mobile.featured {
        border-color: rgba(30, 79, 226, 0.3);
    }
    
    .pricing-card-mobile-header {
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--theme-border-secondary);
        position: relative;
    }
    
    .pricing-card-mobile-header p {
        text-align: center !important;
    }
    
    .pricing-card-mobile.featured .pricing-card-mobile-header {
        background: linear-gradient(180deg, rgba(30, 79, 226, 0.08), rgba(30, 79, 226, 0.02));
    }
    
    .pricing-card-mobile.featured .pricing-card-mobile-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--octigen-blue), #3a6bff);
    }
    
    .mobile-featured-label {
        display: inline-block;
        background: linear-gradient(135deg, var(--octigen-blue), #1a45c7);
        color: white;
        font-size: 0.6rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }
    
    .pricing-card-mobile-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--theme-text-primary);
        margin: 0 0 0.25rem 0;
    }
    
    .pricing-card-mobile-header .plan-tagline {
        font-size: 0.85rem;
        color: var(--theme-text-tertiary);
        margin: 0 0 1rem 0;
        text-align: center;
    }
    
    .pricing-card-mobile-header .plan-price {
        margin-bottom: 1.25rem;
    }
    
    .pricing-card-mobile-header .price-main {
        font-size: 2.25rem;
    }
    
    .pricing-card-mobile-header .plan-cta {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-card-mobile-features {
        padding: 1.25rem;
    }
    
    .mobile-section-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--theme-border-secondary);
        margin-bottom: 0.75rem;
    }
    
    .mobile-section-title:not(:first-child) {
        margin-top: 1rem;
    }
    
    .mobile-section-title svg {
        width: 16px;
        height: 16px;
        color: var(--octigen-blue);
    }
    
    .mobile-section-title span {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--theme-text-primary);
        letter-spacing: 0.3px;
    }
    
    .mobile-feature-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0;
        gap: 1rem;
    }
    
    .mobile-feature-row:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    [data-theme="dark"] .mobile-feature-row:not(:last-child) {
        border-bottom-color: rgba(255, 255, 255, 0.04);
    }
    
    .mobile-feature-name {
        font-size: 0.85rem;
        color: var(--theme-text-secondary);
    }
    
    .mobile-feature-value {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--theme-text-primary);
        text-align: right;
    }
    
    .mobile-feature-value .cell-check {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .mobile-feature-value .cell-x {
        width: 22px;
        height: 22px;
    }
    
    .enterprise-header {
        padding: 1.5rem;
    }
    
    .enterprise-header h2 {
        font-size: 1.25rem;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .enterprise-option.enterprise-option-highlight {
        grid-column: span 1;
    }
    
    .enterprise-option {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .option-header h4 {
        font-size: 0.95rem;
    }
    
    .option-amount {
        font-size: 1.1rem;
    }
    
    .enterprise-note {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 1rem 1rem 1rem;
        padding: 1rem 1.25rem;
    }
    
    .cell-x {
        width: 24px;
        height: 24px;
    }
    
    .cell-x svg {
        width: 12px;
        height: 12px;
    }
    
    /* Contact Section Mobile */
    .contact-wrapper .row {
        flex-direction: column;
    }
    
    .contact-info-side {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-side h2 {
        font-size: 1.6rem;
    }
    
    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-benefits {
        gap: 1rem;
    }
    
    .contact-form-side {
        padding: 1.5rem;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-submit-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pricing-table {
        min-width: 600px;
    }
    
    .pricing-col {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-col {
        padding-left: 1rem;
    }
    
    .plan-header {
        padding: 0.25rem 0;
    }
    
    .plan-col-featured .plan-header {
        padding-top: 1.25rem;
    }
    
    .plan-header h3 {
        font-size: 0.9rem;
    }
    
    .plan-tagline {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .price-main {
        font-size: 1.3rem;
    }
    
    .price-period {
        font-size: 0.6rem;
    }
    
    .plan-cta {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .featured-label {
        font-size: 0.5rem;
        padding: 0.2rem 0.5rem;
        top: 8px;
    }
    
    .section-title-row {
        padding: 0.65rem 1rem;
        margin-top: 0.25rem;
    }
    
    .section-title-content svg {
        width: 14px;
        height: 14px;
    }
    
    .section-title-row span {
        font-size: 0.7rem;
    }
    
    .feature-name {
        font-size: 0.75rem;
    }
    
    .feature-desc {
        display: none;
    }
    
    .cell-value {
        font-size: 0.7rem;
    }
    
    .cell-sub {
        font-size: 0.6rem;
    }
    
    .cell-check {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cell-check svg {
        width: 12px;
        height: 12px;
    }
    
    .cell-x {
        width: 22px;
        height: 22px;
    }
    
    .cell-x svg {
        width: 11px;
        height: 11px;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===========================================
   Mobile: Sticky Header Column
   =========================================== */

@media (max-width: 768px) {
    .pricing-table-wrapper {
        position: relative;
    }
    
    /* Hint to scroll */
    .pricing-table-wrapper::after {
        content: 'Scroll to compare →';
        position: absolute;
        top: -1.5rem;
        right: 1rem;
        font-size: 0.7rem;
        color: var(--theme-text-muted);
        opacity: 0.7;
    }
}
