/* =========================================================
   StarFort Play — Category & Sub-Category page stylesheet
   Used by: turnkey-solutions.html, amusement-equipment.html,
   themes-designs.html, venue-types.html, projects.html,
   resources.html and all *sub-pages* under /<category>/*.html
   ========================================================= */

/* ============== Sticky Tab Navigation ============== */
.page-tabs {
    position: sticky;
    top: 72px;
    z-index: 100;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
.page-tabs.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.page-tabs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.page-tabs-inner::-webkit-scrollbar { display: none; }

.tab-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}
.tab-item i {
    font-size: 0.95rem;
    opacity: 0.8;
}
.tab-item:hover {
    color: var(--primary);
    background: var(--bg-light);
}
.tab-item.active {
    color: white;
    background: var(--primary);
}
.tab-item.active i {
    opacity: 1;
}

/* Tab indicator animation */
.page-tabs-track {
    position: relative;
}
.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transition: left 0.3s ease, width 0.3s ease;
}

/* Mobile tabs */
@media (max-width: 768px) {
    .page-tabs {
        top: 60px;
    }
    .page-tabs-inner {
        justify-content: flex-start;
        padding: 10px 16px;
        gap: 4px;
    }
    .tab-item {
        padding: 8px 14px;
        font-size: 0.82rem;
        gap: 6px;
    }
    .tab-item i { font-size: 0.85rem; }
    .tab-item span { display: none; }
    .tab-item.show-text span { display: inline; }
}

@media (max-width: 480px) {
    .page-tabs { top: 56px; }
    .tab-item { padding: 8px 12px; }
}

