/* ==========================================================================
   Buzzscribed Brand CSS
   Modern, professional styling for the Buzzscribed marketing site
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    /* Brand Colors */
    --bs-yellow: #fdb913;
    --bs-gold: #d4a824;
    --bs-gold-dark: #b8941f;
    --bs-purple-dark: #3d1a6f;
    --bs-purple-medium: #5a2d82;
    --bs-purple-light: #7d1d61;
    --bs-purple-deeper: #2d1352;
    --bs-red: #ed174c;

    /* Neutral Colors */
    --bs-white: #ffffff;
    --bs-off-white: #f8f9fa;
    --bs-gray-100: #f1f3f5;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-500: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-900: #212529;

    /* Gradients */
    --bs-gradient-purple: linear-gradient(135deg, #3d1a6f 0%, #5a2d82 100%);
    --bs-gradient-purple-deep: linear-gradient(135deg, #3d1a6f 0%, #2d1352 100%);
    --bs-gradient-gold: linear-gradient(135deg, #fdb913 0%, #d4a824 100%);
    --bs-gradient-warm: linear-gradient(135deg, #fff5dc 0%, #fffbf0 100%);

    /* Typography */
    --bs-font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --bs-font-secondary: 'Rubik', sans-serif;

    /* Spacing */
    --bs-section-padding: 6rem;
    --bs-section-padding-mobile: 3rem;

    /* Shadows */
    --bs-shadow-sm: 0 2px 4px rgba(61, 26, 111, 0.08);
    --bs-shadow-md: 0 4px 12px rgba(61, 26, 111, 0.12);
    --bs-shadow-lg: 0 8px 24px rgba(61, 26, 111, 0.16);

    /* Border Radius */
    --bs-radius-sm: 6px;
    --bs-radius-md: 12px;
    --bs-radius-lg: 20px;
    --bs-radius-full: 9999px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.bs-font-primary {
    font-family: var(--bs-font-primary);
}

.bs-headline-xl {
    font-family: var(--bs-font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bs-purple-dark);
}

.bs-headline-lg {
    font-family: var(--bs-font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--bs-purple-dark);
}

.bs-headline-md {
    font-family: var(--bs-font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--bs-purple-dark);
}

.bs-subhead {
    font-family: var(--bs-font-primary);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--bs-gray-700);
}

.bs-body {
    font-family: var(--bs-font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bs-gray-700);
}

.bs-small {
    font-family: var(--bs-font-primary);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--bs-gray-500);
}

/* ==========================================================================
   Buzzscribed Logo & Brand
   ========================================================================== */
.bs-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.bs-logo-icon {
    height: 2.5rem;
    width: auto;
}

.bs-logo-text {
    font-family: var(--bs-font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-purple-dark);
}

.bs-logo-text-buzz {
    font-weight: 700;
}

.bs-logo-text-scribed {
    font-weight: 400;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.bs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bs-white);
    box-shadow: var(--bs-shadow-sm);
    transition: all 0.3s ease;
}

.bs-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bs-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bs-nav-link {
    font-family: var(--bs-font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--bs-purple-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.bs-nav-link:hover {
    color: var(--bs-gold);
    text-decoration: none;
}

.bs-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-gold);
    transition: width 0.2s ease;
}

.bs-nav-link:hover::after {
    width: 100%;
}

.bs-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--bs-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--bs-radius-full);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.bs-btn-primary {
    background: var(--bs-gradient-purple);
    color: var(--bs-white);
}

.bs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--bs-shadow-md);
    color: var(--bs-white);
    text-decoration: none;
}

.bs-btn-secondary {
    background: transparent;
    color: var(--bs-purple-dark);
    border: 2px solid var(--bs-purple-dark);
}

.bs-btn-secondary:hover {
    background: var(--bs-purple-dark);
    color: var(--bs-white);
    text-decoration: none;
}

.bs-btn-gold {
    background: var(--bs-gradient-gold);
    color: var(--bs-purple-dark);
}

.bs-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--bs-shadow-md);
    text-decoration: none;
}

.bs-btn-danger {
    background: var(--bs-red);
    color: var(--bs-white);
}

