/* Category Hub Pages — Enhanced Styles v2
   BEM prefix: cathub-* to avoid collision with product-specific styles */

:root {
    --cathub-teal: #1A4B52;
    --cathub-teal-dark: #143E44;
    --cathub-green: #1A6B63;
    --cathub-mint: #F2FAF7;
    --cathub-mint-accent: #7EDCC7;
    --cathub-light: #F8FAFB;
    --cathub-border: #E2E8F0;
    --cathub-text: #334155;
    --cathub-text-muted: #64748B;
    --bloom-standard-width: 1200px;
    --bloom-standard-radius: 64px;
    --bloom-radius-lg: 32px;
    --bloom-transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cathub-text);
    overflow-x: hidden;
    background: #FFFFFF;
}

/* ============================================
   HERO — Gradient Split Layout
   ============================================ */
.cathub-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #1A4B52 0%, #1A6B63 40%, #225E5A 100%);
    padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding, clamp(16px, 5vw, 60px)) 60px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.cathub-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 220, 199, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: cathub-float 18s infinite alternate ease-in-out;
}

.cathub-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 107, 99, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: cathub-float 22s infinite alternate-reverse ease-in-out;
}

.cathub-hero-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.cathub-hero-content {
    flex: 1.2;
    text-align: left;
}

.cathub-hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.cathub-hero-visual svg,
.cathub-hero-visual img.cathub-hero-visual-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
}

.cathub-hero-visual img.cathub-hero-visual-img {
    display: block;
    border-radius: 28px;
    aspect-ratio: 1;
    object-fit: cover;
}

.cathub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cathub-hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}

.cathub-hero-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cathub-hero h1 {
    font-size: var(--bloom-font-h1, clamp(2.5rem, 5vw, 3.8rem));
    font-weight: 800;
    color: #FFFFFF;
    line-height: var(--bloom-line-height-tight, 1.1);
    margin-bottom: 20px;
}

.cathub-hero h1 span {
    color: var(--cathub-mint-accent);
}

.cathub-hero-desc {
    font-size: var(--bloom-font-lead, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 28px;
}

.cathub-hero-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cathub-mint-accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.cathub-hero-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Wave Divider */
.cathub-wave-divider {
    width: 100%;
    display: block;
    margin-top: -1px;
    line-height: 0;
    background: linear-gradient(135deg, #1A4B52 0%, #1A6B63 40%, #225E5A 100%);
}

.cathub-wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ============================================
   SYMPTOM CHECKER — Dark Contrast Section
   ============================================ */
.cathub-symptom-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, var(--cathub-teal) 0%, var(--cathub-teal-dark) 100%);
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
    position: relative;
    overflow: hidden;
}

.cathub-symptom-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(126, 220, 199, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(26, 107, 99, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cathub-symptom-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
    position: relative;
    z-index: 1;
}

.cathub-symptom-header {
    text-align: center;
    margin-bottom: 48px;
}

.cathub-symptom-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cathub-symptom-header h2 span {
    color: var(--cathub-mint-accent);
}

.cathub-symptom-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cathub-symptom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.cathub-symptom-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.cathub-symptom-card:hover,
.cathub-symptom-card.checked {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(126, 220, 199, 0.25);
}

.cathub-symptom-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.cathub-symptom-card.checked .cathub-symptom-check {
    background: var(--cathub-mint-accent);
    border-color: var(--cathub-mint-accent);
}

.cathub-symptom-card.checked .cathub-symptom-check svg {
    opacity: 1;
}

.cathub-symptom-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--cathub-teal);
    stroke-width: 3;
    fill: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cathub-symptom-text h4 {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cathub-symptom-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.4;
}

.cathub-symptom-result {
    text-align: center;
    padding: 24px 32px;
    background: rgba(126, 220, 199, 0.1);
    border: 1px solid rgba(126, 220, 199, 0.2);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cathub-symptom-result.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cathub-symptom-result p {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.cathub-symptom-result span {
    color: var(--cathub-mint-accent);
}

/* ============================================
   REVEAL + STATS — Aha Moment
   ============================================ */
.cathub-reveal-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
    background: #FFFFFF;
}

.cathub-reveal-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
}

.cathub-reveal-capsule {
    background: var(--cathub-mint);
    border-radius: 24px;
    padding: 36px 40px;
    border-left: 5px solid var(--cathub-green);
    margin-bottom: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.cathub-reveal-capsule p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cathub-teal);
    font-weight: 500;
}