/* ============== Page Hero ============== */
.page-hero {
    position: relative;
    padding: 45px 0 40px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    max-width: 100vw;
}
.product-hero {
    overflow: hidden;
    max-width: 100vw;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,26,53,0.55), rgba(11,26,53,0.7));
    pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 8px 0 10px;
    text-wrap: balance;
    color: white;
}
.page-hero h1 small {
    display: block;
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    margin-top: 12px;
    letter-spacing: 0.01em;
}
.page-hero p {
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 820px;
    color: rgba(255,255,255,0.92);
}
.page-hero p strong { color: var(--accent-light, #ffb085); }
.page-hero p em { color: var(--secondary-light, #7fdcff); font-style: normal; }
/* hero-desc: contains HTML content (h2, p) */
.page-hero .hero-desc {
    margin-top: 16px;
}
.page-hero .hero-desc h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: white;
}
.page-hero .hero-desc p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 12px;
    max-width: 820px;
    color: rgba(255,255,255,0.92);
}
.page-hero .hero-desc p:last-child { margin-bottom: 0; }
.page-hero .hero-desc a {
    color: var(--secondary-light, #7fdcff);
    text-decoration: underline;
    text-decoration-color: rgba(127, 220, 255, 0.4);
}
.page-hero .hero-desc a:hover {
    text-decoration-color: var(--secondary-light, #7fdcff);
}
.solution-hero p {
    margin: 0;
    max-width: 980px;
}
.solution-hero .hero-tag {
    margin-bottom: 12px;
}
.solution-hero .hero-meta,
.solution-hero .hero-actions {
    justify-content: flex-start;
}
.solution-hero .hero-actions {
    margin-top: 24px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}
.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
.hero-meta i { color: var(--accent-light, #ff944d); }

/* ============== Breadcrumb (Unified) ==============
   Works for both:
   A) <nav class="breadcrumb"><ol><li>...</li></ol></nav>
   B) <nav class="breadcrumb"><a/><i/><span/></nav>
   Default = light text on dark hero. Use `.breadcrumb-light`
   modifier for dark text on light backgrounds. */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin: 0 0 10px;
    padding: 0;
    font-size: 0.78rem;
    line-height: 1.3;
    color: rgba(255,255,255,0.72);
}
.breadcrumb ol {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: 1.3;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}
/* Chevron separator for ol/li pattern - drawn via CSS so no font dependency */
.breadcrumb li + li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.45;
    flex-shrink: 0;
}
/* Chevron icon for inline <i> pattern */
.breadcrumb > i,
.breadcrumb i.fas,
.breadcrumb i.fa {
    font-size: 0.6rem;
    opacity: 0.5;
    line-height: 1;
}
/* Links (both patterns) */
.breadcrumb a {
    color: inherit;
    text-decoration: none;
    opacity: 0.78;
    font-weight: 500;
    transition: opacity .2s ease, color .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}
.breadcrumb a:hover {
    opacity: 1;
    text-decoration: none;
}
/* Current page (both patterns) */
.breadcrumb [aria-current="page"],
.breadcrumb li:last-child:not(:first-child),
.breadcrumb > span:last-of-type {
    color: inherit;
    font-weight: 700;
    opacity: 1;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === Variant: on dark hero (page-hero, product-hero) === */
.page-hero .breadcrumb,
.product-hero .breadcrumb {
    color: rgba(255,255,255,0.78);
    margin-bottom: 8px;
}
.page-hero .breadcrumb a:hover,
.product-hero .breadcrumb a:hover {
    color: #fff;
    opacity: 1;
}
.page-hero .breadcrumb [aria-current="page"],
.product-hero .breadcrumb [aria-current="page"],
.page-hero .breadcrumb li:last-child:not(:first-child),
.product-hero .breadcrumb li:last-child:not(:first-child),
.page-hero .breadcrumb > span:last-of-type,
.product-hero .breadcrumb > span:last-of-type {
    color: #fff;
}

/* === Variant: light/standalone (above content, page top) === */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.breadcrumb-section .breadcrumb,
.breadcrumb-light {
    color: var(--text-muted);
    margin-bottom: 0;
}
.breadcrumb-section .breadcrumb a,
.breadcrumb-light a {
    color: var(--text-base);
    opacity: 0.85;
}
.breadcrumb-section .breadcrumb a:hover,
.breadcrumb-light a:hover {
    color: var(--accent);
    opacity: 1;
}
.breadcrumb-section .breadcrumb [aria-current="page"],
.breadcrumb-section .breadcrumb li:last-child:not(:first-child),
.breadcrumb-section .breadcrumb > span:last-of-type,
.breadcrumb-light [aria-current="page"],
.breadcrumb-light li:last-child:not(:first-child),
.breadcrumb-light > span:last-of-type {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 640px) {
    .breadcrumb,
    .breadcrumb ol { font-size: 0.78rem; gap: 4px 8px; }
    .breadcrumb [aria-current="page"],
    .breadcrumb li:last-child:not(:first-child),
    .breadcrumb > span:last-of-type { max-width: 200px; }
}

/* ============== Intro / SEO body block ============== */
.intro-section {
    padding: 80px 0 60px;
    background: white;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.intro-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--primary, #0B1A35);
    line-height: 1.2;
    margin-bottom: 20px;
    text-wrap: balance;
}
.intro-text h2 em { color: var(--accent, #FF6B1A); font-style: normal; }
.intro-text p {
    font-size: 1.0625rem;
    color: var(--text-base, #475569);
    line-height: 1.75;
    margin-bottom: 18px;
}
.intro-text p strong { color: var(--primary); font-weight: 700; }
.intro-text p em { color: var(--secondary-dark, #0077B6); font-style: italic; font-weight: 600; }
.intro-text a {
    color: var(--secondary-dark, #0077B6);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 119, 182, 0.3);
    transition: color .2s ease, border-color .2s ease;
}
.intro-text a:hover { color: var(--accent, #FF6B1A); border-bottom-color: currentColor; }
.intro-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(11,26,53,0.18);
    aspect-ratio: 4/3;
    background: var(--bg-light, #F1F5F9);
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light, #E2E8F0);
}
.intro-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent, #FF6B1A);
    line-height: 1;
}
.intro-stat span {
    font-size: 0.85rem;
    color: var(--text-muted, #64748B);
    margin-top: 6px;
    display: block;
}

/* ============== Section Heading ============== */
.section-head {
    margin-bottom: 40px;
}
.section-head.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-head .section-tag,
.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark, #0095d9));
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    color: var(--primary, #0B1A35);
    line-height: 1.2;
    margin-bottom: 10px;
    text-wrap: balance;
}
.section-head p { color: var(--text-muted, #64748B); font-size: 1.0625rem; line-height: 1.6; }

/* ============== Sub-category Card Grid ============== */
.subcategories-section {
    padding: 80px 0;
    background: var(--bg-light, #F1F5F9);
}
.subcat-grid {
    display: grid;
    gap: 28px;
}
.subcat-grid.grid-2x2 { grid-template-columns: repeat(2, 1fr); }
.subcat-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.subcat-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }

.subcat-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light, #E2E8F0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}
.subcat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11,26,53,0.12);
    border-color: transparent;
}
.subcat-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}
.subcat-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.subcat-card:hover .subcat-image img { transform: scale(1.06); }
.subcat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent, #FF6B1A);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(6px);
}
.subcat-tag.tag-blue { background: #2A6BFF; }
.subcat-tag.tag-green { background: #16a34a; }
.subcat-tag.tag-magenta { background: #D946EF; }
.subcat-tag.tag-cyan { background: #06B6D4; }
.subcat-tag.tag-cream { background: #C7A77B; color: #2A1A0A; }
.subcat-tag.tag-orange { background: #F97316; }
.subcat-tag.tag-steel { background: #475569; }

.subcat-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.subcat-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary, #0B1A35);
    margin-bottom: 6px;
    line-height: 1.25;
}
.subcat-body h3 a { color: inherit; }
.subcat-body h3 a:hover { color: var(--accent, #FF6B1A); }
.subcat-body .subcat-sub {
    color: var(--secondary-dark, #0077B6);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.subcat-body p {
    color: var(--text-base, #475569);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.subcat-body p strong { color: var(--primary, #0B1A35); }
.subcat-body p em { color: var(--secondary-dark, #0077B6); font-style: italic; font-weight: 600; }
.subcat-body p a {
    color: var(--secondary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,0.25);
}
.subcat-body p a:hover { color: var(--accent); }

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.feature-tags li {
    background: var(--bg-light, #F1F5F9);
    color: var(--text-base, #475569);
    border: 1px solid var(--border-light, #E2E8F0);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.78rem;
    font-weight: 600;
}

.card-link {
    color: var(--accent, #FF6B1A);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap .2s ease;
}
.subcat-card:hover .card-link { gap: 12px; }

/* Cross-link tags (SEO internal links as pill badges) */
.cross-link-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin: 14px 0 16px;
}
.cross-link-tags .tag-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 4px;
}
.cross-link-tags a {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-base);
    transition: all .2s ease;
}
.cross-link-tags a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-1px);
}

/* Theme & Equipment Pairing Section */
.pairing-section {
    padding: 70px 0;
    background: var(--bg-light);
}
.pairing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pairing-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 26px 22px;
    text-align: center;
    transition: all .25s ease;
}
.pairing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,26,53,0.08);
    border-color: var(--secondary);
}
.pairing-card .pairing-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(0,183,255,0.12), rgba(0,183,255,0.04));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-dark);
}
.pairing-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}
.pairing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.pairing-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border-light);
}
.pairing-list li:last-child { border-bottom: none; }
.pairing-list a {
    font-size: 0.875rem;
    color: var(--text-base);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Pairing card with small image instead of icon */
.pairing-card--img {
    padding: 0;
    overflow: hidden;
}
.pairing-card--img .pairing-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-light);
}
.pairing-card--img .pairing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pairing-card--img:hover .pairing-img img {
    transform: scale(1.06);
}
.pairing-card--img .pairing-body {
    padding: 18px 20px 22px;
}
.pairing-card--img h4 {
    margin-bottom: 12px;
    transition: color .2s ease;
}
.pairing-list a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free", FontAwesome;
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--secondary);
}
.pairing-list a:hover { color: var(--accent); }

/* Related Resources Grid */
.related-section {
    padding: 70px 0;
    background: white;
    border-top: 1px solid var(--border-light);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all .25s ease;
}
.related-card:hover {
    background: white;
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,26,53,0.08);
}
.related-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 14px;
}
.related-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.related-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .pairing-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pairing-grid, .related-grid { grid-template-columns: 1fr; }
    .cross-link-tags { margin: 10px 0 12px; }
}

/* mini variant (used for resources hub) */
.subcat-card.mini { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
.subcat-card.mini .card-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent, #FF6B1A), var(--accent-light, #ff944d));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 10px 24px rgba(255,107,26,0.25);
}
.subcat-card.mini .subcat-body { padding: 0; }
.subcat-card.mini h3 { margin-bottom: 10px; }

/* Photo-hero variant of .subcat-card.mini (real scene image instead of icon tile) */
.subcat-card.mini.has-photo {
    padding: 0;
    align-items: stretch;
    text-align: left;
}
.subcat-card.mini.has-photo .card-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    background: var(--bg-light, #F1F5F9);
    overflow: hidden;
    display: block;
    position: relative;
    box-shadow: none;
    margin-bottom: 0;
}
.subcat-card.mini.has-photo .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.subcat-card.mini.has-photo:hover .card-icon img { transform: scale(1.06); }
.subcat-card.mini.has-photo .card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,53,0) 55%, rgba(11,26,53,0.22));
    pointer-events: none;
}
.subcat-card.mini.has-photo .subcat-body {
    padding: 22px 24px 26px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

/* ============== Process Strip ============== */
.process-strip {
    padding: 80px 0;
    background: white;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}
.process-steps li {
    counter-increment: step;
    background: var(--bg-light, #F1F5F9);
    border: 1px solid var(--border-light, #E2E8F0);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
    position: relative;
}
.process-steps li:hover { transform: translateY(-4px); border-color: var(--secondary, #00B7FF); }
.process-steps li::before {
    content: counter(step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent, #FF6B1A), var(--accent-light, #ff944d));
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255,107,26,0.25);
}
.process-steps strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary, #0B1A35);
    font-size: 1rem;
    margin-bottom: 4px;
}
.process-steps span {
    font-size: 0.78rem;
    color: var(--text-muted, #64748B);
    line-height: 1.5;
    display: block;
}

/* ============== Featured Projects (case mini) ============== */
.featured-projects {
    padding: 80px 0;
    background: var(--bg-light, #F1F5F9);
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.case-mini {
    display: block;
    background: white;
    border: 1px solid var(--border-light, #E2E8F0);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.case-mini:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(11,26,53,0.12); }
.case-mini img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.case-mini > div { padding: 22px; }
.case-loc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark, #0077B6);
    font-weight: 700;
}
.case-mini h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary, #0B1A35);
    margin: 8px 0 12px;
}
.case-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,107,26,0.1);
    color: var(--accent, #FF6B1A);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.case-mini > div p { font-size: 0.92rem; color: var(--text-muted, #475569); line-height: 1.6; margin: 0 0 14px; }
.case-mini > div p a {
    color: var(--secondary-dark, #0077B6);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,0.25);
    transition: color .2s ease, border-color .2s ease;
}
.case-mini > div p a:hover { color: var(--accent, #FF6B1A); border-bottom-color: currentColor; }

/* SEO Link Cards - compact cards with small images */
.seo-links-section {
    padding: 60px 0;
    background: var(--bg-light, #F8FAFC);
}
.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.seo-link-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.seo-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,26,53,0.12);
}
.seo-link-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.seo-link-card .card-body {
    padding: 16px;
}
.seo-link-card .card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary, #00A8E8);
    margin-bottom: 6px;
}
.seo-link-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary, #0B1A35);
    margin: 0 0 6px;
    line-height: 1.3;
}
.seo-link-card p {
    font-size: 0.8rem;
    color: var(--text-muted, #64748B);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) {
    .seo-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .seo-links-section { padding: 40px 0; }
    .seo-links-grid { grid-template-columns: 1fr; gap: 16px; }
    .seo-link-card { flex-direction: row; }
    .seo-link-card img { width: 100px; height: 80px; flex-shrink: 0; }
    .seo-link-card .card-body { padding: 12px; }
    .seo-link-card h4 { font-size: 0.9rem; }
    .category-overview-card { padding: 22px 18px; }
}
.case-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    margin-left: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent, #FF6B1A);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .25s ease;
}
.case-mini-link::after { content: '\2192'; transition: transform .25s ease; }
.case-mini:hover .case-mini-link { gap: 10px; }
.case-mini:hover .case-mini-link::after { transform: translateX(2px); }

/* ============== CTA Band ============== */
.cta-band {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary, #0B1A35) 0%, #1B3766 100%);
    color: white;
}
.cta-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.cta-flex h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-wrap: balance;
}
.cta-flex p { font-size: 1.0625rem; color: rgba(255,255,255,0.85); margin: 0; }
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 10px;
    transition: background .2s, transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-whatsapp:hover { background: #1FAE53; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.35); }

/* ============== Anchored Equipment Sections (used on equipment category sub-pages) ============== */
.eq-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light, #E2E8F0);
    scroll-margin-top: 100px;
}
.eq-section:nth-child(even) { background: var(--bg-light, #F1F5F9); }
.eq-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.eq-grid.reverse { grid-template-columns: 1.1fr 1fr; }
.eq-grid.reverse .eq-content { order: 2; }
.eq-grid.reverse .eq-image { order: 1; }
.eq-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(11,26,53,0.15);
    aspect-ratio: 4/3;
}
.eq-image img { width: 100%; height: 100%; object-fit: cover; }
.eq-content .eq-tag {
    display: inline-block;
    background: rgba(0,183,255,0.1);
    color: var(--secondary-dark, #0077B6);
    border: 1px solid rgba(0,183,255,0.25);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eq-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--primary, #0B1A35);
    line-height: 1.2;
    margin-bottom: 16px;
}
.eq-content > p {
    color: var(--text-base);
    line-height: 1.75;
    margin-bottom: 20px;
}
.eq-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.eq-specs li {
    color: var(--text-base);
    font-size: 0.9375rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.55;
}
.eq-specs li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: var(--accent, #FF6B1A);
    font-size: 0.85rem;
}
.eq-specs li strong { color: var(--primary, #0B1A35); }

/* ============== FAQ block (shared) ============== */
.faq-block,
.faq-section {
    padding: 80px 0;
    background: white;
}
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px 24px;
    transition: all .25s ease;
}
.faq-item[open] { background: white; border-color: var(--secondary, #00B7FF); box-shadow: 0 12px 28px rgba(11,26,53,0.08); }
.faq-item summary {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent);
    line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 14px; line-height: 1.7; color: var(--text-muted); }
.faq-item p a { color: var(--secondary-dark); font-weight: 600; text-decoration: underline; }

/* FAQ split layout: left FAQ + right contact form (50/50) */
.faq-section--split .faq-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.faq-section--split .faq-list {
    max-width: none;
    margin: 0;
}
.faq-section--split .faq-item { padding: 14px 18px; }
.faq-section--split .faq-item summary { font-size: 0.9rem; }
.faq-section--split .faq-item p { font-size: 0.85rem; margin-top: 8px; line-height: 1.6; }
.faq-section--split .faq-contact-form {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
}
.faq-section--split .faq-contact-form h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--primary);
}
.faq-section--split .faq-contact-form > p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.faq-section--split .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.faq-section--split .form-group { margin-bottom: 12px; }
.faq-section--split .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}
.faq-section--split .form-group input,
.faq-section--split .form-group textarea,
.faq-section--split .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}
.faq-section--split .form-group input:focus,
.faq-section--split .form-group textarea:focus,
.faq-section--split .form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,183,255,0.1);
}
.faq-section--split .form-group textarea { min-height: 80px; resize: vertical; }
.faq-section--split .btn-submit {
    width: 100%;
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.faq-section--split .btn-submit:hover { background: var(--accent-dark, #E85A00); transform: translateY(-1px); }
.faq-section--split .form-footer {
    margin-top: 16px;
    text-align: center;
}
.faq-section--split .form-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #25D366;
}
.faq-section--split .form-footer a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .faq-section--split .faq-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-section--split .faq-contact-form { position: static; }
}

/* ============== Specs Compare Section ============== */
.specs-compare-section {
    padding: 70px 0;
    background: white;
}
.specs-table--compare {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11,26,53,0.08);
}
.specs-table--compare thead {
    background: var(--primary);
    color: white;
}
.specs-table--compare th {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
}
.specs-table--compare th:first-child {
    width: 200px;
}
.specs-table--compare td {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}
.specs-table--compare tbody tr:nth-child(even) {
    background: var(--bg-light);
}
.specs-table--compare tbody tr:last-child td {
    border-bottom: none;
}
.specs-table--compare tbody tr:hover {
    background: rgba(0, 183, 255, 0.05);
}
.table-wrap {
    overflow-x: auto;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .specs-table--compare th,
    .specs-table--compare td {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
    .specs-table--compare th:first-child {
        width: 120px;
    }
}

/* ============== Features Grid Section ============== */
.features-section {
    padding: 70px 0;
    background: var(--bg-light);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.feature-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all .25s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11,26,53,0.1);
    border-color: var(--secondary);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.feature-icon i {
    font-size: 1.4rem;
    color: white;
}
.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}
@media (max-width: 991px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 22px 18px; }
}

/* ============== Sub-page Article Layout ============== */
.article-layout {
    padding: 70px 0;
    background: white;
}
.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 60px;
    align-items: start;
}
.article-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-base);
}
.article-prose h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin: 36px 0 16px;
    line-height: 1.3;
}
.article-prose h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 12px;
}
.article-prose p { margin-bottom: 18px; }
.article-prose strong { color: var(--primary); font-weight: 700; }
.article-prose em { color: var(--secondary-dark); font-style: italic; font-weight: 600; }
.article-prose a {
    color: var(--secondary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,0.3);
}
.article-prose a:hover { color: var(--accent); border-bottom-color: currentColor; }
.article-prose ul, .article-prose ol {
    padding-left: 22px;
    margin-bottom: 22px;
}
.article-prose ul li, .article-prose ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-prose blockquote {
    margin: 24px 0;
    padding: 22px 26px;
    border-left: 4px solid var(--accent);
    background: var(--bg-light);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary);
}
.article-prose img {
    width: 100%;
    border-radius: 14px;
    margin: 28px 0;
    box-shadow: 0 18px 40px rgba(11,26,53,0.12);
}
.article-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9375rem;
}
.article-prose table th,
.article-prose table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    text-align: left;
}
.article-prose table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-block {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 22px;
}
.sidebar-block h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sidebar-block ul { list-style: none; padding: 0; margin: 0; }
.sidebar-block li { padding: 8px 0; border-bottom: 1px dashed var(--border-light); }
.sidebar-block li:last-child { border-bottom: 0; }
.sidebar-block a { color: var(--text-base); font-size: 0.9375rem; }
.sidebar-block a:hover { color: var(--accent); }