.bs-btn-danger:hover {
    background: #d01444;
    transform: translateY(-2px);
    box-shadow: var(--bs-shadow-md);
    color: var(--bs-white);
    text-decoration: none;
}

.bs-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.bs-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.bs-hero {
    width: 100%;
    padding: calc(var(--bs-section-padding) + 4rem) 0 var(--bs-section-padding);
    background: linear-gradient(180deg, var(--bs-white) 0%, var(--bs-gray-100) 100%);
    text-align: center;
}

.bs-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-hero-headline {
    font-family: var(--bs-font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--bs-purple-dark);
    margin-bottom: 1.5rem;
}

.bs-hero-headline-accent {
    background: var(--bs-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bs-hero-subhead {
    font-family: var(--bs-font-primary);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--bs-gray-700);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.bs-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bs-hero-image {
    margin-top: 4rem;
    border-radius: var(--bs-radius-lg);
    box-shadow: var(--bs-shadow-lg);
    overflow: hidden;
}

.bs-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Product Showcase Section
   ========================================================================== */
.bs-showcase-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-off-white);
}

.bs-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bs-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bs-showcase-item {
    background: var(--bs-white);
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--bs-shadow-lg);
}

.bs-showcase-item.bs-showcase-featured {
    grid-column: span 2;
}

.bs-showcase-placeholder {
    background: linear-gradient(135deg, var(--bs-gray-100) 0%, var(--bs-gray-200) 100%);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-500);
    border: 2px dashed var(--bs-gray-300);
    border-radius: var(--bs-radius-lg);
    padding: 2rem;
    text-align: center;
}

.bs-showcase-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bs-gray-300);
}

.bs-showcase-placeholder-text {
    font-family: var(--bs-font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bs-showcase-placeholder-hint {
    font-size: 0.875rem;
    color: var(--bs-gray-500);
}

.bs-showcase-caption {
    padding: 1.25rem;
    text-align: center;
}

.bs-showcase-caption h4 {
    font-family: var(--bs-font-primary);
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin: 0 0 0.5rem 0;
}

.bs-showcase-caption p {
    font-size: 0.9rem;
    color: var(--bs-gray-700);
    margin: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.bs-testimonials-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-white);
}

.bs-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bs-testimonial-card {
    background: var(--bs-off-white);
    border-radius: var(--bs-radius-lg);
    padding: 2rem;
    position: relative;
}

.bs-testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--bs-gold);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
    opacity: 0.5;
}

.bs-testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bs-gray-700);
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    font-style: italic;
}

.bs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bs-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bs-purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-weight: 600;
    font-family: var(--bs-font-primary);
}

