/* -------------------------------------------------- */
/* Neera Productions - Pricing Page Light Theme       */
/* -------------------------------------------------- */

/* Global container override for this page */
body {
    background-color: #FAF9F6;
    color: #0A0A0A;
}

/* Pricing Page Hero Section (Dark Theme) */
/* Pricing Page Hero Section (Dark Theme) */
.pricing-hero {
    background: linear-gradient(180deg, #0c0c0d 0%, #111112 100%);
    color: #ffffff;
    padding: 80px 0 50px 0; /* Matched top padding with homepage hero */
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-primary), sans-serif !important;
}

/* Enforce font family throughout hero */
.pricing-hero, 
.pricing-hero *, 
.pricing-hero input, 
.pricing-hero textarea, 
.pricing-hero select, 
.pricing-hero button {
    font-family: var(--font-primary), sans-serif !important;
}

/* Golden Grid line pattern overlay */
.pricing-hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    background-image: 
        linear-gradient(rgba(234, 161, 15, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 161, 15, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
}

.pricing-hero .pricing-glow-spot {
    background: radial-gradient(circle, rgba(234, 161, 15, 0.1) 0%, transparent 70%);
}

.pricing-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 80px auto 0 auto; /* Added top margin offset and centering */
    padding: 0 60px; /* Matched 60px left-right padding with homepage hero */
    position: relative;
    z-index: 5;
}

.pricing-hero-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start; /* Keeps pricing-chip small */
}

.pricing-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #ffffff;
    margin: 8px 0 0 0;
}

.pricing-hero-subtitle {
    font-size: 0.90rem;
    color: #d1d5db;
    line-height: 1.55;
    max-width: 580px;
    font-weight: 400;
    margin: 0;
}

/* Stats Glass Card Styling Overrides for smaller, tighter blocks */
.pricing-stats-wrapper {
    max-width: 480px !important;
    margin-top: 32px !important;
    width: 100%;
}

.pricing-stats-glass-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    overflow: hidden;
}

.pricing-stat-col {
    padding: 15px 8px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.pricing-stat-col:nth-child(1),
.pricing-stat-col:nth-child(2),
.pricing-stat-col:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-stat-col:not(:nth-child(3n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-stat-value {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    color: #ffffff;
    line-height: 1.1;
}

.pricing-stats-glass-card .pricing-stat-col:first-child .pricing-stat-value {
    color: var(--color-gold-start) !important;
}

.pricing-stat-tag {
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.04em !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
}

.pricing-hero-right {
    display: flex;
    justify-content: flex-end;
}

/* Form overrides matching homepage style */
.pricing-hero-right .dark-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 36px;
    width: 100%;
    max-width: 460px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9);
}

.pricing-hero-right .dark-form-card select.form-select {
    font-family: var(--font-primary), sans-serif !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: var(--transition-smooth) !important;
}

.pricing-hero-right .dark-form-card select.form-select:focus {
    border-color: var(--color-gold-start) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
}

.pricing-hero-right .dark-form-card button.btn-gold {
    margin-top: 18px !important; /* Added space on top of button */
    transition: var(--transition-smooth) !important;
}

/* Main pricing section layout (Light Theme, placed below hero) */
.pricing-section {
    background-color: #FAF9F6;
    color: #0A0A0A;
    padding: 60px 0 45px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Light theme accent spots */
.pricing-glow-spot {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 161, 15, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.pricing-glow-spot.top-left {
    top: -100px;
    left: -200px;
}

.pricing-glow-spot.bottom-right {
    bottom: -100px;
    right: -200px;
}

/* Background grid (Light mode - more visible grid structure) */
.pricing-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.25) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pricing-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Stack - Minimal Sizes */
.pricing-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 35px;
}

.pricing-chip {
    background-color: rgba(234, 161, 15, 0.08) !important;
    border: 1px solid rgba(234, 161, 15, 0.25) !important;
    color: #b45309 !important;
    padding: 5px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pricing-chip .badge-dot {
    width: 5px;
    height: 5px;
    background-color: #b45309;
    border-radius: 50%;
}

.pricing-title {
    font-size: 2.1rem; /* Minimal title size */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #0A0A0A;
}

.pricing-title span {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.pricing-subtitle {
    font-size: 0.88rem; /* Sleek, minimal font size */
    color: #4b5563;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Billing Switcher Toggle - Light Design */
.billing-toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 12px;
    border-radius: var(--border-radius-pill);
    position: relative;
    z-index: 10;
}

.toggle-label {
    font-size: 0.75rem; /* Minimal toggle label */
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    user-select: none;
}

.toggle-label.active {
    color: #0A0A0A;
}

.toggle-switch-wrapper {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    box-shadow: 0 2px 6px rgba(234, 161, 15, 0.3);
    transition: var(--transition-smooth);
}

.toggle-switch-wrapper.active .toggle-switch-handle {
    left: 26px;
}

/* Pricing Grid Tiers - Compact Gap */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px; /* Tighter layout */
    width: 100%;
    margin-bottom: 60px;
}

.pricing-grid.hidden {
    display: none;
}

/* Clean, Sleek Card Design (Light Theme) */
.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(234, 161, 15, 0.1);
    border-top: 4px solid rgba(234, 161, 15, 0.3); /* Subtle gold top border from start */
    border-radius: 16px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 161, 15, 0.3);
    border-top-color: var(--color-gold-start);
    box-shadow: 0 15px 35px rgba(234, 161, 15, 0.08), 0 10px 25px rgba(0, 0, 0, 0.02);
}

