/*
Theme Name: Capital Clean Co — Unified
Theme URI: https://capitalcleanco.com.au
Author: Capital Clean Co
Description: Fully unified, Elementor-free custom WordPress theme for Capital Clean Co. Integrates all page templates, forms, modals, animations, and plugin functionality into a single optimised theme. No page builder dependency.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: capitalclean
License: Proprietary
*/

/* ────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
──────────────────────────────────────────────────────────── */
:root {
    --primary:        #3AABDE;
    --primary-dark:   #1A6E9A;
    --primary-light:  #6ECBEF;
    --primary-bg:     rgba(58,171,222,.10);
    --primary-glow:   rgba(58,171,222,.25);
    --dark:           #0A0A0A;
    --dark-2:         #111827;
    --dark-3:         #1F2937;
    --light:          #F0F9FF;
    --lighter:        #F8FAFC;
    --white:          #FFFFFF;
    --text:           #1F2937;
    --text-muted:     #6B7280;
    --border:         #E2E8F0;
    --glass-bg:       rgba(255,255,255,.08);
    --glass-border:   rgba(255,255,255,.15);
    --glass-dark:     rgba(10,10,10,.55);
    --font-heading:   'Montserrat', sans-serif;
    --font-body:      'Open Sans', sans-serif;
    --radius-sm:      6px;
    --radius-md:      12px;
    --radius-lg:      20px;
    --radius-xl:      32px;
    --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
    --shadow-md:      0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
    --shadow-blue:    0 8px 32px rgba(58,171,222,.30);
    --transition:     .28s cubic-bezier(.4,0,.2,1);
    --max-width:      1240px;
}

/* ────────────────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
textarea, select {
    -webkit-appearance: none;
    appearance: none;
}

/* ────────────────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-2);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(58,171,222,.18);
}
.section-title { margin-bottom: 16px; }
.section-intro { font-size: 1.04rem; color: var(--text-muted); max-width: 650px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-intro { margin: 0 auto; }

/* ────────────────────────────────────────────────────────────
   LAYOUT
──────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}
.section-pad { padding: 90px 0; }
.bg-light { background: var(--lighter); }
.bg-dark { background: var(--dark-2); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p, .bg-dark li { color: rgba(255,255,255,.78); }
.text-center { text-align: center; }

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(58,171,222,.40);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-glass {
    background: var(--glass-bg);
    color: var(--white);
    border-color: var(--glass-border);
    backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 17px 42px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────────
   TOP BAR
──────────────────────────────────────────────────────────── */
.top-bar {
    background: var(--dark-2);
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-contacts { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.top-bar-contacts a {
    color: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.top-bar-contacts a:hover { color: var(--primary); }
.top-bar-contacts svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.top-bar-right::before {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.2);
    margin-right: 6px;
}
.top-bar-socials { display: flex; gap: 10px; }
.top-bar-socials a {
    color: rgba(255,255,255,.72) !important;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}
.top-bar-socials a:hover {
    color: var(--primary) !important;
    background: rgba(58,171,222,.12);
}
.top-bar-socials svg { width: 15px; height: 15px; }

/* ────────────────────────────────────────────────────────────
   HEADER / NAV
──────────────────────────────────────────────────────────── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: all var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.13); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 16px;
}
.site-logo a { display: flex; align-items: center; }
.site-logo img,
.site-logo .ccc-header-logo {
    height: 110px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.primary-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.primary-nav > ul {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 0 !important;
}
.primary-nav > ul > li > a {
    display: block;
    padding: 8px 11px !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .83rem !important;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}
.primary-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}
.primary-nav > ul > li > a:hover { color: var(--primary); }
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li.current-menu-item > a::after,
.primary-nav > ul > li.current_page_item > a::after,
.primary-nav > ul > li.current-menu-ancestor > a::after,
.primary-nav > ul > li.current-menu-parent > a::after,
.primary-nav > ul > li.current_page_ancestor > a::after { transform: scaleX(1); }
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current_page_item > a,
.primary-nav > ul > li.current-menu-ancestor > a,
.primary-nav > ul > li.current-menu-parent > a,
.primary-nav > ul > li.current_page_ancestor > a { color: var(--primary); }
.header-cta { display: flex; align-items: center; flex-shrink: 0; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-2);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 80px 28px 40px;
    overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-2);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-align: center;
    width: 100%;
    max-width: 320px;
}
.mobile-nav-overlay a:hover { background: var(--light); color: var(--primary); }
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-2);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.mobile-nav-close:hover { background: var(--light); color: var(--primary); }

/* Responsive nav breakpoints */
@media (max-width: 1200px) {
    .header-inner { padding: 10px 16px !important; gap: 10px !important; }
    .primary-nav > ul > li > a { padding: 8px 7px !important; font-size: .74rem !important; }
    .site-logo img, .site-logo .ccc-header-logo { height: 88px !important; max-width: 160px !important; }
}
@media (max-width: 1024px) {
    .primary-nav > ul > li > a { padding: 8px 5px !important; font-size: .71rem !important; }
    .header-cta .btn { padding: 10px 14px !important; font-size: .78rem !important; }
}
@media (max-width: 860px) {
    .primary-nav { display: none !important; }
    .hamburger { display: flex !important; }
    .header-cta { display: none; }
}
@media (min-width: 861px) {
    .primary-nav { display: flex !important; }
    .hamburger { display: none !important; }
}

/* ────────────────────────────────────────────────────────────
   HERO (HOMEPAGE)
──────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-2);
}
.hero-section.no-video {
    background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark-3) 50%, #0D3A52 100%);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.83) 0%, rgba(17,24,39,.76) 55%, rgba(13,58,82,.65) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, var(--primary) 0, var(--primary) 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
}
.hero-deco { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; pointer-events: none; overflow: hidden; z-index: 2; }
.hero-deco-ring {
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    width: 580px;
    height: 580px;
    border-radius: 50%;
    border: 1px solid rgba(58,171,222,.12);
}
.hero-deco-ring::before {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(58,171,222,.08);
}
.hero-deco-ring::after {
    content: '';
    position: absolute;
    inset: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,171,222,.10) 0%, transparent 70%);
    animation: spin-slow 24s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 3; padding: 110px 0 90px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(58,171,222,.13);
    border: 1px solid rgba(58,171,222,.28);
    color: var(--primary-light);
    font-size: .76rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 26px;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.5); }
}
.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.9rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 680px;
}
.hero-title span { color: var(--primary); }
.hero-sub { font-size: 1.07rem; color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 42px; line-height: 1.78; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 68px; }
.hero-stats {
    display: flex;
    gap: 44px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.10);
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.hero-stat-label { font-size: .76rem; color: rgba(255,255,255,.48); font-weight: 500; margin-top: 4px; }

/* ────────────────────────────────────────────────────────────
   INTRO / ABOUT SECTION (HOMEPAGE)
──────────────────────────────────────────────────────────── */
.intro-section { padding: 84px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-text h2 { margin-bottom: 18px; }
.intro-text p { color: var(--text-muted); }
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.intro-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: var(--lighter);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: default;
}
.intro-feat:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.intro-feat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: transform var(--transition);
}
.intro-feat:hover .intro-feat-icon { transform: scale(1.1) rotate(-5deg); }
.intro-feat-icon svg { width: 19px; height: 19px; }
.intro-feat-text strong { display: block; font-size: .87rem; font-family: var(--font-heading); color: var(--dark-2); margin-bottom: 2px; }
.intro-feat-text span { font-size: .78rem; color: var(--text-muted); }

/* ────────────────────────────────────────────────────────────
   SERVICES SECTION (HOMEPAGE)
──────────────────────────────────────────────────────────── */
.services-section { padding: 90px 0; background: var(--lighter); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 26px 30px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(58,171,222,.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(58,171,222,.14);
    transition: all var(--transition);
    color: var(--primary);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-blue);
    transform: scale(1.05) rotate(-5deg);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.04rem; margin-bottom: 10px; }
.service-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; margin-bottom: 22px; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ────────────────────────────────────────────────────────────
   WHY US SECTION (HOMEPAGE)
──────────────────────────────────────────────────────────── */
.why-section { padding: 90px 0; }
.why-grid { display: grid; gap: 28px; margin-bottom: 28px; }
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.why-grid-2-centre { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 0; }
.why-card {
    text-align: center;
    padding: 44px 28px 36px;
    border-radius: var(--radius-lg);
    background: var(--lighter);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(58,171,222,.22); }
.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-blue);
    color: white;
    transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-3deg); }
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.07rem; margin-bottom: 12px; }
.why-card p { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ────────────────────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────────────────────── */
.cta-banner {
    padding: 84px 0;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--primary-dark) 55%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: repeating-linear-gradient(-45deg, white 0, white 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.78); margin-bottom: 38px; font-size: 1.05rem; }

/* ────────────────────────────────────────────────────────────
   PAGE HERO (INNER PAGES — PLUGIN STYLE)
──────────────────────────────────────────────────────────── */
.cccp-page-hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    color: var(--white);
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cccp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.cccp-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061420 0%, #0c2233 40%, #0d3a52 70%, #0a2a40 100%);
}
.cccp-hero-gradient--green {
    background: linear-gradient(135deg, #051a0c 0%, #0a2e1a 45%, #0d3a2a 75%, #0a2233 100%);
}
.cccp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Prevents tap/click activating native controls on mobile */
}
/* Hide any browser-rendered video controls at all viewport sizes */
.cccp-hero-video::-webkit-media-controls,
.cccp-hero-video::-webkit-media-controls-enclosure,
.cccp-hero-video::-webkit-media-controls-panel,
.cccp-hero-video::-webkit-media-controls-play-button,
.cccp-hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
    visibility: hidden !important;
}
.cccp-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,26,12,.88) 0%, rgba(10,46,26,.78) 50%, rgba(13,34,51,.7) 100%);
}
.cccp-hero-dots {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, var(--primary) 0, var(--primary) 1px, transparent 0, transparent 50%);
    background-size: 32px 32px;
}
.cccp-hero-content { position: relative; z-index: 1; }
.cccp-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 680px;
}
.cccp-hero-lead {
    font-size: 1.06rem;
    color: rgba(255,255,255,.72);
    max-width: 560px;
    line-height: 1.78;
    margin-bottom: 36px;
}
.cccp-hero-meta { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 8px; }
.cccp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cccp-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}
.cccp-hero-wave svg { display: block; width: 100%; }
/* Sustainability page: hero wave bleeds into dark globe section below */
.cccp-sustain-wave {
    position: absolute !important;
    bottom: -2px !important;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}