/* Cross-link cluster */
.cross-links {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
}
.cross-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.cross-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 22px;
    transition: all .25s ease;
}
.cross-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(11,26,53,0.08); border-color: var(--secondary); }
.cross-card span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark);
    font-weight: 700;
}
.cross-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0 8px;
}
  .cross-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
  .cross-card p a {
  color: var(--secondary-dark, #0077B6);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,119,182,0.25);
  transition: color .2s ease, border-color .2s ease;
  }
  .cross-card p a:hover { color: var(--accent, #FF6B1A); border-bottom-color: currentColor; }
  .cross-card .cross-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent, #FF6B1A);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap .25s ease;
  }
  .cross-card .cross-card-link::after { content: '\2192'; transition: transform .25s ease; }
  .cross-card:hover .cross-card-link { gap: 10px; }
  .cross-card:hover .cross-card-link::after { transform: translateX(2px); }

/* ============== Responsive ============== */
@media (max-width: 1024px) {
    .subcat-grid.grid-2x2,
    .subcat-grid.grid-3,
    .subcat-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .eq-grid, .eq-grid.reverse { grid-template-columns: 1fr; gap: 30px; }
    .eq-grid.reverse .eq-content { order: 1; }
    .eq-grid.reverse .eq-image { order: 2; }
    .article-grid { grid-template-columns: 1fr; gap: 40px; }
    .article-sidebar { position: static; }
    .cross-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .page-hero { padding: 60px 0 50px; }
    .subcat-grid.grid-2x2,
    .subcat-grid.grid-3,
    .subcat-grid.grid-4,
    .case-grid,
    .cross-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .eq-specs { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
    .cta-flex { flex-direction: column; align-items: flex-start; text-align: left; }
    .subcategories-section, .intro-section, .process-strip, .featured-projects, .faq-block, .article-layout { padding: 50px 0; }
}

/* ============== Page Intro (simple text block) ============== */
.page-intro {
    padding: 70px 0 50px;
    background: white;
}
.page-intro .intro-block { max-width: 920px; }
.page-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 18px;
    text-wrap: balance;
}
.page-intro p {
    font-size: 1.0625rem;
    color: var(--text-base);
    line-height: 1.75;
    margin-bottom: 16px;
}
.page-intro p strong { color: var(--primary); font-weight: 700; }
.page-intro p a {
    color: var(--secondary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,0.3);
    transition: all .2s ease;
}
.page-intro p a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============== Hero Tag and Hero Actions ============== */
.hero-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,107,26,0.18);
    color: var(--accent-light, #ffb085);
    border: 1px solid rgba(255,107,26,0.4);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 10px;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-light:hover { background: white; color: var(--primary); border-color: white; }

/* ============== Category Section Index (Static, scrolls with page) ==============
   Sits as a clean static index at the top of the equipment section. Does NOT
   follow the viewport — scrolls away naturally to give body content full focus. */
.category-anchor-nav {
    position: static;
    background: white;
    border-top: 1px solid rgba(11,26,53,0.06);
    border-bottom: 1px solid rgba(11,26,53,0.06);
    box-shadow: none;
}
.category-anchor-nav .container { position: relative; }
.category-anchor-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    overflow-x: auto;
    gap: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-anchor-nav ul::-webkit-scrollbar { display: none; }
.category-anchor-nav li { flex-shrink: 0; }
.category-anchor-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 9px;
    color: var(--text-muted, #64748B);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
}
.category-anchor-nav a i {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--secondary-dark, #0077B6);
    transition: color .2s ease;
    flex-shrink: 0;
}
.category-anchor-nav a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 6px;
    background: var(--bg-light, #F1F5F9);
    color: var(--text-muted);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 9px;
    transition: all .2s ease;
}
.category-anchor-nav a:hover {
    background: var(--bg-light, #F1F5F9);
    color: var(--primary);
}
.category-anchor-nav a:hover i { color: var(--accent); }
.category-anchor-nav a.is-active {
    background: var(--primary, #0B1A35);
    color: white;
    border-color: transparent;
}
.category-anchor-nav a.is-active i { color: var(--accent); }
.category-anchor-nav a.is-active span {
    background: var(--accent);
    color: white;
}
/* Edge fade so scrolled items visually fade beyond container */
.category-anchor-nav .container::before,
.category-anchor-nav .container::after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: 28px;
    z-index: 5;
    pointer-events: none;
}
.category-anchor-nav .container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95), transparent);
}
.category-anchor-nav .container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.95), transparent);
}
@media (max-width: 768px) {
    .category-anchor-nav { top: 64px; }
    .category-anchor-nav ul { padding: 6px 0; gap: 3px; }
    .category-anchor-nav a { font-size: 0.78rem; padding: 6px 12px 6px 8px; gap: 6px; }
    .category-anchor-nav a i { width: 20px; height: 20px; font-size: 0.7rem; }
    .category-anchor-nav .container::before,
    .category-anchor-nav .container::after { width: 20px; }
}

