/* ═══════════════════════════════════════════════════════════
   AIRBID — category-detail.css
═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.cd-hero {
    position: relative;
    background-color: var(--primary);
    padding: 72px 0 80px;
    overflow: hidden;
}

.cd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: blur(3px);
    transform: scale(1.06);
}

.cd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0,40,51,0.97) 45%, rgba(23,62,75,0.82) 100%);
}

.cd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.cd-back-link:hover { color: #fff; }
.cd-back-link .material-symbols-outlined { font-size: 16px; }

.cd-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vibrant-coral);
    margin-bottom: 14px;
}

.cd-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
}

.cd-hero-highlight {
    color: var(--vibrant-coral);
}

.cd-hero-sub-line {
    color: rgba(255,255,255,0.65);
    font-size: 0.72em;
}

.cd-hero-desc {
    color: rgba(255,255,255,0.62);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
}

.cd-hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cd-hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.cd-hero-checks .material-symbols-outlined {
    font-size: 18px;
    color: var(--emerald-accent);
    font-variation-settings: 'FILL' 1;
}

.cd-btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: var(--radius-full);
    transition: border-color 0.2s, background 0.2s;
}
.cd-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* Hero visual */
.cd-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 8px;
}
.cd-hero-visual::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,107,92,0.18) 0%, rgba(0,178,169,0.12) 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.cd-hero-img-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.08) inset;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

.cd-hero-img-full {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cd-hero-img-card:hover .cd-hero-img-full {
    transform: scale(1.05);
}

.cd-hero-img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.cd-hero-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    color: #002833;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}
.cd-hero-img-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b2a9;
    box-shadow: 0 0 0 4px rgba(0,178,169,0.25);
    animation: cd-pulse 2s infinite;
}
@keyframes cd-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,178,169,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0,178,169,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,178,169,0); }
}

/* ── HOW IT WORKS ── */
.cd-how {
    background: #fff;
}
.cd-how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.cd-how-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cd-how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(240,107,100,0.25);
}
.cd-how-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vibrant-coral);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 24px rgba(240,107,100,0.3);
}
.cd-how-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
}
.cd-how-card p {
    font-size: 13px;
    color: var(--outline);
    line-height: 1.6;
    margin: 0;
}
.cd-how-arrow {
    color: var(--vibrant-coral);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cd-how-arrow .material-symbols-outlined { font-size: 28px; }

@media (max-width: 991.98px) {
    .cd-how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
    }
    .cd-how-arrow {
        transform: rotate(90deg);
    }
}

/* ── STATS BAR ── */
.cd-stats-bar {
    background: var(--deep-teal);
    padding: 20px 0;
}

.cd-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 16px;
}

.cd-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.cd-stat-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cd-stat-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
}

.cd-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── SUBCATEGORY GRID ── */
.cd-subcat-strip {
    padding: 48px 0;
    background: var(--surface-lowest);
    border-bottom: 1px solid var(--outline-variant);
}

.cd-subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.cd-subcat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface-low);
    border: 1.5px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--on-surface);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.22s;
}
.cd-subcat-card:hover {
    border-color: var(--vibrant-coral);
    background: rgba(240,107,100,0.05);
    color: var(--vibrant-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240,107,100,0.12);
}

.cd-subcat-icon {
    font-size: 20px;
    color: var(--vibrant-coral);
    font-variation-settings: 'FILL' 0;
    flex-shrink: 0;
}

.cd-subcat-name { flex: 1; }

.cd-subcat-arrow {
    font-size: 16px;
    color: var(--outline);
    transition: transform 0.2s, color 0.2s;
}
.cd-subcat-card:hover .cd-subcat-arrow {
    transform: translateX(3px);
    color: var(--vibrant-coral);
}

/* ── WHO WE HELP ── */
.col-lg-2dot4 {
    flex: 0 0 auto;
    width: 20%;
}

.cd-who-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.22s, transform 0.22s;
}
.cd-who-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.cd-who-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(240,107,100,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.cd-who-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--vibrant-coral);
}

