:root {
    --cx-bg: #0f0f1a;
    --cx-bg-soft: #161625;
    --cx-surface: #1e1e32;
    --cx-surface-hover: #252540;
    --cx-border: rgba(255, 255, 255, 0.08);
    --cx-border-light: rgba(255, 255, 255, 0.12);
    --cx-text: #f1f5f9;
    --cx-text-muted: #94a3b8;
    --cx-text-body: #cbd5e1;
    --cx-primary: #6366f1;
    --cx-primary-light: #818cf8;
    --cx-primary-dark: #4f46e5;
    --cx-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --cx-gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    --cx-radius: 16px;
    --cx-radius-lg: 24px;
    --cx-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --cx-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
    --cx-max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

body.cx-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--cx-bg);
    color: var(--cx-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main { flex: 1; }

.cx-container {
    width: 100%;
    max-width: var(--cx-max);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
}

/* ─── Header ─── */
.cx-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cx-border);
}

.cx-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.cx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.cx-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.cx-logo__mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cx-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    flex-shrink: 0;
}

.cx-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cx-logo__text strong {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--cx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cx-logo__text small {
    font-size: 0.8rem;
    color: var(--cx-text-muted);
}

.cx-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cx-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cx-text-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
}

.cx-nav__link:hover,
.cx-nav__link.is-active,
.cx-nav__link:focus-visible {
    color: var(--cx-text);
    background: var(--cx-surface);
}

.cx-nav__link:focus-visible {
    outline: 2px solid var(--cx-primary-light);
    outline-offset: 2px;
}

.cx-nav__cta { margin-left: 0.25rem; }

.cx-nav-toggle {
    display: none;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border-light);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-size: 1.1rem;
    color: var(--cx-text);
    cursor: pointer;
}

/* ─── Buttons ─── */
.cx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
}

.cx-btn--primary {
    background: var(--cx-gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.cx-btn--primary:hover {
    filter: brightness(1.08);
    color: #fff;
    transform: translateY(-1px);
}

.cx-btn--outline {
    background: var(--cx-bg-soft);
    border: 1px solid var(--cx-border-light);
    color: var(--cx-text-body);
    width: 100%;
}

.cx-btn--outline:hover {
    border-color: var(--cx-color, var(--cx-primary));
    color: var(--cx-text);
    background: var(--cx-surface-hover);
}

.cx-btn--ghost {
    background: transparent;
    border: 1px solid var(--cx-border-light);
    color: var(--cx-text-body);
}

.cx-btn--ghost:hover {
    background: var(--cx-surface);
    border-color: var(--cx-primary);
    color: var(--cx-text);
}

.cx-btn--white {
    background: #fff;
    color: var(--cx-primary-dark);
}

.cx-btn--white:hover {
    background: #f1f5f9;
    color: var(--cx-primary-dark);
}

.cx-btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.cx-btn--sm { padding: 0.45rem 1rem; font-size: 0.85rem; }

/* ─── Hero ─── */
.cx-hero {
    position: relative;
    text-align: center;
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}

.cx-hero__content {
    position: relative;
}

.cx-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.cx-hero__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: center;
    position: relative;
    text-align: left;
}

.cx-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cx-hero__panel {
    background: var(--cx-surface);
    border: 1px solid var(--cx-border-light);
    border-radius: var(--cx-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--cx-shadow);
}

.cx-hero__panel-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cx-text-body);
    margin-bottom: 1.25rem;
}

.cx-hero__panel-title i { color: var(--cx-primary-light); }

.cx-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cx-hero__stat {
    background: var(--cx-bg-soft);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius);
    padding: 1rem;
    text-align: center;
}

.cx-hero__stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.cx-hero__stat-lbl {
    font-size: 0.75rem;
    color: var(--cx-text-muted);
}

.cx-hero__stat--accent .cx-hero__stat-val { color: #34d399; }

.cx-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cx-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.cx-hero__shape--1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -200px;
    right: -100px;
}

.cx-hero__shape--2 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -150px;
    left: -100px;
}

.cx-hero__shape--3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 40%;
}

.cx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cx-primary-light);
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.cx-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.cx-hero__title span {
    background: var(--cx-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cx-hero__lead {
    font-size: 1.15rem;
    color: var(--cx-text-body);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ─── Section head ─── */
.cx-section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cx-primary-light);
    margin-bottom: 0.4rem;
}
.cx-section-head {
    text-align: center;
    margin-bottom: 2rem;
}

.cx-section-head h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.cx-section-head p {
    margin: 0;
    color: var(--cx-text-muted);
    font-size: 1rem;
}

/* ─── Tabs ─── */
.cx-solutions {
    padding: 2rem 0 4rem;
}

.cx-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.cx-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid var(--cx-border);
    border-radius: 999px;
    background: var(--cx-surface);
    color: var(--cx-text-muted);
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}