/* ============== Section Heading Row ============== */
.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.section-heading-row > div { flex: 1 1 60%; min-width: 260px; }
.section-heading-row .section-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid;
    background: rgba(0,183,255,0.1);
    color: var(--secondary-dark);
    border-color: rgba(0,183,255,0.25);
}
.section-heading-row h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0 12px;
    line-height: 1.15;
}
.section-heading-row p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 720px;
    margin: 0;
}
.section-heading-row p a {
    color: var(--secondary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,183,255,0.3);
}
.section-heading-row p a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.section-heading-row .section-link {
    align-self: flex-end;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
}
.section-heading-row .section-link:hover { gap: 14px; }

/* ============== Equipment Matrix (6-card grid for hub page) ============== */
.equipment-matrix {
    padding: 30px 0 70px;
    background: white;
}

/* ============== Why Choose Section ============== */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.why-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 32px 28px 30px;
    text-align: left;
    transition: transform .35s cubic-bezier(0.4,0,0.2,1), box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #FF6B1A), var(--secondary, #00B7FF));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(11,26,53,0.10);
    border-color: rgba(255,107,26,0.25);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card i {
    font-size: 1.55rem;
    color: var(--accent, #FF6B1A);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,107,26,0.14), rgba(255,107,26,0.04));
    box-shadow: 0 6px 18px rgba(255,107,26,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform .35s cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover i { transform: rotate(-6deg) scale(1.06); }
/* Alternating accent (orange / cyan) so the row reads as a designed set */
.why-card:nth-child(2n) i {
    color: var(--secondary-dark, #0091CC);
    background: linear-gradient(135deg, rgba(0,183,255,0.14), rgba(0,183,255,0.04));
    box-shadow: 0 6px 18px rgba(0,183,255,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.075rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.why-card p { color: var(--text-muted); line-height: 1.65; font-size: 0.9rem; margin: 0; }
.why-card a { color: var(--secondary-dark, #0091CC); border-bottom: 1px dotted rgba(0,183,255,0.35); transition: color .2s, border-color .2s; }
.why-card a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Photo-hero variant of .why-card (real scene image instead of icon tile) */
.why-grid--photo .why-card { padding: 0; display: flex; flex-direction: column; }
.why-grid--photo .why-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}
.why-grid--photo .why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(0.4,0,0.2,1);
}
.why-grid--photo .why-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,53,0) 55%, rgba(11,26,53,0.18));
    pointer-events: none;
}
.why-grid--photo .why-card:hover .why-card-media img { transform: scale(1.06); }
.why-grid--photo .why-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.why-grid--photo .why-card-body h4 { margin: 0; }
.why-grid--photo .why-card-body p { margin: 0; }

/* Small-photo variant: compact image + text side-by-side for engineering sections */
.why-grid--photo-sm .why-card {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 140px;
}
.why-grid--photo-sm .why-card-media {
    position: relative;
    width: 140px;
    min-width: 140px;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 18px 0 0 18px;
}
.why-grid--photo-sm .why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(0.4,0,0.2,1);
}
.why-grid--photo-sm .why-card:hover .why-card-media img { transform: scale(1.08); }
.why-grid--photo-sm .why-card-body {
    padding: 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.why-grid--photo-sm .why-card-body h4 { margin: 0; font-size: 1rem; }
.why-grid--photo-sm .why-card-body p { margin: 0; font-size: 0.85rem; line-height: 1.55; }
@media (max-width: 900px) {
    .why-grid--photo-sm .why-card { flex-direction: column; }
    .why-grid--photo-sm .why-card-media { width: 100%; min-width: unset; aspect-ratio: 16/9; border-radius: 18px 18px 0 0; }
}

/* ============== Cross-Link Section ============== */
  .cross-section,
  .cases-section {
  padding: 70px 0;
  background: white;
  border-top: 1px solid var(--border-light);
  }
.cross-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}
.cross-section .cross-grid { grid-template-columns: repeat(4, 1fr); }
.cross-section .cross-card { padding: 24px; text-align: center; }
.cross-section .cross-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,107,26,0.1);
}
.cross-section .cross-card h4 { margin: 6px 0 6px; }

