/**
 * Chronbyte Company Site v2 — full-width enterprise marketing
 */
:root {
    --co-navy: #0B1D3A;
    --co-blue: #1565C0;
    --co-sky: #42A5F5;
    --co-orange: #FF6D00;
    --co-wrap: min(1360px, calc(100% - 48px));
    --main-font: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;
}

html:lang(hi) {
    font-family: var(--main-font);
}

.co-site {
    min-height: 100vh;
    background: #f0f6fc;
    color: var(--co-navy);
    font-family: var(--main-font);
    overflow-x: hidden;
    padding-top: var(--co-header-h, 200px);
}

.co-site::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(66, 165, 245, 0.18), transparent 55%),
        radial-gradient(ellipse 45% 35% at 100% 10%, rgba(255, 109, 0, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(21, 101, 192, 0.08), transparent 60%);
}

.co-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(11, 29, 58, 0.07);
    box-shadow: 0 1px 0 rgba(255,255,255,.8), 0 8px 32px rgba(11, 29, 58, 0.06);
}

.co-header.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

/* Banner image header — nav strip sits below brand banner as one unit */
.co-header--banner {
    background: #061018;
    border-bottom: none;
    box-shadow: 0 4px 24px rgba(6, 16, 24, 0.35);
    backdrop-filter: none;
}

.co-header__banner {
    display: block;
    line-height: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 120% at 8% 50%, rgba(244, 114, 182, 0.14), transparent 58%),
        radial-gradient(ellipse 55% 120% at 92% 50%, rgba(6, 182, 212, 0.16), transparent 58%),
        linear-gradient(180deg, #061018 0%, #0B1D3A 52%, #061018 100%);
}

.co-header__banner::after {
    content: none;
}

.co-header__banner-media {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    line-height: 0;
}

/* पूरी image — बिना zoom/crop; चौड़ाई 100%, ऊँचाई natural */
.co-header__banner img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    vertical-align: top;
}

@media (max-width: 640px) {
    .co-header__banner-media {
        /* mobile: ऊपर-नीचे ज़्यादा जगह — नाम/logo कटे नहीं */
        padding: 18px 0 20px;
    }
}

@media (min-width: 641px) {
    .co-header__banner-media {
        padding: 6px 0 8px;
    }

    .co-header__banner img {
        max-height: 172px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.co-header__bar {
    background: linear-gradient(180deg, #061018 0%, #0B1D3A 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.co-header--banner .co-header__inner {
    padding: 8px 0 10px;
}

.co-header--banner .co-nav__link {
    color: rgba(255, 255, 255, 0.82);
}

.co-header--banner .co-nav__link:hover,
.co-header--banner .co-nav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.co-header--banner .co-nav__link i {
    opacity: 0.85;
}

.co-header--banner .co-lang {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.co-header--banner .co-lang__btn {
    color: rgba(255, 255, 255, 0.72);
    border-color: transparent;
}

.co-header--banner .co-lang__btn.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.co-header--banner .co-nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.co-header__inner {
    width: var(--co-wrap);
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.co-header__panel {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
}

.co-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.co-brand__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--co-navy), var(--co-blue));
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(11, 29, 58, 0.28), 0 0 0 1px rgba(255,255,255,.15) inset;
}

.co-brand__icon--img {
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.co-brand__icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.co-hero-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(11, 29, 58, 0.25);
}

.co-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.co-brand__text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.co-brand__text small { font-size: .76rem; color: #64748b; font-weight: 600; }

.co-nav-toggle {
    display: none;
    margin-left: auto;
    border: none;
    background: var(--co-navy);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
}

.co-nav {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
}

.co-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 999px;
    text-decoration: none;
    color: #475569;
    font-size: .82rem;
    font-weight: 600;
    transition: .2s;
    white-space: nowrap;
}

.co-nav__link:hover,
.co-nav__link.is-active {
    background: rgba(21, 101, 192, 0.1);
    color: var(--co-blue);
}

.co-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    margin-left: 6px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--co-orange), #ff9100);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(255, 109, 0, 0.38);
}

.co-main {
    position: relative;
    z-index: 1;
}

.co-wrap {
    width: var(--co-wrap);
    margin: 0 auto;
}

.co-band {
    width: 100%;
    position: relative;
}

/* —— Home hero —— */
.co-band--hero {
    padding: 48px 0 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.65) 0%, transparent 100%);
}

.co-hero-grid {
    width: var(--co-wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 56px;
}

.co-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(21, 101, 192, 0.1);
    color: var(--co-blue);
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(21, 101, 192, 0.15);
}

.co-hero-grid h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0B1D3A;
}

.co-hero-grid .co-lead {
    font-size: 1.12rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 540px;
}

.co-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.co-hero__badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 8px;
    max-width: 560px;
}

.co-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: #64748b;
    padding: 6px 12px;
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    border: 1px solid rgba(11, 29, 58, 0.08);
}

/* Hero split — copy left, dashboard right */
.co-hero-split {
    padding: 24px 0 28px;
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
}

.co-hero-split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
}

.co-hero-split__copy h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.12;
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #0B1D3A;
}

.co-hero-split__copy .co-lead {
    font-size: 1.08rem;
    line-height: 1.72;
    color: #475569;
    margin: 0;
    max-width: none;
}

.co-hero-split__copy .co-lead--sub {
    margin-top: 14px;
    font-size: 1rem;
    color: #64748b;
}

.co-hero-split__copy .co-hero__badges {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-template-columns: unset;
}