/* Recommended Featured Card Highlights (Light Mode) */
.pricing-card.featured {
    border: 1px solid var(--color-gold-start);
    border-top: 4px solid var(--color-gold-start);
    box-shadow: 0 15px 35px rgba(234, 161, 15, 0.08);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(234, 161, 15, 0.12);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-black);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Card Typography - Minimal Sizes */
.plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    color: #0A0A0A;
}

.plan-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 42px;
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 16px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A0A0A;
    margin-right: 2px;
}

.price-amount {
    font-size: 1.55rem; /* Refined size to prevent multiline wrapping */
    font-weight: 900;
    color: #0A0A0A;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.price-period {
    font-size: 0.72rem;
    color: #6b7280;
    margin-left: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Features List inside Tiers */
.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap */
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem; /* Minimal text size */
    color: #374151;
    line-height: 1.35;
}

.plan-feature-icon {
    width: 14px;
    height: 14px;
    color: #b45309;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Buttons */
.btn-pricing {
    width: 100%;
    text-align: center;
    padding: 10px 20px; /* Minimal padding */
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}

.btn-pricing.primary {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-black);
    box-shadow: 0 4px 12px rgba(234, 161, 15, 0.15);
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 161, 15, 0.25);
}

.btn-pricing.outline {
    background: transparent;
    color: #0A0A0A;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-pricing.outline:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: #0A0A0A;
    transform: translateY(-2px);
}

/* -------------------------------------------------- */
/* Premium Upsells & Add-ons Grid (Light Theme)       */
/* -------------------------------------------------- */
.upsells-section {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 70px;
}

.upsells-title-group {
    text-align: center;
    margin-bottom: 30px;
}

.upsells-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #0A0A0A;
}

.upsells-desc {
    font-size: 0.8rem;
    color: #4b5563;
    margin-top: 6px;
}

.upsells-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.upsell-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.upsell-card:hover {
    transform: translateY(-3px);
    border-color: rgba(234, 161, 15, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.upsell-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(234, 161, 15, 0.06);
    border: 1px solid rgba(234, 161, 15, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45309;
    margin: 0 auto 12px auto;
}

.upsell-icon-box svg {
    width: 16px;
    height: 16px;
}

.upsell-name {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0A0A0A;
}

.upsell-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #b45309;
}

/* -------------------------------------------------- */
/* Interactive Feature Comparison Table (Light)       */
/* -------------------------------------------------- */
.comparison-section {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 70px auto;
}

.comparison-table-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, 
.comparison-table td {
    padding: 14px 20px;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.02);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0A0A0A;
}

.comparison-table td {
    color: #4b5563;
    font-weight: 500;
}

.comparison-table tr:hover td {
    background: rgba(0, 0, 0, 0.005);
}

.comparison-table td:first-child {
    font-weight: 700;
    color: #0A0A0A;
}

.col-highlight {
    color: #b45309 !important;
    font-weight: 700;
}

.check-icon {
    color: #b45309;
    width: 16px;
    height: 16px;
}

.dash-icon {
    color: #9ca3af;
    width: 12px;
    height: 12px;
}



