/* ============================================
   PRICING PAGE - ADDITIONAL STYLES
   Extends main style.css
   ============================================ */

/* ---- Breadcrumb ---- */
.breadcrumb-nav {
    background: var(--cream-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li a {
    color: var(--gray-500);
    font-weight: 500;
}

.breadcrumb-list li a:hover {
    color: var(--primary);
}

.breadcrumb-list .separator {
    margin: 0 10px;
    color: var(--gray-300);
    font-size: 0.7rem;
}

.breadcrumb-list .current {
    color: var(--brown);
    font-weight: 600;
}

/* ---- Page Hero ---- */
.page-hero {
    padding: 50px 0 60px;
    background: var(--cream);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.8;
}

.page-hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.page-hero-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Takeaways Section ---- */
.takeaways-section {
    padding: 40px 0;
    background: var(--white);
}

.takeaways-box {
    background: var(--cream-light);
    border: 2px solid var(--primary-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.takeaways-header {
    background: var(--primary);
    padding: 16px 28px;
}

.takeaways-header h2 {
    color: var(--white);
    font-size: 1.15rem;
    margin: 0;
}

.takeaways-header h2 i {
    margin-right: 6px;
}

.takeaways-list {
    padding: 24px 28px;
}

.takeaways-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--brown);
    border-bottom: 1px solid var(--gray-200);
}

.takeaways-list li:last-child {
    border-bottom: none;
}

.takeaways-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.takeaways-list li a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ---- Cost Overview Section ---- */
.cost-section {
    padding: var(--section-padding);
    background: var(--white);
}

.price-overview-table-wrap {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.price-overview-table {
    min-width: 700px;
}

.price-overview-table thead {
    background: var(--brown);
}

.price-overview-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-overview-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    vertical-align: middle;
}

.price-overview-table .highlight-row {
    background: var(--primary-50);
}

.price-overview-table .highlight-row:hover {
    background: var(--primary-100);
}

.price-overview-table tbody tr:hover {
    background: var(--cream-light);
}

.plan-emoji {
    font-size: 1.1rem;
    margin-left: 6px;
}

.annual-price {
    color: var(--primary);
    font-size: 1.15rem;
}

.table-note {
    font-size: 0.95rem;
    color: var(--brown-light);
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary);
}

/* ---- Plan Detail Cards ---- */
.plans-detail-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.plan-detail-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    padding: 40px;
    margin-bottom: 36px;
    position: relative;
    transition: var(--transition);
}

.plan-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.plan-detail-card.featured-plan {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.featured-plan-ribbon {
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.plan-detail-grid.reverse {
    direction: rtl;
}

.plan-detail-grid.reverse > * {
    direction: ltr;
}

.plan-detail-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hobby-badge {
    background: var(--cream);
    color: var(--brown);
}

.pro-badge {
    background: var(--primary-100);
    color: var(--primary-dark);
}

.max-badge {
    background: #d6f4fb;
    color: var(--accent-dark);
}

.plan-detail-content h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.plan-price-highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.plan-price-strike {
    font-size: 1.1rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.plan-price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.plan-price-main span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.plan-price-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.plan-detail-content p {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.75;
}

/* Plan mini features */
.plan-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
}

.feature-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--cream-light);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
    border: 1px solid var(--gray-200);
}

.feature-mini i {
    color: var(--primary);
    font-size: 0.8rem;
}

.feature-mini i.red {
    color: var(--gray-400);
}

.feature-mini.highlight-feature {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-dark);
    font-weight: 600;
}

.feature-mini.highlight-feature i {
    color: var(--accent);
}

/* Plan Visual Card */
.plan-visual-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.visual-card-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.visual-card-header i {
    font-size: 1.5rem;
}

.visual-card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.hobby-bg { background: var(--brown-light); }
.pro-bg { background: var(--primary); }
.max-bg { background: var(--accent-dark); }

.visual-card-body {
    padding: 24px;
    background: var(--white);
}

.visual-stat {
    text-align: center;
    margin-bottom: 16px;
}

.visual-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown);
    line-height: 1.2;
}

.visual-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.visual-meter {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}

.meter-fill {
    height: 100%;
    background: var(--brown-light);
    border-radius: 6px;
    transition: width 1s ease;
}