.co-hero-split__copy .co-hero__badges span {
    flex: 0 1 auto;
}

.co-hero-split__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.co-hero-split__frame {
    padding: 14px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(244, 114, 182, 0.08), rgba(6, 182, 212, 0.1)),
        #fff;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 20px 48px rgba(11, 29, 58, 0.1);
}

.co-hero-split__frame .co-mockup {
    margin: 0;
    box-shadow: 0 12px 32px rgba(11, 29, 58, 0.12);
    max-height: min(260px, 30vh);
    overflow: hidden;
}

.co-hero-split__frame--monitor .co-monitor-screen img {
    width: 100%;
    height: auto;
    max-height: min(240px, 28vh);
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.co-hero-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.co-hero-highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px 11px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 6px 20px rgba(11, 29, 58, 0.05);
}

.co-hero-highlights__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: .9rem;
}

.co-hero-highlights__item--orange .co-hero-highlights__icon {
    background: rgba(255, 109, 0, 0.12);
    color: #ea580c;
}

.co-hero-highlights__item--blue .co-hero-highlights__icon {
    background: rgba(21, 101, 192, 0.1);
    color: #1565C0;
}

.co-hero-highlights__item--cyan .co-hero-highlights__icon {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
}

.co-hero-highlights__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.co-hero-highlights__text strong {
    font-size: .82rem;
    font-weight: 700;
    color: #0B1D3A;
    line-height: 1.3;
}

.co-hero-highlights__text small {
    font-size: .72rem;
    color: #64748b;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .co-hero-split__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .co-hero-split__aside {
        max-width: 560px;
        margin-inline: auto;
        width: 100%;
    }

    .co-hero-split__copy .co-hero__badges {
        grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    }
}

@media (max-width: 640px) {
    .co-hero-highlights {
        grid-template-columns: 1fr;
    }
}

.co-hero-visual {
    position: relative;
}

.co-hero-visual__img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 32px 64px rgba(11, 29, 58, 0.2);
    display: block;
}

/* Dashboard mockup */
.co-mockup {
    position: relative;
    background: linear-gradient(145deg, #fff, #f8fafc);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.9);
    box-shadow:
        0 0 0 1px rgba(11, 29, 58, 0.06),
        0 32px 64px rgba(11, 29, 58, 0.16),
        0 0 80px rgba(66, 165, 245, 0.12);
    overflow: hidden;
}

.co-mockup__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.co-mockup__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.co-mockup__chrome span:nth-child(1) { background: #ff6d00; }
.co-mockup__chrome span:nth-child(2) { background: #ffb300; }
.co-mockup__chrome span:nth-child(3) { background: #42a5f5; }

.co-mockup__url {
    margin-left: auto;
    font-size: .72rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 999px;
}

.co-mockup__body {
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 280px;
    background: linear-gradient(180deg, #f8fafc, #eef4fb);
}

.co-mockup__sidebar {
    background: rgba(11, 29, 58, 0.04);
    padding: 16px 12px;
    border-right: 1px solid #e2e8f0;
}

.co-mockup__logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--co-navy), var(--co-blue));
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-size: .9rem;
}

.co-mockup__nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(11, 29, 58, 0.08);
    margin-bottom: 10px;
}

.co-mockup__nav-item.is-active {
    background: rgba(21, 101, 192, 0.35);
    height: 10px;
}

.co-mockup__main { padding: 16px; }

.co-mockup__hero-bar {
    background: rgba(21, 101, 192, 0.08);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.co-mockup__line {
    height: 8px;
    border-radius: 4px;
    background: rgba(11, 29, 58, 0.1);
    margin-bottom: 8px;
    width: 60%;
}

.co-mockup__line--lg { width: 45%; height: 10px; margin-bottom: 10px; }

.co-mockup__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.co-mockup__stat {
    border-radius: 10px;
    padding: 10px;
    font-size: .75rem;
}

.co-mockup__stat span {
    display: block;
    height: 6px;
    width: 50%;
    border-radius: 3px;
    background: rgba(0,0,0,.08);
    margin-bottom: 6px;
}

.co-mockup__stat strong { font-size: .95rem; color: var(--co-navy); }

.co-mockup__stat--blue { background: rgba(21, 101, 192, 0.12); }
.co-mockup__stat--orange { background: rgba(255, 109, 0, 0.12); }
.co-mockup__stat--green { background: rgba(22, 163, 74, 0.12); }

.co-mockup__chart {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 8px;
    height: 90px;
}

.co-mockup__chart svg { width: 100%; height: 100%; }

.co-mockup__float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--co-navy);
    box-shadow: 0 12px 32px rgba(11, 29, 58, 0.14);
    border: 1px solid rgba(11, 29, 58, 0.06);
    animation: co-float 4s ease-in-out infinite;
}

.co-mockup__float i { color: var(--co-orange); }

.co-mockup__float--1 { bottom: 12%; left: -4%; animation-delay: 0s; }
.co-mockup__float--2 { top: 18%; right: -3%; animation-delay: 1.5s; }

@keyframes co-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Stats band */
.co-band--stats {
    background: linear-gradient(135deg, var(--co-navy) 0%, #123a6e 50%, var(--co-blue) 100%);
    padding: 36px 0;
    margin-top: -1px;
}

.co-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.co-stat-item {
    text-align: center;
    color: #fff;
    padding: 8px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.co-stat-item:last-child { border-right: none; }

.co-stat-item strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.co-stat-item span {
    font-size: .88rem;
    opacity: .85;
    font-weight: 600;
}

/* Trust band */
.co-band--trust {
    padding: 28px 0;
    background: rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-trust__label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    margin: 0 0 16px;
}

.co-trust__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.co-trust__pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.04);
}

