/* Made Simpler Version B + Version C (A/B Test) Styles */
/* Inherits brand colors from main style.css but with Version B/C specific layouts */

/* Version C - Gradient Text Utilities */
.gradient-text {
    background: linear-gradient(90deg, #667EEA, #764BA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.highlight-blue {
    color: #667EEA;
    font-weight: 600;
}

.highlight-purple {
    color: #764BA2;
    font-weight: 600;
}

/* Version C - Hero Section Text Color Defaults */
/* Ensure all hero text is white by default except gradient elements */
#hero .hero-headline {
    color: #ffffff;
}

#hero .hero-subheadline {
    color: #ffffff;
}

#hero .hero-description {
    color: #ffffff;
}

/* ========================================
   VERSION C - GLOBAL CTA STYLES
   ======================================== */

/* Primary CTA - Gradient Fill */
.cta-primary {
    background: linear-gradient(90deg, #667EEA, #764BA2);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.cta-primary:active {
    transform: translateY(0);
}

/* Secondary CTA - Outlined with Gradient Border */
.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(90deg, #667EEA, #764BA2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cta-secondary:hover {
    background-image: linear-gradient(90deg, #667EEA, #764BA2), linear-gradient(90deg, #667EEA, #764BA2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* Small Link CTA - Text Only */
.cta-link {
    background: none;
    border: none;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.cta-link:hover {
    color: var(--brand-purple);
    text-decoration: underline;
}

/* CTA Container - Centers CTAs */
.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-container.small-gap {
    margin-top: 24px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cta-primary,
    .cta-secondary,
    .cta-link {
        transition: opacity 0.25s ease;
    }
    
    .cta-primary:hover,
    .cta-secondary:hover {
        transform: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .open-modal {
        padding: 12px 18px;
        font-size: 12px;

    }
}

/* Version B specific additions and overrides */

/* Problem Section - Option Cards */
.problem-section {
    background: #000000;
    padding: 80px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.option-card {
    background: #191919;
    border: 2px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #a184ff;
    transform: translateY(-4px)!important;
    box-shadow: 0 12px 32px rgba(161, 132, 255, 0.2)!important;
}

.option-card.highlighted {
    border-color: #4da9e7;
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.05), rgba(161, 132, 255, 0.05));
}

.option-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.cost-line {
    font-size: 24px;
    font-weight: 600;
    color: #4da9e7;
    margin: 16px 0;
}

/* Solution Section - Subsections */
.solution-section {
    background: #191919;
    padding: 80px 0;
}

.solution-subsections {
    display: grid;
    gap: 48px;
    margin-top: 48px;
}

.solution-subsection {
    background: #000000;
    border-left: 4px solid #4da9e7;
    padding: 32px;
    border-radius: 8px;
}

.solution-subsection h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-subsection ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.solution-subsection li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #8d8b8b;
}

.solution-subsection li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

.outcome-callout {
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.1), rgba(161, 132, 255, 0.1));
    border: 2px solid #a184ff;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.outcome-callout h4 {
    font-size: 20px;
    color: #a184ff;
    margin-bottom: 16px;
}

/* Pillar Cards */
.pillars-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    background: #000000;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: #a184ff;
    transform: translateY(-4px);
}

.pillar-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.pillar-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pillar-description {
    color: #8d8b8b;
    margin-bottom: 20px;
}

.pillar-details {
    margin-top: 20px;
}

.pillar-details h4 {
    font-size: 16px;
    color: #a184ff;
    margin: 16px 0 12px;
}

.pillar-details ul {
    list-style: none;
    padding: 0;
}

.pillar-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #8d8b8b;
    font-size: 14px;
}

.pillar-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

.proof-callout {
    background: rgba(77, 169, 231, 0.05);
    border-left: 4px solid #4da9e7;
    padding: 16px 20px;
    margin-top: 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
}

/* Fractional Leadership Callout */
.fractional-callout {
    background: linear-gradient(135deg, rgba(161, 132, 255, 0.15), rgba(77, 169, 231, 0.15));
    border: 2px solid #a184ff;
    border-radius: 16px;
    padding: 48px;
    margin: 64px 0;
    text-align: center;
}

.fractional-callout h3 {
    font-size: 28px;
    color: #a184ff;
    margin-bottom: 16px;
}

