/* ===========================
   Consulting Page Styles
   =========================== */

/* Consulting Hero */
.consulting-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.consulting-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.consulting-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.consulting-hero h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
    color: #ffffff;
}

.consulting-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
}

.price-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    margin: 30px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.old-price {
    display: block;
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 18px;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 72px;
    font-weight: 900;
    margin: 15px 0;
    letter-spacing: -2px;
}

.price-subtext {
    font-size: 18px;
    opacity: 0.9;
}

.value-badge {
    display: inline-block;
    background: var(--success-color, #10b981);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
}

.cta-buttons {
    margin: 40px 0 20px 0;
}

.consulting-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 0 10px 10px 10px;
    transition: all 0.3s ease;
}

.consulting-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.bonus-text {
    font-size: 20px;
    margin-top: 25px;
    font-weight: 500;
}

/* Consulting Sections */
.consulting-section {
    padding: 80px 20px;
}

.consulting-section.bg-gray {
    background: var(--bg-light, #f9fafb);
}

.consulting-section.bg-white {
    background: var(--bg-white, #ffffff);
}

.consulting-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark, #1f2937);
}

.subtitle-section {
    text-align: center;
    font-size: 20px;
    color: var(--text-light, #6b7280);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--bg-white, #ffffff);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color, #667eea);
}

.benefit-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color, #667eea);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light, #6b7280);
    font-size: 16px;
    line-height: 1.7;
}

.benefit-card ul {
    margin-top: 15px;
    margin-left: 20px;
    color: var(--text-light, #6b7280);
}

.benefit-card li {
    margin-bottom: 8px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    background: var(--bg-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: var(--primary-color, #667eea);
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.comparison-table th {
    font-weight: 700;
    font-size: 16px;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light, #f9fafb);
}

.comparison-table .highlight {
    background: #f0fdf4;
    font-weight: 600;
    color: var(--success-color, #10b981);
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background: var(--bg-white, #ffffff);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.credential-card h3 {
    font-size: 20px;
    color: var(--primary-color, #667eea);
    margin-bottom: 15px;
    font-weight: 700;
}

.credential-card p {
    color: var(--text-light, #6b7280);
    font-size: 15px;
    line-height: 1.6;
}

/* Checklist */
.checklist {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
    padding: 0;
}

.checklist li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background: var(--bg-white, #ffffff);
    border-radius: 8px;
    font-size: 17px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checklist li::before {
    content: "✓ ";
    color: var(--success-color, #10b981);
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 50px auto;
}

.timeline-step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color, #667eea);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 25px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color, #667eea);
}

.step-content p {
    color: var(--text-light, #6b7280);
    font-size: 16px;
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    background: var(--bg-light, #f9fafb);
    padding: 80px 20px;
}

.payment-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark, #1f2937);
}

.urgency-box {
    background: #fef3c7;
    border-left: 4px solid var(--warning-color, #f59e0b);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.urgency-box p {
    font-size: 18px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
}

.investment-box {
    background: var(--bg-white, #ffffff);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.investment-box h3 {
    font-size: 56px;
    color: var(--primary-color, #667eea);
    margin-bottom: 15px;
    font-weight: 900;
}

.investment-box .breakdown {
    margin: 25px 0;
    padding: 25px;
    background: var(--bg-light, #f9fafb);
    border-radius: 8px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
}

/* Payment Buttons */
.payment-buttons {
    max-width: 650px;
    margin: 50px auto;
}

.payment-buttons h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    color: var(--text-dark, #1f2937);
}

.payment-btn {
    display: flex;
    align-items: center;
    padding: 22px 30px;
    margin: 18px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.stripe-btn { background: linear-gradient(135deg, #635bff 0%, #5848ee 100%); }
.paypal-btn { background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%); }
.cashapp-btn { background: linear-gradient(135deg, #00d54b 0%, #00b83f 100%); }
.venmo-btn { background: linear-gradient(135deg, #3d95ce 0%, #2d85be 100%); }
.wire-btn { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }

.payment-icon {
    font-size: 36px;
    margin-right: 25px;
}

.payment-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.payment-text strong {
    font-size: 20px;
    margin-bottom: 5px;
}

.payment-text small {
    font-size: 14px;
    opacity: 0.9;
}

.payment-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light, #6b7280);
    font-size: 15px;
    line-height: 1.8;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: var(--bg-white, #ffffff);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color, #667eea);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color, #667eea);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light, #6b7280);
    line-height: 1.7;
}

/* Recommended Path Box */
.recommended-path {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.recommended-path h3 {
    color: var(--primary-color, #667eea);
    margin-bottom: 20px;
    font-size: 24px;
}

.recommended-path p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light, #6b7280);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #ffffff;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 25px 70px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    border-radius: 12px;
    margin: 35px 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.guarantee {
    margin-top: 30px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.9;
}

/* Terms Box */
.terms-box {
    background: var(--white, #ffffff);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--border-color, #e5e7eb);
}

.terms-box h3 {
    color: var(--primary-color, #0066cc);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.terms-box h4 {
    color: #1f2937;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.terms-box p,
.terms-box ul {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-box ul {
    margin-left: 20px;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary-color, #0066cc);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .consulting-hero h1 { font-size: 36px; }
    .consulting-hero h2 { font-size: 20px; }
    .price { font-size: 56px; }
    .consulting-section h2,
    .payment-section h2 { font-size: 32px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 14px; }
    .comparison-table th,
    .comparison-table td { padding: 12px; }
    .consulting-btn-outline { margin: 5px; padding: 15px 30px; font-size: 16px; }
    .payment-btn { flex-direction: column; text-align: center; }
    .payment-icon { margin-right: 0; margin-bottom: 15px; }
    .final-cta h2 { font-size: 36px; }
    .btn-large { padding: 20px 40px; font-size: 20px; }
    .timeline-step { flex-direction: column; align-items: center; text-align: center; }
    .step-number { margin-right: 0; margin-bottom: 15px; }
}