.cccp-page-hero:has(.cccp-sustain-wave) {
    padding-bottom: 100px; /* extra space so wave doesn't overlap content */
}
/* Globe section sits flush against hero wave */
.cccp-globe-section {
    margin-top: 0 !important;
}
.cccp-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: rgba(255,255,255,.44); margin-bottom: 20px; flex-wrap: wrap; }
.cccp-breadcrumb a { color: rgba(255,255,255,.6); }
.cccp-breadcrumb a:hover { color: var(--primary); }
.cccp-breadcrumb span { color: var(--primary-light); }

/* Simple page hero (legacy fallback) */
.page-hero {
    padding: 100px 0 70px;
    background: linear-gradient(160deg, var(--dark-2) 0%, #0D3A52 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
    background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 640px; font-size: 1.04rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: rgba(255,255,255,.44); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--primary); }

/* ────────────────────────────────────────────────────────────
   STATS BAR (INNER PAGES)
──────────────────────────────────────────────────────────── */
.cccp-stats-bar { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.cccp-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cccp-stat-item { text-align: center; }
.cccp-stat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
    box-shadow: var(--shadow-blue);
}
.cccp-stat-icon svg { width: 24px; height: 24px; }
.cccp-stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.cccp-stat-label { font-size: .82rem; color: var(--text-muted); font-weight: 600; font-family: var(--font-heading); }

/* ────────────────────────────────────────────────────────────
   CONTACT STRIP
──────────────────────────────────────────────────────────── */
.cccp-contact-strip { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.cccp-contact-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cccp-contact-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
a.cccp-contact-strip-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--primary); }
.cccp-contact-strip-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.cccp-contact-strip-icon svg { width: 22px; height: 22px; }
.cccp-contact-strip-item strong { display: block; font-family: var(--font-heading); font-size: .84rem; color: var(--dark-2); margin-bottom: 2px; }
.cccp-contact-strip-item span { font-size: .82rem; color: var(--text-muted); }

/* ────────────────────────────────────────────────────────────
   SAFETY & WHY PAGES — PILLAR / CARD GRIDS
──────────────────────────────────────────────────────────── */
.cccp-safety-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cccp-safety-pillar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.cccp-safety-pillar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.cccp-safety-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(58,171,222,.18); }
.cccp-safety-pillar:hover::after { transform: scaleX(1); }
.cccp-safety-pillar-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 900; color: rgba(58,171,222,.08); line-height: 1; margin-bottom: 16px; }
.cccp-safety-pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cccp-safety-pillar:hover .cccp-safety-pillar-icon { transform: scale(1.1) rotate(-6deg); }
.cccp-safety-pillar-icon svg { width: 26px; height: 26px; }
.cccp-safety-pillar h3 { margin-bottom: 14px; font-size: 1.15rem; }
.cccp-safety-pillar p { color: var(--text-muted); font-size: .88rem; margin-bottom: 20px; }

.cccp-compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cccp-compliance-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.cccp-compliance-card:hover { border-color: rgba(58,171,222,.25); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cccp-compliance-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
    border: 1px solid rgba(58,171,222,.18);
}
.cccp-compliance-icon svg { width: 22px; height: 22px; }
.cccp-compliance-card h4 { font-size: .95rem; margin-bottom: 10px; }
.cccp-compliance-card p { font-size: .84rem; color: var(--text-muted); margin: 0; }

.cccp-ppe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cccp-safety-highlight-box {
    background: linear-gradient(135deg, var(--dark-2) 0%, #0d3a52 100%);
    border-radius: var(--radius-xl);
    padding: 44px;
    color: white;
    position: relative;
    overflow: hidden;
}
.cccp-safety-highlight-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
    background-size: 28px 28px;
}
.cccp-shb-icon {
    width: 64px;
    height: 64px;
    background: rgba(58,171,222,.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cccp-shb-icon svg { width: 30px; height: 30px; }
.cccp-safety-highlight-box h3 { color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cccp-safety-highlight-box p { color: rgba(255,255,255,.72); font-size: .9rem; position: relative; z-index: 1; }
.cccp-safety-highlight-box .btn { position: relative; z-index: 1; }

.cccp-response-badge {
    margin-top: 24px;
    padding: 20px;
    background: var(--lighter);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
@keyframes cccp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}
.cccp-contact-socials { display: flex; gap: 10px; }
.cccp-social-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--lighter);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}
.cccp-social-icon:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.cccp-social-icon svg { width: 18px; height: 18px; }
.cccp-social-icon--placeholder { opacity: .4; cursor: default; }

/* ────────────────────────────────────────────────────────────
   WHY CAPITAL CLEAN CO PAGE — SPECIFIC COMPONENTS
──────────────────────────────────────────────────────────── */
.cccp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cccp-why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.cccp-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.cccp-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(58,171,222,.18); }
.cccp-why-card:hover::before { transform: scaleX(1); }
.cccp-why-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cccp-why-card:hover .cccp-why-card-icon { transform: scale(1.1) rotate(-6deg); }
.cccp-why-card-icon svg { width: 26px; height: 26px; }
.cccp-why-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.cccp-why-card p { font-size: .86rem; color: var(--text-muted); margin: 0; }

.cccp-founder-quote-section { padding: 80px 0; background: var(--dark-2); position: relative; overflow: hidden; }
.cccp-founder-quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(-45deg, white 0, white 1px, transparent 0, transparent 50%);
    background-size: 28px 28px;
}
.cccp-founder-quote-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.cccp-fq-icon {
    width: 60px;
    height: 60px;
    background: rgba(58,171,222,.14);
    border: 1px solid rgba(58,171,222,.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--primary-light);
}
.cccp-founder-quote-inner blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.68;
    color: rgba(255,255,255,.92);
    margin-bottom: 32px;
}
.cccp-fq-author strong { display: block; font-family: var(--font-heading); font-size: .88rem; font-weight: 800; color: white; letter-spacing: .06em; }
.cccp-fq-author span { font-size: .78rem; color: rgba(255,255,255,.42); letter-spacing: .06em; }

/* Process steps */
.cccp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.cccp-process-step {
    text-align: center;
    padding: 40px 24px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}
.cccp-process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(58,171,222,.2); }
.cccp-step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(58,171,222,.08);
    line-height: 1;
    margin-bottom: 12px;
}
.cccp-step-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-blue);
}
.cccp-step-icon svg { width: 24px; height: 24px; }
.cccp-process-step h3 { font-size: 1rem; margin-bottom: 10px; }
.cccp-process-step p { font-size: .84rem; color: var(--text-muted); margin: 0; }
.cccp-step-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--primary);
    display: none; /* hidden on mobile, shown on desktop via grid */
}

/* Industries */
.cccp-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cccp-industry-card {
    background: var(--lighter);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}
.cccp-industry-card:hover { border-color: rgba(58,171,222,.25); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cccp-industry-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(58,171,222,.04));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    border: 1px solid rgba(58,171,222,.14);
    transition: all var(--transition);
}
.cccp-industry-card:hover .cccp-industry-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-blue);
}
.cccp-industry-icon svg { width: 22px; height: 22px; }
.cccp-industry-card h4 { font-size: .9rem; margin-bottom: 8px; }
.cccp-industry-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* Timeline (Why page) */
.cccp-timeline-section { padding: 90px 0; background: var(--lighter); }
.cccp-timeline-nav { position: relative; margin-bottom: 48px; }
.cccp-timeline-track {
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 28px;
    position: relative;
}
.cccp-timeline-progress {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: width .5s var(--transition);
    width: 0%;
}
.cccp-timeline-dots { display: flex; justify-content: space-between; gap: 12px; }
.cccp-tl-dot {
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    flex: 1;
    padding: 0;
}
.cccp-tl-dot-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--text-muted);
    transition: all var(--transition);
}
.cccp-tl-dot.active .cccp-tl-dot-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-blue);
}
.cccp-tl-dot-icon svg { width: 20px; height: 20px; }
.cccp-tl-dot-year { display: block; font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.cccp-tl-dot-label { display: block; font-size: .72rem; color: var(--text-muted); }
.cccp-timeline-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cccp-tl-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: all var(--transition);
    opacity: .5;
    transform: translateY(8px);
}
.cccp-tl-card.active { opacity: 1; transform: translateY(0); border-color: rgba(58,171,222,.25); box-shadow: var(--shadow-md); }
.cccp-tl-card-inner { padding: 28px 22px; position: relative; z-index: 1; }
.cccp-tl-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58,171,222,.04), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.cccp-tl-card.active .cccp-tl-card-glow { opacity: 1; }
.cccp-tl-card-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: rgba(58,171,222,.07); line-height: 1; margin-bottom: 12px; }
.cccp-tl-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tl-color, var(--primary)), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(58,171,222,.25);
}
.cccp-tl-card-icon svg { width: 20px; height: 20px; }
.cccp-tl-card-year { font-family: var(--font-heading); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.cccp-tl-card-title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--dark-2); margin-bottom: 10px; }
.cccp-tl-card-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.cccp-tl-card-bar { height: 3px; background: linear-gradient(90deg, var(--tl-color, var(--primary)), transparent); margin-top: 20px; border-radius: 3px; transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.cccp-tl-card.active .cccp-tl-card-bar { transform: scaleX(1); }
.cccp-tl-mobile-nav { display: none; justify-content: center; align-items: center; gap: 20px; margin-top: 24px; }
.cccp-tl-arrow { background: var(--lighter); border: 1px solid var(--border); border-radius: var(--radius-sm); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--primary); transition: all var(--transition); }
.cccp-tl-arrow:first-child { transform: rotate(180deg); }
.cccp-tl-arrow:hover { background: var(--primary); border-color: var(--primary); color: white; }
.cccp-tl-arrow svg { width: 18px; height: 18px; }
.cccp-tl-mobile-dots { display: flex; gap: 6px; }
.cccp-tl-pip { width: 8px; height: 8px; background: var(--border); border-radius: 50%; cursor: pointer; transition: all var(--transition); }
.cccp-tl-pip.active { background: var(--primary); transform: scale(1.3); }