/* ============== CTA Section (with gradient bg) ============== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #1B3766);
    color: white;
    text-align: center;
}
.cta-content { max-width: 720px; margin: 0 auto; }
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-wrap: balance;
}
.cta-section p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ============== Product List Grid (Equipment Category Pages) ============== */
.product-list-section {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 140px;
}
.product-list-section.alt {
    background: var(--bg-light);
}
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.product-list-grid.cols-4,
.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.product-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 160px;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(11,26,53,0.12);
    border-color: transparent;
}
.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-card-img img,
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card-image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}
.product-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,26,53,0) 60%, rgba(11,26,53,0.4) 100%);
}
.product-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 10px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
}
.product-card-tag.new { background: #10B981; }
.product-card-tag.hot { background: #EF4444; }
.product-card-tag.flag { background: #8B5CF6; }
.product-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.product-meta i {
    color: var(--secondary-dark);
}
.product-card-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap .2s ease;
}
.product-card:hover .product-card-link { gap: 12px; }

/* Product List - alt style without image (anchor entries) */
.anchor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.anchor-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all .25s ease;
}
.anchor-item:hover {
    background: white;
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(11,26,53,0.08);
}
.anchor-item .anchor-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.anchor-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.anchor-item h4 a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .25s ease, color .2s ease;
}
.anchor-item:hover h4 a { color: var(--accent, #FF6B1A); background-size: 100% 1px; }
.anchor-item p {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.anchor-item p a {
    color: var(--secondary-dark, #0077B6);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,119,182,0.25);
    transition: color .2s ease, border-color .2s ease;
}
.anchor-item p a:hover { color: var(--accent, #FF6B1A); border-bottom-color: currentColor; }

/* ============== Product Detail Page Hero ============== */
.product-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}
.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 26, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 183, 255, 0.15), transparent 50%);
}
.product-hero .container {
    position: relative;
    z-index: 1;
}
.product-hero .product-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.product-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    text-wrap: balance;
    color: white;
}
.product-hero .product-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    max-width: 700px;
}
.family-product-hero {
    display: block;
    align-items: initial;
    min-height: 280px;
    padding: 28px 0 48px;
}
.family-product-hero .breadcrumb {
    margin-bottom: 4px;
}
.product-overview-section {
    padding-top: 44px;
}
.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.product-grid > * {
    min-width: 0;
    max-width: 100%;
}
/* Product Image Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-image-main {
    border-radius: 14px;
    overflow: hidden;
    height: 380px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    border: 3px solid rgba(255,255,255,0.2);
    transition: background-image 0.3s ease;
    cursor: zoom-in;
}
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.product-thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.product-thumb:hover {
    opacity: 1;
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.product-thumb.active {
    opacity: 1;
    border-color: var(--accent, #FF6B1A);
    box-shadow: 0 0 0 2px var(--accent, #FF6B1A), 0 6px 16px rgba(255,107,26,0.3);
}
/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #0B1A35);
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 10;
}
.gallery-nav:hover {
    background: var(--accent, #FF6B1A);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }
.product-gallery-wrapper {
    position: relative;
}
.product-info .product-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.product-info h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    text-wrap: balance;
}
.product-info .product-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 24px;
}
.product-quick-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
}
.product-quick-specs > * {
    min-width: 0;
}
.product-quick-specs .qs-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 16px;
}
.product-quick-specs .qs-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}
.product-quick-specs .qs-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
}
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============== Product Detail Body ============== */
.product-body {
    padding: 80px 0;
    background: white;
}
.product-body-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}
.product-body-grid > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.product-body-grid img {
    max-width: 100%;
    height: auto;
}
.product-body h2 {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 18px;
    text-wrap: balance;
}
.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 12px;
}
.product-body p {
    color: var(--text-base);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 18px;
}
.product-body ul {
    margin: 0 0 22px 22px;
    padding: 0;
}
.product-body ul li {
    color: var(--text-base);
    line-height: 1.7;
    margin-bottom: 8px;
}
.product-body a {
    color: var(--secondary-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 183, 255, 0.3);
    transition: all .2s ease;
}
.product-body a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 26px;
    font-size: 0.95rem;
    table-layout: fixed;
}
.specs-table th, .specs-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.specs-table th {
    width: 40%;
}
.specs-table th {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
    width: 40%;
}
.product-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 26px;
}
.product-sidebar h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.product-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.product-sidebar li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-light);
}
.product-sidebar li:last-child { border-bottom: none; }
.product-sidebar li a {
    color: var(--text-base);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease;
}
.product-sidebar li a:hover { color: var(--accent); }
.product-sidebar li i { color: var(--secondary-dark); }
.product-sidebar .sb-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
}
.product-sidebar .sb-cta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.product-sidebar .sb-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}
.product-sidebar .sb-cta a.btn {
    background: white;
    color: var(--accent);
    border: none;
    width: 100%;
    justify-content: center;
}