.co-trust__pills i { color: var(--co-blue); }

/* Content sections */
.co-band--content { padding: 40px 0; }

.co-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.co-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.co-section-head p {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.65;
}

.co-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.co-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(11, 29, 58, 0.06);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.06);
    transition: transform .25s, box-shadow .25s;
}

.co-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(11, 29, 58, 0.1);
}

.co-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.12), rgba(66, 165, 245, 0.15));
    color: var(--co-blue);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.co-card__icon--orange {
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.12), rgba(255, 145, 0, 0.15));
    color: var(--co-orange);
}

.co-card h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 800; }
.co-card p { margin: 0; color: #64748b; line-height: 1.65; font-size: .94rem; }

/* Showcase split */
.co-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 36px);
    align-items: center;
}

.co-showcase__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(11, 29, 58, 0.14);
    border: 1px solid rgba(11, 29, 58, 0.08);
}

.co-showcase__visual img { width: 100%; display: block; }

.co-showcase__visual--monitor,
.co-monitor-screen {
    border: none;
    box-shadow: none;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    border-radius: 16px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-showcase__visual--monitor .co-monitor-screen,
.co-showcase__visual--monitor .co-monitor-screen img,
.co-monitor-screen {
    width: 100%;
}

.co-showcase__visual--monitor .co-monitor-screen img,
.co-monitor-screen img {
    width: 100%;
    height: auto;
    max-height: min(340px, 38vh);
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.co-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.co-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: .95rem;
}

.co-checklist i { color: #16a34a; margin-top: 3px; }

/* Video section */
.co-band--video {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, #eef4fb 100%);
}

.co-video-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.co-video-copy h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 12px 0 16px;
    font-weight: 800;
    line-height: 1.2;
}

.co-video-copy p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 20px;
}

.co-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--co-navy);
    box-shadow: 0 32px 64px rgba(11, 29, 58, 0.22);
    border: 3px solid rgba(255,255,255,.9);
}

.co-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.co-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--co-navy), var(--co-blue));
    gap: 12px;
    padding: 24px;
    text-align: center;
}

.co-video-placeholder__play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    border: 2px solid rgba(255,255,255,.3);
    transition: .2s;
}

.co-video-placeholder:hover .co-video-placeholder__play {
    background: var(--co-orange);
    transform: scale(1.05);
}

.co-video-placeholder strong { font-size: 1.1rem; }
.co-video-placeholder small { opacity: .8; font-size: .88rem; }

/* Testimonials */
.co-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.co-quote {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(11, 29, 58, 0.06);
    box-shadow: 0 8px 32px rgba(11, 29, 58, 0.05);
}

.co-quote__stars { color: #f59e0b; font-size: .85rem; margin-bottom: 12px; }

.co-quote p {
    margin: 0 0 20px;
    color: #475569;
    line-height: 1.65;
    font-size: .94rem;
    font-style: italic;
}

.co-quote__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-quote__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--co-blue), var(--co-sky));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: .9rem;
}

.co-quote__author strong { display: block; font-size: .9rem; }
.co-quote__author small { color: #94a3b8; font-size: .78rem; }

/* CTA band */
.co-band--cta {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--co-navy) 0%, #0f2847 40%, var(--co-blue) 100%);
    position: relative;
    overflow: hidden;
}

.co-band--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 109, 0, 0.2), transparent 45%);
    pointer-events: none;
}

.co-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}

.co-cta-inner h2 {
    color: #fff;
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}

.co-cta-inner p { color: rgba(255,255,255,.8); margin: 0; }

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

/* Page hero (inner pages) */
.co-band--page-hero {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, rgba(255,255,255,.85), transparent);
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-page-hero {
    text-align: center;
}

.co-page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.co-page-hero p {
    margin: 0 auto;
    max-width: 640px;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.65;
}

.co-band--page-body { padding: 48px 0 64px; }

/* Features */
.co-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.co-feature {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(11, 29, 58, 0.06);
    box-shadow: 0 8px 28px rgba(11, 29, 58, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.co-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(21, 101, 192, 0.1);
    color: var(--co-blue);
    font-size: 1.1rem;
}

.co-feature__icon.accent {
    background: rgba(255, 109, 0, 0.1);
    color: var(--co-orange);
}

.co-feature h3 { margin: 0 0 8px; font-size: 1.05rem; }

.co-feature ul {
    margin: 0;
    padding: 0;
    list-style: none;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.co-feature li {
    font-size: .88rem;
    color: #64748b;
    padding: 4px 0;
}

.co-feature li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    margin-right: 6px;
}

/* About */
.co-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.co-about-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(11, 29, 58, 0.12);
}

.co-about-visual img { width: 100%; display: block; }

/* Pricing */
.co-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.co-price-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px;
    border: 2px solid rgba(11, 29, 58, 0.07);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.06);
}

.co-price-card.is-featured {
    border-color: var(--co-blue);
    box-shadow: 0 24px 56px rgba(21, 101, 192, 0.18);
    transform: scale(1.02);
}

.co-price-card .co-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 109, 0, 0.12);
    color: var(--co-orange);
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.co-price-card h3 { margin: 0; font-size: 1.2rem; font-weight: 800; }

.co-price-card .co-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--co-navy);
    margin: 16px 0;
    line-height: 1;
}