.meter-fill.pro-fill {
    background: var(--primary);
}

.meter-fill.max-fill {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.visual-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.savings-tag {
    background: var(--success-light);
    color: var(--success-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.savings-pct {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.visual-ideal {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
}

.plan-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-top: 20px;
    box-shadow: var(--shadow-md);
}

/* ---- Credits Section ---- */
.credits-section {
    padding: var(--section-padding);
    background: var(--white);
}

.credits-explainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.credits-text p {
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 1.8;
}

.credits-visual {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.credits-visual img {
    width: 100%;
    height: auto;
}

.credits-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.credit-tip-card {
    background: var(--cream-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.credit-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.credit-tip-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.credit-tip-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--brown);
}

.credit-tip-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ---- Competitors Section ---- */
.competitors-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.competitor-table-wrap {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.competitor-table {
    min-width: 650px;
}

.competitor-table thead {
    background: var(--brown);
}

.competitor-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.competitor-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
    vertical-align: middle;
}

.competitor-table .highlight-row {
    background: var(--primary-50);
}

.competitor-table tbody tr:hover {
    background: var(--cream-light);
}

.tool-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.winner-tag {
    background: var(--primary);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.competitor-verdict {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary-200);
}

/* ---- Free Credits Section ---- */
.free-credits-section {
    padding: var(--section-padding);
    background: var(--white);
}

.free-credits-card {
    background: var(--cream);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    border: 2px solid var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.free-credits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.gift-badge-large {
    font-size: 3rem;
    margin-bottom: 12px;
}

.free-credits-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.free-credits-content p {
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 1.75;
}

.free-credits-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 20px 0 28px;
}

.fc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
}

.fc-feature i {
    color: var(--primary);
}

.free-credits-visual {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.free-credits-visual img {
    width: 100%;
    height: auto;
}

/* ---- Verdict Section ---- */
.verdict-section {
    padding: 60px 0 80px;
    background: var(--brown);
}

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

.verdict-header h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.verdict-body p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.verdict-plans-summary {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.verdict-plan-mini {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    padding: 18px 24px;
    text-align: center;
    min-width: 150px;
    transition: var(--transition);
}

.verdict-plan-mini:hover {
    background: rgba(255,255,255,0.12);
}

.verdict-plan-mini.best {
    border-color: var(--primary);
    background: rgba(38,173,95,0.15);
}

.vp-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.vp-name {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.vp-price {
    display: block;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.vp-for {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.verdict-final-cta {
    margin-top: 32px;
}

.cta-sub-note {
    margin-top: 12px;
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.45) !important;
}

/* ============================================
   RESPONSIVE - PRICING PAGE
   ============================================ */

@media (max-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .plan-detail-grid,
    .plan-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .credits-explainer {
        grid-template-columns: 1fr;
    }
    
    .credits-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .free-credits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 30px 0 40px;
    }
    
    .page-hero-cta {
        flex-direction: column;
    }
    
    .page-hero-cta .btn {
        width: 100%;
    }
    
    .plan-detail-card {
        padding: 24px 20px;
    }
    
    .plan-price-main {
        font-size: 2rem;
    }
    
    .credits-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .free-credits-card {
        padding: 30px 24px;
    }
    
    .free-credits-features {
        grid-template-columns: 1fr;
    }
    
    .verdict-plans-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .verdict-plan-mini {
        width: 100%;
        max-width: 280px;
    }
    
    .competitor-table-wrap {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    
    .competitor-verdict {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 0.75rem;
    }

    .breadcrumb-list .separator {
        margin: 0 6px;
    }

    .page-hero {
        padding: 20px 0 30px;
    }

    .page-hero-desc {
        font-size: 0.92rem;
    }

    .page-hero-cta .btn {
        font-size: 0.88rem;
        padding: 12px 16px;
    }

    .plan-detail-content h2 {
        font-size: 1.2rem;
    }
    
    .plan-price-main {
        font-size: 1.8rem;
    }
    
    .plan-features-mini {
        flex-direction: column;
    }
    
    .feature-mini {
        justify-content: flex-start;
    }

    .takeaways-box {
        padding: 20px 16px;
    }

    .cost-overview-wrap {
        margin-left: -12px;
        margin-right: -12px;
    }
}
