/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-success: #22c55e;
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-border: #e2e8f0;
    --color-bg-white: #ffffff;
    --color-bg-light: #fafbfc;
    --color-bg-lighter: #f8fafc;

    /* Typography Scale */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.375rem; /* 22px */
    --text-3xl: 1.5rem; /* 24px */
    --text-4xl: 2rem; /* 32px */
    --text-5xl: 2.25rem; /* 36px */
    --text-6xl: 2.5rem; /* 40px */
    --text-7xl: 2.625rem; /* 42px */
    --text-8xl: 3rem; /* 48px */
    --text-9xl: 3.75rem; /* 60px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing Scale */
    --space-1: 0.25rem; /* 4px */
    --space-2: 0.5rem; /* 8px */
    --space-3: 0.75rem; /* 12px */
    --space-4: 1rem; /* 16px */
    --space-5: 1.25rem; /* 20px */
    --space-6: 1.5rem; /* 24px */
    --space-8: 2rem; /* 32px */
    --space-10: 2.5rem; /* 40px */
    --space-12: 3rem; /* 48px */
    --space-16: 4rem; /* 64px */
    --space-20: 5rem; /* 80px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Container */
    --container-max: 1100px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
}

/* Section Headers & Centered Containers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

/* Base Title Styles */
.section-title,
.headline {
    font-weight: var(--font-bold);
    color: var(--color-text);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle,
.subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle {
    font-size: var(--text-lg);
}

.subtitle {
    font-size: clamp(0.925rem, 2vw, 1.2rem); /* 15px → 20px */
    margin-bottom: var(--space-2);
}


/* Section utilities */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: var(--color-bg-light);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 800px;
}