.cathub-reveal-capsule strong {
    color: var(--cathub-green);
    font-weight: 700;
}

.cathub-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cathub-stat-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 24px;
    background: var(--cathub-light);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cathub-stat-card:hover {
    transform: translateY(-2px);
}

.cathub-stat-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(26, 107, 99, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cathub-stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--cathub-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.cathub-stat-number span {
    color: var(--cathub-green);
}

.cathub-stat-label {
    font-size: 0.9rem;
    color: var(--cathub-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   PRODUCT SLIDER (keep existing, add dot bg)
   ============================================ */
.cathub-slider-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
    background-image: radial-gradient(circle, rgba(26, 75, 82, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cathub-slider-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
}

.cathub-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.cathub-slider-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: var(--cathub-teal);
    line-height: 1.15;
}

.cathub-slider-header h2 span {
    color: var(--cathub-green);
}

.cathub-slider-wrap { position: relative; }

.cathub-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

.cathub-slider-track::-webkit-scrollbar { display: none; }

.cathub-slider-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: #FFFFFF;
    border-radius: var(--bloom-radius-lg, 32px);
    border: 1px solid var(--cathub-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cathub-slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 75, 82, 0.1);
}

.cathub-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--cathub-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.cathub-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cathub-card-body { padding: 24px; }

.cathub-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cathub-green);
    background: var(--cathub-mint);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.cathub-card-badge svg { width: 12px; height: 12px; }

.cathub-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cathub-teal);
    margin-bottom: 8px;
}

.cathub-card-tagline {
    font-size: 0.95rem;
    color: var(--cathub-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cathub-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cathub-green);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
    justify-content: center;
}

.cathub-card-cta:hover {
    background: var(--cathub-teal);
    transform: translateY(-1px);
}

.cathub-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.cathub-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cathub-border);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    padding: 0;
}

.cathub-slider-dot.active {
    background: var(--cathub-green);
    transform: scale(1.2);
}

/* ============================================
   HOW IT WORKS — 3-Step Process
   ============================================ */
.cathub-howitworks {
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--cathub-mint);
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
}

.cathub-howitworks-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
}

.cathub-howitworks-header {
    text-align: center;
    margin-bottom: 56px;
}

.cathub-howitworks-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: var(--cathub-teal);
    line-height: 1.15;
}

.cathub-howitworks-header h2 span {
    color: var(--cathub-green);
}

.cathub-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.cathub-steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(90deg, var(--cathub-green), var(--cathub-teal));
    border-radius: 2px;
    opacity: 0.2;
}

.cathub-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cathub-step-icon-wrap {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--cathub-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(26, 107, 99, 0.12);
    position: relative;
}

.cathub-step-icon-wrap svg {
    width: 44px;
    height: 44px;
}

.cathub-step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--cathub-green);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cathub-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cathub-teal);
    margin-bottom: 10px;
}

.cathub-step-card p {
    font-size: 0.95rem;
    color: var(--cathub-text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================
   EDUCATIONAL SECTION — Enhanced
   ============================================ */
.cathub-edu-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--cathub-light);
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
}

.cathub-edu-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
}

.cathub-edu-header {
    text-align: center;
    margin-bottom: 48px;
}

.cathub-edu-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: var(--cathub-teal);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cathub-edu-header h2 span {
    color: var(--cathub-green);
}

.cathub-edu-capsule {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border-left: 5px solid var(--cathub-green);
    margin-bottom: 40px;
}

.cathub-edu-capsule p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cathub-teal);
    font-weight: 500;
}

.cathub-edu-capsule strong {
    color: var(--cathub-green);
}

.cathub-edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cathub-edu-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--cathub-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cathub-edu-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--cathub-green), var(--cathub-teal));
}

.cathub-edu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 75, 82, 0.08);
}

.cathub-edu-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E0F5EE 0%, #C8EDD8 100%);
}

.cathub-edu-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--cathub-green);
    fill: none;
    stroke-width: 1.8;
}

.cathub-edu-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cathub-teal);
    margin-bottom: 8px;
}

.cathub-edu-card p {
    font-size: 0.95rem;
    color: var(--cathub-text-muted);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS — Social Proof Cards
   ============================================ */
.cathub-testimonial-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cathub-mint) 100%);
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
}

.cathub-testimonial-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
}

.cathub-testimonial-header {
    text-align: center;
    margin-bottom: 48px;
}

.cathub-testimonial-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: var(--cathub-teal);
    line-height: 1.15;
}