/* ────────────────────────────────────────────────────────────
   SEQUENTIAL STORYTELLING JOURNEY (Why page)
──────────────────────────────────────────────────────────── */
.cccp-story-section { background: var(--lighter); overflow: hidden; }
.cccp-story-track {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* Vertical spine */
.cccp-story-spine {
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    border-radius: 3px;
}
.cccp-story-spine-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary), #1A8DB8);
    border-radius: 3px;
    transition: height .08s linear;
}

/* Each story item */
.cccp-story-item {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    margin-bottom: 64px;
    position: relative;
    /* Initial hidden state — animated in by JS */
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.cccp-story-item.story-visible {
    opacity: 1;
    transform: translateX(0);
}
.cccp-story-item:last-child { margin-bottom: 0; }

/* Node on the spine */
.cccp-story-node {
    flex-shrink: 0;
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.cccp-story-node-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--story-color, var(--primary));
    opacity: 0;
    transform: scale(.5);
    transition: opacity .4s .2s, transform .4s .2s cubic-bezier(.34,1.56,.64,1);
}
.cccp-story-item.story-visible .cccp-story-node-ring {
    opacity: .5;
    transform: scale(1);
}
.cccp-story-node-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--story-color, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--story-color, var(--primary));
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
    transition: background .3s, box-shadow .3s, transform .3s;
    position: relative;
    z-index: 1;
}
.cccp-story-item.story-visible .cccp-story-node-dot {
    background: var(--story-color, var(--primary));
    color: white;
    box-shadow: 0 6px 24px rgba(58,171,222,.3);
    transform: scale(1.05);
}
.cccp-story-node-dot svg { width: 22px; height: 22px; }

/* Connector line from node to next */
.cccp-story-item:not(:last-child) .cccp-story-node::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 64px;
    background: linear-gradient(180deg, var(--story-color, var(--primary)), transparent);
    opacity: .25;
}

/* Content card */
.cccp-story-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.cccp-story-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--story-color, var(--primary));
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .45s .1s cubic-bezier(.22,1,.36,1);
}
.cccp-story-item.story-visible .cccp-story-card::before {
    transform: scaleY(1);
}
.cccp-story-item.story-visible .cccp-story-card {
    border-color: rgba(58,171,222,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.cccp-story-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--story-accent, rgba(58,171,222,.06));
    opacity: 0;
    transition: opacity .4s;
}
.cccp-story-item.story-visible .cccp-story-card::after { opacity: 1; }
.cccp-story-card > * { position: relative; z-index: 1; }

.cccp-story-card-year {
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--story-color, var(--primary));
    margin-bottom: 4px;
}
.cccp-story-card-label {
    font-family: var(--font-heading);
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: .04em;
}
.cccp-story-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 14px;
    line-height: 1.3;
}
.cccp-story-card-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.82;
    margin: 0;
}
.cccp-story-card-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--story-color, var(--primary)), transparent);
    border-radius: 2px;
    margin-top: 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s .35s cubic-bezier(.22,1,.36,1);
}
.cccp-story-item.story-visible .cccp-story-card-bar { transform: scaleX(1); }

/* Large decorative number */
.cccp-story-num {
    position: absolute;
    right: -10px;
    top: 12px;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(58,171,222,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color .4s;
}
.cccp-story-item.story-visible .cccp-story-num { color: rgba(58,171,222,.06); }

/* ── Responsive ── */
@media (max-width: 600px) {
    .cccp-story-spine { left: 28px; }
    .cccp-story-node { width: 40px; height: 40px; }
    .cccp-story-node-dot { width: 40px; height: 40px; }
    .cccp-story-node-dot svg { width: 16px; height: 16px; }
    .cccp-story-item { gap: 20px; }
    .cccp-story-card { padding: 22px 20px; }
    .cccp-story-num { display: none; }
}

/* ────────────────────────────────────────────────────────────
   SERVICES PAGE
──────────────────────────────────────────────────────────── */
.cccp-services-filter-bar { padding: 28px 0; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 80px; z-index: 10; }
.cccp-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cccp-filter-tab {
    padding: 9px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
}
.cccp-filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.cccp-filter-tab.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: var(--shadow-blue); }
.cccp-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.cccp-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.cccp-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.cccp-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cccp-service-card:hover::before { transform: scaleX(1); }
.cccp-service-card.hidden { display: none; }
.cccp-service-card.anchor-highlight {
    animation: service-anchor-pulse 2.8s ease forwards;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(58,171,222,.25), var(--shadow-lg) !important;
}
@keyframes service-anchor-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(58,171,222,.5), var(--shadow-lg); }
    40%  { box-shadow: 0 0 0 10px rgba(58,171,222,.12), var(--shadow-lg); }
    100% { box-shadow: 0 0 0 0 rgba(58,171,222,0), var(--shadow-md); }
}
.cccp-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-family: var(--font-heading);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
    box-shadow: var(--shadow-blue);
}
.cccp-service-icon {
    width: 62px;
    height: 62px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    border: 1px solid rgba(58,171,222,.14);
    transition: all var(--transition);
}
.cccp-service-card:hover .cccp-service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-blue);
    transform: scale(1.05) rotate(-5deg);
}
.cccp-service-icon svg { width: 28px; height: 28px; }
.cccp-service-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.cccp-service-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.68; margin-bottom: 20px; }
.cccp-service-includes { margin-bottom: 24px; flex: 1; }
.cccp-service-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.cccp-service-includes li:last-child { border-bottom: none; }
.cccp-service-includes li svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.cccp-no-results { text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 1rem; }
.cccp-services-promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cccp-promise-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cccp-promise-card {
    background: var(--lighter);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.cccp-promise-card:hover { border-color: rgba(58,171,222,.25); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cccp-promise-card svg { width: 24px; height: 24px; }
.cccp-promise-card strong { display: block; font-family: var(--font-heading); font-size: .9rem; color: var(--dark-2); margin-bottom: 6px; margin-top: 4px; }
.cccp-promise-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ────────────────────────────────────────────────────────────
   SUSTAINABILITY — GLOBE SECTION
──────────────────────────────────────────────────────────── */
.cccp-globe-section {
    background: #04111d;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.cccp-globe-section #cccp-stars-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.cccp-globe-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(58,171,222,.12), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 0;
}
.cccp-globe-container--v2 { position: relative; z-index: 1; }
.cccp-globe-intro { text-align: center; margin-bottom: 60px; }
.cccp-globe-heading { color: white; font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cccp-globe-subheading { color: rgba(255,255,255,.65); max-width: 620px; margin: 0 auto; font-size: 1rem; }
.cccp-globe-experience { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cccp-globe-topics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.cccp-globe-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    cursor: pointer;
    transition: all var(--transition);
    color: rgba(255,255,255,.6);
}
.cccp-globe-topic:hover { border-color: rgba(58,171,222,.4); color: var(--primary-light); background: rgba(58,171,222,.08); }
.cccp-globe-topic.is-active {
    border-color: var(--primary);
    background: rgba(58,171,222,.18);
    color: var(--primary-light);
    transform: scale(1.06);
    box-shadow: 0 0 0 3px rgba(58,171,222,.15);
}
.cccp-globe-topic.is-leaving {
    opacity: .5;
    transform: scale(0.96);
}
.cccp-globe-topic-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.cccp-globe-topic-icon svg { width: 16px; height: 16px; }
.cccp-globe-topic-num { font-family: var(--font-heading); font-size: .7rem; font-weight: 700; opacity: .6; }
.cccp-globe-topic-label { font-family: var(--font-heading); font-size: .78rem; font-weight: 600; }
.cccp-globe-stage {
    position: relative;
    width: 320px;
    height: 320px;
    flex-shrink: 0;
}
#cccp-globe-canvas { border-radius: 50%; cursor: grab; display: block; }
#cccp-globe-canvas:active { cursor: grabbing; }
.cccp-globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(58,171,222,.15);
    pointer-events: none;
}
.cccp-globe-ring--outer { inset: -30px; animation: globe-ring-pulse 4s ease-in-out infinite; }
.cccp-globe-ring--inner { inset: -14px; animation: globe-ring-pulse 4s ease-in-out infinite .5s; }
@keyframes globe-ring-pulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: .2; transform: scale(1.02); }
}
.cccp-globe-drag-hint {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: .72rem;
    white-space: nowrap;
}
.cccp-globe-drag-hint svg { width: 13px; height: 13px; animation: spin-slow 4s linear infinite; }
.cccp-globe-detail { width: 100%; max-width: 680px; margin-top: 20px; position: relative; min-height: 160px; }
.cccp-globe-content-item {
    display: flex; gap: 24px; align-items: flex-start;
    position: absolute; inset: 0;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.cccp-globe-content-item.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.cccp-globe-content-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}