.fractional-callout .subhead {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}

.fractional-callout p {
    color: #8d8b8b;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Engagement Options */
.engagement-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.engagement-option-card {
    background: #000000;
    border: 2px solid rgba(77, 169, 231, 0.2);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.engagement-option-card:hover {
    border-color: #4da9e7;
    transform: translateY(-4px);
}

.engagement-option-card.popular {
    border-color: #a184ff;
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.05), rgba(161, 132, 255, 0.05));
}

.option-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #4da9e7;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.option-badge.popular {
    background: #a184ff;
}

.option-header {
    margin-bottom: 20px;
}

.option-header h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.option-timeline {
    font-size: 14px;
    color: #4da9e7;
    margin-bottom: 12px;
}

.option-best-for {
    font-size: 14px;
    color: #8d8b8b;
    font-style: italic;
}

/* Economics Section */
.economics-section {
    background: #191919;
    padding: 80px 0;
}

.economics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.economics-card {
    background: #000000;
    border: 2px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.economics-card.made-simpler {
    border-color: #4da9e7;
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.05), rgba(161, 132, 255, 0.05));
}

.economics-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.economics-card h4 {
    font-size: 16px;
    color: #a184ff;
    margin: 20px 0 12px;
}

.economics-math {
    background: rgba(77, 169, 231, 0.05);
    border-left: 4px solid #4da9e7;
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 8px;
}

.economics-reality {
    color: #8d8b8b;
    font-size: 14px;
    line-height: 1.6;
}

.panterra-callout {
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.1), rgba(161, 132, 255, 0.1));
    border: 2px solid #a184ff;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
}

.panterra-callout h4 {
    font-size: 20px;
    color: #a184ff;
    margin-bottom: 24px;
}

.panterra-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #4da9e7;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #8d8b8b;
}

/* Who This Is For Section */
.audience-section {
    background: #000000;
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.audience-column {
    background: #191919;
    border: 1px solid rgba(161, 132, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.audience-column h3 {
    font-size: 24px;
    color: #4da9e7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.closing-criteria {
    background: linear-gradient(135deg, rgba(77, 169, 231, 0.1), rgba(161, 132, 255, 0.1));
    border-left: 4px solid #a184ff;
    padding: 32px;
    margin-top: 48px;
    border-radius: 8px;
}

.closing-criteria h4 {
    font-size: 20px;
    color: #a184ff;
    margin-bottom: 20px;
}

/* Fractional Leadership Modal */
.modal.fractional-modal .modal-container {
    max-width: 800px;
}

.modal-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(161, 132, 255, 0.2);
}

.modal-section:last-child {
    border-bottom: none;
}

.modal-section h3 {
    font-size: 24px;
    color: #4da9e7;
    margin-bottom: 16px;
}

.modal-section h4 {
    font-size: 16px;
    color: #a184ff;
    margin: 16px 0 12px;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #8d8b8b;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-weight: bold;
}

.time-commitment {
    background: rgba(77, 169, 231, 0.05);
    border-left: 4px solid #4da9e7;
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 8px;
    font-size: 14px;
}

/* WARNING COLOR VISUAL TREATMENT - "OLD PLAYBOOK" SECTION */

/* Dark Background for Old Playbook Section */
.problem-section {
    background: #1A202C !important; /* Navy dark background */
    padding: 80px 0;
}

/* H3 Warning Headline */
.warning-headline {
    font-size: 28px;
    font-weight: 700;
    color: #667eea; /* Warning orange */
    margin: 40px 0 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.warning-headline::before {
    content: '⚠️';
    font-size: 32px;
}

.warning-headline-underline {
    width: 100px;
    height: 2px;
    background: #DD6B20;
    margin: 16px auto 32px;
}

/* Option Cards - Old Playbook Treatment */
.option-card {
    background: #222222 !important; /* Darker than section background */
    border: 2px solid #369fe7 !important;/* Warning orange border */
    opacity: 0.9;
    box-shadow: none !important;
    position: relative;
}

.option-card:hover {
    transform: translateY(-2px);
    opacity: 1!important;
}

/* Warning Badge on Cards */
.warning-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #DD6B20;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Orange Gradient Icons in Old Playbook Cards */
.option-card .option-icon {
    background-color: #369fe7!important;
    filter: none;
}

/* Warning Color for Cost Lines */
.option-card .cost-line {
    /*color: #DD6B20 !important;*/
    font-weight: 700;
}

/* Divider Line Between Old and New */
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #764ba2, #667eea, #764ba2, transparent);
    margin: 60px 0;
}

/* Fourth Option Section - Return to Light */
.outcome-callout {
    background: #ffffff !important;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 48px;
    margin-top: 60px;
}

.outcome-callout h3 {
    color: #667eea !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.outcome-callout h4 {
    color: #191919 !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.outcome-callout p {
    color: #333333 !important;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ACCORDION STYLES FOR 5 PILLARS */

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

/* Accordion Item - Closed State */
.pillar-card {
    background: #ffffff;
    border: 2px solid #E0E7FF; /* Light lavender */
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: #a184ff;
    box-shadow: 0 4px 12px rgba(161, 132, 255, 0.15);
}

.pillar-card.active {
    border-color: #4da9e7;
    box-shadow: 0 6px 20px rgba(77, 169, 231, 0.2);
}

/* Accordion Header (Always Visible) */
.pillar-header {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    gap: 20px;
}

.pillar-header:hover .pillar-expand-icon {
    color: #4da9e7;
    transform: scale(1.1);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4da9e7, #a184ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    flex-shrink: 0;
}

.pillar-header-content {
    flex: 1;
}

.pillar-header-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #191919;
    margin-bottom: 8px;
}

.pillar-teaser {
    font-size: 16px;
    color: #8d8b8b;
    margin: 0;
}

.pillar-expand-icon {
    font-size: 24px;
    color: #8d8b8b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pillar-card.active .pillar-expand-icon {
    transform: rotate(180deg);
    color: #4da9e7;
}

/* Accordion Body (Expandable Content) */
.pillar-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.pillar-card.active .pillar-body {
    max-height: 1000px; /* Large enough for content */
}

.pillar-body-content {
    padding: 0 32px 32px 32px;
    color: #333333;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 24px;
}

.pillar-body-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4da9e7;
    margin: 24px 0 16px;
}

.pillar-body-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.pillar-body-content li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
}