.co-price-card .co-price small {
    font-size: .85rem;
    font-weight: 600;
    color: #64748b;
}

.co-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.co-price-card li {
    padding: 7px 0;
    font-size: .9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.co-price-card li i { color: #16a34a; margin-right: 8px; width: 16px; }

/* Contact layout */
.co-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.co-contact-info h2 {
    font-size: 1.5rem;
    margin: 0 0 12px;
    font-weight: 800;
}

.co-contact-info p { color: #64748b; line-height: 1.65; margin: 0 0 24px; }

.co-contact-cards {
    display: grid;
    gap: 14px;
}

.co-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(11, 29, 58, 0.06);
}

.co-contact-card i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(21, 101, 192, 0.1);
    color: var(--co-blue);
    flex-shrink: 0;
}

.co-contact-card strong { display: block; margin-bottom: 4px; }
.co-contact-card span { color: #64748b; font-size: .9rem; }

/* Forms & buttons */
.co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: .92rem;
    transition: .2s;
}

.co-btn--lg { padding: 14px 26px; font-size: .98rem; }

.co-btn--primary {
    background: linear-gradient(135deg, var(--co-navy), var(--co-blue));
    color: #fff;
    box-shadow: 0 10px 32px rgba(11, 29, 58, 0.25);
}

.co-btn--primary:hover { filter: brightness(1.05); }

.co-btn--outline {
    background: #fff;
    color: var(--co-navy);
    border-color: rgba(11, 29, 58, 0.15);
}

.co-btn--orange {
    background: linear-gradient(135deg, var(--co-orange), #ff9100);
    color: #fff;
    box-shadow: 0 10px 32px rgba(255, 109, 0, 0.35);
}

.co-btn--ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
}

.co-form {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 20px 56px rgba(11, 29, 58, 0.1);
    border: 1px solid rgba(11, 29, 58, 0.06);
}

.co-form .field { margin-bottom: 16px; }
.co-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .88rem; }
.co-form input, .co-form select, .co-form textarea { width: 100%; box-sizing: border-box; }
.co-form .co-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.co-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: .92rem;
    max-width: var(--co-wrap);
    margin-left: auto;
    margin-right: auto;
}

.co-alert--ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.co-alert--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.co-demo-renew-banner {
    margin-bottom: 18px;
}

.co-demo-renew-banner__title {
    margin: 0 0 6px;
    font-weight: 600;
    font-size: 1rem;
}

.co-demo-renew-banner__lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.92;
}
.co-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Footer */
.co-footer {
    background: var(--co-navy);
    color: #cbd5e1;
    margin-top: 0;
    position: relative;
    z-index: 1;
    font-family: var(--main-font);
}

.co-footer h4 {
    color: #ffffff !important;
    margin: 0 0 16px;
    font-size: .95rem;
    font-weight: 700;
}

.co-footer__brand strong {
    color: #ffffff !important;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.co-footer__brand p {
    color: #cbd5e1 !important;
    line-height: 1.65;
    margin: 0;
    font-size: .92rem;
}

.co-footer__links a {
    color: #e2e8f0 !important;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
}

.co-footer__links a:hover {
    color: #ffffff !important;
}

.co-footer__contact li {
    color: #e2e8f0 !important;
    font-size: .92rem;
}

.co-footer__bottom span {
    color: #94a3b8 !important;
    font-size: .84rem;
}