.cccp-globe-content-icon svg { width: 26px; height: 26px; }
.cccp-globe-content-number { font-family: var(--font-heading); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.cccp-globe-content-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 10px; }
.cccp-globe-content-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.78; margin-bottom: 18px; }
.cccp-globe-content-stat { display: flex; align-items: baseline; gap: 10px; }
.cccp-globe-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); }
.cccp-globe-stat-label { font-size: .8rem; color: rgba(255,255,255,.45); }
.cccp-globe-dots { display: flex; gap: 8px; margin-top: 8px; }
.cccp-globe-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.cccp-globe-dot.is-active { background: var(--primary); transform: scale(1.4); }
.cccp-globe-statement { text-align: center; margin-top: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cccp-globe-quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   ACCORDION (CONTACT / SAFETY FAQ)
──────────────────────────────────────────────────────────── */
.cccp-accordion { max-width: 820px; margin: 0 auto; }
.cccp-accordion-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
}
.cccp-accordion-item:hover { border-color: rgba(58,171,222,.25); }
.cccp-accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: .96rem;
    font-weight: 600;
    color: var(--dark-2);
    transition: color var(--transition);
}
.cccp-accordion-trigger:hover { color: var(--primary); }
.cccp-accordion-trigger[aria-expanded="true"] { color: var(--primary); }
.cccp-accordion-icon { flex-shrink: 0; color: var(--primary); transition: transform var(--transition); }
.cccp-accordion-trigger[aria-expanded="true"] .cccp-accordion-icon { transform: rotate(90deg); }
.cccp-accordion-icon svg { width: 18px; height: 18px; }
.cccp-accordion-body { height: 0; overflow: hidden; transition: height var(--transition); }
.cccp-accordion-body.open { height: auto; }
.cccp-accordion-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: .9rem; line-height: 1.78; margin: 0; }

/* ────────────────────────────────────────────────────────────
   TERMS & CONDITIONS — INTERACTIVE LAYOUT
──────────────────────────────────────────────────────────── */
.cccp-tc-section { background: var(--lighter); padding: 0; }
.cccp-tc-layout { display: grid; grid-template-columns: 300px 1fr; min-height: 100vh; }
.cccp-tc-nav {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--white);
    border-right: 1px solid var(--border);
}
.cccp-tc-nav-inner { padding: 32px 24px; }
.cccp-tc-nav-header { margin-bottom: 24px; }
.cccp-tc-nav-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.cccp-tc-nav-title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--dark-2); }
.cccp-tc-nav-list { display: flex; flex-direction: column; gap: 4px; }
.cccp-tc-nav-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    color: var(--text-muted);
    font-size: .84rem;
}
.cccp-tc-nav-btn:hover { background: var(--lighter); color: var(--primary); }
.cccp-tc-nav-btn.is-active { background: var(--primary-bg); color: var(--primary); font-weight: 600; }
.cccp-tc-nav-num { font-family: var(--font-heading); font-size: .7rem; font-weight: 700; color: var(--primary); width: 24px; flex-shrink: 0; }
.cccp-tc-nav-label { flex: 1; font-family: var(--font-heading); font-size: .82rem; }
.cccp-tc-nav-arrow { color: var(--primary); opacity: 0; transition: opacity var(--transition); }
.cccp-tc-nav-btn.is-active .cccp-tc-nav-arrow, .cccp-tc-nav-btn:hover .cccp-tc-nav-arrow { opacity: 1; }
.cccp-tc-nav-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); text-align: center; }
.cccp-tc-nav-footer p { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.cccp-tc-content { padding: 48px 56px; position: relative; }
.cccp-tc-progress-bar { height: 3px; background: var(--border); position: sticky; top: 80px; z-index: 5; border-radius: 3px; overflow: hidden; margin-bottom: 40px; }
.cccp-tc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 3px; transition: width .4s var(--transition); width: 0%; }
.cccp-tc-panels { }
.cccp-tc-panel { display: none; }
.cccp-tc-panel.is-active { display: block; animation: tcPanelIn .3s ease; }
@keyframes tcPanelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cccp-tc-panel-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.cccp-tc-panel-num { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: rgba(58,171,222,.08); line-height: 1; flex-shrink: 0; }
.cccp-tc-panel-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.cccp-tc-panel-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--dark-2); }
.cccp-tc-panel-body p { color: var(--text-muted); font-size: .92rem; line-height: 1.82; margin-bottom: 16px; }
.cccp-tc-list { list-style: none; padding: 0; margin: 12px 0 16px; }
.cccp-tc-list li {
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .88rem;
}
.cccp-tc-list li:last-child { border-bottom: none; }
.cccp-tc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.cccp-tc-callout {
    background: var(--primary-bg);
    border: 1px solid rgba(58,171,222,.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: .88rem;
    color: var(--text);
}
.cccp-tc-callout svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.cccp-tc-panel-footer { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.cccp-tc-contact-card {
    background: var(--lighter);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    margin-top: 16px;
}
.cccp-tc-contact-card > strong { display: block; font-family: var(--font-heading); font-size: 1rem; color: var(--dark-2); margin-bottom: 16px; }
.cccp-tc-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: color var(--transition);
}
.cccp-tc-contact-row:last-child { border-bottom: none; }
.cccp-tc-contact-row:hover { color: var(--primary); }
.cccp-tc-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.cccp-tc-contact-icon svg { width: 18px; height: 18px; }
.cccp-tc-contact-label { display: block; font-size: .72rem; color: var(--text-muted); margin-bottom: 2px; }
.cccp-tc-contact-value { display: block; font-family: var(--font-heading); font-size: .88rem; font-weight: 600; }

/* ────────────────────────────────────────────────────────────
   INSIGHT / BLOG PAGE
──────────────────────────────────────────────────────────── */
.cccp-insight-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}
.cccp-insight-featured-thumb { height: 400px; overflow: hidden; background: var(--primary-bg); }
.cccp-insight-featured-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.cccp-insight-featured:hover .cccp-insight-featured-thumb img { transform: scale(1.05); }
.cccp-insight-no-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
}
.cccp-insight-no-thumb svg { width: 40px; height: 40px; opacity: .5; }
.cccp-insight-featured-body { padding: 40px; }
.cccp-insight-meta { font-size: .78rem; color: var(--text-muted); margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.cccp-insight-featured-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 16px; }
.cccp-insight-featured-body h2 a { color: var(--dark-2); transition: color var(--transition); }
.cccp-insight-featured-body h2 a:hover { color: var(--primary); }
.cccp-insight-featured-body p { color: var(--text-muted); margin-bottom: 24px; }

/* Blog grid & cards */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-thumb {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); display: block; }
.post-thumb a { display: block; width: 100%; height: 100%; }
.post-thumb a img { width: 100%; height: 100%; object-fit: cover; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .76rem; color: var(--text-muted); margin-bottom: 10px; }
.post-body h3 { font-size: 1.03rem; margin-bottom: 12px; line-height: 1.38; }
.post-body h3 a { color: var(--dark-2); transition: color var(--transition); }
.post-body h3 a:hover { color: var(--primary); }
.post-body p { font-size: .85rem; color: var(--text-muted); flex: 1; margin-bottom: 0; }
.read-more { margin-top: 18px; font-family: var(--font-heading); font-size: .83rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--primary-dark); }
.read-more svg { width: 15px; height: 15px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 52px; flex-wrap: wrap; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .87rem;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all var(--transition);
}
.pagination .page-numbers:hover, .pagination .current { background: var(--primary); border-color: var(--primary); color: white; }

/* ────────────────────────────────────────────────────────────
   CONTACT GRID
──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
}
.contact-info-block h3 { margin-bottom: 28px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}
.contact-detail .icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-family: var(--font-heading); font-size: .86rem; color: var(--dark-2); margin-bottom: 3px; }
.contact-detail span { font-size: .86rem; color: var(--text-muted); }
.contact-detail a { color: var(--primary); }
.contact-form-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    border: 1px solid var(--border);
}
.contact-form-block h3 { margin-bottom: 6px; }
.form-intro { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }

/* ────────────────────────────────────────────────────────────
   FORMS
──────────────────────────────────────────────────────────── */
.sparkon-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sparkon-form .form-group { margin-bottom: 20px; }
.sparkon-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: .79rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.sparkon-form input,
.sparkon-form textarea,
.sparkon-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: .9rem;
    color: var(--text);
    background: var(--lighter);
    transition: all var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.sparkon-form input:focus,
.sparkon-form textarea:focus,
.sparkon-form select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(58,171,222,.10);
}
.sparkon-form textarea { min-height: 120px; resize: vertical; }
.sparkon-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-submit-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 32px; }
.form-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 16px 20px; border-radius: var(--radius-md); margin-top: 16px; font-weight: 600; display: none; }
.form-success.show { display: block; }
.form-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 14px 18px; border-radius: var(--radius-md); margin-top: 14px; font-weight: 600; display: none; }
/* Honeypot spam field */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ────────────────────────────────────────────────────────────
   MODALS
──────────────────────────────────────────────────────────── */
.sparkon-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.sparkon-modal-overlay.open { opacity: 1; visibility: visible; }
.sparkon-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 44px 38px;
    max-width: 640px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(.97);
    transition: transform var(--transition);
    box-shadow: 0 24px 80px rgba(0,0,0,.30);
}
.sparkon-modal-overlay.open .sparkon-modal { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lighter);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1;
}
.modal-close:hover { background: var(--primary); color: white; border-color: var(--primary); }
.modal-header { margin-bottom: 6px; padding-right: 44px; }
.modal-header h3 { font-size: 1.5rem; }
.modal-header p { font-size: .9rem; color: var(--text-muted); margin-top: 6px; }
.modal-divider { height: 1px; background: var(--border); margin: 20px 0 26px; }
.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    border: 1px solid rgba(58,171,222,.22);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.service-modal-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 18px;
    box-shadow: var(--shadow-blue);
}
.service-modal-icon svg { width: 32px; height: 32px; }
.service-modal-content { margin-bottom: 28px; }
.service-modal-content p { color: var(--text-muted); line-height: 1.78; }
.service-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────────────
   MARQUEE
──────────────────────────────────────────────────────────── */
.about-marquee { background: var(--primary); padding: 11px 0; overflow: hidden; }
.about-marquee-track { display: flex; white-space: nowrap; animation: about-ticker 28s linear infinite; }
.about-marquee-track:hover { animation-play-state: paused; }
.about-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark-2);
}
.about-marquee-dot { width: 4px; height: 4px; background: var(--dark-2); border-radius: 50%; opacity: .4; flex-shrink: 0; }
@keyframes about-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────────────────────────────────────
   GLASSMORPHISM CARDS