.cx-tab:hover {
    background: var(--cx-surface-hover);
    color: var(--cx-text);
    border-color: var(--cx-border-light);
}

.cx-tab.is-active {
    background: var(--cx-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

/* ─── Product grid ─── */
.cx-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cx-card {
    flex: 0 1 320px;
    width: 100%;
    max-width: 380px;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--cx-shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.cx-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cx-shadow-lg);
    border-color: var(--cx-border-light);
}

.cx-card.is-hidden { display: none; }

.cx-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    color: #fff;
}

.cx-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.cx-card__sector {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.cx-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cx-card__name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--cx-text);
}

.cx-card__tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cx-color, var(--cx-primary-light));
    margin: 0 0 0.75rem;
}

.cx-card__desc {
    font-size: 0.9rem;
    color: var(--cx-text-muted);
    margin: 0 0 0.85rem;
    line-height: 1.65;
    flex: 1;
}

.cx-card__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.cx-card__highlights li {
    font-size: 0.82rem;
    color: var(--cx-text-body);
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cx-card__highlights i {
    color: var(--cx-color, var(--cx-primary-light));
    font-size: 0.65rem;
}

.cx-card__audience {
    font-size: 0.82rem;
    color: var(--cx-text-muted);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cx-card__audience i { color: var(--cx-color, var(--cx-primary-light)); }

.cx-card__apps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.cx-app-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--cx-bg-soft);
    border: 1px solid var(--cx-border);
    border-radius: 8px;
    color: var(--cx-text-body);
    text-decoration: none;
    transition: all 0.15s;
}

.cx-app-link:hover {
    border-color: var(--cx-color, var(--cx-primary));
    color: var(--cx-text);
    background: var(--cx-surface-hover);
}

.cx-app-link i { font-size: 0.85rem; opacity: 0.85; }

.cx-card__cta { margin-top: auto; }

.cx-empty {
    text-align: center;
    color: var(--cx-text-muted);
    padding: 2rem;
}

/* ─── Why section ─── */
.cx-why {
    padding: 3rem 0;
    background: var(--cx-bg-soft);
    border-top: 1px solid var(--cx-border);
    border-bottom: 1px solid var(--cx-border);
}

.cx-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cx-why-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius);
    transition: border-color 0.2s;
}

.cx-why-item:hover {
    border-color: var(--cx-border-light);
}

.cx-why-item__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--cx-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.cx-why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.cx-why-item p {
    font-size: 0.9rem;
    color: var(--cx-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── CTA ─── */
.cx-cta {
    padding: 4rem 0;
}

.cx-cta__box {
    position: relative;
    text-align: center;
    background: var(--cx-gradient-soft);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--cx-text);
    padding: 3rem 2rem;
    border-radius: var(--cx-radius-lg);
    box-shadow: var(--cx-shadow);
    overflow: hidden;
}

.cx-cta__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.cx-cta__box h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.cx-cta__box p {
    margin: 0 0 1.5rem;
    color: var(--cx-text-muted);
    font-size: 1.05rem;
}

.cx-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cx-cta__box .cx-btn--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--cx-text);
}

.cx-cta__box .cx-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.cx-btn--cta-outline {
    width: auto;
    color: var(--cx-text);
    border-color: var(--cx-border-light);
}

/* ─── Footer ─── */
.cx-footer {
    border-top: 1px solid var(--cx-border);
    background: var(--cx-bg-soft);
    padding: 3rem 0 0;
}

.cx-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.25fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.cx-footer__about {
    font-size: 0.875rem;
    color: var(--cx-text-muted);
    line-height: 1.65;
    margin: 1rem 0 0;
    max-width: 280px;
}

.cx-footer__col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cx-text-muted);
    margin: 0 0 1rem;
}

.cx-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cx-footer__col li {
    margin-bottom: 0.5rem;
}

.cx-footer__col a {
    color: var(--cx-text-body);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.cx-footer__col a:hover { color: var(--cx-primary-light); }

.cx-footer__contact span,
.cx-footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--cx-text-muted);
}

.cx-footer__contact i {
    width: 1rem;
    color: var(--cx-primary-light);
    font-size: 0.8rem;
}

.cx-footer__location p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--cx-text-muted);
    line-height: 1.65;
}

.cx-footer__location p span {
    color: var(--cx-text-body);
    font-weight: 500;
}

.cx-footer__location iframe {
    display: block;
    width: 100%;
    height: 120px;
    margin-top: 0.75rem;
    border: 0;
    border-radius: 10px;
    border: 1px solid var(--cx-border);
}

.cx-footer__bottom {
    border-top: 1px solid var(--cx-border);
    padding: 1.25rem 0;
    text-align: center;
}

.cx-footer__bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cx-text-muted);
}

.cx-logo--footer { text-decoration: none; color: inherit; }

/* ─── Toolbar ─── */
.cx-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cx-search {
    position: relative;
    min-width: 220px;
    flex: 1;
    max-width: 280px;
}

