/* ── CXC.ai Brand Theme — Lime Green on Light ── */
:root {
    --brand-primary: #87F432;
    --brand-primary-dark: #3d7a0a;
    --brand-dark: #0C0E12;
    --bg-light: #f2f9e8;
    --text-main: #1f2933;
    --text-light: #52606d;
    --white: #ffffff;
}

body {
    background: var(--white);
    overflow-x: hidden;
}

/* ── Hero ── */
.hero.cxc-hero {
    background: linear-gradient(rgba(7,23,5,0.82) 0%, rgba(13,30,8,0.78) 100%) center/cover no-repeat;
    padding: 180px 0 130px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* animated glow orb behind hero content */
.hero.cxc-hero::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135,244,50,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero.cxc-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 30%, var(--brand-primary) 70%, transparent 100%);
    z-index: 3;
}

.hero.cxc-hero .container {
    position: relative;
    z-index: 2;
}

.cxc-hero-tag {
    background: var(--brand-primary) !important;
    color: var(--brand-dark) !important;
}

.hero.cxc-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--white);
	line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero.cxc-hero p {
    font-size: 1.25rem;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--white);
}

.meta-info {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-tag {
   background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* ── Overlap / summary card ── */
.overlap-section {
    margin-top: -80px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.summary-box {
    background: #fff;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.11);
    border-top: 6px solid var(--brand-primary);
    position: relative;
    overflow: hidden;
}
.summary-box::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135,244,50,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.summary-box::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135,244,50,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Product image in summary card */
.cxc-summary-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.cxc-summary-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* KPI strip below summary-grid */
.cxc-kpi-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(135, 244, 50, 0.18);
}

.cxc-kpi-strip-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(135, 244, 50, 0.18);
}

.cxc-kpi-strip-item:last-child { border-right: 0; }

.cxc-kpi-strip-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 6px;
}

.cxc-kpi-strip-val {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    line-height: 1.4;
}

.section {
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.section:first-of-type {
    border-top: none;
}

.bg-light {
    background: var(--bg-light);
    background-image: radial-gradient(rgba(135,244,50,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: var(--brand-primary);
    color: var(--brand-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.section-title span {
    color: var(--brand-primary);
}

.section-desc {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.cxc-summary-list,
.cxc-check-list,
.cxc-arch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cxc-summary-list li,
.cxc-check-list li,
.cxc-arch-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.cxc-summary-list li::before,
.cxc-check-list li::before,
.cxc-arch-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-primary);
    position: absolute;
    left: 0;
    top: 2px;
}

.cxc-panel {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    height: 100%;
    border: 1px solid rgba(135, 244, 50, 0.18);
    border-bottom: 3px solid rgba(135, 244, 50, 0.25);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.cxc-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(135, 244, 50, 0.15);
    border-bottom-color: var(--brand-primary);
}

.cxc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

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

.cxc-stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5fce8 100%);
    border: 1px solid rgba(135, 244, 50, 0.2);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
}

.cxc-stat-card h3 {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 1.3rem;
}

.cxc-stat-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.cxc-kpi {
    background: linear-gradient(135deg, #0C0E12 0%, #1a2010 100%);
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    border-left: 4px solid var(--brand-primary);
}

.cxc-kpi .label {
    display: inline-block;
    opacity: 0.8;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cxc-kpi h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.cxc-kpi p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.system-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(135, 244, 50, 0.12);
    border-left: 4px solid var(--brand-primary);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    align-items: flex-start;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(135, 244, 50, 0.15);
    border-left-color: var(--brand-dark);
}

.system-card i {
    background: var(--brand-primary);
    color: var(--brand-dark);
    font-size: 1.1rem;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.system-card h4 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
}

.system-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cxc-note {
    background: linear-gradient(135deg, rgba(135, 244, 50, 0.10) 0%, rgba(108, 195, 40, 0.06) 100%);
    border: 1px solid rgba(135, 244, 50, 0.3);
    border-left: 5px solid var(--brand-primary);
    border-radius: 18px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 6px 24px rgba(135, 244, 50, 0.10);
}
.cxc-note::before {
    content: "\f0eb";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-primary);
    font-size: 1.8rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(135,244,50,0.4));
}

.cxc-note p {
    margin-bottom: 0;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
}

.cxc-gallery-box {
    margin: 0 auto 36px;
    border-radius: 24px;
}

.cxc-gallery-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    max-height: 560px;
    border-radius: 16px;
    overflow: hidden;
}