/* ============== Cross-link Triangle (Venues + Projects + Related Equipment) ============== */
.triangle-section {
    padding: 70px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}
.triangle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.triangle-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.triangle-block h3 i {
    color: var(--accent);
    font-size: 1.4rem;
}
.triangle-block .tb-sub {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 18px;
}
.triangle-link {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all .25s ease;
}
.triangle-link:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 14px 30px rgba(11,26,53,0.08);
}
.triangle-link .tl-img {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}
.triangle-link .tl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.triangle-link .tl-text {
    flex: 1;
    min-width: 0;
}
.triangle-link h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.3;
}
.triangle-link p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .product-list-grid { grid-template-columns: repeat(2, 1fr); }
    .product-list-grid.cols-4, .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .product-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-image-main { height: 360px; }
    .product-body-grid { grid-template-columns: 1fr; }
    .product-sidebar { position: static; }
    .triangle-grid { grid-template-columns: 1fr; gap: 30px; }
    .anchor-list { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .cross-section .cross-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading-row { flex-direction: column; align-items: flex-start; }
    .section-heading-row .section-link { align-self: flex-start; padding-bottom: 0; }
}
@media (max-width: 640px) {
    .product-list-grid { grid-template-columns: 1fr; }
    .product-list-grid.cols-4, .product-grid-4 { grid-template-columns: 1fr; }
    .product-grid-2 { grid-template-columns: 1fr; }
    .product-quick-specs { grid-template-columns: 1fr; }
    .product-image-main { height: 280px; }
    .why-grid { grid-template-columns: 1fr; }
    .cross-section .cross-grid { grid-template-columns: 1fr; }
    .category-anchor-nav { top: 64px; }
    .category-anchor-nav a { padding: 14px 14px; font-size: 0.8rem; }
    .product-list-section { padding: 50px 0; }
    .why-section, .cross-section, .cta-section { padding: 50px 0; }
    .equipment-matrix { padding: 20px 0 50px; }
    .page-intro { padding: 50px 0 30px; }
    
    /* Product cards mobile */
    .product-card-img { height: 200px; }
    .product-card-body { padding: 18px 16px; }
    .product-card-body h3 { font-size: 1rem; }
    .product-meta { flex-wrap: wrap; gap: 8px; }
    .product-meta span { font-size: 0.75rem; }
    
    /* Section headers mobile */
    .section-head h2 { font-size: 1.5rem; }
    .section-head p { font-size: 0.9rem; }
    
    /* Hero mobile */
    .product-hero { padding: 100px 0 60px; }
    .family-product-hero { padding: 72px 0 52px; }
    .product-hero h1 { font-size: 1.5rem; }
    .product-hero .product-lead { font-size: 0.95rem; }
    
    /* Product Gallery mobile */
    .product-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-gallery { order: -1; }
    .product-gallery-wrapper { position: relative; }
    .product-image-main, .gallery-main { 
        height: 240px; 
        border-radius: 10px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .product-thumbnails { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 8px;
        margin-top: 10px;
    }
    .product-thumb { 
        aspect-ratio: 1; 
        border-radius: 6px;
        -webkit-tap-highlight-color: transparent;
    }
    .gallery-nav { 
        width: 34px; 
        height: 34px; 
        font-size: 0.85rem;
        opacity: 0.9;
    }
    .gallery-nav.prev { left: 8px; }
    .gallery-nav.next { right: 8px; }
    .product-quick-specs { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-quick-specs .qs-item { padding: 10px 12px; }
    .product-actions { flex-direction: column; gap: 10px; }
    .product-actions .btn { width: 100%; justify-content: center; }
    
    /* Specs table mobile */
    .table-wrap { margin: 20px -16px 0; padding: 0 16px; }
    .specs-table--compare { font-size: 0.8rem; }
    
    /* Features mobile */
    .feature-card { padding: 20px 16px; }
    .feature-icon { width: 48px; height: 48px; }
    .feature-icon i { font-size: 1.2rem; }
    .feature-card h4 { font-size: 0.95rem; }
    .feature-card p { font-size: 0.85rem; }
    
    /* CTA band mobile */
    .cta-band { padding: 40px 0; }
    .cta-flex { flex-direction: column; text-align: center; gap: 20px; }
    .cta-flex h2 { font-size: 1.25rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .product-image-main, .gallery-main { height: 200px; }
    .product-thumbnails { gap: 6px; }
    .product-thumb { border-radius: 4px; }
    .gallery-nav { width: 30px; height: 30px; font-size: 0.75rem; }
    .gallery-nav.prev { left: 6px; }
    .gallery-nav.next { right: 6px; }
    .product-quick-specs { grid-template-columns: 1fr; }
    .breadcrumb { font-size: 0.7rem; gap: 3px 6px; }
    .breadcrumb i { font-size: 0.5rem; }
    
    /* Triangle links mobile */
    .triangle-section { padding: 50px 0; }
    .triangle-links { flex-direction: column; gap: 16px; }
    .triangle-link { flex-direction: row; padding: 16px; }
    .tl-img { width: 80px; height: 80px; border-radius: 10px; flex-shrink: 0; }
    .tl-text { text-align: left; }
    .tl-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
    .tl-text p { font-size: 0.8rem; }
}

/* ============== Venue × Solution Pairing Matrix ============== */
.venue-matrix {
    padding: 80px 0;
    background: var(--bg-light, #F8FAFC);
    border-top: 1px solid var(--border-light, #E2E8F0);
}
.venue-matrix .section-header {
    margin-bottom: 50px;
}
.venue-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.venue-matrix-card {
    background: white;
    border: 1px solid var(--border-light, #E2E8F0);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.venue-matrix-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11,26,53,0.08);
    border-color: var(--secondary, #00B7FF);
}
.venue-matrix-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light, #E2E8F0);
}
.venue-matrix-header i {
    font-size: 1.8rem;
    color: var(--secondary, #00B7FF);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,183,255,0.12), rgba(0,183,255,0.04));
}
.venue-matrix-header h3 {
    font-family: var(--font-heading, inherit);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary, #0B1A35);
    margin: 0;
    line-height: 1.3;
}
.venue-matrix-solutions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.venue-matrix-solutions li {
    border-bottom: 1px solid var(--border-light, #E2E8F0);
}
.venue-matrix-solutions li:last-child {
    border-bottom: none;
}
.venue-matrix-solutions a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-base, #475569);
    transition: color .2s ease;
}
.venue-matrix-solutions a:hover {
    color: var(--accent, #FF6B1A);
}
.venue-matrix-solutions a i {
    font-size: 0.65rem;
    color: var(--secondary, #00B7FF);
    transition: transform .2s ease;
}
.venue-matrix-solutions a:hover i {
    transform: translateX(3px);
}
.venue-matrix-solutions .no-solutions {
    text-align: center;
    color: var(--text-muted, #64748B);
    font-size: 0.875rem;
    padding: 20px 0;
}

@media (max-width: 1024px) {
    .venue-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 640px) {
    .venue-matrix {
        padding: 50px 0 !important;
    }
    .venue-matrix-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .venue-matrix-card {
        padding: 24px 20px;
    }
}

/* ============== Turnkey Solutions: 5 Program Tracks ============== */
.solutions-list {
    padding: 80px 0;
    background: var(--bg-light, #f6f8fb);
}
.solutions-list .section-header { margin-bottom: 60px; }

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11,26,53,0.06);
    border: 1px solid var(--border-light, #e5e9f0);
    margin-bottom: 40px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.solution-row:last-child { margin-bottom: 0; }
.solution-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(11,26,53,0.10);
}
.solution-row.reverse {
    direction: rtl;
}
.solution-row.reverse > * {
    direction: ltr;
}

.solution-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-light, #f6f8fb);
}
.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.solution-row:hover .solution-image img { transform: scale(1.04); }

.solution-body {
    padding: 40px 48px 40px 0;
}
.solution-row.reverse .solution-body {
    padding: 40px 0 40px 48px;
}
.solution-num {
    display: inline-block;
    font-family: var(--font-heading, inherit);
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent, #FF6B1A);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.solution-body h3 {
    font-family: var(--font-heading, inherit);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary, #0B1A35);
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.solution-body h3 a {
    color: inherit;
    transition: color .2s ease;
}
.solution-body h3 a:hover { color: var(--secondary, #00B7FF); }

.solution-desc {
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--text-muted, #5a6a82);
    margin: 0 0 22px;
}

.solution-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-base, #1f2a3d);
}
.solution-features li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,183,255,0.12);
    color: var(--secondary, #00B7FF);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
}
.solution-features li strong { color: var(--primary, #0B1A35); font-weight: 700; }
.solution-features li a {
    color: var(--secondary-dark, #0091cc);
    border-bottom: 1px dotted rgba(0,183,255,0.4);
    transition: color .2s, border-color .2s;
}
.solution-features li a:hover { color: var(--accent, #FF6B1A); border-bottom-color: var(--accent, #FF6B1A); }

.solution-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============== 6-Step Methodology ============== */
.page-process {
    padding: 80px 0;
    background: white;
}
.page-process .section-header { margin-bottom: 50px; }

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: process-step;
}
.process-list li {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-light, #f6f8fb);
    border: 1px solid var(--border-light, #e5e9f0);
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.process-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(11,26,53,0.08);
    border-color: var(--secondary, #00B7FF);
    background: white;
}
.process-list .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary, #00B7FF), var(--secondary-dark, #0091cc));
    color: white;
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px rgba(0,183,255,0.25);
}
.process-list h4 {
    font-family: var(--font-heading, inherit);
    font-size: 1.075rem;
    font-weight: 700;
    color: var(--primary, #0B1A35);
    margin: 0 0 8px;
}
.process-list p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted, #5a6a82);
    margin: 0;
}
.process-list p a {
    color: var(--secondary-dark, #0091cc);
    border-bottom: 1px dotted rgba(0,183,255,0.4);
}
.process-list p a:hover { color: var(--accent, #FF6B1A); }

@media (max-width: 1024px) {
    .solution-row { grid-template-columns: 1fr; gap: 0; }
    .solution-row.reverse { direction: ltr; }
    .solution-image { aspect-ratio: 16 / 9; }
    .solution-body,
    .solution-row.reverse .solution-body { padding: 32px 28px 36px; }
    .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .solutions-list, .page-process { padding: 50px 0; }
    .solution-body h3 { font-size: 1.4rem; }
    .solution-actions { flex-direction: column; align-items: stretch; }
    .solution-actions .btn { width: 100%; justify-content: center; }
    .process-list { grid-template-columns: 1fr; gap: 16px; }
}

/* ============== Recipe Photo Cards (Build Recipe / What's Included) ==============
   Photo-led 6-card grid replacing flat icon tiles. Each card shows a real venue
   photograph with a numbered editorial overlay and a caption block. */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.recipe-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light, #E5E9F0);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11,26,53,0.04);
    transition: transform .35s cubic-bezier(0.4,0,0.2,1), box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(11,26,53,0.12);
}
.recipe-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light, #F1F5F9);
}
.recipe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }
/* Subtle dark gradient bottom for legibility of overlapped number */
.recipe-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11,26,53,0.55));
    pointer-events: none;
}
.recipe-card-body {
    position: relative;
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.recipe-card-num {
    position: absolute;
    top: -22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent, #FF6B1A);
    color: white;
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255,107,26,0.32), inset 0 1px 0 rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
}
.recipe-card:nth-child(2n) .recipe-card-num {
    background: var(--secondary, #00B7FF);
    box-shadow: 0 10px 24px rgba(0,183,255,0.32), inset 0 1px 0 rgba(255,255,255,0.25);
}
.recipe-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.recipe-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9rem;
    margin: 0;
}
.recipe-card a {
    color: var(--secondary-dark, #0091CC);
    border-bottom: 1px dotted rgba(0,183,255,0.35);
    transition: color .2s, border-color .2s;
}
.recipe-card a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
@media (max-width: 1024px) {
    .recipe-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
    .recipe-grid { grid-template-columns: 1fr; gap: 18px; }
    .recipe-card-img { aspect-ratio: 16 / 9; }
    .recipe-card-body { padding: 20px 22px 22px; }
}

/* ============== Venue Photo Showcase (3-up scene grid) ==============
   Used on the 4 venue-types pages to add cinematic photographic depth. */
.showcase-section {
    padding: 80px 0;
    background: var(--bg-light, #F1F5F9);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 6px 22px rgba(11,26,53,0.06);
    transition: transform .4s cubic-bezier(0.4,0,0.2,1), box-shadow .4s ease;
}
.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(11,26,53,0.12);
}
.showcase-card-img {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}
.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.showcase-card:hover .showcase-card-img img { transform: scale(1.06); }
.showcase-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,26,53,0.78));
    pointer-events: none;
}
.showcase-card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px 22px;
    color: white;
    z-index: 1;
}
.showcase-card-caption .showcase-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #FF6B1A);
    margin-bottom: 6px;
}
.showcase-card-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.showcase-card-caption p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .showcase-section { padding: 60px 0; }
    .showcase-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============== Global Mobile Section Spacing Override ============== */
@media (max-width: 768px) {
    /* Tablet: cap all category page sections at 50px vertical */
    .product-list-section,
    .features-section,
    .specs-section,
    .specs-compare-section,
    .why-section,
    .cross-section,
    .cta-section,
    .equipment-matrix,
    .triangle-section,
    .solutions-list,
    .stats-band,
    .pairing-section,
    .insights-section,
    .related-section,
    .gallery-section,
    .video-section,
    .timeline-section,
    .integration-section,
    .partners-section,
    .showcase-section,
    .testimonials-section,
    .faq-section { padding: 50px 0 !important; }
    .page-intro { padding: 36px 0 20px !important; }
    .page-hero { padding: 60px 0 44px !important; }
    .product-hero { padding: 70px 0 44px !important; }
    .family-product-hero { padding: 52px 0 38px !important; }
    .cta-band { padding: 40px 0 !important; }
    .section-head { margin-bottom: 24px !important; }
    .section-head h2 { font-size: 1.5rem !important; line-height: 1.25; margin-bottom: 10px; }
    .section-head p { font-size: 0.9rem; line-height: 1.5; }
}
@media (max-width: 640px) {
    /* Phone: even tighter - 36px for most sections */
    .product-list-section,
    .features-section,
    .specs-section,
    .specs-compare-section,
    .why-section,
    .cross-section,
    .cta-section,
    .equipment-matrix,
    .triangle-section,
    .solutions-list,
    .stats-band,
    .pairing-section,
    .insights-section,
    .related-section,
    .gallery-section,
    .video-section,
    .timeline-section,
    .integration-section,
    .partners-section,
    .testimonials-section,
    .faq-section { padding: 32px 0 !important; }
    .page-intro { padding: 28px 0 16px !important; }
    .page-hero { padding: 50px 0 36px !important; }
    .product-hero { padding: 60px 0 32px !important; }
    .family-product-hero { padding: 44px 0 28px !important; }
    .cta-band { padding: 32px 0 !important; }
    .section-head { margin-bottom: 18px !important; }
    .section-head h2 { font-size: 1.3rem !important; line-height: 1.25; }
    .section-head p { font-size: 0.85rem; }
    .section-head .section-tag,
    .section-tag { font-size: 0.6rem !important; padding: 4px 10px !important; margin-bottom: 8px !important; }
}