.cx-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cx-text-muted);
    font-size: 0.85rem;
}

.cx-search input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    border-radius: 999px;
    color: var(--cx-text);
    font-size: 0.875rem;
    font-family: inherit;
}

.cx-search input:focus {
    outline: none;
    border-color: var(--cx-primary);
}

.cx-empty {
    text-align: center;
    color: var(--cx-text-muted);
    padding: 3rem 1rem;
}

.cx-empty i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

/* ─── Process ─── */
.cx-process {
    padding: 4rem 0;
    border-top: 1px solid var(--cx-border);
}

.cx-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cx-process-step {
    position: relative;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius-lg);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.cx-process-step:hover {
    border-color: var(--cx-border-light);
    transform: translateY(-3px);
}

.cx-process-step__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--cx-primary-light);
    opacity: 0.5;
}

.cx-process-step__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--cx-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cx-process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.cx-process-step p {
    font-size: 0.875rem;
    color: var(--cx-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── Scroll reveal ─── */
.cx-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cx-reveal--delay { transition-delay: 0.15s; }

/* Remove old footer styles */
.cx-footer__inner,
.cx-footer__copy,
.cx-footer__links { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    .cx-why-grid { grid-template-columns: repeat(2, 1fr); }
    .cx-footer__grid { grid-template-columns: 1fr 1fr; }
    .cx-hero__actions { justify-content: center; }
    .cx-hero__aside { justify-content: center; }
}

@media (max-width: 991.98px) {
    .cx-footer__grid { grid-template-columns: 1fr 1fr; }
    .cx-process-grid { grid-template-columns: 1fr; }
    .cx-toolbar { flex-direction: column; align-items: stretch; }
    .cx-search { max-width: none; min-width: 0; width: 100%; }
    .cx-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -0.25rem;
        padding: 0 0.25rem 0.35rem;
    }
    .cx-tabs::-webkit-scrollbar { display: none; }
    .cx-section-head h2 { font-size: clamp(1.4rem, 4vw, 1.75rem); }
    .cx-cta__box { padding: 2.5rem 1.5rem; }
}

@media (max-width: 767.98px) {
    .cx-container { padding: 0 1rem; }

    .cx-nav-toggle { display: block; min-width: 44px; min-height: 44px; }

    .cx-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--cx-bg);
        border-bottom: 1px solid var(--cx-border);
        padding: 1rem;
        box-shadow: var(--cx-shadow);
        gap: 0.35rem;
        z-index: 101;
    }

    .cx-nav:not(.show) { display: none; }
    .cx-nav.show { display: flex; }

    .cx-header__inner { position: relative; flex-wrap: nowrap; }

    .cx-nav__link,
    .cx-nav__cta {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .cx-nav__cta { margin-left: 0; margin-top: 0.35rem; }

    .cx-hero { padding: 2.5rem 0 2rem; }
    .cx-hero__lead { font-size: 1rem; margin-bottom: 1.5rem; }
    .cx-hero__title { font-size: clamp(1.65rem, 7vw, 2.25rem); }

    .cx-solutions { padding: 1.5rem 0 3rem; }
    .cx-process { padding: 2.5rem 0; }
    .cx-why { padding: 2.5rem 0; }
    .cx-cta { padding: 2.5rem 0; }

    .cx-why-grid { grid-template-columns: 1fr; }
    .cx-footer__grid { grid-template-columns: 1fr; }
    .cx-grid { gap: 1.25rem; }
    .cx-grid .cx-card { flex: 1 1 100%; max-width: none; }

    .cx-card__head { padding: 1rem 1.25rem; }
    .cx-card__body { padding: 1.25rem; }
    .cx-card__apps { gap: 0.4rem; }

    .cx-app-link {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cx-cta__box h2 { font-size: 1.45rem; }
    .cx-cta__actions { flex-direction: column; align-items: stretch; }
    .cx-cta__actions .cx-btn { width: 100%; }

    .cx-footer { padding: 2rem 0 0; }
    .cx-footer__about { max-width: none; }
    .cx-footer__contact a,
    .cx-footer__contact span { word-break: break-word; }

    .cx-section-head { margin-bottom: 1.5rem; }
    .cx-toolbar { margin-bottom: 1.5rem; }
}

@media (max-width: 479.98px) {
    .cx-logo__text small { display: none; }
    .cx-logo__mark { width: 42px; height: 42px; font-size: 1.1rem; }
    .cx-logo__text strong { font-size: 1.15rem; }

    .cx-hero .cx-btn--lg { width: 100%; }
    .cx-eyebrow { font-size: 0.8rem; padding: 0.35rem 0.85rem; }

    .cx-process-step { padding: 1.5rem 1.25rem 1.25rem; }
    .cx-why-item { padding: 1.25rem; }
}

@media (min-width: 768px) {
    .cx-nav.collapse { display: flex !important; }
}
