/* ==========================================================================
   Pricing Page Styles
   ONLY using: golden-green (#8B9A46), dark-red (#8B2C2C), pale-yellow (#FFF8DC)
   ========================================================================== */

/* Pricing Hero */
.pricing-hero {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(139, 44, 44, 0.03) 0%, 
        rgba(139, 154, 70, 0.05) 100%);
    text-align: center;
}

.pricing-hero h1 {
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-label {
    color: var(--dark-red);
    font-size: 1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 44, 44, 0.2);
    transition: 0.4s;
    border-radius: 30px;
    border: 2px solid var(--golden-green);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--golden-green);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: rgba(139, 154, 70, 0.3);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
    background: var(--dark-red);
}

.save-badge {
    background: var(--golden-green);
    color: var(--pale-yellow);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Pricing Plans */
.pricing-plans {
    padding: 5rem 2rem;
    background: var(--pale-yellow);
}

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

.pricing-card {
    background: rgba(255, 248, 220, 0.7);
    border: 2px solid rgba(139, 154, 70, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 44, 44, 0.15);
}

.pricing-card.featured {
    border-color: var(--golden-green);
    background: linear-gradient(to bottom, 
        rgba(139, 154, 70, 0.1), 
        rgba(255, 248, 220, 0.9));
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden-green);
    color: var(--pale-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 154, 70, 0.2);
}