/* Header Styles */
.header {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.logo a {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: var(--space-6) var(--space-6) var(--space-12);
    background-color: var(--color-bg-white);
    text-align: center;
}

.headline {
    font-size: clamp(1.65rem, 4.5vw, 3.5rem); /* 28px → 60px */
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

/* Social Proof */
.social-proof {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

/* Inner Circle Hook */
.inner-circle-hook {
    margin-bottom: var(--space-6);
}

.inner-circle-hook p {
    color: var(--color-text);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Testimonial Marquee */
.testimonial-marquee {
    margin-top: var(--space-12);
    margin-bottom: var(--space-8);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Desktop: 3 across, equal width */
@media (min-width: 1100px) {
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* Tablet and below: one card at a time (toggle mode) */
@media (max-width: 1099px) {
  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

.card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 0;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-popular {
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

/* Badge Base Styles */
.popular-badge,
.savings-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-bg-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--color-primary);
}

.savings-badge {
    background: var(--color-success);
}

.card-header {
    text-align: center;
    margin-bottom: var(--space-5);
}

.card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* 20px → 24px */
    font-weight: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.card-subtitle {
    font-size: 11px;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-3) 0;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-price {
    margin-bottom: var(--space-4);
}

.price {
    font-size: clamp(2rem, 4vw, 3rem); /* 32px → 48px */
    font-weight: var(--font-bold);
    color: var(--color-text);
}

.price-period {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-left: var(--space-2);
}

.card-billing {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    font-weight: var(--font-medium);
}

.card-description {
    color: var(--color-text-muted);
    font-size: var(--text-base);
    line-height: 1.5;
    min-height: 3em; /* Ensures consistent height across cards */
}

/* Features */
.card-features {
    flex-grow: 1;
    margin-bottom: var(--space-5);
}

.features-list {
    list-style: none;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    line-height: 1.5;
}

.checkmark {
    color: var(--color-success);
    font-weight: var(--font-bold);
    margin-right: var(--space-3);
    font-size: var(--text-lg);
}

/* Button System */
.card-action {
    margin-top: auto;
}

/* Base button styles */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
}

/* Variants */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-inverse {
    background-color: var(--color-bg-white);
    color: var(--color-text);
    border: 2px solid var(--color-bg-white);
}

.btn-inverse:hover {
    background-color: var(--color-bg-lighter);
    border-color: var(--color-bg-lighter);
}

/* Modifiers */
.btn-inline {
    width: auto;
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
}

/* Desktop: Hide toggle, show all cards */
@media (min-width: 1100px) {
  .pricing-toggle-container {
    display: none;
  }
}

/* Tablet and below: Show toggle, hide non-active cards */
@media (max-width: 1099px) {
  .pricing-toggle-container {
    display: block;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .pricing-cards .card {
    display: none;
  }
  
  .pricing-cards .card.active-plan {
    display: block;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
  }
}

/* Add toggle styling for mobile */
@media (max-width: 1099px) {
  .pricing-toggle {
    display: inline-flex;
    background: var(--color-border);
    border-radius: var(--radius-full);
    padding: 4px;
    position: relative;
  }

  .toggle-option {
    position: relative;
    padding: var(--space-2) var(--space-4);
    background: none;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-slow);
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }

  .toggle-option.active {
    background: var(--color-bg-white);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    :root {
        --text-scale: 0.875;
        --space-scale: 0.75;
    }

    .section {
        padding: calc(4rem * var(--space-scale)) 0;
    }

    .container,
    .container-sm {
        padding: 0 0.75rem;
    }

    .headline {
        font-size: calc(clamp(1.65rem, 4.5vw, 3.5rem) * var(--text-scale));
    }

    .section-title {
        font-size: calc(clamp(1.75rem, 4vw, 2.5rem) * var(--text-scale));
    }

    .final-cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .btn {
        padding: calc(var(--space-3) * var(--space-scale)) calc(var(--space-6) * var(--space-scale));
        font-size: calc(var(--text-base) * var(--text-scale));
    }

    .btn-large {
        width: 100%;
        padding: calc(var(--space-3) * var(--space-scale)) calc(var(--space-6) * var(--space-scale));
        font-size: calc(var(--text-base) * var(--text-scale));
    }

    /* Testimonial adjustments */
    .testimonial-inline {
        margin: calc(1.5rem * var(--space-scale)) auto
            calc(1rem * var(--space-scale));
        padding: 0 1rem;
    }

    .testimonial-quote {
        font-size: calc(16px * var(--text-scale));
    }

    .testimonial-cite {
        font-size: calc(14px * var(--text-scale));
    }

    .testimonial-large .testimonial-quote {
        font-size: calc(20px * var(--text-scale));
    }

    /* Guarantee badge */
    .guarantee-badge {
        margin: calc(1rem * var(--space-scale)) auto
            calc(1.5rem * var(--space-scale));
        padding: calc(1rem * var(--space-scale)) 1rem;
    }

    /* Video testimonials */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(37, 99, 235, 0.8);
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    .slider-next {
        right: 0.5rem;
    }
    
    .slider-container {
        margin: 0;
    }

    .slide-content {
        padding: 1.5rem 3.5rem; /* Increased horizontal padding for arrows */
        min-height: 350px;
        height: 350px;
    }

    .video-placeholder {
        max-height: 200px;
        height: 160px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .quote-mark {
        font-size: 50px;
    }

    /* Path section */
    .path-list {
        margin-left: calc(30px * var(--space-scale));
    }

    .path-item {
        padding-left: calc(60px * var(--space-scale));
    }

    .path-icon {
        width: calc(48px * var(--space-scale));
        height: calc(48px * var(--space-scale));
        left: calc(-24px * var(--space-scale));
        font-size: calc(22px * var(--text-scale));
    }

    .path-title {
        font-size: calc(22px * var(--text-scale));
    }

    .path-description {
        font-size: calc(16px * var(--text-scale));
    }

    /* Exclusions section mobile */
    .exclusions-list {
        margin: 1.5rem auto;
        max-width: 100%;
        padding-left: 0.5rem;
    }

    .exclusions-list li {
        margin-bottom: 0.5rem;
    }

    .exclusions-list strong {
        font-size: calc(15px * var(--text-scale));
    }

    .exclusion-invite {
        font-size: calc(17px * var(--text-scale));
    }

    /* FAQ section */
    .faq-question {
        font-size: calc(var(--text-lg) * var(--text-scale));
        padding: calc(var(--space-5) * var(--space-scale)) 0;
    }

    .faq-answer {
        font-size: calc(var(--text-base) * var(--text-scale));
        padding-bottom: calc(var(--space-5) * var(--space-scale));
    }

    /* Final CTA adjustments */
    .final-cta-title {
        font-size: calc(clamp(1.75rem, 4vw, 2.625rem) * var(--text-scale));
    }

    .final-cta-subtitle {
        font-size: calc(20px * var(--text-scale));
        margin-bottom: calc(3rem * var(--space-scale));
    }

    .stat-number {
        font-size: calc(36px * var(--text-scale));
    }
}

/* Testimonial System */
/* Base testimonial */
.testimonial {
    text-align: center;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.testimonial-cite {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: 500;
}

/* Modifiers */
.testimonial-inline {
    margin: 1.5rem auto 1rem;
    max-width: 600px;
}

.testimonial-box {
    padding: 1.5rem;
    background: var(--color-bg-lighter);
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-large .testimonial-quote {
    font-size: 20px;
    font-weight: 600;
}

/* Guarantee Badge (Below Pricing) */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1rem auto 0;
    padding: 1rem 1.5rem;
    background: var(--color-bg-lighter);
    border: none;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.guarantee-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.guarantee-text strong {
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 2px;
}

.guarantee-text span {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Video Testimonials Section */

/* Uses .section-header, .section-title, .section-subtitle */

/* Testimonial Slider */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 3rem; /* Make space for dots */
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 2rem;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
}


/* Video Slide Styles */
.video-slide .video-thumbnail {
    width: 100%;
    max-width: 340px; /* Increased from 280px */
    margin: 0 auto 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-slide .video-thumbnail:hover {
    transform: scale(1.02);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all var(--transition-base);
}

.video-thumbnail:hover .play-icon {
    background: #1d4ed8;
    transform: scale(1.1);
}

/* Text Slide Styles */
.text-slide {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
}

.quote-mark {
    font-size: 60px;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-bg-white);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.slider-prev {
    left: -24px;
}
.slider-next {
    right: -24px;
}

.slider-arrow.disabled {
    background: var(--color-text-light);
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-arrow:hover:not(.disabled) {
    background: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.08);
}


/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition-base);
}

.dot.active {
    background: var(--color-primary);
}

.dot:hover {
    background: var(--color-text-muted);
}

.dot.active:hover {
    background: var(--color-primary-dark);
}

/* Exclusions Section */
.exclusions-container {
    text-align: center;
}

.exclusions-list {
    list-style: disc;
    max-width: 500px;
    margin: 3rem auto;
    text-align: left;
    padding-left: 1.2rem;
    list-style-position: inside;
}

.exclusions-list li {
    margin-bottom: 1rem;
}

.exclusions-list strong {
    color: var(--color-text);
    font-size: 17px;
    font-weight: 600;
}

.exclusions-footer {
    margin-top: 3rem;
    text-align: center;
}

.exclusion-setup {
    font-size: 16px;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.exclusion-invite {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 600;
}

/* Pre-Final CTA Testimonial */
.pre-final-testimonial {
    padding: 2rem 0;
    background-color: var(--color-bg-light);
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: var(--color-primary-dark);
    color: var(--color-bg-white);
    text-align: center;
}

/* Shared Bold Styles in Final CTA */
.final-cta-title,
.stat-number {
    font-weight: var(--font-bold);
}

.final-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem); /* 28px → 42px */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 20px;
    color: var(--color-bg-white);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-number {
    font-size: 36px;
    margin-bottom: 8px;
    color: #ffffff;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-buttons {
    margin-top: 2rem;
}

.final-guarantee {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--color-bg-white);
}

/* Exclusions Section Specific Background */
.exclusions {
    background-color: #f1f5f9;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* ===================================== */
/* == Proven Path Section Styles      == */
/* ===================================== */

/* Uses .section-header, .section-title, .section-subtitle */

/* The list that holds the path items */
.path-list {
    list-style: none;
    padding-left: 0;
    position: relative;
    /* Create space on the left for the line and icons */
    margin-left: 30px;
}

/* The vertical connecting line */
.path-list::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 2px;
    background-color: #e2e8f0;
}

.path-item {
    position: relative;
    /* Create space between the icon and the text */
    padding-left: 60px;
}

/* Add space between each item, except the last one */
.path-item:not(:last-child) {
    margin-bottom: 3rem;
}

.path-icon {
    position: absolute;
    /* Position the icon's center over the vertical line */
    left: -24px;
    top: -4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    background: #ccc; /* Fallback color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Re-using your benefit icon colors for brand consistency */
.path-icon.interactive {
    background: #2563eb;
}
.path-icon.proven {
    background: #22c55e;
}
.path-icon.complete {
    background: #f59e0b;
}
.path-icon.instant {
    background: #7c3aed;
}

.path-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.path-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 16px;
}

.path-description strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ===================================== */
/* == FAQ Accordion Section Styles    == */
/* ===================================== */

/* The list of all FAQ items */
.faq-list {
    border-top: 1px solid var(--color-border);
}

/* A single FAQ item (the <details> tag) */
.faq-item {
    border-bottom: 1px solid var(--color-border);
}

/* The clickable question area (the <summary> tag) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-text);
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

/* Remove the default arrow on Firefox/Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

/* The plus/minus icon */
.faq-icon {
    font-size: var(--text-2xl);
    font-weight: var(--font-normal);
    color: var(--color-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

/* Rotate the icon when the accordion is open */
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

/* The answer content area */
.faq-answer {
    padding-bottom: var(--space-5);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Styling for paragraphs inside the answer for good spacing */
.faq-answer p:not(:last-child) {
    margin-bottom: 1em;
}

/* CTA button area after FAQ */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.faq-footer p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

/* Responsive adjustments for testimonial carousel */

/* Path Icon Colors */
[data-icon-color="primary"] {
    background-color: #2563eb;
}
[data-icon-color="success"] {
    background-color: #22c55e;
}
[data-icon-color="warning"] {
    background-color: #f59e0b;
}
[data-icon-color="purple"] {
    background-color: #7c3aed;
}

/* Testimonial Section Enhancements */
.testimonial-section {
    background-color: var(--color-bg-white);
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Unify slide appearance */
.slide-content {
    background-color: var(--color-bg-lighter);
    border-radius: var(--radius-lg);
    height: 100%;
    padding: 2rem;
}


/* Remove redundant styling from text-slide */
.text-slide {
    background: none;
    border: none;
}

/* Improve testimonial quote styling within the slider */
.testimonial-slider .testimonial-quote {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-text);
    max-width: 550px; /* Control width */
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem; /* Reduced space */
    line-height: 1.6;
}

.testimonial-slider .testimonial-cite {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    /* margin-top: auto; was pushing this to the bottom */
}

/* Ensure video and text slides have similar vertical rhythm */
.video-slide .testimonial-quote {
    margin-top: 1.5rem;
}

.text-slide .testimonial-quote {
    margin-top: 0; /* It has a quote mark on top */
}

/* Final fallback for video thumbnails */
.video-thumbnail .video-placeholder:not([style*="background-image"]) {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