.cd-who-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.cd-who-desc {
    font-size: 12.5px;
    color: var(--outline);
    line-height: 1.55;
    margin: 0;
}

.cd-section-sub {
    font-size: 15px;
    color: var(--on-surface-variant);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── OPEN TASKS ── */
.cd-tasks { background: var(--surface); }

.cd-tasks-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.cd-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76,195,155,0.1);
    border: 1px solid rgba(76,195,155,0.3);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    color: var(--emerald-accent);
    font-size: 13px;
    font-weight: 700;
}

.cd-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-accent);
    box-shadow: 0 0 0 3px rgba(76,195,155,0.3);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px rgba(76,195,155,0.3); }
    50%      { box-shadow: 0 0 0 7px rgba(76,195,155,0.08); }
}

.cd-task-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.cd-task-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    transform: translateY(-3px);
    border-color: rgba(240,107,100,0.3);
}

.cd-task-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.cd-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}
.cd-badge-sub {
    background: rgba(240,107,100,0.1);
    color: var(--vibrant-coral);
}

.cd-task-budget {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    white-space: nowrap;
}

.cd-task-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-teal);
    line-height: 1.35;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cd-task-desc {
    font-size: 13px;
    color: var(--outline);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cd-task-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cd-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--on-surface-variant);
}
.cd-meta-item .material-symbols-outlined { font-size: 13px; }

.cd-task-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--outline-variant);
    margin-top: auto;
}

.cd-poster {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--on-surface-variant);
}

.cd-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.cd-avatar-lg {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.cd-bid-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--vibrant-coral);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.2s;
}
.cd-bid-btn .material-symbols-outlined { font-size: 14px; }
.cd-bid-btn:hover {
    opacity: 0.88;
    color: #fff;
    box-shadow: 0 4px 14px rgba(240,107,100,0.4);
}

.cd-empty {
    background: var(--surface-lowest);
    border: 1.5px dashed var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 72px 32px;
    text-align: center;
}
.cd-empty-icon {
    font-size: 52px;
    color: var(--outline-variant);
    margin-bottom: 16px;
    display: block;
}
.cd-empty h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
}
.cd-empty p { font-size: 14px; color: var(--outline); margin-bottom: 0; }

/* ── TRUST ── */
.cd-trust-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cd-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--on-surface-variant);
}
.cd-trust-list .material-symbols-outlined {
    font-size: 20px;
    color: var(--emerald-accent);
    flex-shrink: 0;
}

.cd-trust-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: box-shadow 0.22s;
}
.cd-trust-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }

.cd-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(76,195,155,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.cd-trust-icon .material-symbols-outlined { font-size: 22px; color: var(--emerald-accent); }

.cd-trust-card h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 6px;
}
.cd-trust-card p { font-size: 13px; color: var(--outline); line-height: 1.55; margin: 0; }

/* ── TESTIMONIALS ── */
.cd-testimonials { background: var(--surface-low); }

.cd-review-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
}
.cd-review-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.cd-review-stars { display: flex; gap: 3px; }
.cd-review-stars .material-symbols-outlined { font-size: 18px; color: #f59e0b; }

.cd-review-text {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.65;
    flex: 1;
    margin: 0;
    font-style: italic;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cd-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--outline-variant);
}

.cd-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    overflow-wrap: break-word;
    word-break: break-word;
}
.cd-review-loc {
    font-size: 12px;
    color: var(--outline);
    margin-top: 2px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cd-reviews-empty {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 48px 24px;
}
.cd-reviews-empty-icon {
    font-size: 56px;
    color: var(--outline);
    margin-bottom: 16px;
    display: inline-block;
}
.cd-reviews-empty h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
}
.cd-reviews-empty p {
    font-size: 14px;
    color: var(--outline);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA BANNER ── */
.cd-cta-banner {
    position: relative;
    background: var(--primary);
    padding: 80px 0;
    overflow: hidden;
}

.cd-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(240,107,100,0.18) 0%, transparent 70%);
}