.co-footer__grid {
    width: var(--co-wrap);
    margin: 0 auto;
    padding: 56px 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.co-footer__links, .co-footer__contact { list-style: none; padding: 0; margin: 0; }
.co-footer__links li { margin-bottom: 10px; }
.co-footer__contact li { margin-bottom: 10px; font-size: .9rem; display: flex; gap: 10px; align-items: center; }
.co-footer__contact i { color: var(--co-sky); width: 18px; flex-shrink: 0; }

.co-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.co-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.co-footer__social a:hover { background: var(--co-orange); }

.co-footer__bottom {
    width: var(--co-wrap);
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .82rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .co-hero-grid,
    .co-video-grid,
    .co-showcase,
    .co-contact-grid { grid-template-columns: 1fr; }
    .co-showcase__copy { order: 1; }
    .co-showcase__visual { order: 2; }
    .co-mockup__float { display: none; }
    .co-price-card.is-featured { transform: none; }
    .co-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    :root { --co-wrap: calc(100% - 32px); }
    .co-nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
    .co-header__panel {
        display: contents;
    }
    .co-lang {
        order: 2;
        margin-left: 0;
    }
    .co-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        flex: none;
        justify-content: flex-start;
        padding: 16px 24px 24px;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 16px 40px rgba(11, 29, 58, 0.1);
    }
    .co-header--banner .co-nav {
        background: linear-gradient(180deg, #0B1D3A 0%, #061018 100%);
        border-bottom-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }
    .co-header--banner .co-nav__link {
        color: rgba(255, 255, 255, 0.88);
    }
    .co-header--banner .co-nav__link:hover,
    .co-header--banner .co-nav__link.is-active {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .co-nav.is-open { display: flex; }
    .co-header__bar { position: relative; }
    .co-header__inner { position: relative; flex-wrap: wrap; width: calc(100% - 32px); }
    .co-nav__link { white-space: normal; }
    .co-cards, .co-about-grid { grid-template-columns: 1fr; }
    .co-stats-row { grid-template-columns: repeat(2, 1fr); }
    .co-stat-item:nth-child(2) { border-right: none; }
    .co-feature ul { grid-template-columns: 1fr; }
    .co-cta-inner { flex-direction: column; text-align: center; }
    .co-cta-actions { justify-content: center; }
    .co-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .co-form .co-grid-2 { grid-template-columns: 1fr; }
    .co-stats-row { grid-template-columns: 1fr; }
    .co-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 16px; }
}

/* ===== v3 — contrast, density, animations ===== */

.co-site,
.co-site * {
    box-sizing: border-box;
}

.co-site {
    font-family: var(--main-font) !important;
    color: #0B1D3A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.co-site :where(
    h1, h2, h3, h4, h5, h6,
    p, li, span, a, button, label,
    input, select, textarea, td, th,
    summary, small, strong, em
) {
    font-family: inherit;
}

/* Sirf light sections — footer/stats/CTA par global color mat lagao */
.co-main p,
.co-main li,
.co-band--content p,
.co-band--content li,
.co-band--page-body p,
.co-band--page-body li {
    color: #334155;
}

.co-main h1, .co-main h2, .co-main h3,
.co-band--content h2, .co-band--content h3,
.co-band--page-body h2, .co-band--page-body h3 {
    color: #0B1D3A;
}

.co-section-head h2 { color: #0B1D3A; }

.co-page-hero h1 { color: #0B1D3A; }

.co-band--hero {
    padding: 32px 0 0;
    background:
        linear-gradient(135deg, #e8f2fc 0%, #f5f9ff 35%, #fff 70%),
        repeating-linear-gradient(90deg, rgba(21,101,192,.03) 0, rgba(21,101,192,.03) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(21,101,192,.03) 0, rgba(21,101,192,.03) 1px, transparent 1px, transparent 80px);
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-band--mesh {
    background: linear-gradient(180deg, #fff 0%, #eef4fb 100%);
    padding: 48px 0;
}

.co-band--alt {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid rgba(11, 29, 58, 0.06);
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-band--content { padding: 48px 0; }

.co-kicker--center { display: table; margin: 0 auto 14px; }

.co-hero__badges span {
    color: #334155;
    background: #fff;
    font-weight: 700;
}

.co-stat-item span {
    color: #fff;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.co-stat-item strong {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.co-cta-inner h2 { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.co-cta-inner p { color: #fff !important; opacity: .92; }

.co-video-copy h2 { color: #0B1D3A; }
.co-video-placeholder strong, .co-video-placeholder small { color: #fff; }

/* Marquee trust strip */
.co-band--trust { padding: 20px 0; overflow: hidden; background: #fff; }

.co-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.co-marquee__track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: co-marquee 32s linear infinite;
}

.co-marquee__track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f1f6fc;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 700;
    color: #1e293b;
    border: 1px solid rgba(21, 101, 192, 0.12);
    white-space: nowrap;
}

.co-marquee__track i { color: #1565C0; }

@keyframes co-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 6-card dense grid */
.co-cards--6 {
    grid-template-columns: repeat(3, 1fr);
}

.co-cards--6 .co-card { padding: 22px; }

.co-cards--6 .co-card h3 { font-size: 1rem; }

/* Workflow steps */
.co-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.co-step {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 8px 28px rgba(11, 29, 58, 0.06);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

.co-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(21, 101, 192, 0.12);
}

.co-step__num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: .72rem;
    font-weight: 800;
    color: #1565C0;
    opacity: .5;
}

.co-step__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: #fff;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.co-step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 800; color: #0B1D3A; }
.co-step p { margin: 0; font-size: .88rem; line-height: 1.6; color: #475569; }

/* FAQ */
.co-faq {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.co-faq__item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(11, 29, 58, 0.08);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.04);
}

.co-faq__item summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    color: #0B1D3A;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.co-faq__item summary::-webkit-details-marker { display: none; }

.co-faq__item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: #1565C0;
    font-weight: 800;
    transition: transform .2s;
}

.co-faq__item[open] summary::after { transform: rotate(45deg); }

.co-faq__item p {
    margin: 0;
    padding: 0 20px 16px;
    line-height: 1.65;
    color: #475569;
    font-size: .92rem;
}

/* Compare table */
.co-compare-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.08);
}

.co-compare {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: .92rem;
}

.co-compare th,
.co-compare td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eef2f7;
    color: #334155;
}

.co-compare thead th {
    background: #f1f6fc;
    font-weight: 800;
    color: #0B1D3A;
}

.co-compare__hi {
    background: rgba(21, 101, 192, 0.06);
    color: #0B1D3A !important;
    font-weight: 700;
}

.co-compare__hi i { color: #16a34a; margin-right: 6px; }

/* Scroll animations */
.co-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--co-delay, 0s);
}

.co-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form controls (standalone — no style.css) */
.co-site .form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: .92rem;
    font-family: inherit;
    color: #0B1D3A;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    transition: border-color .2s, box-shadow .2s;
}

.co-site .form-control:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.co-btn { transition: transform .2s, box-shadow .2s, filter .2s; }
.co-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }

.co-band--page-hero {
    background: linear-gradient(135deg, #e8f2fc, #fff);
    padding: 40px 0 32px;
}

.co-quote__author strong { color: #0B1D3A; }

@media (max-width: 1024px) {
    .co-steps { grid-template-columns: repeat(2, 1fr); }
    .co-cards--6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .co-steps { grid-template-columns: 1fr; }
    .co-cards--6 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .co-animate, .co-reveal { opacity: 1; transform: none; transition: none; }
    .co-marquee__track { animation: none; }
    .co-mockup__float { animation: none; }
    .co-bg-deco__orb { animation: none; }
}

/* ===== v3.1 — side fill, contrast, density ===== */

:root {
    --co-wrap: min(1520px, calc(100% - 40px));
}

/* Side decorative orbs — khali margins bharte hain */
.co-bg-deco {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.co-bg-deco__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: co-orb-drift 18s ease-in-out infinite;
}

.co-bg-deco__orb--1 {
    width: 420px;
    height: 420px;
    background: rgba(66, 165, 245, 0.35);
    top: 8%;
    left: -120px;
}

.co-bg-deco__orb--2 {
    width: 360px;
    height: 360px;
    background: rgba(255, 109, 0, 0.22);
    top: 42%;
    right: -100px;
    animation-delay: -6s;
}

.co-bg-deco__orb--3 {
    width: 300px;
    height: 300px;
    background: rgba(21, 101, 192, 0.25);
    bottom: 5%;
    left: 15%;
    animation-delay: -12s;
}

@keyframes co-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -20px) scale(1.05); }
    66% { transform: translate(-16px, 16px) scale(0.95); }
}

.co-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(11, 29, 58, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.co-header--banner.is-scrolled {
    background: #061018;
    box-shadow: 0 8px 32px rgba(6, 16, 24, 0.45);
}

.co-header--banner.is-hidden {
    box-shadow: none;
}

/* Hero — hamesha readable, koi gradient clip nahi */
.co-hero-grid h1 {
    color: #0B1D3A !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.co-reveal {
    animation: co-reveal-in 0.85s ease forwards;
}

.co-reveal--delay {
    animation-delay: 0.18s;
    opacity: 0;
}

@keyframes co-reveal-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bento dense grid — homepage extra content */
.co-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 14px;
}

.co-bento__cell {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(11, 29, 58, 0.07);
    box-shadow: 0 6px 24px rgba(11, 29, 58, 0.05);
    transition: transform .25s, box-shadow .25s;
}

.co-bento__cell:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.1);
}