.plan-name {
    color: var(--dark-red);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    color: var(--golden-green);
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.amount {
    color: var(--dark-red);
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.period {
    color: var(--dark-red);
    opacity: 0.7;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.custom-price {
    color: var(--dark-red);
    font-size: 2rem;
    font-style: italic;
}

.price-note {
    color: var(--dark-red);
    opacity: 0.7;
    font-size: 0.875rem;
    font-style: italic;
}

/* Plan Features */
.plan-features {
    margin-bottom: 2rem;
}

.plan-features h4 {
    color: var(--dark-red);
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--dark-red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check {
    color: var(--golden-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.cross {
    color: var(--dark-red);
    opacity: 0.4;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Plan Action */
.plan-action {
    text-align: center;
}

/* Compare Plans Section */
.compare-plans {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, 
        rgba(139, 154, 70, 0.05), 
        transparent);
}

.compare-plans h2 {
    text-align: center;
    color: var(--dark-red);
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: var(--pale-yellow);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 44, 44, 0.1);
}

.comparison-table th {
    background: var(--golden-green);
    color: var(--pale-yellow);
    padding: 1rem;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
}

.comparison-table th.featured {
    background: var(--dark-red);
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    color: var(--dark-red);
    border-bottom: 1px solid rgba(139, 154, 70, 0.1);
}

.comparison-table td.featured {
    background: rgba(139, 154, 70, 0.05);
}

.category-row td {
    background: rgba(139, 44, 44, 0.05);
    font-weight: 600;
    text-align: left;
    padding-left: 2rem;
}

.comparison-table tbody tr:hover {
    background: rgba(139, 154, 70, 0.03);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: var(--pale-yellow);
}

.faq-section h2 {
    text-align: center;
    color: var(--dark-red);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 248, 220, 0.5);
    border: 2px solid rgba(139, 154, 70, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--golden-green);
    box-shadow: 0 5px 20px rgba(139, 44, 44, 0.1);
}

.faq-item h3 {
    color: var(--dark-red);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--dark-red);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 640px) {
    .pricing-hero {
        padding: 4rem 1rem 2rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

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

    .billing-toggle {
        flex-direction: column;
        gap: 1.5rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .category-row td {
        padding-left: 1rem;
    }
}

/* ==========================================================================
   NEW PRICING PAGE SECTIONS (2025 Update)
   ========================================================================== */

/* Hero Purpose Statement */
.hero-purpose {
    color: var(--dark-red);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.pricing-plans h2,
.market-pricing h2,
.value-comparison h2 {
    text-align: center;
    color: var(--dark-red);
    margin-bottom: 0.75rem;
}

/* Market Pricing Section */
.market-pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg,
        rgba(139, 44, 44, 0.03) 0%,
        rgba(139, 154, 70, 0.05) 100%);
}

.market-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.market-table {
    width: 100%;
    background: var(--pale-yellow);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 44, 44, 0.1);
    border-collapse: collapse;
}

.market-table thead th {
    background: var(--dark-red);
    color: var(--pale-yellow);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
}

.market-table thead th:first-child {
    border-radius: 15px 0 0 0;
}

.market-table thead th:last-child {
    border-radius: 0 15px 0 0;
}

.market-table tbody td {
    padding: 1rem;
    color: var(--dark-red);
    border-bottom: 1px solid rgba(139, 154, 70, 0.15);
    font-size: 0.95rem;
}

.market-table tbody tr:hover {
    background: rgba(139, 154, 70, 0.05);
}

.market-table tbody tr.highlight-row {
    background: rgba(139, 154, 70, 0.1);
    font-weight: 500;
}

.market-table tbody tr.highlight-row td {
    color: var(--golden-green);
}

.market-note {
    text-align: center;
    color: var(--dark-red);
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(139, 44, 44, 0.05);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.market-note strong {
    color: var(--dark-red);
}

/* Value Comparison Section */
.value-comparison {
    padding: 5rem 2rem;
    background: var(--pale-yellow);
}

.value-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.value-table {
    width: 100%;
    background: rgba(255, 248, 220, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 44, 44, 0.1);
    border-collapse: collapse;
    border: 2px solid var(--golden-green);
}

.value-table thead th {
    background: var(--golden-green);
    color: var(--pale-yellow);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
}

.value-table tbody td {
    padding: 1rem;
    color: var(--dark-red);
    border-bottom: 1px solid rgba(139, 154, 70, 0.15);
    font-size: 0.95rem;
}

.value-table tbody tr:hover {
    background: rgba(139, 154, 70, 0.08);
}

.value-table .tuc-price {
    color: var(--golden-green);
    font-weight: 600;
}

.value-table .savings {
    color: var(--golden-green);
    font-weight: 600;
    background: rgba(139, 154, 70, 0.15);
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
}

.value-table tbody tr.total-row {
    background: rgba(139, 154, 70, 0.15);
}

.value-table tbody tr.total-row td {
    border-top: 2px solid var(--golden-green);
    font-size: 1.05rem;
}

/* Why Section */
.why-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg,
        rgba(139, 44, 44, 0.05) 0%,
        rgba(139, 154, 70, 0.08) 100%);
}

.motto {
    text-align: center;
    color: var(--golden-green);
    font-size: 2.25rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    padding: 2rem;
    border-radius: 20px;
}

.comparison-column.other-platforms {
    background: rgba(139, 44, 44, 0.08);
    border: 2px solid rgba(139, 44, 44, 0.2);
}

.comparison-column.tuc4human {
    background: rgba(139, 154, 70, 0.1);
    border: 2px solid var(--golden-green);
}

.comparison-column h3 {
    color: var(--dark-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid currentColor;
}

.comparison-column.tuc4human h3 {
    color: var(--golden-green);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    padding: 0.75rem 0;
    color: var(--dark-red);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(139, 44, 44, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.comparison-column.other-platforms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-red);
    opacity: 0.5;
}

.comparison-column.tuc4human li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden-green);
    font-weight: bold;
}

.comparison-column li:last-child {
    border-bottom: none;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-purpose {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .motto {
        font-size: 1.75rem;
    }

    .market-table thead th,
    .market-table tbody td,
    .value-table thead th,
    .value-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .market-pricing,
    .value-comparison,
    .why-section {
        padding: 3rem 1rem;
    }

    .motto {
        font-size: 1.5rem;
    }

    .comparison-column {
        padding: 1.5rem;
    }

    .comparison-column h3 {
        font-size: 1.25rem;
    }
}