.cxc-gallery-box img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 530px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.cxc-architecture-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(135, 244, 50, 0.15);
}

.cxc-architecture-box img {
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

/* ── Solution modules ── */
.cxc-module-card {
    background: #fff;
    border: 1px solid rgba(135, 244, 50, 0.2);
    border-top: 4px solid var(--brand-primary);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cxc-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(135, 244, 50, 0.18);
    border-color: var(--brand-primary);
}
.cxc-module-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}
.cxc-module-card h4 {
    color: var(--brand-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/*.cxc-module-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
}*/

/* ── Tech Stack ── */
.cxc-tech-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 52px;
}
.cxc-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.cxc-tech-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 16px;
}
.cxc-tech-logo img {
    height: 70px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}
.cxc-tech-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    text-align: center;
}

/* ── At a Glance grid ── */
.cxc-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(135, 244, 50, 0.22);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    margin-top: 36px;
}
.cxc-glance-item {
    padding: 30px 18px 26px;
    text-align: center;
    border-right: 1px solid rgba(135, 244, 50, 0.18);
    transition: background 0.3s;
}
.cxc-glance-item:hover { background: rgba(135, 244, 50, 0.04); }
.cxc-glance-item:last-child { border-right: 0; }
.cxc-glance-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    background: var(--brand-primary);
    color: var(--brand-dark);
    font-size: 1.3rem;
}
.cxc-glance-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 6px;
}
.cxc-glance-value {
    display: block;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1rem;
}
.cxc-glance-footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(135, 244, 50, 0.15);
}
.cxc-glance-foot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.88rem;
}
.cxc-glance-foot-item i { color: var(--brand-primary); }