.co-bento__cell--wide { grid-column: span 2; }
.co-bento__cell--tall { grid-row: span 2; }

.co-bento__cell i {
    font-size: 1.4rem;
    color: #1565C0;
    margin-bottom: 10px;
    display: block;
}

.co-bento__cell i.orange { color: #FF6D00; }

.co-bento__cell h4 {
    margin: 0 0 6px;
    font-size: .95rem;
    font-weight: 800;
    color: #0B1D3A;
}

.co-bento__cell p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.55;
    color: #475569;
}

.co-bento__cell--accent {
    background: linear-gradient(135deg, #0B1D3A, #1565C0);
    border: none;
}

.co-bento__cell--accent h4,
.co-bento__cell--accent p,
.co-bento__cell--accent i { color: #fff !important; }

.co-bento__cell--accent p { opacity: .9; }

/* Role hub — portals + platform tools (replaces dense bento) */
.co-band--roles {
    background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
    border-top: 1px solid rgba(11, 29, 58, 0.06);
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-role-hub {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.co-role-hub__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}

.co-role-hub__label i {
    color: var(--co-blue);
    font-size: .85rem;
}

.co-role-portals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 12px;
}

.co-role-tools {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.co-role-card,
.co-role-tool {
    background: #fff;
    border: 1px solid rgba(11, 29, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(11, 29, 58, 0.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.co-role-card:hover,
.co-role-tool:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(21, 101, 192, 0.1);
    border-color: rgba(21, 101, 192, 0.18);
}

.co-role-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.co-role-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.co-role-card__icon--blue {
    background: rgba(21, 101, 192, 0.1);
    color: #1565C0;
}

.co-role-card__icon--pink {
    background: rgba(244, 114, 182, 0.14);
    color: #DB2777;
}

.co-role-card__icon--cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #0891B2;
}

.co-role-card__icon--green {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.co-role-card h3 {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.35;
    color: #0B1D3A;
}

.co-role-card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.65;
    color: #475569;
}

.co-role-tool {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.co-role-tool__top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.co-role-tool__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.co-role-tool h4 {
    margin: 4px 0 0;
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.35;
    color: #0B1D3A;
}

.co-role-tool p {
    margin: 0;
    font-size: .86rem;
    line-height: 1.6;
    color: #64748b;
}

.co-role-tool--highlight {
    border-color: rgba(244, 114, 182, 0.28);
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.07) 0%, rgba(6, 182, 212, 0.06) 100%);
}

@media (max-width: 1100px) {
    .co-role-portals,
    .co-role-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .co-role-portals,
    .co-role-tools {
        grid-template-columns: 1fr;
    }

    .co-role-hub__label {
        font-size: .74rem;
    }
}

/* Integrations wall */
.co-integrations {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.co-int {
    background: #fff;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid rgba(11, 29, 58, 0.07);
    transition: transform .2s;
}

.co-int:hover { transform: scale(1.04); }

.co-int i {
    font-size: 1.5rem;
    color: #1565C0;
    display: block;
    margin-bottom: 8px;
}

.co-int span {
    font-size: .72rem;
    font-weight: 700;
    color: #334155;
    display: block;
    line-height: 1.3;
}

/* Values grid (about) */
.co-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.co-value {
    background: linear-gradient(180deg, #fff, #f8fafc);
    border-radius: 16px;
    padding: 22px;
    border-left: 4px solid #1565C0;
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.05);
}

.co-value:nth-child(even) { border-left-color: #FF6D00; }

.co-value h4 { margin: 0 0 8px; font-size: 1rem; color: #0B1D3A; }
.co-value p { margin: 0; font-size: .88rem; color: #475569; line-height: 1.6; }

/* Pricing extras */
.co-pricing-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.co-pricing-note {
    background: #f1f6fc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(21, 101, 192, 0.12);
}

.co-pricing-note h4 { margin: 0 0 8px; color: #0B1D3A; font-size: .95rem; }
.co-pricing-note p { margin: 0; font-size: .88rem; color: #475569; line-height: 1.55; }

/* Contact promise strip */
.co-promise-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.co-promise {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(11, 29, 58, 0.08);
}

.co-promise i { color: #FF6D00; font-size: 1.2rem; margin-bottom: 8px; }
.co-promise strong { display: block; font-size: .85rem; color: #0B1D3A; margin-bottom: 4px; }
.co-promise span { font-size: .78rem; color: #64748b; }

.co-band--page-body { padding: 40px 0 56px; }

.co-band--stats { padding: 28px 0; }

.co-band--trust { padding: 16px 0; background: #fff; }

@media (max-width: 1200px) {
    .co-bento { grid-template-columns: repeat(2, 1fr); }
    .co-bento__cell--wide { grid-column: span 2; }
    .co-bento__cell--tall { grid-row: span 1; }
    .co-integrations { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .co-bento { grid-template-columns: 1fr; }
    .co-bento__cell--wide { grid-column: span 1; }
    .co-values, .co-pricing-notes, .co-promise-strip { grid-template-columns: 1fr; }
    .co-integrations { grid-template-columns: repeat(2, 1fr); }
}

/* v3.2 — footer/dark bands: global overrides se bachao */
.co-site .co-footer,
.co-site .co-footer p,
.co-site .co-footer li,
.co-site .co-footer span,
.co-site .co-footer a {
    font-family: var(--main-font);
}

.co-site .co-footer h4,
.co-site .co-footer strong {
    color: #ffffff !important;
}

.co-site .co-footer__brand p {
    color: #cbd5e1 !important;
}

.co-site .co-footer__links a {
    color: #e2e8f0 !important;
}

.co-site .co-footer__contact li {
    color: #e2e8f0 !important;
}

.co-site .co-footer__bottom span {
    color: #94a3b8 !important;
}

.co-site .co-band--stats .co-stat-item strong,
.co-site .co-band--stats .co-stat-item span {
    color: #ffffff !important;
}

.co-site .co-band--cta h2,
.co-site .co-band--cta p {
    color: #ffffff !important;
}

/* v3.4 — admin/parent panels jaisa font; Devanagari ankon ke liye alag stack nahi */
html:lang(hi) .co-site,
html:lang(hi) .co-site :where(
    h1, h2, h3, h4, h5, h6,
    p, li, span, a, button, label,
    input, select, textarea, td, th,
    summary, small, strong
) {
    font-family: var(--main-font) !important;
}

/* Language switcher */
.co-lang {
    display: flex;
    gap: 4px;
    margin-left: 0;
    background: rgba(11, 29, 58, 0.06);
    padding: 4px;
    border-radius: 999px;
    position: relative;
    z-index: 210;
    flex-shrink: 0;
}

.co-lang__btn {
    font-size: .78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    color: #475569;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.co-lang__btn:hover {
    color: var(--co-navy);
    background: rgba(255, 255, 255, 0.6);
}

.co-lang__btn.is-active {
    background: #fff;
    color: var(--co-navy);
    box-shadow: 0 1px 4px rgba(11, 29, 58, 0.12);
    pointer-events: none;
}

.co-lang__btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.co-vision-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 24px 0 8px;
}

.co-vision-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(21, 101, 192, 0.15);
    color: #334155;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(11, 29, 58, 0.04);
}

.co-vision-pills span i {
    color: var(--co-blue);
}

.co-vision-cta {
    text-align: center;
    margin-top: 28px;
}

.co-state-badges {
    margin: 28px auto 0;
    max-width: 720px;
    text-align: center;
}

.co-state-badges__label {
    margin: 0 0 14px;
    font-size: .92rem;
    font-weight: 700;
    color: #475569;
}

.co-state-badges__label i {
    color: var(--co-orange);
    margin-right: 6px;
}

.co-state-badges__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.co-state-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.12), rgba(21, 101, 192, 0.08));
    border: 1px solid rgba(255, 109, 0, 0.22);
    color: #0B1D3A;
    font-size: .88rem;
    font-weight: 700;
}

@media (max-width: 1280px) and (min-width: 901px) {
    .co-nav__link .co-nav__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .co-nav__link {
        padding: 9px 11px;
    }

    .co-nav__link i {
        font-size: .95rem;
    }
}

@media (max-width: 992px) {
    .co-header__inner { flex-wrap: nowrap; }
}

/* v3.8 — Trust: client logos, case studies, customers page */
.co-section-head--compact { margin-bottom: 28px; }
.co-section-head--compact h2 { margin-bottom: 0; }

.co-band--logos {
    padding: 36px 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.co-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.co-logo-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.04);
    transition: transform .2s, box-shadow .2s;
}

.co-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.1);
}

.co-logo-card img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.co-logo-card__initials {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--co-blue), var(--co-sky));
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    font-size: 1rem;
}

.co-logo-card small {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: #0B1D3A;
    line-height: 1.35;
}

.co-logo-card em {
    display: block;
    font-style: normal;
    font-size: .72rem;
    color: #94a3b8;
    margin-top: 4px;
}

.co-testimonials--wrap {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.co-case-grid {
    display: grid;
    gap: 28px;
}

.co-case-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 10px 40px rgba(11, 29, 58, 0.06);
}

.co-case-card__head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.co-case-card__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: #f1f5f9;
    padding: 8px;
    flex-shrink: 0;
}

.co-case-card__badge {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--co-navy), var(--co-blue));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.co-case-card__head small {
    display: block;
    color: #64748b;
    font-size: .82rem;
    margin-bottom: 6px;
}

.co-case-card__head h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B1D3A;
}

.co-case-card__excerpt {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: .94rem;
}

.co-case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.co-case-metrics div {
    background: #f1f6fc;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(21, 101, 192, 0.1);
}

.co-case-metrics strong {
    display: block;
    font-size: 1.4rem;
    color: var(--co-blue);
    margin-bottom: 4px;
}

.co-case-metrics span {
    font-size: .78rem;
    color: #64748b;
    line-height: 1.35;
}

.co-case-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.co-case-blocks h4 {
    margin: 0 0 8px;
    font-size: .88rem;
    color: var(--co-orange);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.co-case-blocks p {
    margin: 0;
    font-size: .88rem;
    color: #475569;
    line-height: 1.6;
}

.co-case-quote {
    margin: 0 0 16px;
    padding: 20px 24px;
    border-left: 4px solid var(--co-blue);
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
}

.co-case-quote p {
    margin: 0 0 8px;
    font-style: italic;
    color: #334155;
    line-height: 1.65;
}

.co-case-quote footer {
    font-size: .85rem;
    color: #64748b;
    font-weight: 600;
}

.co-case-meta {
    margin: 0;
    font-size: .85rem;
    color: #64748b;
}

.co-case-meta i { color: var(--co-blue); margin-right: 6px; }

.co-empty-note {
    text-align: center;
    color: #64748b;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed rgba(11, 29, 58, 0.12);
}

@media (max-width: 900px) {
    .co-case-metrics,
    .co-case-blocks { grid-template-columns: 1fr; }
    .co-case-card__head { flex-direction: column; }
}

/* v3.9 — Legal pages + consent */
.co-legal-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    color: #0B1D3A;
    margin: 12px 0;
    font-weight: 800;
}

.co-legal-updated {
    font-size: .88rem;
    color: #64748b;
    margin: 12px 0 0;
}

.co-legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.co-legal-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    top: 96px;
}