.bs-testimonial-info h5 {
    font-family: var(--bs-font-primary);
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.bs-testimonial-info p {
    color: var(--bs-gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* Client logos bar */
.bs-logos-section {
    width: 100%;
    padding: 3rem 0;
    background: var(--bs-gray-100);
}

.bs-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.bs-logos-title {
    font-family: var(--bs-font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.bs-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.bs-logo-placeholder {
    width: 120px;
    height: 50px;
    background: var(--bs-gray-200);
    border-radius: var(--bs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-500);
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .bs-showcase-grid {
        grid-template-columns: 1fr;
    }

    .bs-showcase-item.bs-showcase-featured {
        grid-column: span 1;
    }

    .bs-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Problem/Solution Section
   ========================================================================== */
.bs-problem-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-white);
}

.bs-problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-problem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bs-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--bs-radius-md);
    overflow: hidden;
    box-shadow: var(--bs-shadow-md);
}

.bs-comparison-table thead th {
    background: var(--bs-purple-dark);
    color: var(--bs-white);
    font-family: var(--bs-font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.bs-comparison-table thead th:first-child {
    background: var(--bs-gray-700);
}

.bs-comparison-table thead th:last-child {
    background: var(--bs-gold);
    color: var(--bs-purple-dark);
}

.bs-comparison-table tbody td {
    padding: 1rem 1.5rem;
    font-family: var(--bs-font-primary);
    border-bottom: 1px solid var(--bs-gray-200);
}

.bs-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.bs-comparison-table tbody tr:hover {
    background: var(--bs-gray-100);
}

.bs-comparison-old {
    color: var(--bs-gray-500);
    font-style: italic;
}

.bs-comparison-new {
    color: var(--bs-purple-dark);
    font-weight: 500;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.bs-how-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-gray-100);
}

.bs-how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bs-how-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

@media (max-width: 991px) {
    .bs-how-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bs-how-flow {
        grid-template-columns: 1fr;
    }
}

.bs-how-step {
    text-align: center;
    padding: 2rem;
    background: var(--bs-white);
    border-radius: var(--bs-radius-md);
    box-shadow: var(--bs-shadow-sm);
    position: relative;
}

.bs-how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--bs-gradient-gold);
    color: var(--bs-purple-dark);
    font-family: var(--bs-font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.bs-how-step-title {
    font-family: var(--bs-font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin-bottom: 0.75rem;
}

.bs-how-step-desc {
    font-family: var(--bs-font-primary);
    font-size: 0.95rem;
    color: var(--bs-gray-700);
    line-height: 1.6;
}

.bs-how-step-icon {
    font-size: 2.5rem;
    color: var(--bs-gold);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.bs-features-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-white);
}

.bs-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .bs-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bs-features-grid {
        grid-template-columns: 1fr;
    }
}

.bs-feature-card {
    padding: 2rem;
    background: var(--bs-white);
    border: 1px solid var(--bs-gray-200);
    border-radius: var(--bs-radius-md);
    transition: all 0.3s ease;
}

.bs-feature-card:hover {
    border-color: var(--bs-gold);
    box-shadow: var(--bs-shadow-md);
    transform: translateY(-4px);
}

.bs-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bs-gradient-warm);
    border-radius: var(--bs-radius-sm);
    margin-bottom: 1.25rem;
    color: var(--bs-gold);
    font-size: 1.5rem;
}

.bs-feature-title {
    font-family: var(--bs-font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin-bottom: 0.75rem;
}

.bs-feature-desc {
    font-family: var(--bs-font-primary);
    font-size: 0.95rem;
    color: var(--bs-gray-700);
    line-height: 1.6;
}

/* ==========================================================================
   Audience/Who Section
   ========================================================================== */
.bs-audience-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-gray-100);
}

.bs-audience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-audience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bs-audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .bs-audience-cards {
        grid-template-columns: 1fr;
    }
}

.bs-audience-card {
    padding: 2.5rem;
    background: var(--bs-white);
    border-radius: var(--bs-radius-md);
    box-shadow: var(--bs-shadow-sm);
    text-align: center;
    border-top: 4px solid var(--bs-gold);
}

.bs-audience-icon {
    font-size: 3rem;
    color: var(--bs-purple-dark);
    margin-bottom: 1.5rem;
}

.bs-audience-title {
    font-family: var(--bs-font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin-bottom: 1rem;
}

.bs-audience-desc {
    font-family: var(--bs-font-primary);
    font-size: 1rem;
    color: var(--bs-gray-700);
    line-height: 1.6;
}

/* ==========================================================================
   Social Proof / Testimonial Section
   ========================================================================== */
.bs-proof-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-gradient-purple-deep);
    color: var(--bs-white);
}

.bs-proof-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.bs-proof-quote {
    font-family: var(--bs-font-primary);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.bs-proof-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: -2rem;
    opacity: 0.3;
    font-style: normal;
}