/* ── Impact stats (big numbers) ── */
.cxc-impact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
    text-align: center;
}
.cxc-impact-item {
    background: #fff;
    border: 1px solid rgba(135, 244, 50, 0.2);
    border-top: 4px solid var(--brand-primary);
    border-radius: 18px;
    padding: 36px 24px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.cxc-impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(135, 244, 50, 0.15);
}
.cxc-impact-val {
    display: block;
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #87F432 0%, #5ab820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.cxc-impact-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.cxc-impact-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── Why Closeloop ── */
.cxc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.cxc-why-card {
    background: #fff;
    border: 1px solid rgba(135, 244, 50, 0.15);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.cxc-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.cxc-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(135, 244, 50, 0.18);
    background: #fafff5;
}
.cxc-why-card:hover::before { transform: scaleX(1); }
.cxc-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: var(--brand-dark);
    font-size: 1.2rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.cxc-why-card h4 {
    color: var(--brand-dark);
    font-size: 1.05rem;
    margin: 0 0 10px;
}
/*.cxc-why-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}*/

/* ── Prevent browser auto-link coloring in summary ── */
.summary-box,
.summary-box * {
    -webkit-text-fill-color: initial;
}
.summary-box p {
    color: var(--text-light) !important;
}
.summary-box li {
    color: var(--text-light) !important;
}
.summary-box strong {
    color: var(--brand-dark) !important;
    font-weight: 700;
}
.summary-box a,
.summary-box a:link,
.summary-box a:visited,
.summary-box a[x-apple-data-detectors],
a[x-apple-data-detectors] {
    color: var(--text-light) !important;
    text-decoration: none !important;
    pointer-events: none;
}

/* ── Override inline heading colors → black ── */
.cxc-panel h3,
.cxc-why-card h4,
.cxc-module-card h4,
.system-card h4 {
    color: var(--brand-dark) !important;
}

/* ── Dark sections ── */
.cxc-dark-section {
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
}
.cxc-dark-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -160px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135,244,50,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.cxc-dark-section::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135,244,50,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cxc-dark-section .container { position: relative; z-index: 2; }

/* headings & text inside dark sections */
.cxc-dark-section .section-title { color: #fff; }
.cxc-dark-section .section-title span { color: var(--brand-primary); }
.cxc-dark-section .section-desc { color: rgba(255,255,255,0.65); }
.cxc-dark-section .text-center .section-title::after { background: var(--brand-primary); }

/* Impact cards on dark background */
.cxc-dark-section .cxc-impact-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(135,244,50,0.18);
    border-top: 4px solid var(--brand-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.cxc-dark-section .cxc-impact-item:hover {
    background: rgba(135,244,50,0.06);
    box-shadow: 0 20px 52px rgba(135,244,50,0.18);
}
.cxc-dark-section .cxc-impact-label { color: rgba(255,255,255,0.75); }
.cxc-dark-section .cxc-impact-desc  { color: rgba(255,255,255,0.5); }

/* Approach panels on dark background */
.cxc-dark-section .cxc-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(135,244,50,0.14);
    border-bottom: 3px solid rgba(135,244,50,0.25);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.cxc-dark-section .cxc-panel:hover {
    background: rgba(135,244,50,0.06);
    border-bottom-color: var(--brand-primary);
    box-shadow: 0 22px 52px rgba(135,244,50,0.18);
}
.cxc-dark-section .cxc-panel h3 { color: #fff !important; }
.cxc-dark-section .cxc-panel p  { color: rgba(255,255,255,0.55) !important; }

/* Why cards on dark background */
.cxc-dark-section .cxc-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(135,244,50,0.14);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.cxc-dark-section .cxc-why-card:hover {
    background: rgba(135,244,50,0.07);
    box-shadow: 0 22px 52px rgba(135,244,50,0.18);
}
.cxc-dark-section .cxc-why-card h4 { color: #fff !important; }
.cxc-dark-section .cxc-why-card p  { color: rgba(255,255,255,0.55); }

/* ── Quote / Testimonials ── */
.cxc-feedback-desc {
    max-width: 920px;
    margin: 20px auto 40px !important;
    text-align: start;
}

.cxc-quote {
    background: #fff;
    padding: 70px 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}
.cxc-quote-icon {
    font-size: 4rem;
    color: rgba(135, 244, 50, 0.2);
    position: absolute;
    top: 30px;
    left: 30px;
}
.cxc-quote-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    z-index: 2;
}
.cxc-quote-name {
    color: var(--brand-primary-dark);
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
}
.cxc-quote-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ── Section title underline accent ── */
/* .text-center .section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 4px;
    margin: 14px auto 0;
} */

/* ── Impact stats (big numbers) ── */
.cxc-impact-item {
    position: relative;
    overflow: hidden;
}
.cxc-impact-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 3px 3px 0 0;
}

/* ── Glance icon pulse on hover ── */
.cxc-glance-item:hover .cxc-glance-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* ── Tech logo hover lift — disabled ── */
.cxc-tech-item:hover .cxc-tech-logo {
    transform: none;
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 70px;
}

/* ── Laptop / medium screens (992px – 1199px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
    .summary-box {
        padding: 48px 44px;
    }
    .summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .hero.cxc-hero h1 {
        font-size: 2.9rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .cxc-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .cxc-why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .cxc-glance-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .cxc-impact-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
    .cxc-impact-val {
        font-size: 2.8rem;
    }
    .cxc-module-card {
        padding: 24px;
    }
    .cxc-why-card {
        padding: 24px 20px;
    }
    .cxc-panel {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .cxc-grid-2,
    .cxc-grid-3,
    .summary-grid,
    .systems-grid,
    .cxc-why-grid { grid-template-columns: 1fr; }

    .hero.cxc-hero { padding: 140px 0 100px; }
    .hero.cxc-hero h1 { font-size: 2.5rem; }

    .summary-box { padding: 40px 32px; }

    .cxc-kpi-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 0;
    }
    .cxc-kpi-strip-item {
        border-right: 0;
        border-bottom: 1px solid rgba(135, 244, 50, 0.18);
        padding-bottom: 16px;
    }
    .cxc-kpi-strip-item:nth-child(odd) { border-right: 1px solid rgba(135, 244, 50, 0.18); }
    .cxc-kpi-strip-item:last-child,
    .cxc-kpi-strip-item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }

    .cxc-impact-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .cxc-glance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cxc-glance-item:nth-child(2) { border-right: 0; }
    .cxc-glance-item:nth-child(1),
    .cxc-glance-item:nth-child(2) { border-bottom: 1px solid rgba(135, 244, 50, 0.18); }
    .cxc-glance-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .cxc-tech-grid { gap: 30px 40px; }
    .cxc-tech-logo { width: 64px; height: 64px; }
    .cxc-tech-logo img { height: 56px; }

    .cxc-gallery-frame {
        min-height: 460px;
        max-height: 460px;
    }

    .cxc-gallery-box img {
        max-height: 430px;
    }
}

@media (max-width: 767px) {
    .hero.cxc-hero { padding: 120px 0 80px; }
    .hero.cxc-hero h1 { font-size: 2.2rem; }
    .hero.cxc-hero p { font-size: 1rem; }

    .summary-box { padding: 28px 20px; }
    .summary-grid { gap: 28px; }

    .cxc-kpi-strip { grid-template-columns: 1fr; gap: 0; }
    .cxc-kpi-strip-item {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(135, 244, 50, 0.18);
        padding: 14px 0;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .cxc-kpi-strip-item:last-child { border-bottom: 0; }
    .cxc-kpi-strip-label { min-width: 80px; margin-bottom: 0; }

    .cxc-impact-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .cxc-impact-val   { font-size: 2.4rem; }

    .cxc-glance-grid  { grid-template-columns: 1fr; }
    .cxc-glance-item  { border-right: 0; border-bottom: 1px solid rgba(135, 244, 50, 0.18); }
    .cxc-glance-item:last-child { border-bottom: 0; }
    .cxc-glance-footer { grid-template-columns: 1fr; gap: 12px; }

    .cxc-why-grid { grid-template-columns: 1fr; gap: 16px; }

    .cxc-quote { padding: 44px 24px 32px; }
    .cxc-quote-text { font-size: 1.05rem; }
    .cxc-quote-icon { font-size: 2.6rem; top: 18px; left: 18px; }

    .cxc-tech-grid { gap: 24px 32px; }

    .cxc-hero-copy p {
        font-size: 1.05rem;
    }

    .cxc-hero-visual {
        min-height: 340px;
    }

    .cxc-hero-dashboard {
        position: relative;
        top: auto;
        right: auto;
        max-width: none;
        padding: 10px;
    }

    .cxc-hero-mobile {
        width: 120px;
        left: 8px;
        bottom: -14px;
        padding: 6px;
    }

    .cxc-hero-dashboard img,
    .cxc-hero-mobile img {
        border-radius: 12px;
    }

    .cxc-hero-badge {
        right: 10px;
        bottom: 10px;
        max-width: 170px;
        padding: 10px 12px;
    }

    .summary-box,
    .cxc-panel,
    .cxc-gallery-box,
    .cxc-architecture-box {
        padding: 18px;
        border-radius: 18px;
    }

    .cxc-gallery-frame {
        min-height: 340px;
        max-height: 340px;
        padding: 10px;
    }

    .cxc-gallery-box img {
        max-height: 310px;
        border-radius: 12px;
    }

    .cxc-architecture-box img {
        max-height: 360px;
        border-radius: 12px;
    }

}
@media only screen and (min-width: 992px) {
    .ebook-form-wrap {
        max-width: none;
    }
}
