/**
 * Frontend styles for ATHS shortcodes
 */

/* Hero Section */
.aths-hero-section {
    background: linear-gradient(135deg, #262f4d 0%, #1a2332 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.aths-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 47, 77, 0.8);
}

.aths-hero-content {
    position: relative;
    z-index: 2;
}

.aths-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.aths-hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.aths-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.aths-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.aths-btn-primary,
.aths-btn-secondary {
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.aths-btn-primary {
    background: white;
    color: #262f4d;
}

.aths-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.aths-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.aths-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Treatment Card */
.aths-treatment-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aths-treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.aths-treatment-image {
    height: 200px;
    overflow: hidden;
}

.aths-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aths-treatment-content {
    padding: 32px;
}

.aths-treatment-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.aths-treatment-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.aths-treatment-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.aths-treatment-actions {
    display: flex;
    gap: 12px;
}

.aths-treatment-actions .aths-btn-primary,
.aths-treatment-actions .aths-btn-secondary {
    flex: 1;
    text-align: center;
}

/* Therapy Carousel */
.aths-therapy-carousel-section {
    padding: 80px 0;
}

.aths-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000000 !important;
}

.aths-therapy-carousel-section .aths-section-title {
    color: #000000 !important;
	font-family: 'Cinzel';
}

.aths-therapy-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
}

.aths-therapy-item {
    flex: 0 0 300px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.aths-therapy-image {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    position: relative; /* alch: anchor overlay badges. 2026-04-22. */
}

.aths-therapy-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.aths-therapy-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000 !important;
}

.aths-therapy-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
}

.aths-therapy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.aths-therapy-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.aths-therapy-badge.compounded,
.aths-therapy-badge--compounded {
    background: #10b981;
    color: white;
}

.aths-therapy-badge.prescription,
.aths-therapy-badge.rx,
.aths-therapy-badge--prescription {
    background: #3b82f6;
    color: white;
}

.aths-therapy-badge--custom {
    background: #262f4d;
    color: white;
}

.aths-therapy-badge--generic {
    background: #6b7280;
    color: white;
}

.aths-therapy-badge--coming-soon {
    background: #d4af37;
    color: #0a0a0a;
}

.aths-therapy-actions {
    display: flex;
    gap: 8px;
}

.aths-therapy-actions .aths-btn-primary,
.aths-therapy-actions .aths-btn-secondary {
    flex: 1;
    padding: 10px 20px;
    font-size: 0.85rem;
    text-align: center;
}

/* Benefits Section */
.aths-benefits-section {
    padding: 80px 0;
    background: white;
}

.aths-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aths-benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.aths-benefits-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.aths-benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.aths-benefit-icon {
    color: #262f4d;
    font-size: 1.2rem;
    font-weight: bold;
}

.aths-benefits-image img {
    width: 100%;
    border-radius: 12px;
}

/* FAQ Section */
.aths-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.aths-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.aths-faq-item {
    background: white;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.aths-faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.aths-faq-question:hover {
    background: none;
}

.aths-faq-question.active {
    background: #f8f9fa;
}

.aths-faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.aths-faq-question.active .aths-faq-icon {
    transform: rotate(45deg);
}

.aths-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.7;
}

.aths-faq-answer.active {
    padding: 0 24px 24px 24px;
    max-height: 500px;
}

/* Dynamic Treatments Carousel & Therapy Carousel (WP Bakery) */
.aths-therapy-carousel-section {
    padding: 80px 0;
    background: white;
    overflow-x: hidden;
}

.aths-therapy-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
}

.aths-therapy-carousel-content {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 0 40px 0 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.aths-therapy-carousel-content::-webkit-scrollbar {
    display: none;
}

.aths-therapy-item {
    flex: 0 0 calc(37.5vw - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 10px;
    min-width: 300px;
}

.aths-therapy-image {
    margin-bottom: 16px;
    width: 100%;
    position: relative; /* alch: anchor overlay badges. 2026-04-22. */
}

.aths-therapy-image a {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* alch: overlay badges sit in the top-left of the product photo instead of
   between the title and the CTA buttons. 2026-04-22. */
.aths-therapy-badges--overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    z-index: 2;
    pointer-events: none;
}

.aths-therapy-badges--overlay .aths-therapy-badge {
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22);
    backdrop-filter: saturate(1.05);
    -webkit-backdrop-filter: saturate(1.05);
}

@media (max-width: 600px) {
    .aths-therapy-badges--overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        gap: 5px;
    }
}

.aths-therapy-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    min-height: 400px;
}

.aths-therapy-image a:hover img {
    opacity: 0.9;
}

.aths-therapy-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000 !important;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.aths-therapy-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 0 0 12px 0;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.aths-therapy-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.aths-therapy-buttons .aths-btn-primary,
.aths-therapy-buttons .aths-btn-secondary {
    flex: 1 1 50%;
    min-width: 0;
}

/* How It Works Carousel (match Diagnostic Testing fonts; image separate from text) */
.aths-how-it-works-carousel-section {
    font-family: 'Apercu', sans-serif;
    padding: 80px 0;
    background: #fff;
    overflow-x: hidden;
}

.aths-how-it-works-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.aths-how-it-works-carousel-header {
    margin-bottom: 2rem;
    text-align: center;
}

.aths-how-it-works-carousel-subtitle {
    display: block;
    font-family: 'Apercu', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.aths-how-it-works-carousel-title {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #000000 !important;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.aths-how-it-works-carousel-description {
    font-family: 'Apercu', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.aths-how-it-works-carousel {
    position: relative;
    width: 100%;
}

.aths-how-it-works-carousel-content {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0 0 1rem 0;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.aths-how-it-works-carousel-content::-webkit-scrollbar {
    height: 6px;
}

.aths-how-it-works-carousel-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}

.aths-how-it-works-carousel-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.aths-how-it-works-carousel-card {
    flex: 0 0 min(320px, 85vw);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.aths-how-it-works-carousel-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px;
}

.aths-how-it-works-carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.aths-how-it-works-carousel-card-body {
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aths-how-it-works-carousel-step {
    font-family: 'Apercu', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.aths-how-it-works-carousel-card-title {
    font-family: 'Aeonik', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000 !important;
    margin: 0;
    line-height: 1.3;
}

.aths-how-it-works-carousel-card-desc {
    font-family: 'Apercu', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .aths-how-it-works-carousel-section {
        padding: 48px 0;
    }
    .aths-how-it-works-carousel-card {
        flex: 0 0 min(280px, 82vw);
    }
}

.aths-btn-primary {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.aths-btn-primary:hover {
    background: #333;
    color: #fff !important;
}

.aths-therapy-buttons .aths-btn-primary:hover {
    color: #fff !important;
}

.aths-btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 1px solid #ddd;
    padding: 9px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.aths-btn-secondary:hover {
    border-color: #1a1a1a;
    background: #f8f9fa;
}

/* Selection Quiz Form (transparent card, pill selectors & button) */
.aths-selection-quiz-form {
    padding: 1.5rem 0;
    font-family: inherit;
}

.aths-quiz-form-card {
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    max-width: 100%;
}

.aths-quiz-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 1.5rem 0;
    font-family: inherit;
}

.aths-quiz-question {
    margin-bottom: 1.5rem;
}

.aths-quiz-question-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-family: inherit;
}

.aths-quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.aths-quiz-option {
    flex: 1 1 0;
    min-width: 80px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.aths-quiz-option:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
}

.aths-quiz-option.selected {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.aths-quiz-form-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.aths-quiz-form-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: none;
    border-radius: 9999px;
    padding: 14px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.aths-quiz-form-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
}

.aths-compliance-disclaimer {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.aths-compliance-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.aths-compliance-disclaimer p strong {
    color: #1e293b;
    font-weight: 600;
}

/* BMI Calculator */
.aths-bmi-calculator {
    padding: 1.5rem 0;
    font-family: inherit;
}
.aths-bmi-calculator-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 100%;
}
.aths-bmi-calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    font-family: inherit;
}
/* alch: optional intro/description paragraph below the BMI title. 2026-04-22. */
.aths-bmi-calculator-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4e4e4e;
    margin: 0 0 1.5rem 0;
    font-family: inherit;
}
.aths-bmi-calculator-intro:last-child {
    margin-bottom: 0;
}
/* alch: fine-print disclaimer at the bottom of the calculator card. 2026-04-22. */
.aths-bmi-calculator-disclaimer {
    margin: 1.5rem 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #6b7280;
    font-style: italic;
    font-family: inherit;
}
.aths-bmi-calculator-form {
    margin-bottom: 1.5rem;
}
.aths-bmi-field {
    margin-bottom: 1rem;
}
.aths-bmi-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: inherit;
}
.aths-bmi-height-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.aths-bmi-input {
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    width: 4rem;
    max-width: 100%;
}
.aths-bmi-input:focus {
    outline: none;
    border-color: #1a1a1a;
}
.aths-bmi-height-sep,
.aths-bmi-unit {
    font-size: 0.9rem;
    color: #6b7280;
    font-family: inherit;
}
.aths-bmi-weight {
    width: 6rem;
}
.aths-bmi-calculate-btn {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s ease;
}
.aths-bmi-calculate-btn:hover {
    background: #333;
}
.aths-bmi-result {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.aths-bmi-gauge-wrap {
    margin-bottom: 1rem;
}
.aths-bmi-gauge {
    display: flex;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7eb;
}
.aths-bmi-gauge-seg {
    flex: 1;
    min-width: 0;
    background: #e5e7eb;
    transition: background 0.2s ease;
}
.aths-bmi-gauge-seg.active {
    background: #262f4d;
}
.aths-bmi-gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.7rem;
    color: #6b7280;
    font-family: inherit;
}
.aths-bmi-result-label {
    font-size: 0.9rem;
    color: #374151;
    margin: 0 0 0.25rem 0;
    font-family: inherit;
}
.aths-bmi-result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262f4d;
    margin: 0 0 1rem 0;
    font-family: inherit;
}
.aths-bmi-categories {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    font-family: inherit;
}
.aths-bmi-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-family: inherit;
}
.aths-bmi-cat:last-child {
    border-bottom: none;
}
.aths-bmi-cat-name {
    font-weight: 500;
}
.aths-bmi-cat-range {
    color: #6b7280;
}
.aths-bmi-highlight-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1rem;
    font-family: inherit;
}
.aths-bmi-highlight-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
}
.aths-bmi-highlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #262f4d;
    flex-shrink: 0;
}
.aths-bmi-highlight-range {
    margin-left: auto;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
}
.aths-bmi-highlight-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0 0 1rem 0;
    font-family: inherit;
}
.aths-bmi-highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.aths-bmi-btn-primary {
    display: inline-block;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #262f4d;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.aths-bmi-btn-primary:hover {
    background: #1a2332;
    color: #fff;
}
.aths-bmi-btn-secondary {
    display: inline-block;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.aths-bmi-btn-secondary:hover {
    border-color: #1a1a1a;
    background: #f8f9fa;
    color: #1a1a1a;
}

.aths-carousel-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.aths-therapy-carousel:hover .aths-carousel-arrow,
.aths-carousel-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.timeline-header .subtitle {
    font-size: 1.1rem;
    color: #4e4e4e;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-accordion-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-accordion-cards {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
}

.timeline-accordion-card {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease !important;
    flex: 1 !important;
    min-width: 200px !important;
    max-width: 350px !important;
    height: 600px !important;
    background: #0a0a0a !important;
}

.timeline-accordion-card:hover {
    flex: 4 !important;
    max-width: 450px !important;
    box-shadow: 0 8px 24px rgba(38, 47, 77, 0.2) !important;
    z-index: 10 !important;
}

.timeline-accordion-card.active {
    flex: 4 !important;
    max-width: 450px !important;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3) !important;
    z-index: 10 !important;
}

.timeline-accordion-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-accordion-card:hover .timeline-accordion-card-background {
    transform: scale(1.05);
}

.timeline-accordion-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-accordion-card:hover .timeline-accordion-card-overlay {
    padding-bottom: 3rem;
}

.timeline-accordion-time {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.timeline-accordion-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
    transition: margin-bottom 0.4s ease;
}

.timeline-accordion-card:hover .timeline-accordion-title {
    margin-bottom: 1rem;
}

.timeline-accordion-description {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease !important;
    margin-top: 0 !important;
}

.timeline-accordion-card:hover .timeline-accordion-description,
.timeline-accordion-card.active .timeline-accordion-description {
    max-height: 200px !important;
    opacity: 1 !important;
    margin-top: 0 !important;
}

/* Timeline Responsive Styles */
@media (max-width: 1024px) {
    .timeline-accordion-cards {
        gap: 1rem;
    }

    .timeline-accordion-card {
        min-width: 150px;
        height: 550px;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-header h2 {
        font-size: 2rem;
    }

    .timeline-accordion-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-accordion-card {
        min-width: 100%;
        max-width: 100%;
        height: 400px;
        flex: 1;
    }

    .timeline-accordion-card:hover,
    .timeline-accordion-card.active {
        flex: 1;
    }

    .timeline-accordion-title {
        font-size: 1.25rem;
    }

    .timeline-accordion-description {
        font-size: 0.9rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: visible;
}

.how-it-works-section .section-title {
    text-align: center !important;
}

.how-it-works-section .section-title h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #0a0a0a !important;
    margin-bottom: 2.5rem !important;
    text-align: center !important;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.how-it-works-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.how-it-works-step:hover {
    border-left-color: #262f4d;
    box-shadow: 0 4px 12px rgba(38, 47, 77, 0.15);
}

.how-it-works-step.active {
    border-left-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.how-it-works-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.how-it-works-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
    background: #f8f9fa;
    flex-shrink: 0;
}

.how-it-works-step.active .how-it-works-step-icon {
    background: #d4af37;
    color: white;
}

.how-it-works-step-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.how-it-works-step-number {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
}

.how-it-works-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.how-it-works-step.active .how-it-works-step-title {
    color: #d4af37;
}

.how-it-works-step-content {
    margin-left: 66px;
}

.how-it-works-step-description {
    font-size: 1rem;
    color: #4e4e4e;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-image-panel {
    position: sticky;
    top: 100px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.how-it-works-image-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
}

.how-it-works-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.how-it-works-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: white;
}

.how-it-works-image-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .how-it-works-image-panel {
        position: relative;
        top: 0;
    }
    .how-it-works-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .how-it-works-step {
        padding: 1.5rem;
    }
    .how-it-works-step-content {
        margin-left: 0;
        margin-top: 1rem;
    }
    .how-it-works-step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .how-it-works-image-container {
        height: 300px;
    }
}

/* Icon Callouts Section (Monitoring) */
.monitoring-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: visible;
}

.monitoring-section .container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.monitoring-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 1200 130" preserveAspectRatio="none"><path fill="%23F8F9FA" d="M0,130 L0,60 C200,93.3333333 400,110 600,110 C800,110 1000,93.3333333 1200,60 L1200,130 L0,130 Z"></path><defs></defs></svg>');
    background-size: cover;
    background-position: center;
    transform: translateY(0px);
}