.bs-proof-author {
    font-family: var(--bs-font-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.bs-proof-title {
    font-family: var(--bs-font-primary);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==========================================================================
   Data Ownership Section
   ========================================================================== */
.bs-data-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-white);
}

.bs-data-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 767px) {
    .bs-data-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.bs-data-text h2 {
    margin-bottom: 1.5rem;
}

.bs-data-text p {
    font-family: var(--bs-font-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bs-gray-700);
    margin-bottom: 1rem;
}

.bs-data-graphic {
    text-align: center;
}

.bs-data-graphic i {
    font-size: 8rem;
    color: var(--bs-gold);
    opacity: 0.8;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.bs-cta-section {
    width: 100%;
    padding: var(--bs-section-padding) 0;
    background: var(--bs-gradient-warm);
}

.bs-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.bs-cta-headline {
    font-family: var(--bs-font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bs-purple-dark);
    margin-bottom: 1rem;
}

.bs-cta-subhead {
    font-family: var(--bs-font-primary);
    font-size: 1.125rem;
    color: var(--bs-gray-700);
    margin-bottom: 2rem;
}

.bs-cta-note {
    font-family: var(--bs-font-primary);
    font-size: 0.875rem;
    color: var(--bs-gray-500);
    margin-top: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.bs-footer {
    padding: 3rem 0 2rem;
    background: var(--bs-white);
    border-top: 1px solid var(--bs-gray-200);
}

.bs-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bs-footer-copyright {
    font-family: var(--bs-font-primary);
    font-size: 0.875rem;
    color: var(--bs-gray-500);
}

.bs-footer-links {
    display: flex;
    gap: 2rem;
}

.bs-footer-link {
    font-family: var(--bs-font-primary);
    font-size: 0.875rem;
    color: var(--bs-gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bs-footer-link:hover {
    color: var(--bs-purple-dark);
}

/* ==========================================================================
   Page Sections (About, Contact, FAQ, etc.)
   ========================================================================== */
.bs-page-section {
    width: 100%;
    padding: calc(var(--bs-section-padding) + 4rem) 0 var(--bs-section-padding);
}

.bs-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bs-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bs-page-title {
    font-family: var(--bs-font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bs-purple-dark);
    margin-bottom: 1rem;
}

.bs-page-subtitle {
    font-family: var(--bs-font-primary);
    font-size: 1.25rem;
    color: var(--bs-gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   FAQ Styles
   ========================================================================== */
.bs-faq-category {
    margin-bottom: 3rem;
}

.bs-faq-category:last-child {
    margin-bottom: 0;
}

.bs-faq-item {
    background: var(--bs-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bs-faq-question {
    font-family: var(--bs-font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin: 0 0 0.75rem 0;
}

.bs-faq-answer {
    font-size: 1rem;
    color: var(--bs-gray-700);
    line-height: 1.7;
    margin: 0;
}

.bs-faq-answer a {
    color: var(--bs-purple-dark);
    text-decoration: underline;
}

.bs-faq-answer a:hover {
    color: var(--bs-purple-medium);
}

/* ==========================================================================
   Cards (Generic)
   ========================================================================== */
.bs-card {
    background: var(--bs-white);
    border-radius: var(--bs-radius-md);
    box-shadow: var(--bs-shadow-sm);
    padding: 2rem;
    transition: all 0.3s ease;
}

.bs-card:hover {
    box-shadow: var(--bs-shadow-md);
}

.bs-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bs-gray-200);
}

.bs-card-title {
    font-family: var(--bs-font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
}

.bs-card-body {
    font-family: var(--bs-font-primary);
    color: var(--bs-gray-700);
    line-height: 1.7;
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.bs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .bs-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.bs-pricing-card {
    background: var(--bs-white);
    border-radius: var(--bs-radius-md);
    box-shadow: var(--bs-shadow-md);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.bs-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bs-shadow-lg);
}

.bs-pricing-card-featured {
    border: 2px solid var(--bs-gold);
    position: relative;
}

.bs-pricing-card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-gold);
    color: var(--bs-purple-dark);
    font-family: var(--bs-font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 0 0 var(--bs-radius-sm) var(--bs-radius-sm);
}

.bs-pricing-header {
    padding: 2rem 1.5rem;
    background: var(--bs-gradient-warm);
}

.bs-pricing-name {
    font-family: var(--bs-font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    margin-bottom: 0.5rem;
}

.bs-pricing-price {
    font-family: var(--bs-font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-purple-dark);
}

.bs-pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bs-gray-500);
}

.bs-pricing-body {
    padding: 2rem 1.5rem;
}

.bs-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.bs-pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bs-gray-200);
    font-family: var(--bs-font-primary);
    font-size: 0.95rem;
    color: var(--bs-gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bs-pricing-features li:last-child {
    border-bottom: none;
}

.bs-pricing-features li i {
    color: var(--bs-gold);
}

/* ==========================================================================
   Comparison Table (Enhanced)
   ========================================================================== */
.bs-comp-table-wrapper {
    overflow-x: auto;
    border-radius: var(--bs-radius-md);
    box-shadow: var(--bs-shadow-md);
}

.bs-comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.bs-comp-table th,
.bs-comp-table td {
    padding: 1rem 1.25rem;
    font-family: var(--bs-font-primary);
    text-align: center;
    border-bottom: 1px solid var(--bs-gray-200);
}

.bs-comp-table th:first-child,
.bs-comp-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.bs-comp-table thead th {
    background: var(--bs-purple-dark);
    color: var(--bs-white);
    font-weight: 600;
}

.bs-comp-table thead th:first-child {
    background: var(--bs-gray-700);
}

.bs-comp-table thead th.bs-comp-highlight {
    background: var(--bs-gold);
    color: var(--bs-purple-dark);
}

.bs-comp-table tbody tr:hover {
    background: var(--bs-gray-100);
}

.bs-comp-check {
    color: var(--bs-gold);
    font-size: 1.25rem;
}

.bs-comp-empty {
    color: var(--bs-gray-300);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.bs-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bs-faq-item {
    background: var(--bs-white);
    border-radius: var(--bs-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--bs-shadow-sm);
    overflow: hidden;
}

.bs-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-family: var(--bs-font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-purple-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bs-faq-question:hover {
    background: var(--bs-gray-100);
}

.bs-faq-question i {
    color: var(--bs-gold);
    transition: transform 0.3s ease;
}

.bs-faq-item.active .bs-faq-question i {
    transform: rotate(180deg);
}

.bs-faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-family: var(--bs-font-primary);
    color: var(--bs-gray-700);
    line-height: 1.7;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.bs-text-center { text-align: center; }
.bs-text-left { text-align: left; }
.bs-text-right { text-align: right; }

.bs-text-purple { color: var(--bs-purple-dark); }
.bs-text-gold { color: var(--bs-gold); }
.bs-text-white { color: var(--bs-white); }
.bs-text-muted { color: var(--bs-gray-500); }

.bs-bg-white { background: var(--bs-white); }
.bs-bg-gray { background: var(--bs-gray-100); }
.bs-bg-purple { background: var(--bs-purple-dark); }
.bs-bg-gradient-warm { background: var(--bs-gradient-warm); }

.bs-mt-0 { margin-top: 0; }
.bs-mb-0 { margin-bottom: 0; }
.bs-mb-1 { margin-bottom: 0.5rem; }
.bs-mb-2 { margin-bottom: 1rem; }
.bs-mb-3 { margin-bottom: 1.5rem; }
.bs-mb-4 { margin-bottom: 2rem; }

.bs-py-section { padding-top: var(--bs-section-padding); padding-bottom: var(--bs-section-padding); }

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
.bs-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.bs-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bs-purple-dark);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .bs-nav-toggle {
        display: flex;
    }

    .bs-nav-actions {
        display: none;
    }

    .bs-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bs-white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--bs-shadow-md);
        gap: 0;
    }

    .bs-nav-links.active {
        display: flex;
    }

    .bs-nav-links li {
        border-bottom: 1px solid var(--bs-gray-200);
    }

    .bs-nav-links li:last-child {
        border-bottom: none;
    }

    .bs-nav-link {
        display: block;
        padding: 1rem 0;
    }

    /* Mobile nav buttons */
    .bs-nav-mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid var(--bs-gray-200);
    }

    .bs-nav-mobile-actions .bs-btn {
        text-align: center;
    }
}

/* Hide mobile buttons on desktop */
@media (min-width: 992px) {
    .bs-nav-mobile-actions {
        display: none;
    }
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 767px) {
    :root {
        --bs-section-padding: 3rem;
    }

    .bs-hero {
        padding-top: calc(3rem + 4rem);
    }

    .bs-hero-actions {
        flex-direction: column;
    }

    .bs-hero-actions .bs-btn {
        width: 100%;
        max-width: 280px;
    }

    .bs-nav-inner {
        padding: 0.75rem 1rem;
    }

    .bs-page-section {
        padding-top: calc(3rem + 4rem);
    }
}