.pillar-body-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4da9e7;
    font-size: 20px;
    font-weight: bold;
}

/* Why This Matters */
.why-matters {
    background: rgba(161, 132, 255, 0.05);
    border-left: 4px solid #a184ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.why-matters h4 {
    color: #a184ff !important;
    margin-top: 0 !important;
}

/* Proof Point Callout Inside Accordion */
.accordion-proof-callout {
    background: rgba(77, 169, 231, 0.08);
    border-left: 4px solid #4da9e7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.accordion-proof-callout strong {
    color: #4da9e7;
    font-size: 18px;
}

/* CASE STUDY SLIDER STYLES */

.case-study-slider-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.case-study-slider-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Case Study Card */
.case-study-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.case-study-logo {
    text-align: center;
    margin-bottom: 32px;
}

.case-study-logo img {
    max-width: 180px;
    height: auto;
}

.case-study-quote {
    font-size: 22px;
    font-style: italic;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 24px;
    border-left: 4px solid #4da9e7;
}

.case-study-author {
    font-size: 16px;
    color: #8d8b8b;
    margin-bottom: 32px;
    padding-left: 24px;
}

.case-study-section {
    margin-bottom: 32px;
}

.case-study-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4da9e7;
    margin-bottom: 12px;
}

.case-study-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

/* Results Grid */
.case-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.result-metric {
    text-align: center;
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: #4da9e7;
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: #8d8b8b;
    line-height: 1.4;
}

.case-impact {
    background: rgba(77, 169, 231, 0.08);
    border-left: 4px solid #4da9e7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #4da9e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #4da9e7;
    font-size: 20px;
}

.slider-arrow:hover {
    background: #4da9e7;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Slider Dot Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0E7FF;
    border: 2px solid #E0E7FF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: #a184ff;
    border-color: #a184ff;
}

.slider-dot.active {
    width: 14px;
    height: 14px;
    background: #4da9e7;
    border-color: #4da9e7;
}