.cathub-testimonial-header h2 span {
    color: var(--cathub-green);
}

.cathub-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cathub-testimonial-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(26, 75, 82, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--cathub-border);
}

.cathub-quote-mark {
    width: 36px;
    height: 36px;
    opacity: 0.12;
}

.cathub-star-row {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.cathub-star-row svg {
    width: 16px;
    height: 16px;
    fill: #F59E0B;
}

.cathub-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cathub-text);
    flex: 1;
    font-style: italic;
}

.cathub-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--cathub-border);
    padding-top: 16px;
}

.cathub-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cathub-green), var(--cathub-teal));
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cathub-reviewer-info {
    display: flex;
    flex-direction: column;
}

.cathub-reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cathub-teal);
}

.cathub-reviewer-meta {
    font-size: 0.78rem;
    color: var(--cathub-text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.cathub-faq-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
    background-image: radial-gradient(circle, rgba(26, 75, 82, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cathub-faq-inner {
    max-width: 800px;
    width: 100%;
}

.cathub-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.cathub-faq-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 700;
    color: var(--cathub-teal);
    line-height: 1.15;
}

.cathub-faq-header h2 span {
    color: var(--cathub-green);
}

.cathub-faq-item { border-bottom: 1px solid var(--cathub-border); }

.cathub-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cathub-teal);
    text-align: left;
    line-height: 1.4;
}

.cathub-faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--cathub-text-muted);
    transition: transform 0.3s ease;
}

.cathub-faq-item.active .cathub-faq-question svg {
    transform: rotate(180deg);
}

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

.cathub-faq-item.active .cathub-faq-answer {
    max-height: 300px;
}

.cathub-faq-answer-content {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--cathub-text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA STRIP — Enhanced
   ============================================ */
.cathub-cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #1A4B52 0%, #1A6B63 50%, #0D3A40 100%);
    padding: 60px var(--bloom-side-padding, clamp(16px, 5vw, 60px));
    position: relative;
    overflow: hidden;
}

.cathub-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 220, 199, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cathub-cta-inner {
    max-width: var(--bloom-standard-width);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cathub-cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.cathub-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.cathub-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cathub-mint-accent), #5BC4AB);
    color: var(--cathub-teal);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(126, 220, 199, 0.25);
}

.cathub-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(126, 220, 199, 0.35);
}

.cathub-cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cathub-cta-trust span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cathub-cta-trust svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    stroke-width: 2.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes cathub-float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-15px, 10px) scale(1.04); }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cathub-hero { min-height: auto; }

    .cathub-hero-inner {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }

    .cathub-hero-content { text-align: center; }
    .cathub-hero-desc { margin: 0 auto 28px; }

    .cathub-hero-trust-row { justify-content: center; }
    .cathub-hero-social { justify-content: center; }

    .cathub-hero-visual svg,
    .cathub-hero-visual img.cathub-hero-visual-img { max-width: 240px; }

    .cathub-hero h1 {
        font-size: var(--bloom-font-h1-mobile, 2.2rem);
    }

    .cathub-symptom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cathub-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cathub-slider-card {
        flex: 0 0 calc(50% - 12px);
    }

    .cathub-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cathub-steps-grid::before { display: none; }

    .cathub-edu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cathub-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .cathub-hero {
        padding: var(--bloom-hero-padding-top-mobile, 40px) var(--bloom-side-padding, 16px) 0;
    }

    .cathub-slider-card { flex: 0 0 85%; }
    .cathub-edu-grid { grid-template-columns: 1fr; }
    .cathub-edu-capsule { padding: 24px 20px; }
    .cathub-reveal-capsule { padding: 28px 24px; }

    .cathub-symptom-section,
    .cathub-reveal-section,
    .cathub-slider-section,
    .cathub-howitworks,
    .cathub-edu-section,
    .cathub-testimonial-section,
    .cathub-faq-section,
    .cathub-cta-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .cathub-symptom-grid { grid-template-columns: 1fr; }
    .cathub-stats-grid { grid-template-columns: 1fr 1fr; }
    .cathub-card-body { padding: 20px 16px; }
    .cathub-edu-card { padding: 24px 20px; }
    .cathub-stat-card { padding: 28px 16px; }
    .cathub-step-icon-wrap { width: 80px; height: 80px; }
    .cathub-step-icon-wrap svg { width: 36px; height: 36px; }

    .cathub-cta-trust { gap: 16px; }
}