/* -------------------------------------------------- */
/* Responsive Layout Media Queries                    */
/* -------------------------------------------------- */
@media (max-width: 1200px) {
    .pricing-hero-container {
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .upsells-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 115px 0 75px 0; /* Increased padding bottom for spacing */
        min-height: auto;
        display: block;
    }

    .pricing-hero-container {
        grid-template-columns: 1fr;
        gap: 36px !important; /* Row-gap spacing between content and form */
        text-align: left;
        padding: 0 20px !important;
        margin-top: 10px;
    }

    .pricing-hero-left {
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .pricing-hero-title {
        font-size: 2.2rem !important;
        text-align: left;
        line-height: 1.1;
        margin: 0 !important;
    }

    .pricing-hero-subtitle {
        font-size: 0.85rem !important;
        text-align: left;
        line-height: 1.45;
        margin: 0 !important;
    }

    .pricing-hero .badge-tag {
        align-self: flex-start !important;
        margin-bottom: 0 !important;
    }

    /* Hide stats counters on mobile to keep layout clean and readable */
    .pricing-hero .stats-card-wrapper {
        display: none !important;
    }

    .pricing-hero-right {
        justify-content: flex-start;
    }

    .pricing-hero-right .dark-form-card {
        padding: 24px 20px !important;
    }

    .pricing-hero-right .dark-form-card button.btn-gold {
        padding: 12px 20px !important;
        font-size: 0.78rem !important;
        margin-top: 12px !important;
    }

    .pricing-section {
        padding: 60px 0 40px 0;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }

    .upsells-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th, 
    .comparison-table td {
        padding: 10px 14px;
        font-size: 0.72rem;
    }
}

/* ── Dark Feature Comparison Matrix Styles ── */
.comparison-section-dark {
    background: linear-gradient(180deg, #111112 0%, #0c0c0d 100%);
    color: #ffffff;
    padding: 70px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-section-dark .pricing-glow-spot {
    background: radial-gradient(circle, rgba(234, 161, 15, 0.06) 0%, transparent 70%);
}

.comparison-section-dark .upsells-title-group {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 5;
}

.comparison-section-dark .upsells-title {
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 12px;
}

.comparison-section-dark .upsells-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.5;
}

.comparison-section-dark .comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    overflow-x: auto;
    position: relative;
    z-index: 5;
}

.comparison-section-dark .comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 750px;
}

.comparison-section-dark .comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 20px 24px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-section-dark .comparison-table td {
    padding: 18px 24px;
    font-size: 0.88rem; /* Content thoda bada */
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.comparison-section-dark .comparison-table td:first-child {
    color: #ffffff;
    font-weight: 700;
}

.comparison-section-dark .comparison-table .col-highlight {
    background-color: rgba(234, 161, 15, 0.02) !important;
    color: var(--color-gold-start) !important;
    font-weight: 700;
}

.comparison-section-dark .dash-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.2);
}

.comparison-section-dark .check-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold-start);
}

/* Row Hover Highlights & Animations */
.comparison-section-dark .comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.comparison-section-dark .comparison-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.035) !important;
    color: #ffffff !important;
}

.comparison-section-dark .comparison-table tbody tr:hover .col-highlight {
    background-color: rgba(234, 161, 15, 0.05) !important;
    color: var(--color-gold-start) !important;
}

@media (max-width: 768px) {
    .comparison-section-dark {
        padding: 60px 0;
    }

    .comparison-section-dark .upsells-title {
        font-size: 1.85rem;
    }

    .comparison-section-dark .comparison-table th {
        padding: 14px 16px;
        font-size: 0.75rem;
    }

    .comparison-section-dark .comparison-table td {
        padding: 14px 16px;
        font-size: 0.78rem;
    }
}

/* ── Comparison Table Subtitles & Badges ── */
.matrix-cell-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 0.88rem;
    line-height: 1.2;
}

.matrix-cell-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45) !important;
    font-weight: 400;
    line-height: 1.35;
}

.title-note {
    font-size: 0.72rem;
    opacity: 0.5;
    font-weight: 400;
}

.matrix-popular-badge {
    background: #ea580c;
    color: #ffffff;
    font-size: 0.58rem;
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 800;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
}

/* ── Section Spacing overrides ── */
.faq-section {
    padding: 70px 0 !important;
}

.cta-section {
    padding: 75px 0 !important;
}