──────────────────────────────────────────────────────────── */
.glass-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.glass-card:hover { background: rgba(255,255,255,.14); border-color: rgba(58,171,222,.35); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.25); }

/* ────────────────────────────────────────────────────────────
   SAFETY CHECK LIST
──────────────────────────────────────────────────────────── */
.safety-check-list { list-style: none; padding: 0; }
.safety-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    color: var(--text-muted);
}
.safety-check-list li:last-child { border-bottom: none; }
.safety-check-list li .check-dot {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 1px;
}
.safety-check-list li .check-dot svg { width: 12px; height: 12px; }

/* ────────────────────────────────────────────────────────────
   ABOUT PAGE VIDEO SECTION
──────────────────────────────────────────────────────────── */
.about-vid-section { position: relative; overflow: hidden; padding: 0; }
.about-vid-wrap { position: absolute; inset: 0; z-index: 0; background: var(--dark-2); }
.about-vid-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-vid-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,10,10,.88) 0%, rgba(17,24,39,.78) 55%, rgba(13,58,82,.68) 100%); }
.about-vid-content { position: relative; z-index: 2; padding: 100px 0; }
.about-intro-feat {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    backdrop-filter: blur(6px);
}
.about-intro-feat:hover { border-color: rgba(58,171,222,.4) !important; background: rgba(58,171,222,.1) !important; }
.about-intro-feat .intro-feat-text strong { color: #fff !important; }
.about-intro-feat .intro-feat-text span { color: rgba(255,255,255,.55) !important; }
.about-vid-content p { color: rgba(255,255,255,.72); }

/* Sustainability video section */
.sustain-video-section { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.sustain-video-wrap { position: absolute; inset: 0; z-index: 0; background: var(--dark-2); }
.sustain-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sustain-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,.84) 0%, rgba(13,58,82,.72) 100%); z-index: 1; }
.sustain-video-content { position: relative; z-index: 2; padding: 100px 0; text-align: center; }
.sustain-video-content h2 { color: white; }
.sustain-video-content p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 36px; font-size: 1.05rem; }

/* Sustain pillar cards */
.sustain-pillars { padding: 90px 0; background: var(--white); }
.sustain-pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.sustain-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.sustain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); transition: transform var(--transition); }
.sustain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(58,171,222,.18); }
.sustain-card:hover::before { transform: scaleX(1); }
.sustain-card-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: transform var(--transition);
    box-shadow: var(--shadow-blue);
}
.sustain-card:hover .sustain-card-icon { transform: scale(1.1) rotate(-5deg); }
.sustain-card-icon svg { width: 27px; height: 27px; }
.sustain-card h3 { font-size: 1rem; margin-bottom: 10px; }
.sustain-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.60); }
.footer-top { padding: 72px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .footer-logo { width: 90px; height: auto; object-fit: contain; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand .footer-logo.footer-logo-custom { filter: none; }
.footer-brand p { font-size: .86rem; line-height: 1.78; max-width: 300px; margin-bottom: 26px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.50);
    transition: all var(--transition);
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: .8rem; color: var(--white); font-family: var(--font-heading); font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .11em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.50); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; font-size: .85rem; margin-bottom: 13px; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.footer-contact-item a { color: rgba(255,255,255,.50); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-item span { color: rgba(255,255,255,.50); }
.footer-acknowledge { padding: 30px 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-acknowledge p { font-size: .76rem; color: rgba(255,255,255,.34); max-width: 900px; margin: 0 auto; text-align: justify; text-align-last: center; line-height: 1.9; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.27); }
.footer-legal { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.36); font-size: .78rem; }
.footer-legal a:hover { color: var(--primary); }
.footer-abn { color: rgba(255,255,255,.45); font-size: .78rem; letter-spacing: .04em; padding-right: 12px; margin-right: 4px; border-right: 1px solid rgba(255,255,255,.15); }

/* ────────────────────────────────────────────────────────────
   SINGLE POST / LEGAL
──────────────────────────────────────────────────────────── */
.single-content { padding: 90px 0; }
.post-article { max-width: 760px; margin: 0 auto; }
.post-article h2 { font-size: 1.55rem; margin: 40px 0 16px; }
.post-article h3 { font-size: 1.25rem; margin: 32px 0 14px; }
.post-article p { margin-bottom: 20px; color: var(--text-muted); }
.post-article ul, .post-article ol { padding-left: 24px; margin-bottom: 20px; }
.post-article li { margin-bottom: 8px; color: var(--text-muted); }
.post-article img { border-radius: var(--radius-md); margin: 32px 0; }
.legal-content { max-width: 820px; margin: 0 auto; padding: 80px 0; }
.legal-content h2 { font-size: 1.45rem; margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.legal-content p { color: var(--text-muted); margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 8px; }
.legal-section { border-bottom: 1px solid var(--border); padding: 36px 0; }
.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; margin: 0 0 14px; color: var(--dark-2); display: flex; align-items: center; gap: 10px; }
.legal-section h2::before { content: ''; display: inline-block; width: 4px; height: 22px; background: var(--primary); border-radius: 2px; flex-shrink: 0; }
.legal-list { list-style: none !important; padding: 0 !important; margin: 12px 0 16px !important; }
.legal-list li { padding: 8px 0 8px 26px !important; position: relative; border-bottom: 1px solid var(--border); color: var(--text-muted) !important; margin: 0 !important; }
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.legal-contact-box { background: var(--lighter); border-radius: var(--radius-xl); padding: 36px !important; border: 1px solid var(--border) !important; margin-top: 8px; }
.legal-contact-details { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding: 20px 24px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); }
.legal-contact-details strong { font-family: var(--font-heading); font-size: 1rem; color: var(--dark-2); margin-bottom: 4px; }
.legal-contact-details span { color: var(--text-muted); font-size: .92rem; }
.legal-contact-details a { color: var(--primary); font-weight: 600; }

/* ────────────────────────────────────────────────────────────
   ANIMATIONS & SCROLL REVEAL
──────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-up.visible, .fade-in.visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: .10s; }
[data-delay="200"] { transition-delay: .20s; }
[data-delay="300"] { transition-delay: .30s; }
[data-delay="400"] { transition-delay: .40s; }
[data-delay="500"] { transition-delay: .50s; }
[data-delay="600"] { transition-delay: .60s; }

/* ────────────────────────────────────────────────────────────
   WORDPRESS CORE
──────────────────────────────────────────────────────────── */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.wp-block-image img { border-radius: var(--radius-md); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal !important; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cccp-timeline-cards { grid-template-columns: repeat(3, 1fr); }
    .cccp-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
    .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-grid-2-centre { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-block { position: static; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .cccp-safety-pillars { grid-template-columns: 1fr 1fr; }
    .cccp-compliance-grid { grid-template-columns: 1fr 1fr; }
    .cccp-ppe-grid { grid-template-columns: 1fr; gap: 40px; }
    .cccp-why-grid { grid-template-columns: 1fr 1fr; }
    .cccp-services-promise-grid { grid-template-columns: 1fr; gap: 40px; }
    .cccp-contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .cccp-process-steps { grid-template-columns: repeat(2, 1fr); }
    .cccp-tc-layout { grid-template-columns: 240px 1fr; }
    .cccp-tc-content { padding: 36px 40px; }
    .cccp-insight-featured { grid-template-columns: 1fr; }
    .cccp-insight-featured-thumb { height: 260px; }
}
@media (max-width: 900px) {
    .hero-deco { display: none; }
    .sparkon-form .form-row { grid-template-columns: 1fr; }
    .sparkon-modal { padding: 32px 24px 28px; }
    .footer-brand .footer-logo { width: 80px; }
    .cccp-stats-row { grid-template-columns: repeat(2, 1fr); }
    .cccp-globe-experience { gap: 28px; }
    .cccp-globe-stage { width: 260px; height: 260px; }
    #cccp-globe-canvas { width: 260px !important; height: 260px !important; }
    .cccp-globe-content-item.is-active { flex-direction: column; }
    .cccp-timeline-cards { grid-template-columns: 1fr; }
    .cccp-tl-mobile-nav { display: flex; }
    .cccp-tl-card { opacity: 1 !important; transform: none !important; display: none; }
    .cccp-tl-card.active { display: block; }
    .cccp-tc-layout { grid-template-columns: 1fr; }
    .cccp-tc-nav { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
    .cccp-tc-content { padding: 24px 20px; }
    .cccp-tc-nav-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .cccp-tc-nav-btn { padding: 7px 12px; flex: 0 0 auto; }
    .cccp-tc-nav-num, .cccp-tc-nav-arrow { display: none; }
    .cccp-process-steps { grid-template-columns: 1fr 1fr; }
    .cccp-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .why-grid-4, .why-grid-2-centre { grid-template-columns: 1fr; max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 24px; }
    .intro-features { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .btn-group { flex-direction: column; align-items: center; }
    .service-modal-actions { flex-direction: column; }
    .service-modal-actions .btn { width: 100%; justify-content: center; }
    .top-bar .container { flex-direction: column; align-items: flex-start; }
    .footer-brand .footer-logo { width: 70px; }
    .cccp-safety-pillars { grid-template-columns: 1fr; }
    .cccp-compliance-grid { grid-template-columns: 1fr; }
    .cccp-contact-strip-grid { grid-template-columns: 1fr; }
    .cccp-why-grid { grid-template-columns: 1fr; }
    .cccp-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .cccp-process-steps { grid-template-columns: 1fr; }
    .cccp-promise-cards { grid-template-columns: 1fr; }
    .cccp-stats-row { grid-template-columns: repeat(2, 1fr); }
    .cccp-hero-actions { flex-direction: column; }
    .cccp-hero-actions .btn { width: 100%; justify-content: center; }
    .footer-abn { border-right: none; padding-right: 0; display: block; margin-bottom: 6px; }
    .contact-form-block { padding: 28px 20px; }
    .cccp-timeline-dots { overflow-x: auto; padding-bottom: 8px; }
    .cccp-tl-dot-label { display: none; }
    .sparkon-modal { border-radius: var(--radius-lg); }
}

/* ═══════════════════════════════════════════════════════════
   SUCCESS POPUP — Post-form submission confirmation
═══════════════════════════════════════════════════════════ */

/* Overlay */
.ccc-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 15, 30, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .36s cubic-bezier(.4,0,.2,1), visibility .36s cubic-bezier(.4,0,.2,1);
}
.ccc-success-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Card */
.ccc-success-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px 48px 44px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 32px 96px rgba(0,0,0,.28), 0 0 0 1px rgba(58,171,222,.10);
    transform: translateY(32px) scale(.95);
    transition: transform .42s cubic-bezier(.34,1.46,.64,1);
}
.ccc-success-overlay.is-open .ccc-success-card {
    transform: translateY(0) scale(1);
}

/* Close button */
.ccc-success-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.ccc-success-close:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Icon ring */
.ccc-success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58,171,222,.12) 0%, rgba(58,171,222,.06) 100%);
    border: 2px solid rgba(58,171,222,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
}
.ccc-success-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(58,171,222,.14);
}