.cd-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cd-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

.cd-cta-fine {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ── PAGINATION ── */
.cd-pagination .pagination {
    gap: 4px;
    justify-content: center;
}
.cd-pagination .page-link {
    border-radius: var(--radius-md) !important;
    border-color: var(--outline-variant);
    color: var(--deep-teal);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
}
.cd-pagination .page-item.active .page-link {
    background: var(--vibrant-coral);
    border-color: var(--vibrant-coral);
    color: #fff;
}

/* ── SUBCATEGORY CHIP STRIP (sub-category detail page) ── */
.cd-subcat-chips-bar {
    background: var(--surface-lowest);
    border-bottom: 1px solid var(--outline-variant);
    padding: 14px 0;
}

.cd-subcat-chips-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.cd-subcat-chips-scroll::-webkit-scrollbar { display: none; }

.cd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--outline-variant);
    background: var(--surface-low);
    color: var(--on-surface-variant);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.cd-chip .material-symbols-outlined { font-size: 15px; }
.cd-chip:hover {
    border-color: var(--vibrant-coral);
    color: var(--vibrant-coral);
    background: rgba(240,107,100,0.06);
}
.cd-chip--active {
    background: var(--vibrant-coral);
    border-color: var(--vibrant-coral);
    color: #fff;
}
.cd-chip--active:hover {
    background: var(--vibrant-coral);
    color: #fff;
    opacity: 0.9;
}

/* ── SIDEBAR (sub-category detail page) ── */
.cd-sidebar-card {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cd-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    padding: 14px 18px;
    border-bottom: 1px solid var(--outline-variant);
    background: var(--surface-low);
    margin: 0;
}
.cd-sidebar-heading .material-symbols-outlined { font-size: 16px; }

.cd-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.cd-sidebar-list li { margin: 0; }

.cd-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.cd-sidebar-link .material-symbols-outlined { font-size: 16px; flex-shrink: 0; }
.cd-sidebar-link:hover {
    background: rgba(240,107,100,0.06);
    color: var(--vibrant-coral);
}
.cd-sidebar-link--active {
    color: var(--vibrant-coral);
    font-weight: 700;
    background: rgba(240,107,100,0.08);
}
.cd-sidebar-link--active .material-symbols-outlined { color: var(--vibrant-coral); }

.cd-sidebar-cta {
    background: var(--surface-lowest);
    border: 1px solid var(--outline-variant);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.cd-sidebar-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(240,107,100,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.cd-sidebar-cta-icon .material-symbols-outlined { font-size: 26px; color: var(--vibrant-coral); }
.cd-sidebar-cta h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 6px;
}
.cd-sidebar-cta p {
    font-size: 13px;
    color: var(--outline);
    line-height: 1.55;
    margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media (min-width: 1400px) {
    .cd-hero-img-card {
        max-width: 580px;
        margin-left: auto;
    }
}
@media (max-width: 991.98px) {
    .col-lg-2dot4 { width: 33.333%; }
    .cd-hero-visual {
        margin-bottom: 16px;
        padding: 0;
    }
    .cd-hero-visual::before {
        width: 90%;
        height: 90%;
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .cd-hero { padding: 48px 0 56px; }
    .cd-hero-title { font-size: 28px; }
    .cd-stat { padding: 0 20px; }
    .cd-stat-val { font-size: 20px; }
    .col-lg-2dot4 { width: 50%; }
    .cd-subcat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .cd-cta-banner { padding: 56px 0; }
    .cd-hero-img-badge {
        bottom: 14px;
        right: 14px;
        padding: 8px 12px;
        font-size: 12px;
    }
}
@media (max-width: 575.98px) {
    .cd-stats-inner { gap: 4px; }
    .cd-stat { padding: 0 12px; }
    .col-lg-2dot4 { width: 100%; }
    .cd-hero-img-card {
        border-radius: 18px;
    }
}