.co-legal-nav__link {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: .2s;
}

.co-legal-nav__link:hover {
    background: #f1f6fc;
    color: var(--co-blue);
}

.co-legal-nav__link.is-active {
    background: #fff;
    border-color: rgba(21, 101, 192, 0.2);
    color: var(--co-navy);
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.06);
}

.co-legal-body {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    border: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 8px 32px rgba(11, 29, 58, 0.05);
}

.co-legal-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(11, 29, 58, 0.06);
}

.co-legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.co-legal-section h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0B1D3A;
    margin: 0 0 10px;
}

.co-legal-section p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
    font-size: .94rem;
}

.co-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0 20px;
    font-size: .85rem;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
}

.co-consent input {
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--co-blue);
}

.co-consent a {
    color: var(--co-blue);
    font-weight: 600;
}

.co-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
}

@media (max-width: 900px) {
    .co-legal-layout { grid-template-columns: 1fr; }
    .co-legal-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }
    .co-legal-body { padding: 24px 20px; }
    .co-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
    .co-footer__grid { grid-template-columns: 1fr; }
}

/* P4 — Solutions, Security, Compare, placeholder pages */
.co-card__subtitle {
    margin: -4px 0 10px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--co-orange);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.co-card--highlight {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    border-color: rgba(255, 109, 0, 0.15);
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.co-card--highlight h2,
.co-card--highlight h3 { margin: 0 0 12px; font-size: 1.35rem; color: #0B1D3A; }

.co-coming-soon { padding: 12px 0 24px; }

.co-coming-soon__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.co-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.co-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 700;
    color: var(--co-blue);
    text-decoration: none;
}

.co-link-arrow:hover { color: var(--co-orange); }

.co-compare-note .co-card { text-align: left; }

.co-careers-email {
    margin: 16px 0 20px;
    color: #475569;
    font-size: .95rem;
}

.co-careers-email a { color: var(--co-blue); font-weight: 600; }

@media (max-width: 900px) {
    .co-cards.co-cards--3 { grid-template-columns: 1fr; }
}

/* P5 — Sticky mobile CTA + WhatsApp FAB */
.co-sticky-cta.is-hidden {
    transform: translateY(110%);
    pointer-events: none;
    opacity: 0;
    transition: transform .25s, opacity .2s;
}

.co-wa-fab {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.co-wa-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.co-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 850;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(11, 29, 58, 0.08);
    box-shadow: 0 -8px 32px rgba(11, 29, 58, 0.1);
    backdrop-filter: blur(12px);
    gap: 10px;
}

.co-sticky-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    min-height: 48px;
}

.co-sticky-cta__btn--demo {
    background: linear-gradient(135deg, #FF6D00, #FF9100);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 109, 0, 0.35);
}

.co-sticky-cta__btn--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .co-sticky-cta {
        display: flex;
    }

    body.co-has-sticky {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .co-wa-fab {
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .co-wa-fab {
        bottom: 24px;
    }
}