/* Animated checkmark SVG */
.ccc-success-check {
    width: 38px;
    height: 38px;
    color: var(--primary);
}
.ccc-check-circle {
    stroke: var(--primary-light);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    transform-origin: center;
}
.ccc-check-tick {
    stroke: var(--primary);
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ccc-success-overlay.is-open .ccc-check-circle {
    animation: ccc-draw-circle .55s .18s cubic-bezier(.65,0,.45,1) forwards;
}
.ccc-success-overlay.is-open .ccc-check-tick {
    animation: ccc-draw-tick .32s .68s cubic-bezier(.65,0,.45,1) forwards;
}
@keyframes ccc-draw-circle {
    to { stroke-dashoffset: 0; }
}
@keyframes ccc-draw-tick {
    to { stroke-dashoffset: 0; }
}

/* Label badge */
.ccc-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-bg);
    border: 1px solid rgba(58,171,222,.22);
    color: var(--primary-dark);
    font-size: .7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Heading */
.ccc-success-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark-2);
    line-height: 1.2;
    margin-bottom: 14px;
}

/* Body text */
.ccc-success-msg {
    font-family: var(--font-body);
    font-size: .96rem;
    color: #4B5563;
    line-height: 1.75;
    max-width: 380px;
    margin: 0 auto 32px;
}

/* Divider */
.ccc-success-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,171,222,.2), transparent);
    margin: 0 0 28px;
}

/* CTA button */
.ccc-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(58,171,222,.32);
    text-decoration: none;
}
.ccc-success-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(58,171,222,.42);
    color: var(--white);
}
.ccc-success-btn:active {
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 540px) {
    .ccc-success-card {
        padding: 44px 24px 36px;
        border-radius: var(--radius-lg);
    }
    .ccc-success-title { font-size: 1.2rem; }
    .ccc-success-msg   { font-size: .9rem; }
    .ccc-success-icon-wrap { width: 68px; height: 68px; margin-bottom: 22px; }
    .ccc-success-check { width: 32px; height: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   CAPITAL CLEAN CO — REVISION ADDITIONS v4.1
   Includes: Logo updates, Privacy Policy, Sustainability mobile,
   Insight blog previews, Instagram section
═══════════════════════════════════════════════════════════ */

/* ── Header logo — responsive sizing for square 2000×2000 asset ── */
.site-logo img,
.site-logo .ccc-header-logo,
.site-logo .custom-logo {
    height: 110px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}
@media (max-width: 1200px) {
    .site-logo img,
    .site-logo .ccc-header-logo,
    .site-logo .custom-logo {
        height: 88px;
        max-width: 160px;
    }
}
@media (max-width: 860px) {
    .site-logo img,
    .site-logo .ccc-header-logo,
    .site-logo .custom-logo {
        height: 72px;
        max-width: 140px;
    }
}
@media (max-width: 480px) {
    .site-logo img,
    .site-logo .ccc-header-logo,
    .site-logo .custom-logo {
        height: 60px;
        max-width: 120px;
    }
}

/* ── Footer logo — slightly smaller than header, width-constrained ── */
.footer-logo {
    height: auto;
    width: 90px;
    max-width: 90px;
    object-fit: contain;
    /* margin handled by .footer-brand .footer-logo */
}

/* ── Sustainability — Globe: desktop only / accordion: mobile only ── */
.cccp-globe-desktop-only {
    display: block;
}
.cccp-sustain-mobile-section {
    display: none;
}
@media (max-width: 899px) {
    .cccp-globe-desktop-only {
        display: none !important;
    }
    .cccp-sustain-mobile-section {
        display: block;
    }
}

/* ── Sustainability mobile accordion section ── */
.cccp-sustain-mobile-section {
    background: #04111d;
    padding: 80px 0 60px;
    overflow: hidden;
}
.cccp-sustain-mobile-intro {
    text-align: center;
    margin-bottom: 40px;
}
.cccp-sustain-mobile-intro h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
}
.cccp-sustain-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto;
}
.cccp-sustain-acc-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(58,171,222,.18);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .3s;
}
.cccp-sustain-acc-item.is-open {
    border-color: rgba(58,171,222,.45);
    background: rgba(58,171,222,.07);
}
.cccp-sustain-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.cccp-sustain-acc-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cccp-sustain-acc-icon svg { width: 20px; height: 20px; }
.cccp-sustain-acc-num {
    font-size: .72rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .08em;
    min-width: 28px;
}
.cccp-sustain-acc-label { flex: 1; }
.cccp-sustain-acc-arrow {
    color: rgba(255,255,255,.45);
    transition: transform .3s;
    display: flex;
    align-items: center;
}
.cccp-sustain-acc-item.is-open .cccp-sustain-acc-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}
.cccp-sustain-acc-body {
    display: none;
    padding: 0 20px 20px 74px;
}
.cccp-sustain-acc-item.is-open .cccp-sustain-acc-body {
    display: block;
}
.cccp-sustain-acc-body h3 {
    color: var(--primary-light);
    font-size: 1rem;
    margin-bottom: 8px;
}
.cccp-sustain-acc-body p {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.cccp-sustain-acc-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(58,171,222,.1);
    border: 1px solid rgba(58,171,222,.2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    width: fit-content;
}
.cccp-sustain-acc-stat-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-light);
}
.cccp-sustain-acc-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}
.cccp-sustain-mobile-quote {
    text-align: center;
    margin-top: 40px;
    padding: 0 16px;
}
.cccp-sustain-mobile-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(.9rem, 3.5vw, 1.1rem);
    font-style: italic;
    color: rgba(255,255,255,.6);
    max-width: 540px;
    margin: 0 auto;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    text-align: left;
}
@media (max-width: 540px) {
    .cccp-sustain-acc-body { padding-left: 20px; }
}

/* ── Insight page — static blog preview cards ── */
.cccp-insight-static-thumb {
    background: linear-gradient(135deg, #0d2233 0%, #0a3352 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
    overflow: hidden;
}
.cccp-insight-thumb-icon {
    color: rgba(58,171,222,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cccp-insight-thumb-icon svg {
    width: 72px;
    height: 72px;
}
.cccp-insight-thumb-overlay {
    position: absolute;
    bottom: 14px;
    left: 16px;
}
.cccp-insight-thumb-overlay span {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.cccp-insight-static-thumb-sm {
    background: linear-gradient(135deg, #0d2233 0%, #0a3352 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}
.cccp-insight-thumb-icon-sm {
    color: rgba(58,171,222,.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cccp-insight-thumb-icon-sm svg {
    width: 52px;
    height: 52px;
}
.cccp-insight-cat-overlay {
    position: absolute;
    bottom: 10px;
    left: 12px;
}
.cccp-insight-cat-overlay span {
    background: rgba(0,0,0,.6);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(58,171,222,.3);
}
.cccp-insight-cat-pill {
    background: var(--primary-bg);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(58,171,222,.25);
    display: inline-block;
    margin-right: 4px;
}
.cccp-insight-cat-pill-sm {
    background: var(--primary-bg);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 14px;
    border: 1px solid rgba(58,171,222,.2);
    display: inline-block;
    margin-right: 4px;
}
.ccc-insight-read-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* ── Instagram section ── */
.cccp-instagram-section {
    padding: 80px 0;
    background: var(--white);
}
.cccp-instagram-feed {
    margin-top: 48px;
}
.cccp-instagram-placeholder {
    border: 2px dashed rgba(58,171,222,.25);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    background: var(--lighter);
}
.cccp-ig-placeholder-inner {
    max-width: 520px;
    margin: 0 auto;
}
.cccp-ig-icon {
    color: var(--primary);
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.cccp-ig-icon svg {
    width: 48px;
    height: 48px;
}
.cccp-ig-placeholder-inner h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--heading);
}
.cccp-ig-placeholder-inner p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 10px;
}
.cccp-ig-placeholder-inner a {
    color: var(--primary);
    text-decoration: underline;
}
@media (max-width: 540px) {
    .cccp-instagram-placeholder { padding: 40px 20px; }
}

/* ── Privacy Policy — reuses .cccp-tc-* styles exactly ── */
/* No additional styles needed — identical layout to T&C */

/* ── Insight featured section layout improvements ── */
.cccp-insight-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.cccp-insight-featured-thumb {
    min-height: 300px;
}
.cccp-insight-featured-thumb a,
.cccp-insight-featured-thumb .cccp-insight-static-thumb {
    display: block;
    height: 100%;
    min-height: 300px;
    border-radius: 0;
}
.cccp-insight-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cccp-insight-featured-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cccp-insight-featured-body h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin: 12px 0 14px;
    line-height: 1.3;
}
.cccp-insight-featured-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.cccp-insight-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .cccp-insight-featured {
        grid-template-columns: 1fr;
    }
    .cccp-insight-featured-thumb,
    .cccp-insight-featured-thumb a,
    .cccp-insight-featured-thumb .cccp-insight-static-thumb {
        min-height: 200px;
    }
    .cccp-insight-featured-body {
        padding: 28px 24px;
    }
}

/* ── Ensure sustainability page scrolls on all sizes ── */
.cccp-globe-section.cccp-globe-desktop-only {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
body.page-template-page-sustainability {
    overflow-x: hidden;
}


/* ══════════════════════════════════════════════════════════════
   INSIGHT — Interactive topic tab panel components
   ══════════════════════════════════════════════════════════════ */

/* Section override so insight reuses tc-section spacing */
.cccp-insight-tabs-section.cccp-tc-section {
    background: var(--lighter);
}

/* Meta row (category pill + read time) */
.cccp-insight-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    flex-wrap: wrap;
}

.cccp-insight-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text-muted);
}

.cccp-insight-read-time svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Lead paragraph */
.cccp-insight-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

/* Panel body h3 */
.cccp-tc-panel-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
    letter-spacing: -.01em;
}

.cccp-tc-panel-body h3:first-child {
    margin-top: 0;
}

/* Mini cards grid (3-up) */
.cccp-insight-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 24px;
}

