/* ===================================
   INVESTMENT & VALUE SECTION STYLES
   =================================== */

/* Value Introduction */
.value-intro {
    margin: 3rem 0 4rem;
    text-align: center;
}

.value-statement {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sub-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ROI Statistics Highlight */
.roi-stats-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.05), rgba(59, 130, 246, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.roi-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.roi-stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 144, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #ff6b00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Team Note */
.team-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 144, 0, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.team-note p {
    max-width: 100%;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 auto;
    text-align: center;
}

/* Tier Descriptions */
.tier-description {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-description p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

/* Comparison Section Updates */
.comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.comparison-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.elite-label {
    color: var(--primary);
    font-weight: 500;
}

.comparison-limitations,
.comparison-advantages {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.limitation,
.advantage {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.limitation:last-child,
.advantage:last-child {
    border-bottom: none;
}

.limitation {
    color: #ef4444;
}

.advantage {
    color: #10b981;
}

/* Add-on Section Updates */
.addon-intro {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Investment CTA Section */
.investment-cta {
    margin: 5rem 0 2rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    border: 2px solid var(--primary);
    text-align: center;
}

.investment-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.investment-cta>p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.primary-cta,
.secondary-cta {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
    border: none;
}

.primary-cta {
    background: var(--primary);
    color: #000;
}

.primary-cta:hover {
    background: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 144, 0, 0.4);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.cta-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* ===================================
   PRICING SECTION STYLES
   =================================== */

.pricing-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 8rem 0;
}

/* Team Structure Visualization */
.team-structure {
    margin: 4rem 0 6rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto;
}

.team-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 100%;
}

.team-role {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.team-role:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 144, 0, 0.2);
    transform: translateY(-4px);
}

.attorney-role {
    min-width: 200px;
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.role-responsibilities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.role-responsibilities span {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background: rgba(255, 144, 0, 0.1);
    border-radius: 4px;
}

.role-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 auto;
}

.team-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 144, 0, 0.3), rgba(255, 144, 0, 0.1));
}

.paralegal-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.paralegal-role {
    min-width: 140px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 144, 0, 0.15);
    transform: translateY(-4px);
}

.pricing-card.elite {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.05), rgba(255, 144, 0, 0.02));
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.pricing-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.elite-badge {
    background: var(--primary);
    color: #000;
    font-weight: 600;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: var(--text-light);
    margin-right: 0.25rem;
}

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

.price-custom {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.pricing-seats {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: left;
}

.feature-item.highlight {
    color: var(--text-color);
}

.check {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.pricing-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.elite-cta {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.elite-cta:hover {
    background: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 144, 0, 0.4);
}

/* ROI Comparison */
.roi-comparison {
    margin: 6rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.roi-comparison h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.comparison-card.chronolex {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.1), rgba(255, 144, 0, 0.02));
}

.comparison-header {
    margin-bottom: 1.5rem;
}

.comparison-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-cost {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
}

.comparison-cost span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.elite-cost {
    color: var(--primary);
}

.comparison-breakdown {
    margin: 2rem 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.breakdown-item.muted {
    color: var(--text-light);
    opacity: 0.6;
}

.breakdown-item.highlight {
    color: var(--primary);
    font-weight: 500;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    font-weight: 700;
}

.elite-total {
    color: var(--primary);
}

.comparison-capacity {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
}

.elite-capacity {
    background: rgba(255, 144, 0, 0.1);
    color: var(--primary);
}

.roi-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
}

.roi-stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

/* Pricing Add-ons */
.pricing-addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.addon-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.addon-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addon-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.addon-item.featured {
    border-color: var(--primary);
    background: rgba(255, 144, 0, 0.05);
}

.addon-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.addon-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.addon-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-diagram {
        flex-direction: column;
    }

    .team-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(255, 144, 0, 0.3), rgba(255, 144, 0, 0.1));
    }

    .paralegal-group {
        flex-direction: column;
        align-items: center;
    }

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

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

    .roi-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}