.monitoring-container {
    margin: 0 auto;
    padding: 0 !important;
    max-width: 100%;
}

.monitoring-card {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.monitoring-header {
    text-align: center;
    margin-bottom: 3rem;
}

.monitoring-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.monitoring-header .subtitle {
    font-size: 1.1rem;
    color: #4e4e4e;
    max-width: 700px;
    margin: 0 auto;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.monitoring-item {
    text-align: left;
}

.monitoring-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.monitoring-icon-box.consultation {
    background: #fee2e2;
    color: #991b1b;
}

.monitoring-icon-box.lab {
    background: #dbeafe;
    color: #1e40af;
}

.monitoring-icon-box.support {
    background: #fef3c7;
    color: #92400e;
}

.monitoring-icon-box svg {
    width: 32px;
    height: 32px;
}

.monitoring-icon-box svg path,
.monitoring-icon-box svg rect,
.monitoring-icon-box svg circle,
.monitoring-icon-box svg line {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2.5;
}

.monitoring-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.monitoring-item p {
    font-size: 1rem;
    color: #4e4e4e;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .monitoring-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .monitoring-item {
        text-align: center;
    }
    
    .monitoring-icon-box {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    .monitoring-section {
        padding: 60px 0;
    }
    
    .monitoring-card {
        padding: 3rem 2rem;
        border-radius: 15px;
    }
    
    .monitoring-header h2 {
        font-size: 2rem;
    }
    
    .monitoring-grid {
        gap: 2rem;
    }
}

/* Learn More Section */
.learn-more-section {
    padding: 100px 0;
    background: white;
}

.learn-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.learn-more-header {
    text-align: center;
    margin-bottom: 4rem;
}

.learn-more-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.learn-more-header .subtitle {
    font-size: 1.1rem;
    color: #4e4e4e;
}

.learn-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.learn-more-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.learn-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.learn-more-card-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.learn-more-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.learn-more-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #262f4d;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.learn-more-card p {
    font-size: 1rem;
    color: #4e4e4e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.learn-more-card-link {
    color: #262f4d;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more-card-link:hover {
    color: #1a2332;
}

.learn-more-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.learn-more-card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .learn-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .learn-more-section {
        padding: 60px 0;
    }
    
    .learn-more-header h2 {
        font-size: 2rem;
    }
    
    .learn-more-grid {
        grid-template-columns: 1fr;
    }
}

/* Sources Section */
.sources-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.sources-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sources-toggle {
    background: #262f4d;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.sources-toggle:hover {
    background: #1a2332;
}

.sources-list {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: none;
    text-align: left;
}

.sources-list.active {
    display: block;
}

.sources-list ol {
    list-style: decimal;
    padding-left: 24px;
}

.sources-list li {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.sources-list li a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.sources-list li a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.sources-list li em {
    font-style: italic;
    color: #262f4d;
}

@media (max-width: 768px) {
    .sources-section {
        padding: 40px 0;
    }
    
    .sources-list {
        padding: 24px;
    }
}

/* Closing CTA Section */
.closing-cta {
    padding: 0;
    min-height: 600px;
    max-height: 100vh;
    height: 100vh;
    position: relative;
    color: white;
    text-align: left;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.closing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.closing-cta[style*="background-image"]::before {
    background-image: inherit;
}

.closing-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding-bottom: 4rem;
}

.closing-cta h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    line-height: 1.1;
}

.closing-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    line-height: 1.7;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    margin: 0;
    color: white;
    background: #262f4d;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .cta-button:hover {
    background: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-buttons .cta-button .button-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-buttons .cta-button .button-icon svg {
    width: 12px;
    height: 12px;
    fill: #262f4d;
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .closing-cta {
        padding: 0;
        min-height: 500px;
        height: auto;
    }
    
    .closing-cta h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .closing-cta p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }
}

/* Highlights Section (Stats) */
.stats-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.stats-container-wrapper {
    margin: 0 auto;
    padding: 0 0rem;
}