.cccp-insight-mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    transition: box-shadow .2s, transform .2s;
}

.cccp-insight-mini-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.cccp-insight-mini-card strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.cccp-insight-mini-card p {
    font-size: .85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Checklist */
.cccp-insight-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 24px;
}

.cccp-insight-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--text);
    padding: 8px 12px;
    background: var(--white);
    border-radius: var(--radius-sm, 8px);
    border: 1px solid var(--border);
}

.cccp-insight-check-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* Warning checklist variant */
.cccp-insight-checklist--warning .cccp-insight-check-item {
    background: #fff8f8;
    border-color: #fde8e8;
    color: var(--text);
}

.cccp-insight-checklist--warning .cccp-insight-check-item svg {
    color: #ef4444;
}

/* Callout block */
.cccp-insight-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--primary-bg, rgba(58,171,222,.06));
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 18px 20px;
    margin: 28px 0 8px;
    font-size: .9rem;
    line-height: 1.65;
    color: var(--text);
}

.cccp-insight-callout svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.cccp-insight-callout strong {
    color: var(--dark);
}

/* Responsive: mini cards 2-up on tablet, 1-up on mobile */
@media (max-width: 900px) {
    .cccp-insight-mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cccp-insight-mini-cards {
        grid-template-columns: 1fr;
    }
    .cccp-insight-lead {
        font-size: 1rem;
    }
}

/* ════════════════════════════════════════════════════════════
   INSIGHT PAGE v5 — Knowledge Hub Redesign
════════════════════════════════════════════════════════════ */

/* ── Search bar ──────────────────────────────────────────── */
.cccp-insight-search-wrap { margin-top: 28px; max-width: 600px; }
.cccp-insight-search {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px); border-radius: 50px;
    padding: 12px 20px; transition: background .2s, border-color .2s;
}
.cccp-insight-search:focus-within {
    background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4);
}
.cccp-insight-search svg { width: 18px; height: 18px; flex-shrink: 0; color: rgba(255,255,255,.7); }
.cccp-insight-search input {
    flex: 1; background: none; border: none; outline: none;
    font-family: var(--font-body); font-size: .9rem; color: var(--white);
    min-width: 0;
}
.cccp-insight-search input::placeholder { color: rgba(255,255,255,.55); }
.cccp-insight-search-clear {
    background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer;
    font-size: 1rem; line-height: 1; padding: 2px; flex-shrink: 0;
    transition: color .2s;
}
.cccp-insight-search-clear:hover { color: var(--white); }
.cccp-insight-search-hint { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 8px; padding-left: 4px; min-height: 18px; }

/* ── Featured article section ────────────────────────────── */
.cccp-insight-featured-section { padding: 60px 0 40px; background: var(--white); }
.cccp-insight-featured-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    border: 1px solid rgba(58,171,222,.2);
}
.cccp-insight-featured-badge {
    position: absolute; top: 24px; right: 24px;
    background: rgba(58,171,222,.15); border: 1px solid rgba(58,171,222,.3);
    color: var(--primary-light); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; padding: 6px 14px;
    border-radius: 50px; display: flex; align-items: center; gap: 6px;
}
.cccp-insight-featured-badge svg { width: 13px; height: 13px; }
.cccp-insight-featured-inner { display: grid; grid-template-columns: 260px 1fr; }
.cccp-insight-featured-visual {
    background: linear-gradient(160deg, rgba(58,171,222,.18) 0%, rgba(58,171,222,.04) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 48px 32px; gap: 24px; border-right: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.cccp-insight-featured-icon-wrap {
    width: 72px; height: 72px; border-radius: var(--radius-md);
    background: rgba(58,171,222,.12); border: 1px solid rgba(58,171,222,.25);
    display: flex; align-items: center; justify-content: center;
}
.cccp-insight-featured-icon-wrap svg { width: 32px; height: 32px; color: var(--primary-light); }
.cccp-insight-featured-num {
    font-family: var(--font-heading); font-size: 5rem; font-weight: 900;
    color: rgba(58,171,222,.08); line-height: 1; letter-spacing: -.04em;
}
.cccp-insight-featured-body { padding: 48px 52px 48px 48px; }
.cccp-insight-featured-body h2 {
    font-family: var(--font-heading); font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 800; color: var(--white); margin: 14px 0 16px; line-height: 1.3;
}
.cccp-insight-featured-body p { color: rgba(255,255,255,.65); font-size: .93rem; line-height: 1.7; margin-bottom: 28px; }

/* Override pill/readtime colours inside dark card */
.cccp-insight-featured-body .cccp-insight-cat-pill {
    background: rgba(58,171,222,.18); border-color: rgba(58,171,222,.35); color: var(--primary-light);
}
.cccp-insight-featured-body .cccp-insight-read-time { color: rgba(255,255,255,.5); }

/* ── Trust strip ─────────────────────────────────────────── */
.cccp-insight-trust-strip {
    background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.cccp-insight-trust-items {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.cccp-insight-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 600; color: var(--text-muted);
    padding: 8px 24px;
}
.cccp-insight-trust-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.cccp-insight-trust-sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }

/* ── Filter bar — sticky (mirrors Services page behaviour) ── */
.cccp-insight-filter-bar-wrap {
    background: var(--white); border-bottom: 1px solid var(--border);
    position: sticky; top: 80px; z-index: 10;
    padding: 20px 0;
}
.cccp-insight-filter-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.cccp-insight-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cccp-insight-filter-tab {
    padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border);
    background: var(--white); font-family: var(--font-heading); font-size: .78rem;
    font-weight: 600; color: var(--text-muted); cursor: pointer;
    transition: all var(--transition); white-space: nowrap;
}
.cccp-insight-filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.cccp-insight-filter-tab.active {
    background: var(--primary); border-color: var(--primary); color: var(--white);
    box-shadow: var(--shadow-blue);
}
.cccp-insight-count { font-size: .82rem; color: var(--text-muted); white-space: nowrap; }
.cccp-insight-count span { font-weight: 700; color: var(--primary); }

/* ── Article card grid ───────────────────────────────────── */
.cccp-insight-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cccp-insight-article-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 28px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    cursor: pointer; position: relative;
    display: flex; flex-direction: column; gap: 0;
}
.cccp-insight-article-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(58,171,222,.25);
}
.cccp-insight-article-card.is-featured-card { border-color: rgba(58,171,222,.3); }
.cccp-iac-icon-wrap {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.cccp-iac-icon-wrap svg {
    width: 36px; height: 36px; color: var(--primary);
    background: var(--primary-bg); padding: 8px; border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.cccp-iac-num {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
    color: rgba(58,171,222,.1); line-height: 1;
}
.cccp-iac-body { display: flex; flex-direction: column; flex: 1; }
.cccp-iac-body h3 {
    font-family: var(--font-heading); font-size: .9rem; font-weight: 700;
    color: var(--dark-2); margin: 10px 0 8px; line-height: 1.35;
}
.cccp-iac-body p { font-size: .82rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.cccp-iac-read-btn {
    background: none; border: none; padding: 0; cursor: pointer;
    font-family: var(--font-heading); font-size: .8rem; font-weight: 700;
    color: var(--primary); display: flex; align-items: center; gap: 6px;
    transition: gap var(--transition), opacity var(--transition);
    margin-top: auto;
}
.cccp-iac-read-btn svg { width: 14px; height: 14px; }
.cccp-insight-article-card:hover .cccp-iac-read-btn { gap: 10px; }
.cccp-iac-featured-tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--primary-bg); border: 1px solid rgba(58,171,222,.25);
    color: var(--primary); font-size: .66rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px;
    border-radius: 50px; display: flex; align-items: center; gap: 5px;
}
.cccp-iac-featured-tag svg { width: 10px; height: 10px; }

/* ── No results ──────────────────────────────────────────── */
.cccp-insight-no-results {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 60px 20px; text-align: center;
    color: var(--text-muted); font-size: .95rem;
}
.cccp-insight-no-results svg { width: 20px; height: 20px; }
.cccp-reset-search {
    background: none; border: none; color: var(--primary); font-weight: 600;
    cursor: pointer; text-decoration: underline; font-size: .9rem;
}

/* ── Mid-page CTA ────────────────────────────────────────── */
.cccp-insight-mid-cta {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    padding: 64px 0; position: relative; overflow: hidden;
}
.cccp-insight-mid-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(58,171,222,.12) 0%, transparent 70%);
}
.cccp-insight-mid-cta-inner {
    display: grid; grid-template-columns: 1fr auto; gap: 48px;
    align-items: center; position: relative; z-index: 1;
}
.cccp-insight-mid-cta-content h2 {
    font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800; color: var(--white); margin: 12px 0 14px;
}
.cccp-insight-mid-cta-content p { color: rgba(255,255,255,.65); font-size: .93rem; line-height: 1.7; max-width: 560px; }
.cccp-insight-mid-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ── FAQ ─────────────────────────────────────────────────── */
.cccp-insight-faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.cccp-insight-faq-item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cccp-insight-faq-item.is-open { border-color: rgba(58,171,222,.35); box-shadow: 0 4px 16px rgba(58,171,222,.08); }
.cccp-insight-faq-q {
    width: 100%; background: none; border: none; padding: 20px 22px;
    display: flex; align-items: flex-start; gap: 16px; cursor: pointer;
    text-align: left; font-family: var(--font-heading); font-size: .88rem;
    font-weight: 700; color: var(--dark-2); line-height: 1.45;
    transition: color var(--transition);
}
.cccp-insight-faq-q:hover, .cccp-insight-faq-item.is-open .cccp-insight-faq-q { color: var(--primary); }
.cccp-insight-faq-q > span:first-child { flex: 1; }
.cccp-insight-faq-icon {
    width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
    background: var(--lighter); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), transform var(--transition);
    margin-top: 1px;
}
.cccp-insight-faq-icon svg { width: 14px; height: 14px; color: var(--primary); transition: transform .3s; }
.cccp-insight-faq-item.is-open .cccp-insight-faq-icon { background: var(--primary-bg); }
.cccp-insight-faq-item.is-open .cccp-insight-faq-icon svg { transform: rotate(45deg); }
.cccp-insight-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.cccp-insight-faq-a p {
    padding: 0 22px 22px; font-size: .87rem; line-height: 1.75;
    color: var(--text-muted); border-top: 1px solid var(--border);
    padding-top: 16px; margin: 0;
}