/* Responsive Overrides for Version B */
@media (max-width: 768px) {
    .options-grid,
    .economics-grid,
    .audience-grid,
    .engagement-options-grid {
        grid-template-columns: 1fr;
    }

    .fractional-callout {
        padding: 32px 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .panterra-stats {
        grid-template-columns: 1fr;
    }

    .pillar-header {
        padding: 20px;
        gap: 16px;
    }

    .pillar-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .pillar-header-content h3 {
        font-size: 18px;
    }

    .pillar-body-content {
        padding: 0 20px 24px 20px;
    }

    .slider-container {
        padding: 0 60px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .case-study-card {
        padding: 32px 24px;
    }

    .case-study-quote {
        font-size: 18px;
    }

    .result-number {
        font-size: 32px;
    }

    .case-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ========================================
   VERSION C - COMPACT TESTIMONIAL GRID (3-UP)
   ======================================== */

/* CSS Variables */
:root {
    --brand-blue: #667EEA;
    --brand-purple: #764BA2;
    --deep-black: #0F1012;
    --card-black: #111112;
}

/* Section Container */
.testimonial-grid-section {
    background: var(--deep-black);
    padding: 60px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Section Header */
.testimonial-eyebrow {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-purple);
    margin-bottom: 12px;
}

.testimonial-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Legacy header class (kept for compatibility) */
.testimonial-header {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    font-weight: 500;
}

/* Carousel Container - Shows 3 cards on desktop */
.testimonial-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.testimonial-carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.testimonial-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease-out;
}

/* Testimonial Card - Premium Black Glass Effect */
.testimonial-card {
    background: var(--card-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 22px;
    min-width: calc((100% - 48px) / 3); /* 3 cards visible */
    max-width: 350px;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 0 28px rgba(118, 75, 162, 0.28),
        0 0 44px rgba(102, 126, 234, 0.20);
    transition: all 0.3s ease;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 35px rgba(118, 75, 162, 0.35),
        0 0 60px rgba(102, 126, 234, 0.25);
}

/* Quote */
.card-quote {
    font-size: 17px;
    line-height: 1.5;
    color: #EDEDED;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.card-quote::before {
    content: '"';
    opacity: 0.6;
}

.card-quote::after {
    content: '"';
    opacity: 0.6;
}

/* Attribution */
.card-attribution {
    font-size: 14px;
    color: #A0A0A0;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.testimonial-card:hover .card-attribution {
    color: var(--brand-purple);
}

.card-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .testimonial-carousel-track {
        transition: none;
    }
    
    .testimonial-card {
        transition: none;
    }
}

/* Arrow Buttons */
.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--brand-blue);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow i {
    font-size: 20px;
}

/* Dots Navigation - Only 2 dots for desktop (2 pages of 3 cards) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--brand-blue);
    width: 32px;
    border-radius: 6px;
}

/* CTA Button */
.testimonial-cta {
    text-align: center;
}

.btn-gradient {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-gradient i {
    transition: transform 0.3s ease;
}

.btn-gradient:hover i {
    transform: translateX(4px);
}

/* Tablet - 2 cards visible */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc((100% - 24px) / 2);
    }
    
    .carousel-dots {
        /* 3 dots for tablet (3 pages of 2 cards) */
    }
}

/* Mobile - 1 card visible */
@media (max-width: 768px) {
    .testimonial-grid-section {
        padding: 40px 0 60px;
    }
    
    .testimonial-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .testimonial-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .testimonial-header {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .testimonial-carousel-container {
        gap: 12px;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 20px 18px;
        min-height: 280px;
    }
    
    .card-quote {
        font-size: 16px;
    }
    
    .card-attribution {
        font-size: 13px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    .btn-gradient {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .carousel-dots {
        /* 6 dots for mobile (6 pages of 1 card) */
    }
}

@media (max-width: 480px) {
    .testimonial-carousel-container {
        gap: 8px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .card-quote {
        font-size: 15px;
    }
}

/* ========================================
   SECTION CTA STYLING
   ======================================== */

.section-cta {
    margin-top: 48px;
    padding: 40px;
    text-align: center;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.section-cta:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.25);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
}

.section-cta .btn {
    margin-bottom: 12px;
}

.section-cta .cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-cta {
        padding: 32px 24px;
        margin-top: 40px;
    }
    
    .section-cta .cta-subtext {
        font-size: 14px;
    }
}