.stats-container {
    background: linear-gradient(135deg, #1a2332 0%, #262f4d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 4rem 3rem;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    border-radius: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ratio-visual {
    display: flex;
    align-items: center;
    gap: 0rem;
    margin: 2rem 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.ratio-figure {
    width: 30px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 45px;
}

.ratio-figure svg {
    width: 100%;
    height: 100%;
}

.ratio-text {
    flex: 1;
    text-align: center;
}

.stat-icon-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-icon-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.stat-icon-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.stat-number-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.stat-number-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-container {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        padding: 2rem;
    }
    
    .ratio-visual {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Chart Block (Context Section) */
.context-section {
    padding: 80px 0;
    background: white;
}

.context-blocks {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.context-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.context-block:nth-child(even) {
    direction: rtl;
}

.context-block:nth-child(even) > * {
    direction: ltr;
}

.context-text {
    padding: 2rem 0;
}

.context-text .eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: #262f4d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.context-text h2,
.context-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.context-text p {
    font-size: 1.1rem;
    color: #4e4e4e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.context-media {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    padding: 2rem;
}

.context-media img {
    width: 100%;
    height: auto;
    display: block;
}

.context-media video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.context-chart {
    width: 100%;
    height: auto;
    min-height: auto;
}

/* Image Block (same layout as Chart Block, image + text, left/right) */
.context-image {
    width: 100%;
    height: auto;
}
.context-image img {
    width: 100%;
    height: auto;
    display: block;
}
.aths-image-block-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
    margin: 0;
    font-size: 1rem;
}

.context-chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4e4e4e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.context-chart svg {
    width: 100%;
    height: auto;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-out;
}

.chart-line.animate {
    stroke-dashoffset: 0;
}

.chart-point {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .context-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .context-block:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .context-section {
        padding: 60px 0;
    }
    
    .context-text h2,
    .context-text h3 {
        font-size: 2rem;
    }
    
    .context-media {
        padding: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .aths-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .aths-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .aths-benefits-content {
        grid-template-columns: 1fr;
    }
    
    .aths-therapy-carousel {
        flex-direction: column;
    }
    
    .aths-therapy-item {
        flex: 0 0 250px;
    }
}

/* Feature Panels Section */
.features-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-panel {
    display: flex;
    flex-direction: column;
}

.feature-panel-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* Hover Overlay for Panel 1 */
.feature-panel-1 .hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-panel-1:hover .hover-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Chat Interface Styles - Scoped to prevent conflicts */
.feature-panel-1 .hover-overlay .chat-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.feature-panel-1 .hover-overlay .chat-message {
    display: flex !important;
    flex-direction: column !important;
    animation: fadeInUpChat 0.4s ease forwards !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.feature-panel-1 .hover-overlay .chat-message.user {
    align-items: flex-end !important;
}

.feature-panel-1 .hover-overlay .chat-message.system {
    align-items: flex-start !important;
}

.feature-panel-1 .hover-overlay .chat-message.user .chat-bubble {
    background: #1e3a5f !important;
    color: #ffffff !important;
    border-radius: 18px 18px 4px 18px !important;
    max-width: 80% !important;
    margin: 0 !important;
    margin-bottom: 4px !important;
}

.feature-panel-1 .hover-overlay .chat-message.system .chat-bubble {
    background: #ffffff !important;
    color: #333333 !important;
    border-radius: 18px 18px 18px 4px !important;
    max-width: 85% !important;
    margin: 0 !important;
    margin-bottom: 4px !important;
}

.feature-panel-1 .hover-overlay .chat-bubble {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    word-wrap: break-word !important;
}

.feature-panel-1 .hover-overlay .chat-timestamp {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 4px !important;
    padding: 0 4px !important;
    margin-bottom: 0 !important;
}

.feature-panel-1 .hover-overlay .chat-message.system .chat-timestamp {
    color: rgba(255, 255, 255, 0.5) !important;
}

.feature-panel-1 .hover-overlay * {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    box-sizing: border-box !important;
}

.feature-panel-1 .hover-overlay p,
.feature-panel-1 .hover-overlay div {
    margin: 0 !important;
}

@keyframes fadeInUpChat {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-panel-1 .hover-overlay .chat-message.user {
    animation-delay: 0.1s !important;
}

.feature-panel-1 .hover-overlay .chat-message.system {
    animation-delay: 0.3s !important;
}

/* Hover Overlay for Panel 2 */
.feature-panel-2 .hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 500px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.feature-panel-2:hover .hover-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Biomarkers Header - Scoped to prevent conflicts */
.feature-panel-2 .hover-overlay .biomarkers-header {
    margin-bottom: 25px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-welcome {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay .biomarkers-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
}

/* Biomarkers Dashboard Styles for Overlay - Scoped to prevent conflicts */
.feature-panel-2 .hover-overlay .biomarkers-dashboard {
    margin-top: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .dashboard-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .metrics-row {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 12px !important;
    flex-wrap: nowrap !important;
    margin-top: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .metric {
    text-align: center !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .metric-number {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
    margin-top: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .metric-label {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-bar {
    height: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    display: flex !important;
    width: 100% !important;
    flex-direction: row !important;
    position: relative !important;
    box-sizing: border-box !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-segment {
    height: 100% !important;
    transition: flex 1.5s ease-out !important;
    min-width: 8px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    flex: 0 0 0% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-optimal {
    background: #22c55e !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-normal {
    background: #eab308 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-out-of-range {
    background: #dc2626 !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-out-of-range.animate {
    flex: 0 0 10% !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-normal.animate {
    flex: 0 0 25% !important;
}

.feature-panel-2 .hover-overlay .biomarkers-dashboard .progress-optimal.animate {
    flex: 0 0 65% !important;
}

.feature-panel-2:hover .hover-overlay * {
    visibility: visible !important;
}

.feature-panel-2:hover .hover-overlay .biomarkers-dashboard,
.feature-panel-2:hover .hover-overlay .biomarkers-header {
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-panel-2 .hover-overlay * {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    box-sizing: border-box !important;
}

.feature-panel-2 .hover-overlay p,
.feature-panel-2 .hover-overlay h1,
.feature-panel-2 .hover-overlay h2,
.feature-panel-2 .hover-overlay h3,
.feature-panel-2 .hover-overlay div {
    margin: 0 !important;
}

/* Hover Overlay for Panel 3 */
.feature-panel-3 .hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-panel-3:hover .hover-overlay {
    opacity: 1;
    pointer-events: auto;
}

.hover-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.hover-profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hover-profile-info {
    flex: 1;
}

.hover-profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.hover-profile-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.hover-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
}

.hover-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.hover-action-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.hover-action-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hover-action-text {
    font-size: 0.95rem;
    color: #ffffff;
    flex: 1;
    margin: 0;
}

.hover-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
    margin: 0;
    padding: 0;
}

.feature-panel-3 .feature-panel-image:hover .hover-checkbox {
    border-color: #4CAF50;
    background: #4CAF50;
}

.hover-checkmark {
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.feature-panel-3 .feature-panel-image:hover .hover-checkmark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hover-checkmark svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin: 0;
}

.feature-panel-content {
    display: flex;
    flex-direction: column;
}

.feature-panel-title {
    font-size: 1.5rem;
    color: #000000 !important;
    line-height: 1.3;
    margin-bottom: 15px;
}

.feature-panel-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

/* Responsive Design for Feature Panels */
@media (max-width: 968px) {
    .features-panels {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .features-three-panel-section {
        padding: 60px 0;
    }

    .features-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-panel-title {
        font-size: 1.3rem;
    }

    .feature-panel-description {
        font-size: 0.95rem;
    }
}

/* WPBakery Section Blur Effect */
/* JavaScript creates .aths-blur-overlay element with blurred background */

/* Ensure sections with blur are positioned relatively */
.aths-blur-light.vc_section,
.aths-blur-medium.vc_section,
.aths-blur-heavy.vc_section,
.aths-blur-very-heavy.vc_section,
.vc_section.aths_bg_blur-aths-blur-light,
.vc_section.aths_bg_blur-aths-blur-medium,
.vc_section.aths_bg_blur-aths-blur-heavy,
.vc_section.aths_bg_blur-aths-blur-very-heavy {
    position: relative !important;
    overflow: hidden;
}

/* Blur overlay created by JavaScript */
.aths-blur-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure content stays above blur overlay - exclude dividers which need absolute positioning */
.aths-blur-light.vc_section > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.aths-blur-medium.vc_section > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.aths-blur-heavy.vc_section > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.aths-blur-very-heavy.vc_section > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.vc_section.aths_bg_blur-aths-blur-light > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.vc_section.aths_bg_blur-aths-blur-medium > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.vc_section.aths_bg_blur-aths-blur-heavy > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.vc_section.aths_bg_blur-aths-blur-very-heavy > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider),
.vc_section[data-ath-bg-blur] > *:not(.aths-blur-overlay):not(.pix-divider):not(.pix-divider-bottom):not(.pix-bottom-divider) {
    position: relative;
    z-index: 1;
}

/* Fix divider positioning for sections with blur overlay */
.aths-blur-light.vc_section .pix-divider.pix-bottom-divider,
.aths-blur-medium.vc_section .pix-divider.pix-bottom-divider,
.aths-blur-heavy.vc_section .pix-divider.pix-bottom-divider,
.aths-blur-very-heavy.vc_section .pix-divider.pix-bottom-divider,
.vc_section.aths_bg_blur-aths-blur-light .pix-divider.pix-bottom-divider,
.vc_section.aths_bg_blur-aths-blur-medium .pix-divider.pix-bottom-divider,
.vc_section.aths_bg_blur-aths-blur-heavy .pix-divider.pix-bottom-divider,
.vc_section.aths_bg_blur-aths-blur-very-heavy .pix-divider.pix-bottom-divider,
.vc_section[data-ath-bg-blur] .pix-divider.pix-bottom-divider {
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 2 !important;
}

/* Ensure divider appears at bottom for full-height sections with blur */
.vc_row-o-full-height.aths-blur-light.vc_section .pix-divider.pix-bottom-divider,
.vc_row-o-full-height.aths-blur-medium.vc_section .pix-divider.pix-bottom-divider,
.vc_row-o-full-height.aths-blur-heavy.vc_section .pix-divider.pix-bottom-divider,
.vc_row-o-full-height.aths-blur-very-heavy.vc_section .pix-divider.pix-bottom-divider,
.vc_row-o-full-height.vc_section[data-ath-bg-blur] .pix-divider.pix-bottom-divider {
    bottom: -1px !important;
    top: auto !important;
}

/* Divider in front option - higher z-index */
.aths-blur-light.vc_section .pix-divider.pix-bottom-divider.pix-divider-in-front,
.aths-blur-medium.vc_section .pix-divider.pix-bottom-divider.pix-divider-in-front,
.aths-blur-heavy.vc_section .pix-divider.pix-bottom-divider.pix-divider-in-front,
.aths-blur-very-heavy.vc_section .pix-divider.pix-bottom-divider.pix-divider-in-front,
.vc_section[data-ath-bg-blur] .pix-divider.pix-bottom-divider.pix-divider-in-front {
    z-index: 9999 !important;
}

/* Don't hide original background - let JavaScript overlay handle it */

/* Background Panning Animation */
.aths-bg-panning.vc_section,
.vc_section.aths-bg-panning,
.vc_section[data-ath-bg-panning="yes"] {
    overflow: hidden;
}

.aths-bg-panning.vc_section::before,
.vc_section.aths-bg-panning::before,
.vc_section[data-ath-bg-panning="yes"]::before {
    animation: aths-bg-pan 20s ease-in-out infinite alternate;
}

.aths-blur-overlay.aths-bg-panning,
.aths-blur-overlay[data-ath-bg-panning="yes"] {
    animation: aths-bg-pan 20s ease-in-out infinite alternate;
}

@keyframes aths-bg-pan {
    0% {
        background-position: 30% 30%;
        transform: scale(1.25);
    }
    50% {
        background-position: 50% 50%;
        transform: scale(1.2);
    }
    100% {
        background-position: 70% 70%;
        transform: scale(1.25);
    }
}

/* Panning for sections with background images */
.aths-bg-panning.vc_section,
.vc_section.aths-bg-panning,
.vc_section[data-ath-bg-panning="yes"] {
    background-size: 110% auto !important;
    animation: aths-bg-pan-section 20s ease-in-out infinite alternate;
}

@keyframes aths-bg-pan-section {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* ATHS Treatment Card - Individual Card Element */
.aths-treatment-card-wrapper {
    width: 100%;
    height: 100%;
}

.aths-treatment-card {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.aths-treatment-card-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    z-index: 10;
}
.aths-treatment-card-badge {
    background: #ffffff;
    color: #0a0a0a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}
.aths-treatment-card-badge--custom {
    background: #262f4d;
    color: #fff;
}
.aths-treatment-card-badge--generic {
    background: #6b7280;
    color: #fff;
}
.aths-treatment-card-badge--coming-soon {
    background: #d4af37;
    color: #0a0a0a;
}

.aths-treatment-card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.aths-treatment-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.aths-treatment-card-image-1 {
    opacity: 1;
    z-index: 1;
}

.aths-treatment-card-image-2 {
    opacity: 0;
    z-index: 2;
}

/* Fade transition for smooth crossfade */
.aths-treatment-card-image {
    transition: opacity 0.8s ease-in-out;
}

/* If only one image exists, keep it visible and disable animation */
.aths-treatment-card-image-wrapper:only-child .aths-treatment-card-image-1,
.aths-treatment-card-image-wrapper .aths-treatment-card-image-1:only-child {
    opacity: 1 !important;
    animation: none !important;
}

/* Disable animation if only one image */
.aths-treatment-card-image-wrapper:not(:has(.aths-treatment-card-image-2)) .aths-treatment-card-image-1 {
    animation: none !important;
    opacity: 1 !important;
}

.aths-treatment-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 40px 32px 32px;
    color: #ffffff;
    z-index: 2;
}

.aths-treatment-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.aths-treatment-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.aths-treatment-card-arrow {
    position: absolute;
    right: 24px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.aths-treatment-card:hover .aths-treatment-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.aths-treatment-card-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive adjustments for treatment cards */
@media (max-width: 968px) {
    .aths-treatment-card-overlay {
        padding: 32px 24px 24px;
    }

    .aths-treatment-card-title {
        font-size: 1.25rem;
    }

    .aths-treatment-card-description {
        font-size: 0.875rem;
    }

    .aths-treatment-card-arrow {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 24px;
    }

    .aths-treatment-card-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .aths-treatment-card-overlay {
        padding: 28px 20px 20px;
    }

    .aths-treatment-card-title {
        font-size: 1.1rem;
    }

    .aths-treatment-card-description {
        font-size: 0.8rem;
    }

    .aths-treatment-card-arrow {
        width: 36px;
        height: 36px;
        right: 16px;
        bottom: 20px;
    }

    .aths-treatment-card-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Treatment Card Modal Styles */
.aths-treatment-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999999 !important;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
}

.aths-treatment-modal.aths-modal-active {
    opacity: 1;
    pointer-events: auto;
}

.aths-treatment-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: auto;
}

/* Blur page content when modal is open */
body.aths-modal-open {
    overflow: hidden;
}

/* Create a wrapper for blurred content */
body.aths-modal-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999998;
    pointer-events: none;
}

body.aths-modal-open #main,
body.aths-modal-open .site-content,
body.aths-modal-open main {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Ensure modal is above everything */
body.aths-modal-open .aths-treatment-modal {
    filter: none !important;
    -webkit-filter: none !important;
    z-index: 9999999 !important;
    position: fixed !important;
    pointer-events: auto !important;
}

.aths-treatment-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border-radius: 24px;
    padding: 60px 80px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 2 !important;
    pointer-events: auto;
}

.aths-treatment-modal-close {
    position: fixed !important;
    top: 32px !important;
    right: 32px !important;
    width: 56px;
    height: 56px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.aths-treatment-modal-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.aths-treatment-modal-close svg {
    stroke: #1274E7;
    stroke-width: 2.5;
    width: 28px;
    height: 28px;
}

.aths-treatment-modal-inner {
    text-align: center;
}

.aths-treatment-modal-title {
    font-size: 2rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin: 0 0 40px 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.aths-treatment-modal-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.aths-treatment-modal-option {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 32px;
    text-decoration: none;
    color: #0a0a0a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aths-treatment-modal-option:hover {
    border-color: #0a0a0a;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.aths-treatment-modal-option-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #0a0a0a;
}

.aths-treatment-modal-option:hover .aths-treatment-modal-option-icon {
    background: #0a0a0a;
    color: #ffffff;
    transform: scale(1.1);
}

.aths-treatment-modal-option-icon svg {
    width: 48px;
    height: 48px;
}

.aths-treatment-modal-option-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aths-treatment-modal-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aths-treatment-modal-option:hover .aths-treatment-modal-option-image img {
    transform: scale(1.05);
}

.aths-treatment-modal-option-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    transition: color 0.3s ease;
}

.aths-treatment-modal-option:hover .aths-treatment-modal-option-label {
    color: #0a0a0a;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .aths-treatment-modal-content {
        padding: 40px 32px;
        width: 95%;
    }

    .aths-treatment-modal-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .aths-treatment-modal-options {
        flex-direction: column;
        gap: 16px;
    }

    .aths-treatment-modal-option {
        min-width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .aths-treatment-modal-close {
        top: 24px !important;
        right: 24px !important;
        width: 48px;
        height: 48px;
    }

    .aths-treatment-modal-close svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .aths-treatment-modal-content {
        padding: 32px 24px;
    }

    .aths-treatment-modal-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .aths-treatment-modal-option {
        padding: 24px 20px;
        min-width: 100%;
        max-width: 100%;
    }

    .aths-treatment-modal-option-icon {
        width: 64px;
        height: 64px;
    }

    .aths-treatment-modal-option-icon svg {
        width: 40px;
        height: 40px;
    }

    .aths-treatment-modal-option-label {
        font-size: 1.1rem;
    }

    .aths-treatment-modal-close {
        top: 20px !important;
        right: 20px !important;
        width: 44px;
        height: 44px;
    }

    .aths-treatment-modal-close svg {
        width: 22px;
        height: 22px;
    }
}

/* ATHS FAQ Section */
.aths-faq-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.aths-faq-container {
    max-width: 84rem;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.aths-faq-sidebar {
    position: relative;
}

.aths-faq-sidebar-content {
    position: relative;
    top: 0;
    width: 100%;
}

.aths-faq-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.aths-faq-title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Aeonik', sans-serif !important;
    color: #000000 !important;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.aths-faq-contact {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.aths-faq-contact-link {
    color: #F27121;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.aths-faq-contact-link:hover {
    color: #E94057;
    text-decoration: underline;
}

/* alch: optional sidebar image below title/contact. 2026-04-22. */
.aths-faq-sidebar-image {
    margin: 2rem 0 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.aths-faq-sidebar-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.aths-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aths-faq-item {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.aths-faq-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.aths-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aths-faq-question:hover {
    color: inherit;
}

.aths-faq-question-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.5;
    flex: 1;
    padding-right: 24px;
}

.aths-faq-question:hover .aths-faq-question-text {
    color: inherit;
}

.aths-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    transition: color 0.3s ease, transform 0.3s ease;
}

.aths-faq-question:hover .aths-faq-icon {
    color: inherit;
}

.aths-faq-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aths-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.aths-faq-answer-content {
    padding: 0 0 24px 0;
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.aths-faq-answer-content p {
    margin: 0 0 16px 0;
}

.aths-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .aths-faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }

    .aths-faq-sidebar-content {
        position: relative !important;
        top: auto !important;
    }

    .aths-faq-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .aths-faq-section {
        padding: 60px 0;
    }

    .aths-faq-container {
        padding: 0 20px;
        gap: 40px;
    }

    .aths-faq-title {
        font-size: 2rem;
    }

    .aths-faq-question {
        padding: 20px 0;
    }

    .aths-faq-question-text {
        font-size: 1rem;
        padding-right: 16px;
    }

    .aths-faq-answer-content {
        padding-bottom: 20px;
        font-size: 0.95rem;
    }
}

/* ATHS Pricing Card - Diagnostic Labs Pricing */
.aths-pricing-card-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}

/* Support for WPBakery equal height rows - More comprehensive selectors */
.vc_row-o-equal-height .aths-pricing-card-wrapper,
.vc_row[data-vc-equal-height="true"] .aths-pricing-card-wrapper,
.vc_row.equal_height .aths-pricing-card-wrapper,
.vc_row-flex.vc_row-o-equal-height .aths-pricing-card-wrapper,
.vc_row-flex.vc_row-o-equal-height .vc_column_container .aths-pricing-card-wrapper,
.vc_row-flex.vc_row-o-equal-height .vc_column-inner .aths-pricing-card-wrapper,
.vc_row-flex.vc_row-o-equal-height .vc_column_container .vc_column-inner .aths-pricing-card-wrapper,
.vc_row[data-vc-equal-height="true"] .vc_column_container .aths-pricing-card-wrapper,
.vc_row[data-vc-equal-height="true"] .vc_column-inner .aths-pricing-card-wrapper,
.vc_row[data-vc-equal-height="true"] .vc_column_container .vc_column-inner .aths-pricing-card-wrapper {
    height: 100% !important;
    min-height: 100% !important;
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
}

/* Ensure columns stretch in equal height rows */
.vc_row-o-equal-height .vc_column_container,
.vc_row-o-equal-height .vc_column-inner,
.vc_row[data-vc-equal-height="true"] .vc_column_container,
.vc_row[data-vc-equal-height="true"] .vc_column-inner,
.vc_row-flex.vc_row-o-equal-height .vc_column_container,
.vc_row-flex.vc_row-o-equal-height .vc_column-inner {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* When column-inner is flex (in equal height rows), make wrapper fill it */
.vc_row-flex .vc_column-inner .aths-pricing-card-wrapper,
.vc_row-o-equal-height .vc_column-inner .aths-pricing-card-wrapper,
.vc_row[data-vc-equal-height="true"] .vc_column-inner .aths-pricing-card-wrapper,
.vc_column-inner .aths-pricing-card-wrapper,
.vc_column_container .aths-pricing-card-wrapper {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.aths-pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    flex: 1;
}

/* Ensure card fills wrapper in equal height rows */
.vc_row-o-equal-height .aths-pricing-card,
.vc_row[data-vc-equal-height="true"] .aths-pricing-card,
.vc_row.equal_height .aths-pricing-card,
.vc_row-flex.vc_row-o-equal-height .aths-pricing-card,
.vc_row[data-vc-equal-height="true"] .aths-pricing-card-wrapper .aths-pricing-card {
    height: 100% !important;
    min-height: 620px !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.aths-pricing-card:hover {
    border-color: #262f4d;
    box-shadow: 0 4px 16px rgba(38, 47, 77, 0.1);
}

.aths-pricing-card-recommended {
    border-color: #262f4d;
    border-width: 2px;
    transform: translateY(-8px);
    margin-top: -8px;
    padding-bottom: 60px;
}

.aths-pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #262f4d;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 0 0 8px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* Top block: header + price + retail (optional background image) */
.aths-pricing-top {
    margin: 0 0 24px 0;
    position: relative;
}

.aths-pricing-top-has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    margin: -40px -32px 24px -32px;
    padding: 32px 32px 24px;
    border-radius: 12px 12px 0 0;
}

.aths-pricing-top-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.aths-pricing-top-has-bg .aths-pricing-header,
.aths-pricing-top-has-bg .aths-pricing-price,
.aths-pricing-top-has-bg .aths-pricing-retail {
    position: relative;
    z-index: 1;
}

.aths-pricing-top-has-bg .aths-pricing-title,
.aths-pricing-top-has-bg .aths-pricing-price {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.aths-pricing-top-has-bg .aths-pricing-biomarkers {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.aths-pricing-top-has-bg .aths-pricing-retail {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.aths-pricing-header {
    margin-bottom: 24px;
    text-align: center;
}

.aths-pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.aths-pricing-biomarkers {
    font-size: 1rem;
    font-weight: 600;
    color: #262f4d;
    margin: 0;
}

.aths-pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
    margin: 0 0 8px 0;
    line-height: 1;
}

.aths-pricing-retail {
    font-size: 0.875rem;
    color: #666666;
    text-align: center;
    margin: 0 0 32px 0;
}

.aths-pricing-tests {
    margin-bottom: 32px;
    flex: 0 0 auto;
}

.aths-pricing-tests-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aths-pricing-tests-list li {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
}

.aths-pricing-tests-list li:last-child {
    margin-bottom: 0;
}

.aths-pricing-benefits {
    margin-bottom: 32px;
    flex: 1;
}

.aths-pricing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aths-pricing-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #0a0a0a;
    line-height: 1.6;
}

.aths-pricing-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #d4af37;
    margin-top: 2px;
}

.aths-pricing-benefits-list li span {
    flex: 1;
}

.aths-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.aths-pricing-button {
    display: block;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.aths-pricing-button-primary {
    background: #262f4d;
    color: #ffffff;
    border-color: #262f4d;
}

.aths-pricing-button-primary:hover {
    background: #1a2339;
    border-color: #1a2339;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 47, 77, 0.3);
}

.aths-pricing-card-recommended .aths-pricing-button-primary {
    background: #262f4d;
    border-color: #262f4d;
}

.aths-pricing-button-secondary {
    background: transparent;
    color: #0a0a0a;
    border-color: #0a0a0a;
}

.aths-pricing-button-secondary:hover {
    background: #0a0a0a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Block color: Dark (#0a0a0a) - title and Start Intake */
.aths-pricing-card-color-dark .aths-pricing-top {
    background: #0a0a0a;
    margin: -40px -32px 24px -32px;
    padding: 40px 32px 24px;
    border-radius: 12px 12px 0 0;
}
.aths-pricing-card-color-dark .aths-pricing-title,
.aths-pricing-card-color-dark .aths-pricing-price {
    color: #ffffff !important;
}
.aths-pricing-card-color-dark .aths-pricing-biomarkers {
    color: rgba(255, 255, 255, 0.9);
}
.aths-pricing-card-color-dark .aths-pricing-retail {
    color: rgba(255, 255, 255, 0.85);
}
.aths-pricing-card-color-dark.aths-pricing-card:hover {
    border-color: #0a0a0a;
}
.aths-pricing-card-color-dark.aths-pricing-card-recommended {
    border-color: #0a0a0a;
}
.aths-pricing-card-color-dark .aths-pricing-badge {
    background: #0a0a0a;
}
.aths-pricing-card-color-dark .aths-pricing-button-primary {
    background: #0a0a0a;
    border-color: #0a0a0a;
}
.aths-pricing-card-color-dark .aths-pricing-button-primary:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(10, 10, 10, 0.3);
}

/* Block color: Blue (#262f4d) - title and Start Intake */
.aths-pricing-card-color-blue .aths-pricing-top {
    background: #262f4d;
    margin: -40px -32px 24px -32px;
    padding: 40px 32px 24px;
    border-radius: 12px 12px 0 0;
}
.aths-pricing-card-color-blue .aths-pricing-title,
.aths-pricing-card-color-blue .aths-pricing-price {
    color: #ffffff !important;
}
.aths-pricing-card-color-blue .aths-pricing-biomarkers {
    color: rgba(255, 255, 255, 0.9);
}
.aths-pricing-card-color-blue .aths-pricing-retail {
    color: rgba(255, 255, 255, 0.85);
}
.aths-pricing-card-color-blue.aths-pricing-card:hover {
    border-color: #262f4d;
}
.aths-pricing-card-color-blue.aths-pricing-card-recommended {
    border-color: #262f4d;
}
.aths-pricing-card-color-blue .aths-pricing-badge {
    background: #262f4d;
}
.aths-pricing-card-color-blue .aths-pricing-button-primary {
    background: #262f4d;
    border-color: #262f4d;
}
.aths-pricing-card-color-blue .aths-pricing-button-primary:hover {
    background: #1a2339;
    border-color: #1a2339;
    box-shadow: 0 4px 12px rgba(38, 47, 77, 0.3);
}

/* Block color: Gold (#d4af37) - title and Start Intake */
.aths-pricing-card-color-gold .aths-pricing-title,
.aths-pricing-card-color-gold .aths-pricing-price {
    color: #d4af37 !important;
}
.aths-pricing-card-color-gold.aths-pricing-card:hover {
    border-color: #d4af37;
}
.aths-pricing-card-color-gold.aths-pricing-card-recommended {
    border-color: #d4af37;
}
.aths-pricing-card-color-gold .aths-pricing-badge {
    background: #d4af37;
    color: #0a0a0a;
}
.aths-pricing-card-color-gold .aths-pricing-button-primary {
    background: #d4af37;
    border-color: #d4af37;
    color: #0a0a0a;
}
.aths-pricing-card-color-gold .aths-pricing-button-primary:hover {
    background: #b8942e;
    border-color: #b8942e;
    color: #0a0a0a;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .aths-pricing-card {
        padding: 32px 24px;
    }

    .aths-pricing-top-has-bg {
        margin: -32px -24px 24px -24px;
        padding: 24px 24px 24px;
        min-height: 160px;
    }

    .aths-pricing-card-color-dark .aths-pricing-top,
    .aths-pricing-card-color-blue .aths-pricing-top {
        margin: -32px -24px 24px -24px;
        padding: 24px 24px 24px;
    }

    .aths-pricing-title {
        font-size: 1.75rem;
    }

    .aths-pricing-price {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .aths-pricing-card {
        padding: 28px 20px;
    }

    .aths-pricing-title {
        font-size: 1.5rem;
    }

    .aths-pricing-price {
        font-size: 2.5rem;
    }

    .aths-pricing-biomarkers {
        font-size: 0.9rem;
    }

    .aths-pricing-tests-list li,
    .aths-pricing-benefits-list li {
        font-size: 0.9rem;
    }

    .aths-pricing-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* ATHS Featured Checkmarks */
.aths-featured-checkmarks {
    background: transparent;
    padding: 0;
    margin: 0;
}

.aths-featured-checkmarks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.aths-featured-checkmark-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    gap: 20px;
}

.aths-featured-checkmark-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1274E7; /* Brand blue */
    position: relative;
}

.aths-featured-checkmark-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(18, 116, 231, 0.4));
}

.aths-featured-checkmark-icon circle {
    fill: #1274E7; /* Brand blue circle */
    stroke: #1274E7;
}

.aths-featured-checkmark-icon polyline {
    stroke: #ffffff; /* White checkmark */
    stroke-width: 3;
}

.aths-featured-checkmark-text {
    color: #0a0a0a; /* Black text */
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 400;
    flex: 1;
}

.aths-featured-checkmark-text p {
    margin: 0;
    color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .aths-featured-checkmarks-container {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .aths-featured-checkmark-item {
        max-width: 100%;
        width: 100%;
    }

    .aths-featured-checkmark-icon {
        width: 44px;
        height: 44px;
    }

    .aths-featured-checkmark-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .aths-featured-checkmarks-container {
        gap: 24px;
    }

    .aths-featured-checkmark-item {
        gap: 16px;
    }

    .aths-featured-checkmark-icon {
        width: 40px;
        height: 40px;
    }

    .aths-featured-checkmark-text {
        font-size: 0.9rem;
    }
}

/* ATHS Comprehensive Diagnostic Header - Scoped to prevent conflicts */
.aths-comprehensive-diagnostic-header.comprehensive-diagnostic-section,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #f8f9fa;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 60px 40px 60px;
    box-sizing: border-box;
    z-index: 10;
    pointer-events: none;
}

.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper *,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper * {
    pointer-events: auto;
}

.aths-comprehensive-diagnostic-header .image-carousel-container,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.aths-comprehensive-diagnostic-header .image-carousel-container::after,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #f8f9fa 100%);
    pointer-events: none;
    z-index: 5;
}

.aths-comprehensive-diagnostic-header .image-carousel,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel {
    position: absolute;
    width: 1600px;
    height: 1600px;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCarousel 80s linear infinite;
}

.aths-comprehensive-diagnostic-header .carousel-image,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #e0e0e0;
    transform-origin: center center;
}

/* Position images in a circular pattern with equal spacing */
/* 16 images at 22.5 degree intervals, radius 550px from center */
.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1) {
    top: calc(50% - 550px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2) {
    top: calc(50% - 508.5px);
    left: calc(50% + 210.5px);
    transform: translate(-50%, -50%) rotate(22.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3) {
    top: calc(50% - 389px);
    left: calc(50% + 389px);
    transform: translate(-50%, -50%) rotate(45deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4) {
    top: calc(50% - 210.5px);
    left: calc(50% + 508.5px);
    transform: translate(-50%, -50%) rotate(67.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5) {
    top: 50%;
    left: calc(50% + 550px);
    transform: translate(-50%, -50%) rotate(90deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6) {
    top: calc(50% + 210.5px);
    left: calc(50% + 508.5px);
    transform: translate(-50%, -50%) rotate(112.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7) {
    top: calc(50% + 389px);
    left: calc(50% + 389px);
    transform: translate(-50%, -50%) rotate(135deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8) {
    top: calc(50% + 508.5px);
    left: calc(50% + 210.5px);
    transform: translate(-50%, -50%) rotate(157.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9) {
    top: calc(50% + 550px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10) {
    top: calc(50% + 508.5px);
    left: calc(50% - 210.5px);
    transform: translate(-50%, -50%) rotate(202.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11) {
    top: calc(50% + 389px);
    left: calc(50% - 389px);
    transform: translate(-50%, -50%) rotate(225deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12) {
    top: calc(50% + 210.5px);
    left: calc(50% - 508.5px);
    transform: translate(-50%, -50%) rotate(247.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13) {
    top: 50%;
    left: calc(50% - 550px);
    transform: translate(-50%, -50%) rotate(270deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14) {
    top: calc(50% - 210.5px);
    left: calc(50% - 508.5px);
    transform: translate(-50%, -50%) rotate(292.5deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15) {
    top: calc(50% - 389px);
    left: calc(50% - 389px);
    transform: translate(-50%, -50%) rotate(315deg);
}

.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16),
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16) {
    top: calc(50% - 508.5px);
    left: calc(50% - 210.5px);
    transform: translate(-50%, -50%) rotate(337.5deg);
}

@keyframes rotateCarousel {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.aths-comprehensive-diagnostic-header .diagnostic-content,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.aths-comprehensive-diagnostic-header .diagnostic-label,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 20px;
}

.aths-comprehensive-diagnostic-header .diagnostic-title,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.2;
}

.aths-comprehensive-diagnostic-header .diagnostic-subtitle,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.4;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmarks,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmarks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    justify-content: center;
    align-items: flex-start;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-item,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 200px;
    max-width: 300px;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37; /* Gold */
    position: relative;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon svg,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon circle,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon circle {
    stroke: #d4af37;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon polyline,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon polyline {
    stroke: #ffffff; /* White checkmark */
    stroke-width: 3;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text {
    color: #2c2c2c;
    font-size: 0.7rem;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text p,
.comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text p {
    margin: 0;
    color: #2c2c2c;
}

/* Responsive Design for Comprehensive Diagnostic Header */
@media (max-width: 1200px) {
    .aths-comprehensive-diagnostic-header .image-carousel,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel {
        width: 1400px;
        height: 1400px;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel-container::after,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container::after {
        height: 150px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content-wrapper,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper {
        padding: 0 50px 30px 50px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content {
        max-width: 900px;
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image {
        width: 110px;
        height: 110px;
    }
    
    /* Adjust radius for smaller screens - radius 500px */
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(1),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1) {
        top: calc(50% - 500px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(2),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2) {
        top: calc(50% - 462px);
        left: calc(50% + 191px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(3),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3) {
        top: calc(50% - 354px);
        left: calc(50% + 354px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(4),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4) {
        top: calc(50% - 191px);
        left: calc(50% + 462px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(5),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5) {
        left: calc(50% + 500px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(6),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6) {
        top: calc(50% + 191px);
        left: calc(50% + 462px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(7),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7) {
        top: calc(50% + 354px);
        left: calc(50% + 354px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(8),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8) {
        top: calc(50% + 462px);
        left: calc(50% + 191px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(9),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9) {
        top: calc(50% + 500px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(10),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10) {
        top: calc(50% + 462px);
        left: calc(50% - 191px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(11),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11) {
        top: calc(50% + 354px);
        left: calc(50% - 354px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(12),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12) {
        top: calc(50% + 191px);
        left: calc(50% - 462px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(13),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13) {
        left: calc(50% - 500px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(14),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14) {
        top: calc(50% - 191px);
        left: calc(50% - 462px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(15),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15) {
        top: calc(50% - 354px);
        left: calc(50% - 354px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(16),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16) {
        top: calc(50% - 462px);
        left: calc(50% - 191px);
    }
}

@media (max-width: 968px) {
    .aths-comprehensive-diagnostic-header.comprehensive-diagnostic-section,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header {
        min-height: 500px;
        padding: 0;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel {
        width: 1200px;
        height: 1200px;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel-container::after,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container::after {
        height: 120px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content-wrapper,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper {
        padding: 0 40px 30px 40px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content {
        max-width: 800px;
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image {
        width: 100px;
        height: 100px;
        border-radius: 18px;
    }
    
    /* Adjust radius for medium screens - radius 450px */
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(1),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1) {
        top: calc(50% - 450px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(2),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2) {
        top: calc(50% - 416px);
        left: calc(50% + 172px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(3),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3) {
        top: calc(50% - 318px);
        left: calc(50% + 318px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(4),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4) {
        top: calc(50% - 172px);
        left: calc(50% + 416px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(5),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5) {
        left: calc(50% + 450px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(6),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6) {
        top: calc(50% + 172px);
        left: calc(50% + 416px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(7),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7) {
        top: calc(50% + 318px);
        left: calc(50% + 318px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(8),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8) {
        top: calc(50% + 416px);
        left: calc(50% + 172px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(9),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9) {
        top: calc(50% + 450px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(10),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10) {
        top: calc(50% + 416px);
        left: calc(50% - 172px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(11),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11) {
        top: calc(50% + 318px);
        left: calc(50% - 318px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(12),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12) {
        top: calc(50% + 172px);
        left: calc(50% - 416px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(13),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13) {
        left: calc(50% - 450px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(14),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14) {
        top: calc(50% - 172px);
        left: calc(50% - 416px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(15),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15) {
        top: calc(50% - 318px);
        left: calc(50% - 318px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(16),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16) {
        top: calc(50% - 416px);
        left: calc(50% - 172px);
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-title,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-title {
        font-size: 2.75rem;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-subtitle,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-subtitle {
        font-size: 1.3rem;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-text,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .aths-comprehensive-diagnostic-header.comprehensive-diagnostic-section,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header {
        min-height: 450px;
        padding: 0;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel {
        width: 1000px;
        height: 1000px;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel-container::after,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container::after {
        height: 100px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content-wrapper,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper {
        padding: 0 30px 20px 30px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content {
        max-width: 700px;
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image {
        width: 90px;
        height: 90px;
        border-radius: 14px;
    }
    
    /* Adjust radius for smaller screens - radius 380px */
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(1),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1) {
        top: calc(50% - 380px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(2),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2) {
        top: calc(50% - 351px);
        left: calc(50% + 145px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(3),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3) {
        top: calc(50% - 269px);
        left: calc(50% + 269px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(4),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4) {
        top: calc(50% - 145px);
        left: calc(50% + 351px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(5),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5) {
        left: calc(50% + 380px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(6),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6) {
        top: calc(50% + 145px);
        left: calc(50% + 351px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(7),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7) {
        top: calc(50% + 269px);
        left: calc(50% + 269px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(8),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8) {
        top: calc(50% + 351px);
        left: calc(50% + 145px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(9),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9) {
        top: calc(50% + 380px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(10),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10) {
        top: calc(50% + 351px);
        left: calc(50% - 145px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(11),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11) {
        top: calc(50% + 269px);
        left: calc(50% - 269px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(12),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12) {
        top: calc(50% + 145px);
        left: calc(50% - 351px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(13),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13) {
        left: calc(50% - 380px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(14),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14) {
        top: calc(50% - 145px);
        left: calc(50% - 351px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(15),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15) {
        top: calc(50% - 269px);
        left: calc(50% - 269px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(16),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16) {
        top: calc(50% - 351px);
        left: calc(50% - 145px);
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-title,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-subtitle,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-subtitle {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-text,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text {
        font-size: 0.7rem;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon {
        width: 40px;
        height: 40px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-item,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-item {
        flex: 0 1 calc(50% - 15px);
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .aths-comprehensive-diagnostic-header.comprehensive-diagnostic-section,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header {
        min-height: 400px;
        padding: 0;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel {
        width: 800px;
        height: 800px;
    }
    
    .aths-comprehensive-diagnostic-header .image-carousel-container::after,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .image-carousel-container::after {
        height: 80px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content-wrapper,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content-wrapper {
        padding: 0 20px 15px 20px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-content,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-content {
        max-width: 100%;
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }
    
    /* Adjust radius for mobile screens - radius 320px */
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(1),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(1) {
        top: calc(50% - 320px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(2),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(2) {
        top: calc(50% - 295.5px);
        left: calc(50% + 122.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(3),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(3) {
        top: calc(50% - 226px);
        left: calc(50% + 226px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(4),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(4) {
        top: calc(50% - 122.5px);
        left: calc(50% + 295.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(5),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(5) {
        left: calc(50% + 320px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(6),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(6) {
        top: calc(50% + 122.5px);
        left: calc(50% + 295.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(7),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(7) {
        top: calc(50% + 226px);
        left: calc(50% + 226px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(8),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(8) {
        top: calc(50% + 295.5px);
        left: calc(50% + 122.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(9),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(9) {
        top: calc(50% + 320px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(10),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(10) {
        top: calc(50% + 295.5px);
        left: calc(50% - 122.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(11),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(11) {
        top: calc(50% + 226px);
        left: calc(50% - 226px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(12),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(12) {
        top: calc(50% + 122.5px);
        left: calc(50% - 295.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(13),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(13) {
        left: calc(50% - 320px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(14),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(14) {
        top: calc(50% - 122.5px);
        left: calc(50% - 295.5px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(15),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(15) {
        top: calc(50% - 226px);
        left: calc(50% - 226px);
    }
    
    .aths-comprehensive-diagnostic-header .carousel-image:nth-child(16),
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .carousel-image:nth-child(16) {
        top: calc(50% - 295.5px);
        left: calc(50% - 122.5px);
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-label,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-label {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-title,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-subtitle,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-text,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-text {
        font-size: 0.7rem;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-icon {
        width: 36px;
        height: 36px;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmarks,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmarks {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .aths-comprehensive-diagnostic-header .diagnostic-checkmark-item,
    .comprehensive-diagnostic-section.aths-comprehensive-diagnostic-header .diagnostic-checkmark-item {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: auto;
    }
}

/* ATHS Markers Section */
.aths-markers-section {
    width: 100%;
    padding: 40px 0;
}

/* Header Section */
.aths-markers-header {
    text-align: center;
    margin-bottom: 40px;
}

.aths-markers-header-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.aths-markers-header-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000 !important;
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-family: 'Aeonik', sans-serif !important;
}

.aths-markers-header-instruction {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Circle images below header, above filters – overlapping by default, split apart on hover */
.aths-markers-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0 20px;
}

.aths-markers-circle {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-left: -24px;
    border: 3px solid #1a2d4d;
    border-radius: 50%;
    padding: 3px;
    background: #fff;
    box-sizing: border-box;
    transition: margin 0.3s ease, transform 0.25s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aths-markers-circle:first-child {
    margin-left: 0;
}

/* On hover over the row, circles stop overlapping and split apart */
.aths-markers-circles:hover .aths-markers-circle {
    margin-left: 12px;
}

.aths-markers-circles:hover .aths-markers-circle:first-child {
    margin-left: 0;
}

/* Slight scale on the circle you're directly hovering */
.aths-markers-circle:hover {
    transform: scale(1.08);
    z-index: 2;
}

.aths-markers-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-sizing: border-box;
}

.aths-markers-circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pill-shaped tooltip under circle on hover */
.aths-markers-circle-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 6px 14px;
    border-radius: 9999px;
    background: #1a2d4d;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 20;
    pointer-events: none;
}

.aths-markers-circle:hover .aths-markers-circle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* Section Heading Block */
.aths-section-heading {
    text-align: center;
    margin-bottom: 40px;
    background: transparent;
    padding: 0;
}

.aths-section-heading-left {
    text-align: left !important;
}

.aths-section-heading-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.aths-section-heading-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000 !important;
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-family: 'Aeonik', sans-serif !important;
}

.aths-section-heading-title-white .aths-section-heading-title {
    color: #ffffff !important;
	font-family: 'Cinzel' !important;
}

.aths-section-heading-instruction {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Apercu', sans-serif;
}

/* Statistics Section */
.aths-markers-statistics {
    display: none !important;
}

.aths-markers-stat-item {
    text-align: center;
}

.aths-markers-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 8px;
    font-family: serif;
}

.aths-markers-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gradient Bar */
.aths-markers-gradient-bar-container {
    margin-bottom: 40px;
    position: relative;
}

.aths-markers-gradient-bar {
    width: 100%;
    height: 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    overflow: visible;
    mask-image: 
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: 
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.aths-markers-gradient-item {
    position: relative;
    width: 11%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.aths-markers-gradient-diamond {
    width: 100%;
    height: 80px;
    border-radius: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    -webkit-filter: blur(20px);
    opacity: 0.9;
    animation: randomFade 4s ease-in-out infinite;
}

.aths-markers-gradient-diamond:nth-child(1) {
    animation-duration: 5.2s;
    animation-delay: 0s;
}

.aths-markers-gradient-diamond:nth-child(2) {
    animation-duration: 6.8s;
    animation-delay: 2.3s;
}

.aths-markers-gradient-diamond:nth-child(3) {
    animation-duration: 4.5s;
    animation-delay: 4.1s;
}

.aths-markers-gradient-diamond:nth-child(4) {
    animation-duration: 7.1s;
    animation-delay: 1.2s;
}

.aths-markers-gradient-diamond:nth-child(5) {
    animation-duration: 5.9s;
    animation-delay: 3.7s;
}

.aths-markers-gradient-diamond:nth-child(6) {
    animation-duration: 6.4s;
    animation-delay: 0.8s;
}

.aths-markers-gradient-diamond:nth-child(7) {
    animation-duration: 4.8s;
    animation-delay: 5.2s;
}

.aths-markers-gradient-diamond:nth-child(8) {
    animation-duration: 7.5s;
    animation-delay: 2.6s;
}

@keyframes randomFade {
    0% {
        opacity: 0.85;
    }
    15% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.7;
    }
    45% {
        opacity: 0.05;
    }
    60% {
        opacity: 0.9;
    }
    75% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.85;
    }
}

.aths-markers-gradient-item .aths-markers-gradient-category {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 500;
    color: #0a0a0a;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}


@keyframes pulseGradient {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.2) saturate(1.3);
    }
}

@keyframes pulseGradientOverlay {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
}


/* Filter Bar */
.aths-markers-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.aths-markers-filter-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.aths-markers-filter-label {
    font-size: 0.875rem;
    font-weight: 700 !important;
    color: #666666;
    font-family: 'Aeonik', sans-serif !important;
}

.aths-markers-filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700 !important;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Aeonik', sans-serif !important;
}

.aths-markers-filter-btn:hover {
    border-color: #262f4d;
    color: #262f4d;
}

.aths-markers-filter-btn.active {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #ffffff;
}

.aths-markers-filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.aths-markers-filter-right a {
    color: #262f4d;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.aths-markers-filter-right a:hover {
    opacity: 0.7;
}

.aths-markers-separator {
    color: #e0e0e0;
}

/* Categories */
.aths-markers-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aths-markers-category {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.aths-markers-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #262f4d !important;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.aths-markers-category-header:hover {
    background: #262f4d !important;
}

.aths-markers-category-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e0e0e0;
}

.aths-markers-category-content-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 0;
}

.aths-markers-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aths-markers-category-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aths-markers-category-icon {
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: inherit;
}

.aths-markers-category-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
}

.aths-markers-category-icon--custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.aths-markers-category-header .aths-markers-category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.aths-markers-category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.2;
}

.aths-markers-category-header .aths-markers-category-icon,
.aths-markers-category-header .aths-markers-category-icon svg {
    color: #ffffff;
}

.aths-markers-category-count {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.2;
}

.aths-markers-category-header .aths-markers-category-count {
    color: #d4af37;
}

/* Category-specific colors for accent and icons */
.aths-markers-category[data-category="blood"] .aths-markers-category-accent {
    background: #e74c3c;
}

.aths-markers-category[data-category="blood"] .aths-markers-category-icon {
    color: #e74c3c;
}

.aths-markers-category[data-category="cardiovascular"] .aths-markers-category-accent {
    background: #e74c3c;
}

.aths-markers-category[data-category="cardiovascular"] .aths-markers-category-icon {
    color: #e74c3c;
}

.aths-markers-category[data-category="cardiovascular"] .aths-markers-category-icon svg {
    color: #e74c3c;
    stroke: #e74c3c;
}

.aths-markers-category[data-category="electrolytes"] .aths-markers-category-accent {
    background: #f39c12;
}

.aths-markers-category[data-category="electrolytes"] .aths-markers-category-icon {
    color: #f39c12;
}

.aths-markers-category[data-category="electrolytes"] .aths-markers-category-icon svg {
    color: #f39c12;
    stroke: #f39c12;
}

.aths-markers-category[data-category="hormones"] .aths-markers-category-accent {
    background: #9b59b6;
}

.aths-markers-category[data-category="hormones"] .aths-markers-category-icon {
    color: #9b59b6;
}

.aths-markers-category[data-category="hormones"] .aths-markers-category-icon svg {
    color: #9b59b6;
    stroke: #9b59b6;
}

.aths-markers-category[data-category="immune"] .aths-markers-category-accent {
    background: #27ae60;
}

.aths-markers-category[data-category="immune"] .aths-markers-category-icon {
    color: #27ae60;
}

.aths-markers-category[data-category="immune"] .aths-markers-category-icon svg {
    color: #27ae60;
    stroke: #27ae60;
}

.aths-markers-category[data-category="kidney"] .aths-markers-category-accent {
    background: #3498db;
}

.aths-markers-category[data-category="kidney"] .aths-markers-category-icon {
    color: #3498db;
}

.aths-markers-category[data-category="kidney"] .aths-markers-category-icon svg {
    color: #3498db;
    stroke: #3498db;
}

.aths-markers-category[data-category="liver"] .aths-markers-category-accent {
    background: #9b59b6;
}

.aths-markers-category[data-category="liver"] .aths-markers-category-icon {
    color: #9b59b6;
}

.aths-markers-category[data-category="liver"] .aths-markers-category-icon svg {
    color: #9b59b6;
    stroke: #9b59b6;
}

.aths-markers-category[data-category="metabolic"] .aths-markers-category-accent {
    background: #e67e22;
}

.aths-markers-category[data-category="metabolic"] .aths-markers-category-icon {
    color: #e67e22;
}

.aths-markers-category[data-category="metabolic"] .aths-markers-category-icon svg {
    color: #e67e22;
    stroke: #e67e22;
}

.aths-markers-category[data-category="nutrients"] .aths-markers-category-accent {
    background: #27ae60;
}

.aths-markers-category[data-category="nutrients"] .aths-markers-category-icon {
    color: #27ae60;
}

.aths-markers-category[data-category="nutrients"] .aths-markers-category-icon svg {
    color: #27ae60;
    stroke: #27ae60;
}

.aths-markers-category[data-category="thyroid"] .aths-markers-category-accent {
    background: #3498db;
}

.aths-markers-category[data-category="thyroid"] .aths-markers-category-icon {
    color: #3498db;
}

.aths-markers-category[data-category="thyroid"] .aths-markers-category-icon svg {
    color: #3498db;
    stroke: #3498db;
}

.aths-markers-category-toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.aths-markers-category-toggle svg {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
}

.aths-markers-category.expanded .aths-markers-category-toggle svg {
    transform: rotate(180deg);
}

.aths-markers-category-content {
    display: none;
    padding: 24px;
}

/* Marker Grid */
.aths-markers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Marker Card */
.aths-marker-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.aths-marker-card:hover {
    border-color: #262f4d;
    box-shadow: 0 2px 8px rgba(38, 47, 77, 0.1);
}

.aths-marker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.product_disclaimers {
    font-size: 12px;
}
.product_disclaimers strong {
    font-weight: 700 !important;
}

.aths-marker-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
    flex: 1;
}

.aths-marker-content {
    margin-top: 16px;
}

.aths-marker-section {
    margin-bottom: 20px;
}

.aths-marker-section:last-child {
    margin-bottom: 0;
}

.aths-marker-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.aths-marker-section-icon {
    color: #d4af37;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.aths-marker-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-family: 'Apercu', sans-serif;
}

.aths-marker-section-content {
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 0.875rem;
    font-family: 'Apercu', sans-serif;
}

.aths-marker-section-content p {
    margin: 0 0 8px 0;
}

.aths-marker-section-content p:last-child {
    margin-bottom: 0;
}

.aths-marker-reveals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aths-marker-reveals-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.aths-marker-checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4c771 0%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    padding: 4px;
}

.aths-marker-checkmark svg {
    width: 12px;
    height: 12px;
}

.aths-marker-reveals-content {
    flex: 1;
    padding-top: 2px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-family: 'Apercu', sans-serif;
}

.aths-marker-reveals-content strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 4px;
}

.aths-marker-reference-ranges {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.aths-marker-reference-range-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.aths-marker-reference-range-row:last-child {
    border-bottom: none;
}

.aths-marker-reference-range-row.highlight {
    background: #f8f9fa;
}

.aths-marker-reference-range-label {
    flex: 0 0 40%;
    padding: 10px 12px;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Apercu', sans-serif;
    border-right: 1px solid #e0e0e0;
}

.aths-marker-reference-range-value {
    flex: 1;
    padding: 10px 12px;
    color: #4a4a4a;
    font-size: 0.875rem;
    line-height: 1.4;
    font-family: 'Apercu', sans-serif;
}

.aths-marker-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.aths-marker-tier {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aths-marker-tier.tier-entry {
    background-color: #0a0a0a;
    color: #ffffff;
}

.aths-marker-tier.tier-complete {
    background-color: #262f4d;
    color: #ffffff;
}

.aths-marker-tier.tier-premium {
    background-color: #d4af37;
    color: #ffffff;
}

/* Detail Side Panel */
.aths-markers-detail-panel {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999999999 !important;
    isolation: isolate;
}

.aths-markers-detail-panel.active {
    display: block !important;
}

.aths-markers-detail-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1 !important;
}

.aths-markers-detail-panel.active .aths-markers-detail-panel-overlay {
    opacity: 1;
}

.aths-markers-detail-panel-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: #f5f5f5;
    color: #1a1a1a;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 2 !important;
}

.aths-markers-detail-panel.active .aths-markers-detail-panel-content {
    transform: translateX(0);
}

.aths-markers-detail-panel-header {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 40px;
    background: #1a1a1a;
    flex-shrink: 0;
}

.aths-markers-detail-panel-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.aths-markers-detail-panel-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.aths-markers-detail-panel-category-badge {
    padding: 10px 20px;
    background: #3a3a3a;
    color: #a0a0a0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aths-markers-detail-panel-tier-badge {
    padding: 8px 16px;
    background: #d4af37;
    color: #000000;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aths-markers-detail-panel-tier-badge.tier-entry {
    background: #0a0a0a;
    color: #ffffff;
}

.aths-markers-detail-panel-tier-badge.tier-complete {
    background: #262f4d;
    color: #ffffff;
}

.aths-markers-detail-panel-tier-badge.tier-premium {
    background: #d4af37;
    color: #ffffff;
}

.aths-markers-detail-panel-close {
    width: 48px;
    height: 48px;
    border: none;
    background: #2a2a2a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.aths-markers-detail-panel-close:hover {
    background: #3a3a3a;
    color: #888888;
}

.aths-markers-detail-panel-close svg {
    width: 24px;
    height: 24px;
}

.aths-markers-detail-panel-body {
    padding: 40px 32px;
    background: #ffffff;
    flex: 1;
    overflow-y: auto;
}

.aths-markers-detail-panel-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-family: 'Playfair Display', Georgia, serif;
}

.aths-markers-detail-panel-subtitle {
    font-size: 1.05rem;
    color: #999999;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.aths-markers-detail-panel-section {
    margin-bottom: 48px;
}

.aths-markers-detail-panel-section:last-child {
    margin-bottom: 0;
}

.aths-markers-detail-panel-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.aths-markers-detail-panel-icon {
    color: #d4af37;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.aths-markers-detail-panel-icon svg {
    width: 100%;
    height: 100%;
}

.aths-markers-detail-panel-section-header h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.aths-markers-detail-panel-what-it-measures {
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 1rem;
}

.aths-markers-detail-panel-what-it-measures p {
    margin: 0 0 16px 0;
}

.aths-markers-detail-panel-what-it-measures p:last-child {
    margin-bottom: 20px;
}

.aths-markers-detail-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #d4af37;
    border-radius: 24px;
    color: #d4af37;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 8px;
}

.aths-markers-detail-method-badge svg {
    width: 16px;
    height: 16px;
}

.aths-markers-detail-panel-what-it-reveals {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aths-markers-detail-reveals-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.aths-markers-detail-checkmark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4c771 0%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.aths-markers-detail-checkmark svg {
    width: 16px;
    height: 16px;
}

.aths-markers-detail-reveals-content {
    flex: 1;
    padding-top: 4px;
}

.aths-markers-detail-reveals-content strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.aths-markers-detail-reveals-content p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 0.95rem;
}

.aths-markers-detail-panel-reference-ranges {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.aths-markers-detail-reference-range-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.aths-markers-detail-reference-range-row:last-child {
    border-bottom: none;
}

.aths-markers-detail-reference-range-label {
    flex: 0 0 50%;
    padding: 16px 20px;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f9f9f9;
    border-right: 1px solid #e0e0e0;
}

.aths-markers-detail-reference-range-value {
    flex: 1;
    padding: 16px 20px;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
    background: #ffffff;
}

.aths-markers-detail-reference-range-value.highlight {
    color: #28A745;
}

body.aths-markers-panel-open {
    overflow: hidden;
}

/* Responsive Design for Panel */
@media (max-width: 768px) {
    .aths-markers-detail-panel-content {
        max-width: 100%;
    }
    
    .aths-markers-detail-panel-header {
        padding: 24px 20px 32px;
    }
    
    .aths-markers-detail-panel-title {
        font-size: 2rem;
    }
    
    .aths-markers-detail-panel-subtitle {
        font-size: 0.95rem;
    }
    
    .aths-markers-detail-panel-body {
        padding: 32px 20px;
    }
    
    .aths-markers-detail-reference-range-label,
    .aths-markers-detail-reference-range-value {
        padding: 14px 16px;
        font-size: 0.875rem;
    }
    
    .aths-markers-detail-checkmark {
        width: 28px;
        height: 28px;
    }
    
    .aths-markers-detail-checkmark svg {
        width: 14px;
        height: 14px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .aths-markers-header-title {
        font-size: 2rem;
    }
    
    .aths-markers-circles {
        margin-bottom: 32px;
    }
    
    .aths-markers-circle {
        width: 100px;
        height: 100px;
        margin-left: -18px;
    }
    
    .aths-markers-circles:hover .aths-markers-circle {
        margin-left: 10px;
    }
    
    .aths-markers-circle:hover {
        transform: scale(1.06);
    }
    
    .aths-markers-statistics {
        gap: 40px;
    }
    
    .aths-markers-stat-number {
        font-size: 2.5rem;
    }
    
    .aths-markers-gradient-categories {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .aths-markers-gradient-category {
        flex: 0 1 calc(25% - 9px);
    }
    
    .aths-markers-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .aths-markers-filter-right {
        width: 100%;
        justify-content: flex-start;
    }
    
    .aths-markers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .aths-markers-section {
        padding: 30px 0;
    }
    
    .aths-markers-filter-bar {
        margin-bottom: 30px;
    }
    
    .aths-markers-filter-left {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .aths-markers-filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .aths-markers-category-header {
        padding: 16px 20px;
    }
    
    .aths-markers-category-name {
        font-size: 1.1rem;
    }
    
    .aths-markers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Diagnostic Testing Section */
.aths-diagnostic-testing-section {
    background: #ffffff;
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.aths-diagnostic-testing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.aths-diagnostic-testing-header {
    margin-bottom: 80px;
    text-align: center;
}

.aths-diagnostic-testing-title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Aeonik', sans-serif !important;
    color: #000000 !important;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.aths-diagnostic-testing-subtitle {
    font-size: 1.25rem;
    color: var(--pix-body-default, #555);
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Apercu', sans-serif;
}

/* Row: 2/3 left (3 items) + 1/3 right (image full height) */
.aths-diagnostic-testing-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 80px;
}

.aths-diagnostic-testing-left {
    min-width: 0;
}

.aths-diagnostic-testing-blocks {
    margin-bottom: 0;
}

.aths-diagnostic-testing-row .aths-diagnostic-testing-blocks {
    margin-bottom: 0;
}

.aths-diagnostic-testing-right {
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.aths-diagnostic-testing-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.aths-diagnostic-testing-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aths-diagnostic-testing-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 0;
}

.aths-diagnostic-testing-block-number {
    font-size: 5rem;
    font-weight: 300;
    color: #b59e5c;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
    font-family: serif;
}

.aths-diagnostic-testing-block-content {
    flex: 1;
    padding-top: 8px;
}

.aths-diagnostic-testing-block-heading {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Aeonik', sans-serif !important;
    color: #000000 !important;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.aths-diagnostic-testing-block-description {
    font-size: 1.1rem;
    color: var(--pix-body-default, #555);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    font-family: 'Apercu', sans-serif;
}

.aths-diagnostic-testing-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    margin: 40px 0;
    margin-left: 128px;
}

.aths-diagnostic-testing-quote {
    margin-top: 80px;
    text-align: center;
}

.aths-diagnostic-testing-quote-text {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Apercu', sans-serif;
    color: var(--pix-body-default, #333);
    line-height: 1.8;
    margin: 0 0 32px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.aths-diagnostic-testing-quote-attribution {
    font-size: 0.95rem;
    color: #b59e5c;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Apercu', sans-serif;
}

/* When no right image, blocks are direct child of wrapper and need bottom margin */
.aths-diagnostic-testing-wrapper > .aths-diagnostic-testing-blocks {
    margin-bottom: 80px;
}

/* Responsive Design for Diagnostic Testing Section */
@media (max-width: 968px) {
    .aths-diagnostic-testing-section {
        padding: 80px 0;
    }
    
    .aths-diagnostic-testing-wrapper {
        padding: 0 30px;
    }
    
    .aths-diagnostic-testing-title {
        font-size: 2.75rem;
    }
    
    .aths-diagnostic-testing-subtitle {
        font-size: 1.1rem;
    }
    
    .aths-diagnostic-testing-row {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .aths-diagnostic-testing-right {
        order: -1;
        min-height: 280px;
    }
    
    .aths-diagnostic-testing-block {
        gap: 32px;
    }
    
    .aths-diagnostic-testing-block-number {
        font-size: 4rem;
        min-width: 60px;
    }
    
    .aths-diagnostic-testing-block-heading {
        font-size: 1.75rem;
    }
    
    .aths-diagnostic-testing-block-description {
        font-size: 1rem;
    }
    
    .aths-diagnostic-testing-divider {
        margin-left: 92px;
    }
    
    .aths-diagnostic-testing-quote-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .aths-diagnostic-testing-section {
        padding: 60px 0;
    }
    
    .aths-diagnostic-testing-wrapper {
        padding: 0 20px;
    }
    
    .aths-diagnostic-testing-header {
        margin-bottom: 60px;
    }
    
    .aths-diagnostic-testing-title {
        font-size: 2.25rem;
    }
    
    .aths-diagnostic-testing-subtitle {
        font-size: 1rem;
    }
    
    .aths-diagnostic-testing-wrapper > .aths-diagnostic-testing-blocks {
        margin-bottom: 60px;
    }
    
    .aths-diagnostic-testing-row {
        margin-bottom: 60px;
    }
    
    .aths-diagnostic-testing-right {
        min-height: 220px;
    }
    
    .aths-diagnostic-testing-block {
        flex-direction: column;
        gap: 16px;
    }
    
    .aths-diagnostic-testing-block-number {
        font-size: 3.5rem;
        min-width: auto;
    }
    
    .aths-diagnostic-testing-block-content {
        padding-top: 0;
    }
    
    .aths-diagnostic-testing-block-heading {
        font-size: 1.5rem;
    }
    
    .aths-diagnostic-testing-block-description {
        font-size: 0.95rem;
    }
    
    .aths-diagnostic-testing-divider {
        margin-left: 0;
        margin: 32px 0;
    }
    
    .aths-diagnostic-testing-quote {
        margin-top: 60px;
    }
    
    .aths-diagnostic-testing-quote-text {
        font-size: 1.15rem;
    }
    
    .aths-diagnostic-testing-quote-attribution {
        font-size: 0.85rem;
    }
}

/* VS Comparison Section */
.aths-vs-comparison-section {
    background: #ffffff;
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.aths-vs-comparison-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.aths-vs-comparison-header {
    text-align: center;
    margin-bottom: 80px;
}

.aths-vs-comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.aths-vs-comparison-title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'Aeonik', sans-serif !important;
    color: #000000 !important;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.aths-vs-comparison-subtitle {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Apercu', sans-serif;
}

.aths-vs-comparison-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.aths-vs-comparison-panel {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.aths-vs-comparison-panel-left {
    background: #f5f5f5;
    border-radius: 12px 0 0 12px;
}

.aths-vs-comparison-panel-right {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 0 12px 12px 0;
}

.aths-vs-comparison-panel-header {
    margin-bottom: 40px;
}

.aths-vs-comparison-panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aths-vs-comparison-panel-left .aths-vs-comparison-panel-title {
    color: #8b2635;
    font-family: 'Aeonik', sans-serif !important;
    font-size: 2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.aths-vs-comparison-panel-right .aths-vs-comparison-panel-title {
    color: #ffffff;
    font-family: 'Aeonik', sans-serif !important;
    font-size: 2rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-style: normal;
}

.aths-vs-comparison-panel-right .aths-vs-comparison-panel-title em {
    font-style: italic;
}

.aths-vs-comparison-panel-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.aths-vs-comparison-panel-left .aths-vs-comparison-panel-subtitle {
    color: #333333;
}

.aths-vs-comparison-panel-right .aths-vs-comparison-panel-subtitle {
    color: #cccccc;
}

.aths-vs-comparison-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aths-vs-comparison-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.aths-vs-comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aths-vs-comparison-icon-x {
    background: #8b2635;
    color: #ffffff;
}

.aths-vs-comparison-icon-check {
    background: #28A745;
    color: #ffffff;
}

.aths-vs-comparison-icon svg {
    width: 20px;
    height: 20px;
}

.aths-vs-comparison-item-content {
    flex: 1;
    padding-top: 4px;
}

.aths-vs-comparison-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.aths-vs-comparison-panel-left .aths-vs-comparison-item-title {
    color: #1a1a1a;
}

.aths-vs-comparison-panel-right .aths-vs-comparison-item-title {
    color: #ffffff;
}

.aths-vs-comparison-item-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.aths-vs-comparison-panel-left .aths-vs-comparison-item-description {
    color: #4a4a4a;
}

.aths-vs-comparison-panel-right .aths-vs-comparison-item-description {
    color: #cccccc;
}

.aths-vs-comparison-vs-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.aths-vs-comparison-vs-button span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

/* Responsive Design for VS Comparison Section */
@media (max-width: 1200px) {
    .aths-vs-comparison-panel {
        padding: 50px 40px;
    }
}

@media (max-width: 968px) {
    .aths-vs-comparison-section {
        padding: 80px 0;
    }
    
    .aths-vs-comparison-wrapper {
        padding: 0 30px;
    }
    
    .aths-vs-comparison-header {
        margin-bottom: 60px;
    }
    
    .aths-vs-comparison-title {
        font-size: 2.25rem;
    }
    
    .aths-vs-comparison-subtitle {
        font-size: 1rem;
    }
    
    .aths-vs-comparison-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .aths-vs-comparison-panel {
        border-radius: 12px;
        padding: 50px 40px;
    }
    
    .aths-vs-comparison-vs-button {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -30px auto 0;
    }
    
    .aths-vs-comparison-panel-title {
        font-size: 1.75rem;
    }
    
    .aths-vs-comparison-panel-left .aths-vs-comparison-panel-title {
        font-size: 1.75rem;
    }
    
    .aths-vs-comparison-panel-right .aths-vs-comparison-panel-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .aths-vs-comparison-section {
        padding: 60px 0;
    }
    
    .aths-vs-comparison-wrapper {
        padding: 0 20px;
    }
    
    .aths-vs-comparison-header {
        margin-bottom: 50px;
    }
    
    .aths-vs-comparison-title {
        font-size: 2.25rem;
    }
    
    .aths-vs-comparison-subtitle {
        font-size: 1rem;
    }
    
    .aths-vs-comparison-content {
        gap: 50px;
    }
    
    .aths-vs-comparison-panel {
        padding: 40px 30px;
    }
    
    .aths-vs-comparison-panel-header {
        margin-bottom: 32px;
    }
    
    .aths-vs-comparison-panel-title {
        font-size: 1.5rem;
    }
    
    .aths-vs-comparison-panel-left .aths-vs-comparison-panel-title {
        font-size: 1.5rem;
    }
    
    .aths-vs-comparison-panel-right .aths-vs-comparison-panel-title {
        font-size: 1.5rem;
    }
    
    .aths-vs-comparison-panel-subtitle {
        font-size: 0.95rem;
    }
    
    .aths-vs-comparison-items {
        gap: 24px;
    }
    
    .aths-vs-comparison-item {
        gap: 16px;
    }
    
    .aths-vs-comparison-icon {
        width: 36px;
        height: 36px;
    }
    
    .aths-vs-comparison-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .aths-vs-comparison-item-title {
        font-size: 1rem;
    }
    
    .aths-vs-comparison-item-description {
        font-size: 0.9rem;
    }
    
    .aths-vs-comparison-vs-button {
        width: 70px;
        height: 70px;
        margin: -25px auto 0;
    }
    
    .aths-vs-comparison-vs-button span {
        font-size: 1.1rem;
    }
}

/* Mobile Section */
.aths-mobile-section {
    padding: 100px 40px 120px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #e8e6e1 0%, #f8f7f4 100%);
    background-image: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.aths-mobile-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.aths-mobile-section-title {
    font-family: var(--pix-heading-font), sans-serif;
    font-size: 2.10rem;
    font-weight: 600;
    color: #000 !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.aths-mobile-section-title em {
    font-style: normal;
    color: #000 !important;
}

.aths-mobile-phone-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone mockup */
.aths-mobile-phone {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.aths-mobile-phone::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0d0d0d;
    border-radius: 20px;
    z-index: 20;
}

.aths-mobile-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1f1f1f 0%, #141414 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

/* App UI inside phone */
.aths-mobile-app-ui {
    padding: 60px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aths-mobile-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.aths-mobile-app-greeting {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aths-mobile-app-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    margin-top: 4px;
}

.aths-mobile-app-avatar {
    font-family: 'DM Sans', sans-serif;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4af37 0%, #e8d5a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.aths-mobile-app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.aths-mobile-app-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.aths-mobile-app-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.aths-mobile-app-card-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.aths-mobile-app-progress {
    margin-top: 16px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.aths-mobile-app-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #e8d5a3 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.aths-mobile-app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.aths-mobile-app-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.aths-mobile-app-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.aths-mobile-app-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aths-mobile-app-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aths-mobile-app-nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.aths-mobile-app-nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.aths-mobile-app-nav-item svg {
    width: 20px;
    height: 20px;
}

/* Floating feature bubbles */
.aths-mobile-feature-bubble {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.aths-mobile-feature-bubble:hover {
    transform: translateY(-4px) scale(1.02);
}

.aths-mobile-feature-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.aths-mobile-bubble-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.aths-mobile-bubble-icon svg {
    width: 22px;
    height: 22px;
}

.aths-mobile-bubble-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.aths-mobile-bubble-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* Position bubbles */
.aths-mobile-feature-bubble-1 {
    top: 5%;
    left: 5%;
    animation: aths-float1 6s ease-in-out infinite;
}

.aths-mobile-feature-bubble-2 {
    top: 8%;
    right: 5%;
    animation: aths-float2 7s ease-in-out infinite;
    animation-delay: -1s;
}

.aths-mobile-feature-bubble-3 {
    bottom: 25%;
    left: 3%;
    animation: aths-float3 5.5s ease-in-out infinite;
    animation-delay: -2s;
}

.aths-mobile-feature-bubble-4 {
    bottom: 20%;
    right: 5%;
    animation: aths-float4 6.5s ease-in-out infinite;
    animation-delay: -0.5s;
}

@keyframes aths-float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes aths-float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}

@keyframes aths-float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 10px); }
}

@keyframes aths-float4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -12px); }
}

/* Connector lines */
.aths-mobile-connector-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.aths-mobile-connector-line {
    stroke: #d4af37;
    stroke-width: 1;
    stroke-dasharray: 8 4;
    fill: none;
    opacity: 0.25;
}

/* Decorative elements */
.aths-mobile-decoration {
    position: absolute;
    border-radius: 50%;
    background: #d4af37;
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
}

.aths-mobile-decoration-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.aths-mobile-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
}

/* Platform note */
.aths-mobile-platform-note {
    font-family: 'DM Sans', sans-serif;
    margin-top: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #777;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.aths-mobile-platform-note svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

/* Glow effect behind phone */
.aths-mobile-phone-glow {
    position: absolute;
    width: 350px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .aths-mobile-feature-bubble {
        max-width: 220px;
        padding: 16px 18px;
    }

    .aths-mobile-bubble-content h4 {
        font-size: 13px;
    }

    .aths-mobile-bubble-content p {
        font-size: 11px;
    }

    .aths-mobile-feature-bubble-1 {
        top: 0;
        left: 0;
    }

    .aths-mobile-feature-bubble-2 {
        top: 0;
        right: 0;
    }

    .aths-mobile-feature-bubble-3 {
        bottom: 15%;
        left: 0;
    }

    .aths-mobile-feature-bubble-4 {
        bottom: 10%;
        right: 0;
    }
}

@media (max-width: 768px) {
    .aths-mobile-section {
        padding: 60px 20px 80px;
    }

    .aths-mobile-section-header {
        margin-bottom: 40px;
    }

    .aths-mobile-phone-container {
        height: auto;
        flex-direction: column;
        gap: 30px;
    }

    .aths-mobile-phone {
        width: 240px;
        height: 500px;
    }

    .aths-mobile-feature-bubble {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100%;
        animation: none !important;
    }

    .aths-mobile-connector-lines {
        display: none;
    }

    .aths-mobile-feature-bubble {
        margin-bottom: 16px;
    }
}

/* Body Copy Section */
.aths-body-copy-section {
    padding: 80px 0;
}
.aths-body-copy-section.aths-body-copy-section-dark {
    background-color: #1a1a1a;
    color: #fff;
}
.aths-body-copy-section.aths-body-copy-section-dark .aths-body-copy-title,
.aths-body-copy-section.aths-body-copy-section-dark .aths-body-copy-content {
    color: #fff;
}
.aths-body-copy-inner {
    max-width: 800px;
    margin: 0 auto;
}
.aths-body-copy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}
.aths-body-copy-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}
.aths-body-copy-content p {
    margin-bottom: 1em;
}

/* What We Treat Section (up to 3 blocks) */
.aths-what-we-treat-section {
    padding: 100px 0;
    font-family: inherit;
}
.aths-what-we-treat-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.aths-what-we-treat-header {
    margin-bottom: 48px;
}
.aths-what-we-treat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #262f4d;
    margin-bottom: 8px;
    font-family: inherit;
}
.aths-what-we-treat-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a !important;
    margin: 0;
    font-family: inherit;
}
.aths-what-we-treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}
.aths-what-we-treat-card {
    background: #fff;
    padding: 32px;
    font-family: inherit;
}
.aths-what-we-treat-card + .aths-what-we-treat-card {
    border-left: 1px solid #e5e7eb;
}
.aths-what-we-treat-card-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.aths-what-we-treat-card-icon img {
    max-width: 48px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.aths-what-we-treat-card-icon svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.aths-what-we-treat-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a0a0a !important;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: inherit;
}
.aths-what-we-treat-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-family: inherit;
}
@media (max-width: 992px) {
    .aths-what-we-treat-grid {
        grid-template-columns: 1fr;
    }
    .aths-what-we-treat-card + .aths-what-we-treat-card {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
}
@media (max-width: 768px) {
    .aths-what-we-treat-section {
        padding: 48px 0;
    }
    .aths-what-we-treat-title {
        font-size: 1.75rem;
    }
    .aths-what-we-treat-card {
        padding: 24px;
    }
}

/* What We Treat – Variation 2 (left panel + right content, CTA) */
.aths-what-we-treat-section--image-left .aths-what-we-treat-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-two-col {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 0;
    align-items: stretch;
    min-height: 480px;
    border-radius: 12px;
    overflow: hidden;
}
.aths-what-we-treat-left {
    min-height: 320px;
}
.aths-what-we-treat-panel {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background-color: #262f4d;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 12px 0 0 12px;
}
.aths-what-we-treat-panel--has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.7) 0%, transparent 50% );
    pointer-events: none;
}
.aths-what-we-treat-panel-stat-card {
    position: relative;
    z-index: 1;
    margin: 1.5rem;
    max-width: 320px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    font-family: inherit;
}
.aths-what-we-treat-panel-stat-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 8px 0;
}
.aths-what-we-treat-panel-caption {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.aths-what-we-treat-right {
    background: #fff;
    padding: 48px 56px 56px;
    display: flex;
    flex-direction: column;
    border-radius: 0 12px 12px 0;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-header {
    margin-bottom: 20px;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-label {
    color: #262f4d;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-title {
    color: #000;
    margin-bottom: 0;
}
.aths-what-we-treat-above {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 28px;
}
.aths-what-we-treat-above p {
    margin: 0 0 0.5em 0;
}
.aths-what-we-treat-above p:last-child {
    margin-bottom: 0;
}
.aths-what-we-treat-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.aths-what-we-treat-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    font-family: inherit;
}
.aths-what-we-treat-row:first-child {
    padding-top: 0;
}
.aths-what-we-treat-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.aths-what-we-treat-row-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262f4d;
}
.aths-what-we-treat-row-icon img {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.aths-what-we-treat-row-icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-row-text .aths-what-we-treat-card-title {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    color: #000;
}
.aths-what-we-treat-section--image-left .aths-what-we-treat-row-text .aths-what-we-treat-card-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}
.aths-what-we-treat-cta-wrap {
    margin-top: 32px;
    padding-top: 24px;
}
.aths-what-we-treat-cta-btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #262f4d;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.aths-what-we-treat-cta-btn:hover {
    background: #1a2332;
    color: #fff;
}
@media (max-width: 992px) {
    .aths-what-we-treat-section--image-left .aths-what-we-treat-two-col {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .aths-what-we-treat-panel {
        min-height: 320px;
        border-radius: 12px 12px 0 0;
    }
    .aths-what-we-treat-right {
        padding: 40px 24px 48px;
        border-radius: 0 0 12px 12px;
    }
}
@media (max-width: 768px) {
    .aths-what-we-treat-panel {
        min-height: 280px;
    }
    .aths-what-we-treat-right {
        padding: 32px 20px 40px;
    }
    .aths-what-we-treat-row {
        padding: 20px 0;
    }
    .aths-what-we-treat-row-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

/* Blood Work Section (one background image across both panels, text over it) */
.aths-blood-work-section {
    padding: 100px 0;
    font-family: inherit;
}
.aths-blood-work-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 520px;
}
.aths-blood-work-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: 0;
}
.aths-blood-work-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}
.aths-blood-work-left {
    position: relative;
    padding: 48px 24px 48px 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.aths-blood-work-overlay-card {
    width: 100%;
    max-width: 420px;
    background: rgba(20, 20, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-overlay-card .biomarkers-header {
    margin-bottom: 25px;
}
.aths-blood-work-overlay-card .biomarkers-welcome {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-overlay-card .biomarkers-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-overlay-card .biomarkers-dashboard {
    width: 100%;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .dashboard-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-overlay-card .biomarkers-dashboard .metrics-row {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .metric {
    text-align: center;
    flex: 1 1 0;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .metric-number {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-overlay-card .biomarkers-dashboard .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.aths-blood-work-overlay-card .biomarkers-dashboard .progress-bar {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-top: 4px;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .progress-segment {
    height: 100%;
    flex-shrink: 0;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .progress-out-of-range {
    background: #dc2626;
    width: 10%;
    min-width: 8px;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .progress-normal {
    background: #eab308;
    width: 25%;
    min-width: 8px;
}
.aths-blood-work-overlay-card .biomarkers-dashboard .progress-optimal {
    background: #22c55e;
    flex: 1;
    min-width: 8px;
}
.aths-blood-work-right {
    padding: 48px 56px 56px 24px;
    margin-right: -20px;
    padding-right: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.aths-blood-work-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( to right, transparent 0%, rgba(20, 20, 25, 0.5) 35%, rgba(20, 20, 25, 0.75) 100% );
    border-radius: 0 12px 12px 0;
    z-index: -1;
    pointer-events: none;
}
.aths-blood-work-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff !important;
    margin: 0 0 1rem 0;
    font-family: inherit;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-body {
    font-family: inherit;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}
.aths-blood-work-body p {
    margin: 0 0 0.75em 0;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}
.aths-blood-work-body p:last-child {
    margin-bottom: 0;
}
.aths-blood-work-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff !important;
    margin: 0 0 1.5rem 0;
    font-family: inherit;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.4);
}
.aths-blood-work-cta {
    display: inline-block;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    background: transparent;
    border: 2px solid #fff;
    border-radius: 9999px;
    padding: 14px 28px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    align-self: flex-start;
}
.aths-blood-work-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}
@media (max-width: 992px) {
    .aths-blood-work-inner {
        min-height: 0;
    }
    .aths-blood-work-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .aths-blood-work-bg {
        border-radius: 12px 12px 0 0;
    }
    .aths-blood-work-left {
        padding: 40px 20px 32px;
        min-height: 280px;
    }
    .aths-blood-work-right::before {
        border-radius: 0 0 12px 12px;
    }
    .aths-blood-work-right {
        margin-right: 0;
        padding: 40px 24px 48px;
    }
}
@media (max-width: 768px) {
    .aths-blood-work-section {
        padding: 48px 0;
    }
    .aths-blood-work-left {
        padding: 32px 20px 28px;
        min-height: 240px;
    }
    .aths-blood-work-right {
        margin-right: 0;
        padding: 32px 20px 40px;
    }
    .aths-blood-work-title {
        font-size: 1.85rem;
    }
}

/* Process Section (label, heading, intro, horizontal steps with line) */
.aths-process-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: inherit;
    overflow-x: hidden;
}
.aths-process-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.aths-process-header {
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.aths-process-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #262f4d;
    margin-bottom: 8px;
    display: block;
    font-family: inherit;
}
.aths-process-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000 !important;
    margin: 0 0 12px 0;
    font-family: inherit;
}
.aths-process-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-family: inherit;
}
.aths-process-header .aths-process-title,
.aths-process-header .aths-process-intro {
    text-align: center;
}
.aths-process-steps-wrap {
    position: relative;
}
.aths-process-steps-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 28px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}
.aths-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px 16px;
    position: relative;
    z-index: 1;
}
.aths-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.aths-process-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #262f4d;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}
.aths-process-step-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #262f4d;
    font-family: inherit;
}
.aths-process-step-content {
    max-width: 260px;
}
.aths-process-step-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 6px;
    display: block;
    font-family: inherit;
}
.aths-process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: inherit;
}
.aths-process-step-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-family: inherit;
}
@media (max-width: 992px) {
    .aths-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .aths-process-steps-line {
        display: none;
    }
}
@media (max-width: 768px) {
    .aths-process-section {
        padding: 48px 0;
    }
    .aths-process-header {
        margin-bottom: 36px;
    }
    .aths-process-title {
        font-size: 1.75rem;
    }
    .aths-process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Why It Matters Section (two-column: copy left, stat boxes right) */
.aths-why-it-matters-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: inherit;
}
.aths-why-it-matters-inner {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 20px !important;
    width: 100%;
    box-sizing: border-box;
}
.aths-why-it-matters-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.aths-why-it-matters-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #262f4d;
    margin-bottom: 8px;
    display: block;
    font-family: inherit;
}
.aths-why-it-matters-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #000 !important;
    margin: 0 0 1.25rem 0;
    font-family: inherit;
}
.aths-why-it-matters-body {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.aths-why-it-matters-body p {
    margin: 0 0 1em 0;
}
.aths-why-it-matters-body p:last-child {
    margin-bottom: 0;
}
.aths-why-it-matters-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.aths-why-it-matters-stat {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}
.aths-why-it-matters-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px;
    font-family: inherit;
}
.aths-why-it-matters-stat-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-family: inherit;
}
@media (max-width: 992px) {
    .aths-why-it-matters-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .aths-why-it-matters-section {
        padding: 48px 0;
    }
    .aths-why-it-matters-title {
        font-size: 1.6rem;
    }
    .aths-why-it-matters-stat {
        padding: 20px;
    }
}

/* Why It Matters v2 Section (two-column: copy left, 2 stacked text blocks right) */
.aths-why-it-matters-v2-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: inherit;
}
.aths-why-it-matters-v2-inner {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 20px !important;
    width: 100%;
    box-sizing: border-box;
}
.aths-why-it-matters-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.aths-why-it-matters-v2-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #262f4d;
    margin-bottom: 8px;
    display: block;
    font-family: inherit;
}
.aths-why-it-matters-v2-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #000 !important;
    margin: 0 0 1.25rem 0;
    font-family: inherit;
}
.aths-why-it-matters-v2-body {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.aths-why-it-matters-v2-body p {
    margin: 0 0 1em 0;
}
.aths-why-it-matters-v2-body p:last-child {
    margin-bottom: 0;
}
.aths-why-it-matters-v2-left-image {
    margin-top: 1.5rem;
    max-width: 680px;
    width: 100%;
    aspect-ratio: 680 / 280;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}
.aths-why-it-matters-v2-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aths-why-it-matters-v2-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.aths-why-it-matters-v2-block {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}
.aths-why-it-matters-v2-block-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 8px;
    display: block;
    font-family: inherit;
}
.aths-why-it-matters-v2-block-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000 !important;
    margin: 0 0 12px 0;
    font-family: inherit;
}
.aths-why-it-matters-v2-block-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    font-family: inherit;
}
.aths-why-it-matters-v2-block-body p {
    margin: 0 0 0.5em 0;
}
.aths-why-it-matters-v2-block-body p:last-child {
    margin-bottom: 0;
}
.aths-why-it-matters-v2-block-tag {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: inherit;
}
@media (max-width: 992px) {
    .aths-why-it-matters-v2-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .aths-why-it-matters-v2-section {
        padding: 48px 0;
    }
    .aths-why-it-matters-v2-title {
        font-size: 1.6rem;
    }
    .aths-why-it-matters-v2-block {
        padding: 20px;
    }
}

/* The Symptoms Section (two-column: list + stats card) */
.aths-the-symptoms-section {
    padding: 100px 0;
    font-family: inherit;
}
.aths-the-symptoms-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.aths-the-symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.aths-the-symptoms-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #262f4d;
    margin-bottom: 8px;
    display: block;
    font-family: inherit;
}
.aths-the-symptoms-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0 0 16px 0;
    font-family: inherit;
}
.aths-the-symptoms-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 24px 0;
    font-family: inherit;
}
.aths-the-symptoms-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: inherit;
}
.aths-the-symptoms-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    font-family: inherit;
}
.aths-the-symptoms-list li:last-child {
    border-bottom: none;
}
.aths-the-symptoms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #262f4d;
}
.aths-the-symptoms-stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: inherit;
}
.aths-the-symptoms-stat {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}
.aths-the-symptoms-stat:first-child {
    padding-top: 0;
}
.aths-the-symptoms-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.aths-the-symptoms-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: inherit;
}
.aths-the-symptoms-stat-value-accent {
    color: #262f4d;
}
.aths-the-symptoms-stat-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-family: inherit;
}
@media (max-width: 992px) {
    .aths-the-symptoms-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .aths-the-symptoms-section {
        padding: 48px 0;
    }
    .aths-the-symptoms-title {
        font-size: 1.75rem;
    }
    .aths-the-symptoms-stats-card {
        padding: 24px;
    }
    .aths-the-symptoms-stat-value {
        font-size: 1.5rem;
    }
}

/* ========== About Page (brand fonts & colors) ========== */
:root {
    --aths-about-dark: #0a0b0d;
    --aths-about-dark-warm: #28231e;
    --aths-about-gold: #bfa760;
    --aths-about-gold-light: #e6e0d2;
    --aths-about-gold-muted: #a08b4d;
    --aths-about-cream: #fbf9f6;
    --aths-about-navy: #1a2d4f;
    --aths-about-text-light: #f8f8f8;
    --aths-about-text-muted: #bdb7a7;
    --aths-about-content-width: 1200px;
}

/* About Hero */
.aths-about-hero {
    font-family: 'Apercu', sans-serif;
    background: var(--aths-about-dark);
    min-height: 90vh;
    padding: 6rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aths-about-hero-inner {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
}
.aths-about-hero-title {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff !important;
    text-transform: none;
    text-shadow: 0 0 30px rgba(191, 167, 96, 0.4), 0 0 60px rgba(191, 167, 96, 0.2);
    letter-spacing: 0.02em;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}
.aths-about-hero-tagline {
    font-family: 'Apercu', sans-serif;
    font-size: 1.1rem;
    color: #e8e8e8;
    margin: 0;
    letter-spacing: 0.02em;
}

/* About Quote Overlay */
.aths-about-quote-overlay {
    font-family: 'Apercu', sans-serif;
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-color: var(--aths-about-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}
.aths-about-quote-overlay-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.6);
}
.aths-about-quote-overlay-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
}
.aths-about-quote-overlay-line1,
.aths-about-quote-overlay-line2 {
    font-family: 'Aeonik', sans-serif !important;
    color: var(--aths-about-gold-light) !important;
    text-shadow: 0 0 20px rgba(230, 224, 210, 0.3);
    margin: 0;
    text-transform: none;
    letter-spacing: 0.03em;
}
.aths-about-quote-overlay-line1 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.5rem;
}
.aths-about-quote-overlay-line2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
}

/* About Two Col Quote (Light) */
.aths-about-two-col-quote-light {
    font-family: 'Apercu', sans-serif;
    background: linear-gradient(to bottom, #111827, #020617);
    padding: 4rem 0;
}
.aths-about-two-col-quote-light-container {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.aths-about-two-col-quote-light-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.aths-about-two-col-quote-light-card img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.aths-about-two-col-quote-light-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: block;
}
.aths-about-two-col-quote-light-name {
    font-family: 'Aeonik', sans-serif !important;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: none;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.aths-about-two-col-quote-light-dates {
    font-family: 'Aeonik', sans-serif !important;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.aths-about-two-col-quote-light-question {
    font-family: 'Apercu', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.12em;
    color: var(--aths-about-gold-muted);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}
.aths-about-two-col-quote-light-answer {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: var(--aths-about-navy) !important;
    text-transform: none;
    margin: 0 0 1.25rem 0;
    line-height: 1.35;
    padding-left: 1rem;
    border-left: 3px solid var(--aths-about-gold);
}
.aths-about-two-col-quote-light-attr {
    font-family: 'Apercu', sans-serif;
    font-size: 0.9rem;
    color: var(--aths-about-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* About Invitation */
.aths-about-invitation {
    font-family: 'Apercu', sans-serif;
    background: linear-gradient(180deg, #1e2530 0%, #151a2b 50%, #0d1117 100%);
    padding: 5rem 1.5rem;
    color: var(--aths-about-text-light);
}
.aths-about-invitation-inner {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
    text-align: center;
}
.aths-about-invitation-label {
    font-family: 'Apercu', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: none;
    color: var(--aths-about-gold);
    margin: 0 0 1rem 0;
}
.aths-about-invitation-title {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--aths-about-text-light) !important;
    text-transform: none;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.aths-about-invitation-body {
    font-family: 'Apercu', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}
.aths-about-invitation-body p {
    margin: 0 0 1em 0;
}
.aths-about-invitation-quote {
    background: rgba(30, 37, 48, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin: 0;
    text-align: left;
    position: relative;
}
.aths-about-invitation-quote-icon {
    font-family: 'Apercu', sans-serif;
    font-size: 4rem;
    color: var(--aths-about-gold);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
}
.aths-about-invitation-quote-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-left: 2.5rem;
}
.aths-about-invitation-quote-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.aths-about-invitation-quote-text {
    font-family: 'Aeonik', sans-serif !important;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    color: var(--aths-about-text-light);
    text-transform: none;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}
.aths-about-invitation-quote-attr {
    font-family: 'Apercu', sans-serif;
    font-size: 0.85rem;
    color: var(--aths-about-gold);
    font-style: normal;
}

/* About Quote Portrait */
.aths-about-quote-portrait {
    font-family: 'Apercu', sans-serif;
    background: var(--aths-about-dark-warm);
    padding: 5rem 1.5rem;
    text-align: center;
}
.aths-about-quote-portrait-inner {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
}
.aths-about-quote-portrait-frame {
    border: 2px solid var(--aths-about-gold);
    border-radius: 8px;
    padding: 6px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(181, 158, 92, 0.2);
}
.aths-about-quote-portrait-frame img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    border-radius: 4px;
}
.aths-about-quote-portrait-quote {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    font-weight: 600;
    color: var(--aths-about-gold-light) !important;
    text-transform: none;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}
.aths-about-quote-portrait-attr {
    font-family: 'Apercu', sans-serif;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.08em;
    color: var(--aths-about-gold-muted);
    margin: 0 0 1.5rem 0;
}
.aths-about-quote-portrait-supporting {
    font-family: 'Apercu', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--aths-about-gold-light);
    text-align: center;
}
.aths-about-quote-portrait-supporting p {
    margin: 0 0 0.5em 0;
}

/* About Two Col Tabs */
.aths-about-two-col-tabs {
    font-family: 'Apercu', sans-serif;
    background: linear-gradient(to bottom, #111827, #020617);
    padding: 4rem 0 3rem;
}
.aths-about-two-col-tabs-slides {
    position: relative;
}
.aths-about-two-col-tabs-slide {
    display: none;
}
.aths-about-two-col-tabs-slide.active {
    display: block;
}
.aths-about-two-col-tabs-container {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 3rem;
    align-items: center;
}
.aths-about-two-col-tabs-media img {
    width: 100%;
    height: auto;
    display: block;
}
.aths-about-two-col-tabs-heading {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff !important;
    text-transform: none;
    margin: 0 0 1.25rem 0;
}
.aths-about-two-col-tabs-body {
    font-family: 'Apercu', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
}
.aths-about-two-col-tabs-body p {
    margin: 0 0 1em 0;
    color: #ffffff;
}
.aths-about-two-col-tabs-nav {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.aths-about-two-col-tabs-tab {
    font-family: 'Apercu', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.aths-about-two-col-tabs-tab:hover {
    color: rgba(255, 255, 255, 0.85);
}
.aths-about-two-col-tabs-tab.active {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* About Inspired By */
.aths-about-inspired-by {
    font-family: 'Apercu', sans-serif;
    background: #111111;
    padding: 5rem 1.5rem;
}
.aths-about-inspired-by-container {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
}
.aths-about-inspired-by-heading {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff !important;
    text-transform: none;
    margin: 0 0 2.5rem 0;
    letter-spacing: 0.03em;
}
.aths-about-inspired-by-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.aths-about-inspired-by-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #111;
}
.aths-about-inspired-by-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.aths-about-inspired-by-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aths-about-inspired-by-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.aths-about-inspired-by-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    z-index: 1;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-style: italic;
    font-family: Georgia, serif;
}
.aths-about-inspired-by-icon-default {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.aths-about-inspired-by-icon-omega {
    background: none;
    font-size: 1.5rem;
}
.aths-about-inspired-by-icon-omega::before {
    content: 'Ω';
}
.aths-about-inspired-by-icon-flask {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.aths-about-inspired-by-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 1;
}
.aths-about-inspired-by-card-name {
    font-family: 'Aeonik', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.05em;
    color: #fff !important;
    margin: 0 0 0.35rem 0;
}
.aths-about-inspired-by-card-desc {
    font-family: 'Apercu', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

/* About Two Col Dark */
.aths-about-two-col-dark {
    font-family: 'Apercu', sans-serif;
    background: var(--aths-about-dark);
    padding: 5rem 1.5rem;
    position: relative;
}
.aths-about-two-col-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(191, 167, 96, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.aths-about-two-col-dark-container {
    max-width: var(--aths-about-content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.aths-about-two-col-dark-heading {
    font-family: 'Aeonik', sans-serif !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--aths-about-gold-light) !important;
    text-transform: none;
    margin: 0 0 1.5rem 0;
}
.aths-about-two-col-dark-p {
    font-family: 'Apercu', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0 0 1rem 0;
}
.aths-about-two-col-dark-emphasis strong em,
.aths-about-two-col-dark-emphasis em strong {
    font-style: italic;
    font-weight: 700;
}
.aths-about-two-col-dark-image-wrap {
    text-align: center;
}
.aths-about-two-col-dark-image-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}
.aths-about-two-col-dark-caption {
    font-family: 'Apercu', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e8e8;
    margin: 0.75rem 0 0 0;
    text-transform: none;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .aths-about-two-col-quote-light-container,
    .aths-about-two-col-tabs-container,
    .aths-about-two-col-dark-container {
        grid-template-columns: 1fr;
    }
    .aths-about-inspired-by-cards {
        grid-template-columns: 1fr;
    }
    .aths-about-invitation-quote-content {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .aths-about-hero { padding: 4rem 1rem; }
    .aths-about-quote-portrait-frame img { max-width: 160px; }
    .aths-about-two-col-tabs-nav { gap: 1.5rem; }
}

/* ==========================================================================
   ATHS Mini Service Area
   ========================================================================== */
.aths-mini-service-area {
    padding: 2.5rem 0;
    font-family: 'Apercu', sans-serif;
}
.aths-mini-service-area-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.aths-mini-service-area-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.aths-mini-service-area-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    min-height: 80px;
}
.aths-mini-service-area-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.aths-mini-service-area-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}
.aths-mini-service-area-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aths-mini-service-area-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.aths-mini-service-area-arrow {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Blue style: #262f4d background, white text and icon */
.aths-mini-service-area--blue .aths-mini-service-area-card {
    background: #262f4d;
    color: #fff;
}
.aths-mini-service-area--blue .aths-mini-service-area-text,
.aths-mini-service-area--blue .aths-mini-service-area-arrow {
    color: #fff;
}
.aths-mini-service-area--blue .aths-mini-service-area-icon img {
    filter: brightness(0) invert(1);
}

/* White style: white rectangles, gold text */
.aths-mini-service-area--white .aths-mini-service-area-card {
    background: #fff;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.aths-mini-service-area--white .aths-mini-service-area-text,
.aths-mini-service-area--white .aths-mini-service-area-arrow {
    color: #d4af37;
}
.aths-mini-service-area--white .aths-mini-service-area-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .aths-mini-service-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .aths-mini-service-area-grid {
        grid-template-columns: 1fr;
    }
    .aths-mini-service-area-card {
        min-height: auto;
    }
}