/* ── Resource download card ──────────────────────────────── */
.cccp-insight-resource-section { padding: 64px 0; background: var(--white); }
.cccp-insight-resource-card {
    display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
    background: linear-gradient(135deg, var(--lighter) 0%, rgba(58,171,222,.05) 100%);
    border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px;
}
.cccp-insight-resource-icon {
    width: 72px; height: 72px; border-radius: var(--radius-md);
    background: var(--primary-bg); border: 1px solid rgba(58,171,222,.25);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cccp-insight-resource-icon svg { width: 32px; height: 32px; color: var(--primary); }
.cccp-insight-resource-content h3 {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
    color: var(--dark-2); margin-bottom: 10px;
}
.cccp-insight-resource-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.cccp-insight-resource-list {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.cccp-insight-resource-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; color: var(--text-muted);
}
.cccp-insight-resource-list li svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.cccp-insight-resource-action { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.cccp-insight-resource-note { font-size: .75rem; color: var(--text-muted); text-align: center; }

/* ── Industry guides grid ────────────────────────────────── */
.cccp-insight-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cccp-insight-guide-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 28px 24px;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex; flex-direction: column; gap: 0;
}
.cccp-insight-guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cccp-insight-guide-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: var(--primary-bg); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.cccp-insight-guide-icon svg { width: 22px; height: 22px; color: var(--primary); }
.cccp-insight-guide-card h4 {
    font-family: var(--font-heading); font-size: .92rem; font-weight: 700;
    color: var(--dark-2); margin-bottom: 8px;
}
.cccp-insight-guide-card p { font-size: .83rem; line-height: 1.65; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.cccp-insight-guide-btn {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 8px 14px; font-family: var(--font-heading); font-size: .78rem; font-weight: 700;
    color: var(--primary); cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all var(--transition); margin-top: auto; align-self: flex-start;
}
.cccp-insight-guide-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.cccp-insight-guide-btn svg { width: 13px; height: 13px; }

/* ── Sticky enquiry bar ──────────────────────────────────── */
.cccp-insight-sticky-bar {
    position: fixed; bottom: -80px; left: 0; right: 0; z-index: 900;
    background: var(--dark-2); border-top: 1px solid rgba(58,171,222,.25);
    padding: 14px 0; transition: bottom .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -8px 32px rgba(0,0,0,.2);
}
.cccp-insight-sticky-bar.is-visible { bottom: 0; }
.cccp-insight-sticky-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cccp-insight-sticky-text {
    font-size: .87rem; color: rgba(255,255,255,.75);
    display: flex; align-items: center; gap: 8px;
}
.cccp-insight-sticky-text svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }
.cccp-insight-sticky-actions { display: flex; align-items: center; gap: 10px; }
.cccp-insight-sticky-close {
    background: rgba(255,255,255,.1); border: none; color: rgba(255,255,255,.5);
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
}
.cccp-insight-sticky-close:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* ── Article Drawer ──────────────────────────────────────── */
.cccp-article-overlay {
    position: fixed; inset: 0; z-index: 1100; background: rgba(10,10,10,.55);
    backdrop-filter: blur(4px); opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.cccp-article-overlay.is-open { opacity: 1; pointer-events: all; }
.cccp-article-drawer {
    position: fixed; top: 0; right: -760px; width: min(760px, 100vw);
    height: 100vh; z-index: 1200; display: flex; flex-direction: column;
    background: var(--white); box-shadow: -12px 0 60px rgba(0,0,0,.18);
    transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cccp-article-drawer.is-open { right: 0; }
body.cccp-drawer-open { overflow: hidden; }
.cccp-article-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.cccp-article-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 32px; border-bottom: 1px solid var(--border);
    background: var(--white); flex-shrink: 0; gap: 16px;
}
.cccp-article-drawer-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cccp-article-drawer-close {
    width: 36px; height: 36px; border-radius: 50%; background: var(--lighter);
    border: 1px solid var(--border); cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--text-muted); transition: background .2s, color .2s;
}
.cccp-article-drawer-close:hover { background: var(--border); color: var(--dark); }
.cccp-article-drawer-progress { height: 3px; background: var(--border); flex-shrink: 0; }
.cccp-article-drawer-progress-fill {
    height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 0%; transition: width .15s linear;
}
.cccp-article-drawer-body {
    flex: 1; overflow-y: auto; padding: 40px 40px 0;
    scroll-behavior: smooth;
}
.cccp-article-drawer-title {
    font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800; color: var(--dark-2); line-height: 1.3; margin-bottom: 28px;
}
.cccp-article-drawer-body h3 {
    font-size: 1rem; font-weight: 700; color: var(--dark);
    margin: 28px 0 12px; letter-spacing: -.01em;
}
.cccp-article-drawer-body h3:first-of-type { margin-top: 0; }
.cccp-article-drawer-body p { color: var(--text-muted); font-size: .92rem; line-height: 1.82; margin-bottom: 16px; }
.cccp-article-drawer-footer {
    border-top: 1px solid var(--border); flex-shrink: 0;
    background: var(--lighter);
}
.cccp-article-related { padding: 24px 32px; border-bottom: 1px solid var(--border); }
.cccp-related-label {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--text-muted); margin-bottom: 10px;
}
.cccp-related-list { display: flex; flex-direction: row; gap: 8px; flex-wrap: wrap; }
.cccp-related-btn {
    display: flex; align-items: center; gap: 10px; flex: 1; min-width: 200px; max-width: calc(50% - 4px);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 10px 14px; cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: left;
}
.cccp-related-btn:hover { border-color: rgba(58,171,222,.35); box-shadow: 0 2px 8px rgba(58,171,222,.1); }
.cccp-related-num {
    font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
    color: var(--primary); width: 24px; flex-shrink: 0;
}
.cccp-related-info { flex: 1; min-width: 0; }
.cccp-related-cat { display: block; font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.cccp-related-title { display: block; font-family: var(--font-heading); font-size: .82rem; font-weight: 700; color: var(--dark-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cccp-article-drawer-cta { padding: 24px 32px; }
.cccp-article-drawer-cta p { font-size: .85rem; color: var(--text-muted); margin-bottom: 14px; }

/* ── Insight cat pill (small variant already exists, ensure base) ── */
.cccp-insight-cat-pill {
    display: inline-flex; align-items: center; padding: 4px 12px;
    background: var(--primary-bg); border: 1px solid rgba(58,171,222,.25);
    border-radius: 50px; font-size: .72rem; font-weight: 700;
    color: var(--primary); white-space: nowrap;
}
.cccp-insight-cat-pill-sm { font-size: .68rem; padding: 3px 10px; }

#cccp-article-grid-section { padding-top: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .cccp-insight-featured-inner { grid-template-columns: 200px 1fr; }
    .cccp-insight-guides-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .cccp-insight-grid { grid-template-columns: repeat(2, 1fr); }
    .cccp-insight-faq-grid { grid-template-columns: 1fr; }
    .cccp-insight-mid-cta-inner { grid-template-columns: 1fr; }
    .cccp-insight-mid-cta-actions { flex-direction: row; }
    .cccp-insight-resource-card { grid-template-columns: 1fr; gap: 24px; }
    .cccp-insight-resource-icon { width: 56px; height: 56px; }
}
@media (max-width: 768px) {
    .cccp-insight-featured-inner { grid-template-columns: 1fr; }
    .cccp-insight-featured-visual { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 32px; flex-direction: row; justify-content: flex-start; }
    .cccp-insight-featured-body { padding: 32px; }
    .cccp-insight-trust-sep { display: none; }
    .cccp-insight-trust-items { justify-content: flex-start; gap: 12px; }
    .cccp-insight-trust-item { padding: 6px 12px; }
    .cccp-article-drawer { width: 100vw; }
    .cccp-insight-sticky-text { font-size: .78rem; }
}
@media (max-width: 640px) {
    .cccp-insight-grid { grid-template-columns: 1fr; }
    .cccp-insight-guides-grid { grid-template-columns: 1fr; }
    .cccp-insight-filter-bar { flex-direction: column; align-items: flex-start; }
    .cccp-insight-filter-bar-wrap { top: 60px; }
    .cccp-article-drawer-body { padding: 28px 20px 0; }
    .cccp-article-drawer-cta, .cccp-article-related { padding: 20px; }
    .cccp-insight-sticky-inner { padding: 0 16px; }
    .cccp-insight-sticky-text span { display: none; }
    .cccp-related-btn { max-width: 100%; min-width: 0; }
}
