/* ===================================================================
   Marketing Pages - Shared Styles for Features, Pricing, About
   =================================================================== */

html {
    scroll-behavior: smooth;
}

/* === Page Hero (smaller than homepage hero) === */
.page-hero {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    color: #ffffff;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* === Feature Detail Sections === */
.feature-detail-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.feature-detail-section.alt-bg {
    background-color: #f9f9fb;
}

.feature-icon-large {
    margin-bottom: 1.5rem;
}

.feature-icon-large i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2f36;
    margin-bottom: 1rem;
}

.feature-detail-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #2c2f36;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-image-placeholder {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 1rem;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #6c757d;
}

.feature-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.feature-image-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === Features Grid === */
.features-grid-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.mini-feature-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.mini-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(74, 58, 255, 0.12);
    border-color: rgba(74, 58, 255, 0.3);
}

.mini-feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mini-feature-card h5 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 0.5rem;
}

.mini-feature-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #ffffff;
    padding: 5rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* === Pricing Page Styles === */
.pricing-section {
    padding: 5rem 0;
    background-color: #f9f9fb;
}

.pricing-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2f36;
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: #6c757d;
    font-size: 0.95rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-period {
    color: #6c757d;
    font-size: 1rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #2c2f36;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
}

.pricing-features li.disabled {
    color: #adb5bd;
}

.pricing-features li.disabled i {
    color: #adb5bd;
}

.pricing-cta {
    text-align: center;
}

/* === About Page Styles === */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-section.alt-bg {
    background-color: #f9f9fb;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2f36;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === Comparison Table === */
.comparison-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    color: #2c2f36;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c2f36;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .check {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: #dc3545;
    font-size: 1.25rem;
}

/* === FAQ Section === */
.faq-section {
    padding: 5rem 0;
    background-color: #f9f9fb;
}

.faq-item {
    background: #ffffff;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #2c2f36;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* === Mobile Responsive === */
@media (max-width: 991px) {
    .feature-detail-section .col-lg-6 {
        margin-bottom: 2rem;
    }

    .feature-detail-section .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .feature-image-placeholder {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .feature-detail-title {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}

/* === Pricing Philosophy Section === */
.pricing-philosophy-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.philosophy-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9fb;
    border-radius: 1rem;
    height: 100%;
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-card h5 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: #4a4a4a;
    margin-bottom: 0;
}

/* === Comparison Section Alt Background === */
.comparison-section.alt-bg {
    background-color: #f9f9fb;
}

/* === What's Included Section === */
.whats-included-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.included-category {
    background: #f9f9fb;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

.included-category h5 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.included-category h5 i {
    color: var(--primary-color);
}

.included-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-category li {
    color: #4a4a4a;
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

/* === Quote Section === */
.quote-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.quote-section.alt-bg {
    background-color: #f9f9fb;
}

.quote-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.quote-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2f36;
    margin-bottom: 1rem;
}

.quote-card p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quote-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c2f36;
}

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

/* === FAQ Pricing Section === */
.faq-section-pricing {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-section-pricing .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section-pricing .accordion-button {
    font-weight: 600;
    color: #2c2f36;
    background-color: #ffffff;
}

.faq-section-pricing .accordion-button:not(.collapsed) {
    background-color: #f9f9fb;
    color: var(--primary-color);
}

.faq-section-pricing .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.faq-section-pricing .accordion-body {
    color: #4a4a4a;
    line-height: 1.7;
}

/* === Industry Cards (About Page) === */
.industry-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(74, 58, 255, 0.12);
    border-color: rgba(74, 58, 255, 0.3);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card h5 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === Legal Pages Styles === */
.legal-page-hero {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    color: #ffffff;
    padding: 8rem 0 3rem;
    text-align: center;
}

.legal-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-page-hero .legal-effective-date {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-content-wrapper {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.legal-content-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 3rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.legal-content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2f36;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.legal-content-card h2:first-of-type {
    margin-top: 0;
}

.legal-content-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3a3a3a;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content-card ul,
.legal-content-card ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.legal-content-card li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content-card strong {
    color: #2c2f36;
}

.legal-content-card a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-content-card a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-content-card .legal-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.legal-content-card .legal-table th,
.legal-content-card .legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    color: #4a4a4a;
}

.legal-content-card .legal-table th {
    background-color: #f9f9fb;
    font-weight: 600;
    color: #2c2f36;
}

.legal-content-card .legal-table tr:last-child td {
    border-bottom: none;
}

.legal-content-card .legal-table code {
    background-color: #f4f4f7;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #2c2f36;
}

.legal-content-card .contact-box {
    background: linear-gradient(135deg, #f9f9fb, #f4f4f7);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.legal-content-card .contact-box p {
    margin-bottom: 0.5rem;
}

.legal-content-card .contact-box p:last-child {
    margin-bottom: 0;
}

.legal-toc {
    background: #f9f9fb;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.legal-toc h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 1rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.5rem;
}

.legal-toc a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.legal-toc a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-page-hero {
        padding: 6rem 0 2rem;
    }

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

    .legal-content-card {
        padding: 2rem 1.5rem;
        margin-top: -1rem;
    }

    .legal-content-card h2 {
        font-size: 1.35rem;
    }
}

/* === Promise Page Styles === */
.promise-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(74, 58, 255, 0.12);
    border-color: rgba(74, 58, 255, 0.3);
}

.promise-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.promise-card h4 {
    font-weight: 600;
    color: #2c2f36;
    margin-bottom: 0.75rem;
}

.promise-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.promise-expect-list {
    list-style: none;
    padding: 0;
}

.promise-expect-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #2c2f36;
}

/* TL;DR Summary Section */
.tldr-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fef8f1 0%, #f9f9fb 100%);
    position: relative;
}

.tldr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.tldr-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tldr-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.tldr-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2f36;
    margin-bottom: 0.5rem;
    border: none;
    display: block;
    padding-bottom: 0;
    margin-top: 0;
}

.tldr-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tldr-list li {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: #fdf8f3;
    border-radius: 0.75rem;
    border: 1px solid #f5ebe0;
    font-size: 1rem;
    color: #2c2f36;
    line-height: 1.5;
    transition: background 0.2s ease;
}

.tldr-list li:hover {
    background: #faf0e6;
}

.tldr-list li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.tldr-disclaimer {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .tldr-card {
        padding: 1.75rem 1.5rem;
    }

    .tldr-card h2 {
        font-size: 1.4rem;
    }

    .tldr-list li {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}

/* Floating TL;DR button */
.tldr-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 0.65rem 1.15rem;
    border-radius: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 1050;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.tldr-fab:hover {
    background: var(--primary-color-dark);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.tldr-fab.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}
