/* SPECIALIZED THERAPIES SECTION */
.specialized-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f5f7fa);
    position: relative;
    overflow: hidden;
}

.specialized-section::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.05), transparent);
    animation: floatBubble 20s infinite ease-in-out;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -50px) scale(1.1); }
    50% { transform: translate(-50px, 100px) scale(0.9); }
    75% { transform: translate(50px, 50px) scale(1.05); }
}

/* Therapy Navigation */
.therapy-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    background: white;
    padding: 0.5rem;
    border-radius: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-indicator {
    position: absolute;
    height: calc(100% - 1rem);
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.therapy-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.therapy-tab:hover {
    color: #6c63ff;
}

.therapy-tab.active {
    color: white;
}

.tab-icon {
    font-size: 1.25rem;
}

/* Therapy Content Areas */
.therapy-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.therapy-content.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

/* HGH Overview Card */
.hgh-overview {
    margin-bottom: 3rem;
}

.overview-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.overview-card .card-header {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.prescription-required {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.overview-card .card-body {
    padding: 2rem;
}

.eligibility-criteria {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.eligibility-criteria h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.eligibility-criteria ul {
    list-style: none;
    padding: 0;
}

.eligibility-criteria li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #495057;
}

.eligibility-criteria li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

/* HGH Products Grid */
.hgh-products {
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.hgh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hgh-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.hgh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hgh-card.premium {
    border: 2px solid #6c63ff;
}

.hgh-card.biosimilar {
    border: 2px solid #28a745;
}

/* Brand Header */
.brand-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 40px;
    object-fit: contain;
}

.premium-badge,
.feature-badge,
.biosimilar-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-badge {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
}

.feature-badge {
    background: #f0f0f0;
    color: #495057;
}

.biosimilar-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

/* Product Details */
.product-details {
    padding: 0 2rem 2rem;
}

.product-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.manufacturer {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature-icon {
    font-size: 1.25rem;
}

.feature-text {
    color: #495057;
    font-size: 0.875rem;
}

/* Strength Options */
.strength-options {
    margin-bottom: 1.5rem;
}

.strength-options h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.strengths {
    display: flex;
    gap: 0.5rem;
}

.strength-pill {
    padding: 0.5rem 1rem;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    cursor: pointer;
}

.strength-pill:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Info */
.pricing-info {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-range {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 0.5rem;
}

.dosing-note,
.savings-note {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Protocol Cards */
.protocol-info-section {
    margin-top: 4rem;
}

.protocol-info-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.protocol-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.protocol-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.protocol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.protocol-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(139, 133, 255, 0.1));
    border-radius: 20px;
}

.protocol-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.protocol-card ul {
    list-style: none;
    text-align: left;
}

.protocol-card li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
}

/* Peptides Content */
.warning-card {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
}

.warning-content p {
    color: #856404;
    margin: 0;
}

/* Legal Alternatives */
.legal-alternatives {
    margin-top: 3rem;
}

.legal-alternatives h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.peptide-alternative-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.status-indicator {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-indicator.approved {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.alternative-content {
    padding: 2rem;
}

.alternative-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.alternative-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.availability-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #dc3545;
    color: white;
}

.availability-badge.available {
    background: #28a745;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.875rem;
}

.benefit .icon {
    font-size: 1.25rem;
}

/* Clinical Uses */
.clinical-uses {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.clinical-uses h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.clinical-uses ul {
    list-style: none;
    padding-left: 1rem;
}

.clinical-uses li {
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.875rem;
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

/* Medication Options */
.medication-options {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.med-option {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.med-option:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.med-option img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.med-details h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.med-details p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.med-details .price {
    font-weight: 600;
    color: #6c63ff;
}

/* Research Partnership Card */
.research-partnership-card {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.partnership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.partnership-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.program-badge {
    padding: 0.5rem 1rem;
    background: #6c63ff;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Trial Categories */
.trial-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.trial-category {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.trial-category h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.trial-category ul {
    list-style: none;
}

.trial-category li {
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Enrollment CTA */
.enrollment-cta {
    text-align: center;
    margin-top: 2rem;
}

.enrollment-cta p {
    color: #495057;
    margin-bottom: 1rem;
}

.btn-enroll {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

/* Adrenal Content */
.adrenal-overview .section-intro {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Adrenal Medications */
.adrenal-medications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.adrenal-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.adrenal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.adrenal-card.primary {
    border: 2px solid #6c63ff;
}

.medication-visual {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.med-icon {
    margin: 0 auto 1rem;
}

.first-line-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: #6c63ff;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.medication-info {
    padding: 2rem;
}

.medication-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.indication {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Dosing Schedule */
.dosing-schedule {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.dose-time {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.dose-time:last-child {
    border-bottom: none;
}

.dose-time.optional {
    opacity: 0.7;
}

.time {
    color: #495057;
    font-weight: 500;
}

.dose {
    color: #6c63ff;
    font-weight: 600;
}

/* Form Options */
.form-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form {
    padding: 0.5rem 1rem;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
}

/* Stress Dosing */
.stress-dosing {
    background: #fff3cd;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.stress-dosing h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.5rem;
}

.stress-dosing p {
    color: #856404;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.btn-protocol-guide {
    padding: 0.5rem 1rem;
    background: #ffc107;
    color: #212529;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-protocol-guide:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* Pricing */
.pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.coverage {
    padding: 0.25rem 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Clinical Uses */
.clinical-uses ul {
    list-style: none;
    padding: 0;
}

.clinical-uses li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #495057;
    font-size: 0.875rem;
}

.clinical-uses li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #6c63ff;
    font-weight: 700;
}

/* Monitoring Items */
.monitoring-items {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.monitoring-items span {
    padding: 0.25rem 0.75rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Medication Comparison */
.medication-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.comparison-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.comparison-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.comparison-item p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.use-case {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e0e0e0;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
}

/* DHEA Section */
.dhea-section {
    margin-top: 3rem;
}

.dhea-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.dhea-info-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
    border-radius: 20px;
    padding: 2rem;
}

.dhea-overview h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

/* DHEA Benefits */
.dhea-benefits {
    margin: 1.5rem 0;
}

.dhea-benefits h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
}

/* DHEA Products */
.dhea-products {
    margin-top: 1.5rem;
}

.dhea-option {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.dhea-option h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.dhea-option .strengths {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dhea-option .strengths span {
    padding: 0.5rem 1rem;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.gender-specific {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

/* Adrenal Testing */
.adrenal-testing {
    margin-top: 3rem;
    text-align: center;
}

.adrenal-testing h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.test-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.test-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.test-card:hover {
    border-color: #6c63ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.test-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.test-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.test-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c63ff;
}

.btn-order-testing {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-order-testing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

/* Anti-Aging Content */
.anti-aging-overview .section-intro {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.anti-aging-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 2px;
}

/* NAD Options */
.nad-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.nad-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.nad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.nad-card.featured {
    border: 2px solid #6c63ff;
}

.nad-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nad-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.availability {
    padding: 0.25rem 0.75rem;
    background: #6c63ff;
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.nad-content {
    padding: 2rem;
}

/* Protocol Details */
.protocol-details {
    margin: 1rem 0;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail:last-child {
    border-bottom: none;
}

.detail .label {
    color: #6c757d;
    font-weight: 500;
}

.detail .value {
    color: #495057;
    text-align: right;
}

/* Benefits */
.benefits {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.benefits span {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(139, 133, 255, 0.1));
    border-radius: 20px;
    font-size: 0.875rem;
    color: #6c63ff;
    font-weight: 500;
}

/* Precursor Options */
.precursor-options {
    margin: 1rem 0;
}

.option {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.option h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.option p {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Buttons */
.btn-book,
.btn-prescribe {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book:hover,
.btn-prescribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Metabolic Grid */
.metabolic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.metabolic-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.metabolic-card:hover {
    border-color: #6c63ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metabolic-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.metabolic-card p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.protocol-info {
    margin-top: 1rem;
}

.protocol-info ul {
    list-style: none;
    padding-left: 1rem;
}

.protocol-info li {
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.875rem;
}

.research-note {
    display: block;
    padding: 0.5rem;
    background: #fff3cd;
    color: #856404;
    border-radius: 8px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.btn-learn,
.btn-research,
.btn-order {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #6c63ff;
    background: white;
    color: #6c63ff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-learn:hover,
.btn-research:hover,
.btn-order:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
}

/* Optimization Panel */
.optimization-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.optimization-overview p {
    color: #495057;
    margin-bottom: 1.5rem;
}

.hormone-checklist {
    display: grid;
    gap: 0.75rem;
}

.hormone-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.hormone-item .icon {
    color: #28a745;
    font-weight: 700;
}

/* Optimization CTA */
.optimization-cta {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.optimization-cta h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.optimization-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.package-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
}

.btn-assessment {
    padding: 1rem 2rem;
    background: white;
    color: #6c63ff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-assessment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Advanced Therapies */
.advanced-therapies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.therapy-preview {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.therapy-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.therapy-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.therapy-preview h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 1rem 0 0.5rem;
}

.therapy-preview p {
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.btn-info {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    color: #6c757d;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: #e0e0e0;
}

/* Specialized CTA */
.specialized-cta {
    margin-top: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.dna-helix {
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.specialized-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.specialized-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.specialized-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.specialized-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.specialized-cta .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.specialized-cta .feature .icon {
    font-size: 2rem;
}

.btn-cta-primary {
    padding: 1.25rem 2.5rem;
    background: white;
    color: #6c63ff;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Common Button Styles */
.btn-consultation,
.btn-alternative,
.btn-explore {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-consultation:hover,
.btn-alternative:hover,
.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hgh-grid,
    .nad-options {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .optimization-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .therapy-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .therapy-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .tab-text {
        display: none;
    }
    
    .hgh-grid,
    .protocol-cards,
    .trial-categories,
    .adrenal-medications {
        grid-template-columns: 1fr;
    }
    
    .medication-comparison {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .benefits {
        justify-content: center;
    }
    
    .specialized-cta .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
    
    .price-range {
        font-size: 1.25rem;
    }
    
    .protocol-icon {
        width: 60px;
        height: 60px;
    }
    
    .alternative-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .benefits-grid,
    .benefits-list,
    .test-options,
    .metabolic-grid {
        grid-template-columns: 1fr;
    }
    
    .specialized-cta {
        padding: 2rem;
    }
    
    .btn-cta-primary {
        width: 100%;
        padding: 1rem 2rem;
    }
}