/* Cryptware Infotech — shared styles for the Services dropdown (all pages)
   and the dedicated service pages. Every rule is scoped to .cw-* classes so
   nothing here can affect the existing homepage styles. */

:root {
  --cw-brand: #06a3da;
  --cw-brand-h: #058bbd;
  --cw-brand-light: #06a3da14;
  --cw-ink: #0b0b0f;
  --cw-ink-2: #2e2e38;
  --cw-ink-3: #72727a;
  --cw-paper: #fafaf8;
  --cw-paper-2: #f3f2ee;
  --cw-paper-3: #e6e4de;
  --cw-nav-link: #214177;
  --cw-serif: "DM Serif Display", Georgia, serif;
  --cw-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --cw-fast: 150ms;
  /* Footer (light theme) */
  --cw-footer-bg-top: #f8fafc;
  --cw-footer-bg-bottom: #eef6fb;
  --cw-footer-border: #e2e8f0;
  --cw-footer-heading: #0f172a;
  --cw-footer-text: #475569;
  --cw-footer-muted: #5f6f86; /* #64748b adjusted slightly darker: 4.7:1 on the gradient (WCAG AA) */
  /* Darker brand blue for text links on light backgrounds: 5.7:1 contrast (WCAG AA) */
  --cw-brand-text: #0369a1;
}

/* ------------------------------------------------------------------ */
/* Services dropdown (desktop navbar)                                  */
/* ------------------------------------------------------------------ */
.cw-dd { position: relative; display: flex; align-items: center; gap: 2px; }

.cw-dd-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin: 0 0 0 2px; padding: 0;
  border: 0; border-radius: 6px; background: transparent;
  color: var(--cw-nav-link); cursor: pointer;
  transition: color var(--cw-fast) ease;
}
.cw-dd-toggle:hover { color: var(--cw-brand); }
.cw-dd-toggle:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 2px; }
.cw-dd-toggle svg { transition: transform var(--cw-fast) ease; }

.cw-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; z-index: 60;
  min-width: 250px; margin: 0; padding: 8px; list-style: none;
  background: #fff; border: 1px solid rgba(11, 11, 15, 0.06); border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity var(--cw-fast) ease, transform var(--cw-fast) ease, visibility 0s linear var(--cw-fast);
}
/* invisible bridge so the menu stays open while the pointer moves down to it */
.cw-dd-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }

.cw-dd.is-open .cw-dd-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  transition: opacity var(--cw-fast) ease, transform var(--cw-fast) ease, visibility 0s;
}
.cw-dd.is-open .cw-dd-toggle svg { transform: rotate(180deg); }

@media (hover: hover) and (pointer: fine) {
  .cw-dd:not(.is-suppressed):hover .cw-dd-menu {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
    transition: opacity var(--cw-fast) ease, transform var(--cw-fast) ease, visibility 0s;
  }
  .cw-dd:not(.is-suppressed):hover .cw-dd-toggle svg { transform: rotate(180deg); }
}

.cw-dd-link {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-family: var(--cw-sans); font-size: 0.9rem; font-weight: 500; line-height: 1.4;
  color: var(--cw-ink-2); text-decoration: none; white-space: nowrap;
  transition: background-color var(--cw-fast) ease, color var(--cw-fast) ease;
}
.cw-dd-link:hover,
.cw-dd-link:focus-visible { background: var(--cw-brand-light); color: var(--cw-brand); outline: none; }
.cw-dd-link[aria-current="page"] { background: var(--cw-brand-light); color: var(--cw-brand); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Services accordion (mobile menu)                                    */
/* ------------------------------------------------------------------ */
.cw-acc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cw-acc-toggle {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0; border-radius: 999px;
  border: 1px solid var(--cw-paper-3); background: #fff; color: var(--cw-ink); cursor: pointer;
}
.cw-acc-toggle:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 2px; }
.cw-acc-toggle svg { transition: transform 180ms ease; }
.cw-acc.is-open .cw-acc-toggle svg { transform: rotate(180deg); }

.cw-acc-panel {
  display: grid; grid-template-rows: 0fr; visibility: hidden;
  transition: grid-template-rows 180ms ease, visibility 0s linear 180ms;
}
.cw-acc.is-open .cw-acc-panel { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows 180ms ease; }
.cw-acc-list { min-height: 0; overflow: hidden; margin: 0; padding: 0; list-style: none; }
.cw-acc-list li:first-child { padding-top: 12px; }
.cw-acc-link {
  display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--cw-paper-3);
  font-family: var(--cw-sans); font-size: 1rem; line-height: 1.4; color: var(--cw-ink-2); text-decoration: none;
  transition: color var(--cw-fast) ease, border-color var(--cw-fast) ease;
}
.cw-acc-link:hover, .cw-acc-link:focus-visible { color: var(--cw-brand); border-left-color: var(--cw-brand); }
.cw-acc-link[aria-current="page"] { color: var(--cw-brand); border-left-color: var(--cw-brand); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .cw-dd-menu, .cw-dd-toggle svg, .cw-acc-panel, .cw-acc-toggle svg,
  .cw-drawer, .cw-drawer-panel, .cw-overlay { transition: none !important; }
}

/* ================================================================== */
/* Service pages (body.cw-page only)                                   */
/* ================================================================== */
.cw-page { margin: 0; background: var(--cw-paper); color: var(--cw-ink); font-family: var(--cw-sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.cw-page *, .cw-page *::before, .cw-page *::after { box-sizing: border-box; }
.cw-page img { max-width: 100%; height: auto; display: block; }
.cw-page a { color: inherit; }
.cw-page h1, .cw-page h2, .cw-page h3, .cw-page p { margin: 0; }
html:has(body.cw-page) { scroll-padding-top: 88px; }

.cw-skip { position: absolute; left: 12px; top: -48px; z-index: 100; padding: 10px 16px; border-radius: 999px; background: var(--cw-ink); color: #fff !important; text-decoration: none; }
.cw-skip:focus { top: 12px; }

.cw-container { width: 92%; max-width: 1280px; margin: 0 auto; }

/* Buttons */
.cw-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none; line-height: 1.2;
  background: var(--cw-brand); color: #fff !important; border: 1px solid var(--cw-brand);
  transition: background-color var(--cw-fast) ease, border-color var(--cw-fast) ease, color var(--cw-fast) ease;
}
.cw-btn:hover { background: var(--cw-brand-h); border-color: var(--cw-brand-h); }
.cw-btn:focus-visible { outline: 2px solid var(--cw-ink); outline-offset: 3px; }
.cw-btn--ghost { background: transparent; color: var(--cw-ink) !important; border-color: var(--cw-paper-3); }
.cw-btn--ghost:hover { background: #fff; border-color: var(--cw-ink-3); }
.cw-btn--light { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, 0.25); }
.cw-btn--light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }

/* ---------------- Navbar ---------------- */
.cw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 72px;
  background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); transition: box-shadow 200ms ease;
}
.cw-nav.is-scrolled { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07); }
.cw-nav-inner { height: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.cw-logo { display: flex; align-items: center; height: 100%; }
.cw-logo img { height: 52px; width: auto; }
.cw-nav-right { display: flex; align-items: center; gap: 24px; }
.cw-nav-links { display: none; align-items: center; gap: 32px; }
.cw-nav-link {
  position: relative; display: flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--cw-nav-link) !important; text-decoration: none;
  transition: color var(--cw-fast) ease;
}
.cw-nav-link::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--cw-brand); transition: width 250ms ease; }
.cw-nav-link:hover { color: var(--cw-brand) !important; }
.cw-nav-link:hover::after, .cw-nav-link.is-active::after { width: 100%; }
.cw-nav-cta { display: none; }
.cw-burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 12px; cursor: pointer;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cw-burger span { display: block; width: 22px; height: 2px; background: var(--cw-brand); }
.cw-burger:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 2px; }

@media (min-width: 768px) {
  .cw-nav-inner { padding: 0 40px; }
  .cw-logo img { height: 60px; }
  .cw-nav-links { display: flex; }
  .cw-nav-cta { display: inline-flex; }
  .cw-burger { display: none; }
}
@media (min-width: 1024px) { .cw-nav-inner { padding: 0 56px; } .cw-logo img { height: 65px; } }
@media (min-width: 1280px) { .cw-nav-inner { padding: 0 64px; } }

/* ---------------- Mobile drawer ---------------- */
.cw-drawer { position: fixed; inset: 0; z-index: 70; overflow: hidden; visibility: hidden; transition: visibility 0s linear 250ms; }
.cw-drawer.is-open { visibility: visible; transition: none; }
.cw-overlay { position: absolute; inset: 0; background: rgba(11, 11, 15, 0.5); opacity: 0; transition: opacity 250ms ease; }
.cw-drawer.is-open .cw-overlay { opacity: 1; }
.cw-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 100%; max-width: 340px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 32px; padding: 32px;
  background: var(--cw-paper); border-left: 1px solid var(--cw-paper-3);
  transform: translateX(100%); transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cw-drawer.is-open .cw-drawer-panel { transform: translateX(0); }
.cw-drawer-head { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; }
.cw-drawer-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.35em; font-weight: 600; color: var(--cw-ink-3); }
.cw-drawer-close {
  width: 40px; height: 40px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--cw-brand); color: #fff; font-size: 1.25rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.cw-drawer-close:focus-visible { outline: 2px solid var(--cw-ink); outline-offset: 2px; }
.cw-drawer-links { display: flex; flex-direction: column; gap: 24px; margin-top: 16px; font-family: var(--cw-serif); font-size: 1.4rem; }
.cw-drawer-links > a, .cw-acc-row > a { color: var(--cw-ink); text-decoration: none; }
.cw-drawer-links > a:hover, .cw-acc-row > a:hover { color: var(--cw-brand); }
.cw-drawer-links .cw-drawer-cta { margin-top: 16px; font-family: var(--cw-sans); font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cw-brand); }

/* ---------------- Hero ---------------- */
.cw-hero { padding: calc(72px + 56px) 0 64px; background: linear-gradient(180deg, #fff 0%, var(--cw-paper) 100%); border-bottom: 1px solid var(--cw-paper-3); }
.cw-crumbs { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--cw-ink-3); }
.cw-crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--cw-paper-3); }
.cw-crumbs a { text-decoration: none; }
.cw-crumbs a:hover { color: var(--cw-brand); }
.cw-eyebrow { display: block; margin-bottom: 16px; color: var(--cw-brand); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 600; }
.cw-hero h1 { font-family: var(--cw-serif); font-weight: 400; font-size: clamp(2.5rem, 5.2vw, 4.2rem); line-height: 1.08; max-width: 16ch; }
.cw-hero-tagline { margin-top: 20px; max-width: 620px; font-size: 1.15rem; color: var(--cw-ink-2); }
.cw-hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------------- Sections ---------------- */
.cw-section { padding: 80px 0; }
.cw-section--white { background: #fff; border-top: 1px solid var(--cw-paper-3); border-bottom: 1px solid var(--cw-paper-3); }
.cw-section-head { max-width: 720px; margin-bottom: 48px; }
.cw-section--flush { padding-top: 0; }
.cw-section-head h2, .cw-h2 { font-family: var(--cw-serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.12; }
.cw-h2 { margin-bottom: 24px !important; }
.cw-h2--sm { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.cw-section-head p { margin-top: 14px; color: var(--cw-ink-3); font-size: 1.02rem; }

/* Overview */
.cw-overview { display: grid; gap: 40px; }
.cw-overview-text p { font-size: 1.08rem; color: var(--cw-ink-2); }
.cw-overview-text p + p { margin-top: 18px; }
.cw-card { background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 18px; padding: 28px; }
.cw-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.cw-checks { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.cw-checks li { display: flex; gap: 10px; align-items: flex-start; color: var(--cw-ink-2); font-size: 0.97rem; }
.cw-checks svg { flex: none; margin-top: 3px; color: var(--cw-brand); }
@media (min-width: 900px) { .cw-overview { grid-template-columns: 1.45fr 1fr; gap: 64px; align-items: start; } }

/* Features */
.cw-features { margin: 0; padding: 0; list-style: none; display: grid; gap: 20px; }
@media (min-width: 640px) { .cw-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cw-features { grid-template-columns: repeat(3, 1fr); } }
.cw-feature { background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 18px; padding: 28px; transition: border-color var(--cw-fast) ease; }
.cw-feature:hover { border-color: rgba(6, 163, 218, 0.45); }
.cw-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--cw-brand-light); color: var(--cw-brand); margin-bottom: 18px; }
.cw-feature h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.cw-feature p { color: var(--cw-ink-3); font-size: 0.95rem; }

/* Process */
.cw-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; counter-reset: cw-step; }
.cw-step { position: relative; padding: 24px; border-radius: 18px; background: var(--cw-paper); border: 1px solid var(--cw-paper-3); }
.cw-step-num { display: block; font-family: var(--cw-serif); font-size: 1.8rem; line-height: 1; color: var(--cw-brand); margin-bottom: 14px; }
.cw-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.cw-step p { color: var(--cw-ink-3); font-size: 0.93rem; }
@media (min-width: 640px) { .cw-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cw-steps { grid-template-columns: repeat(5, 1fr); } }

/* Technologies */
.cw-tech { display: grid; gap: 28px; }
.cw-tech h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: var(--cw-ink-3); margin-bottom: 12px; }
.cw-pills { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.cw-pills li { padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--cw-paper-3); font-size: 0.88rem; color: var(--cw-ink-2); }
@media (min-width: 900px) { .cw-tech { grid-template-columns: repeat(2, 1fr); column-gap: 48px; } }

/* Benefits */
.cw-benefits { margin: 0; padding: 0; list-style: none; display: grid; gap: 28px; }
.cw-benefit { display: flex; gap: 16px; align-items: flex-start; }
.cw-benefit .cw-icon { margin: 0; flex: none; }
.cw-benefit h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 4px; }
.cw-benefit p { color: var(--cw-ink-3); font-size: 0.95rem; }
.cw-benefit p a { color: var(--cw-brand); }
@media (min-width: 768px) { .cw-benefits { grid-template-columns: repeat(2, 1fr); column-gap: 48px; } }

/* FAQ */
.cw-faq { max-width: 860px; display: grid; gap: 12px; }
.cw-faq details { background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 14px; }
.cw-faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-weight: 600; font-size: 1rem; line-height: 1.45;
}
.cw-faq summary::-webkit-details-marker { display: none; }
.cw-faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--cw-brand); transition: transform var(--cw-fast) ease;
}
.cw-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.cw-faq summary:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: -2px; border-radius: 14px; }
.cw-faq details p { padding: 0 24px 22px; color: var(--cw-ink-2); font-size: 0.97rem; }

/* CTA band */
.cw-cta { background: var(--cw-ink); color: #fff; border-radius: 28px; padding: 48px 28px; display: grid; gap: 28px; }
.cw-cta h2 { font-family: var(--cw-serif); font-weight: 400; font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.12; max-width: 20ch; }
.cw-cta p { margin-top: 14px; color: rgba(255, 255, 255, 0.7); max-width: 560px; }
.cw-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cw-cta-contact { width: 100%; margin-top: 4px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.cw-cta-contact a { color: #fff; text-decoration: none; }
.cw-cta-contact a:hover { color: var(--cw-brand); }
@media (min-width: 900px) { .cw-cta { padding: 64px; grid-template-columns: 1.3fr 1fr; align-items: center; } .cw-cta-actions { justify-content: flex-end; } .cw-cta-contact { text-align: right; } }

/* Other services */
.cw-others { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
@media (min-width: 640px) { .cw-others { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cw-others { grid-template-columns: repeat(3, 1fr); } }
.cw-others a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px;
  border-radius: 14px; border: 1px solid var(--cw-paper-3); background: #fff; text-decoration: none; font-weight: 500;
  transition: border-color var(--cw-fast) ease, color var(--cw-fast) ease;
}
.cw-others a:hover, .cw-others a:focus-visible { border-color: var(--cw-brand); color: var(--cw-brand); }

/* ---------------- Footer ---------------- */
/* ---------------- Footer: shared light design ----------------
   One design for both footer implementations:
   .cw-footer = the shared static footer (About, Pricing, Contact, service pages, 404)
   .cw-rfoot  = the React footer (homepage, /hardware, /hardware/product), which has extra
                content (Careers form, Privacy/Terms) so it is styled here rather than replaced. */
.cw-footer, .cw-rfoot {
  position: relative; overflow: hidden; color: var(--cw-footer-text);
  background: linear-gradient(180deg, var(--cw-footer-bg-top) 0%, var(--cw-footer-bg-bottom) 100%);
  border-top: 1px solid var(--cw-footer-border);
}
.cw-footer { margin-top: 10px; padding: 64px 0; border-top-left-radius: 42px; border-top-right-radius: 42px; }
/* 2px brand accent line at the very top (clipped to the rounded corners) */
.cw-footer::before, .cw-rfoot::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, var(--cw-brand) 18%, var(--cw-brand) 82%, transparent 100%);
}
/* Faint dot grid in the bottom-right corner (decorative only) */
.cw-footer::after, .cw-rfoot::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 360px; height: 360px; pointer-events: none;
  background-image: radial-gradient(var(--cw-brand) 1.3px, transparent 1.7px); background-size: 18px 18px; opacity: 0.09;
  -webkit-mask-image: radial-gradient(closest-side, #000 35%, transparent 100%); mask-image: radial-gradient(closest-side, #000 35%, transparent 100%);
}
.cw-footer > .cw-container, .cw-rfoot > div { position: relative; z-index: 1; }

/* Links: slate text, accessible brand blue + underline on hover (200ms) */
.cw-footer a { color: inherit; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px;
  transition: color 200ms ease, text-decoration-color 200ms ease; }
.cw-footer a:hover { color: var(--cw-brand-text); text-decoration-color: currentColor; }
.cw-footer a:focus-visible, .cw-rfoot a:focus-visible, .cw-rfoot button:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 3px; border-radius: 4px; }

.cw-footer-top { padding: 16px 0 32px; margin-bottom: 48px; border-bottom: 1px solid var(--cw-footer-border); }
.cw-footer-top img { height: 50px; width: auto; }
.cw-footer-top a { text-decoration: none; }
.cw-footer-grid { display: grid; gap: 40px; margin-bottom: 48px; color: var(--cw-footer-text); }
.cw-footer-brand { font-size: 1.25rem; font-weight: 600; color: var(--cw-footer-heading); }
.cw-footer-about { max-width: 320px; margin-top: 20px !important; color: var(--cw-footer-text); line-height: 1.65; }

/* Social buttons: white circle, thin border, navy icon; brand blue + lift on hover */
.cw-social { display: flex; gap: 12px; margin-top: 20px; }
.cw-social a { width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.cw-footer .cw-social a, .cw-rfoot > div > div:nth-child(2) a.rounded-full {
  width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--cw-footer-border); color: var(--cw-footer-heading); text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.cw-footer .cw-social a:hover, .cw-rfoot > div > div:nth-child(2) a.rounded-full:hover {
  background: var(--cw-brand); border-color: var(--cw-brand); color: #fff; transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(6, 163, 218, 0.25);
}

.cw-footer-title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--cw-footer-heading); margin-bottom: 16px !important; }
.cw-footer-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--cw-footer-text); }
.cw-footer-list a[aria-current="page"] { color: var(--cw-brand-text); font-weight: 500; }
.cw-footer-contact { display: grid; gap: 12px; color: var(--cw-footer-text); }
.cw-footer-contact strong { display: block; font-weight: 600; color: var(--cw-footer-heading); }
.cw-footer-contact p { color: var(--cw-footer-text); line-height: 1.65; }
.cw-footer-contact a { overflow-wrap: anywhere; }
.cw-footer-bottom { padding-top: 32px; border-top: 1px solid var(--cw-footer-border); font-size: 0.875rem; color: var(--cw-footer-muted); }
@media (min-width: 640px) { .cw-footer-grid { grid-template-columns: repeat(2, 1fr); } .cw-footer-grid > :first-child { grid-column: span 2; } }
@media (min-width: 768px) { .cw-footer-top img { height: 60px; } .cw-footer-grid { grid-template-columns: repeat(3, 1fr); } .cw-footer-grid > :first-child { grid-column: span 3; } }
@media (min-width: 1024px) { .cw-footer-grid { grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr 1.3fr; } .cw-footer-grid > :first-child { grid-column: auto; } }

/* React footer: same colours, mapped onto its structure
   (container > [logo row, link grid, (Careers form popup), bottom bar]).
   The Careers popup keeps its own dark design and is not matched by these selectors. */
.cw-rfoot > div > div:first-child { border-bottom-color: var(--cw-footer-border); }
.cw-rfoot > div > div:nth-child(2) { color: var(--cw-footer-text); }
.cw-rfoot > div > div:nth-child(2) :is(a, button):not(.rounded-full) {
  color: var(--cw-footer-text); text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.cw-rfoot > div > div:nth-child(2) :is(a, button):not(.rounded-full):hover { color: var(--cw-brand-text); text-decoration-color: currentColor; }
.cw-rfoot > div > div:nth-child(2) .text-xl { color: var(--cw-footer-heading); }
.cw-rfoot > div > div:nth-child(2) p.leading-relaxed { color: var(--cw-footer-text); }
.cw-rfoot > div > div:nth-child(2) p.font-medium { color: var(--cw-footer-heading); font-weight: 600; }
.cw-rfoot > div > div:nth-child(2) .uppercase,
.cw-rfoot > div > div:nth-child(2) a.uppercase { color: var(--cw-footer-heading); text-decoration: none; }
.cw-rfoot > div > div:nth-child(2) a.uppercase:hover { color: var(--cw-brand-text); }
.cw-rfoot > div > div:last-child { border-top-color: var(--cw-footer-border); color: var(--cw-footer-muted); }
.cw-rfoot > div > div:last-child a { color: var(--cw-footer-muted); transition: color 200ms ease; }
.cw-rfoot > div > div:last-child a:hover { color: var(--cw-brand-text); }

@media (prefers-reduced-motion: reduce) {
  .cw-footer .cw-social a:hover, .cw-rfoot > div > div:nth-child(2) a.rounded-full:hover { transform: none; }
}

@media (max-width: 639px) {
  .cw-section { padding: 60px 0; }
  .cw-hero { padding-bottom: 48px; }
  .cw-feature, .cw-card { padding: 22px; }
}

/* ================================================================== */
/* Multi-page additions (navbar fit, homepage "Learn more", new pages) */
/* ================================================================== */

/* 6-link navbar: between 768px and 1199px hide the link icons and the CTA
   button (Contact is still in the menu) so everything fits on one line. */
@media (min-width: 768px) and (max-width: 1199px) {
  .cw-navfit { gap: 18px !important; }
  .cw-navfit a > svg { display: none; }
  .cw-navfit-cta { display: none !important; }
}
.cw-nav-link[aria-current="page"]::after { width: 100%; }

/* "Learn more" links added to the homepage overview sections */
.cw-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--cw-sans); font-size: 0.92rem; font-weight: 600;
  color: var(--cw-brand); text-decoration: none;
}
.cw-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.cw-more:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 3px; border-radius: 4px; }
.cw-more--light { color: #5cc8ee; }

/* Generic helpers for the new pages */
.cw-lead { font-size: 1.08rem; color: var(--cw-ink-2); }
.cw-lead + .cw-lead { margin-top: 18px !important; }
.cw-grid-2, .cw-grid-3 { display: grid; gap: 20px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .cw-grid-2 { grid-template-columns: repeat(2, 1fr); } .cw-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cw-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.cw-card p { color: var(--cw-ink-3); font-size: 0.95rem; }
.cw-card h3 { margin-bottom: 8px; }
.cw-card .cw-icon { margin-bottom: 16px; }
.cw-quote { font-family: var(--cw-serif); font-size: 1.35rem; line-height: 1.35; color: var(--cw-ink) !important; }
.cw-label { display: block; margin-bottom: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cw-brand); }

/* Stats */
.cw-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.cw-stats li { background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 14px; padding: 20px; }
.cw-stats strong { display: block; font-family: var(--cw-serif); font-weight: 400; font-size: 2rem; line-height: 1; color: var(--cw-brand); }
.cw-stats span { display: block; margin-top: 6px; font-size: 0.9rem; color: var(--cw-ink-3); }

/* Pricing */
.cw-plans { display: grid; gap: 24px 20px; margin: 0; padding: 12px 0 0; list-style: none; }
@media (min-width: 768px) { .cw-plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cw-plans { grid-template-columns: repeat(4, 1fr); } }
.cw-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 18px; padding: 28px; }
.cw-plan--featured { border-color: var(--cw-brand); background: linear-gradient(180deg, #f4fbff 0%, #fff 100%); }
.cw-plan-badge { position: absolute; top: -12px; left: 28px; padding: 4px 12px; border-radius: 999px; background: var(--cw-brand); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; }
.cw-plan h3 { font-size: 1.15rem; font-weight: 600; }
.cw-plan-tagline { margin-top: 4px !important; color: var(--cw-ink-3); font-size: 0.92rem; }
.cw-price { margin: 20px 0 4px !important; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.cw-price strong { font-family: var(--cw-serif); font-weight: 400; font-size: 2.3rem; line-height: 1; color: var(--cw-ink); }
.cw-price s { color: var(--cw-ink-3); font-size: 1rem; }
.cw-price span { color: var(--cw-ink-3); font-size: 0.92rem; }
.cw-price-note { font-size: 0.82rem; color: var(--cw-ink-3); }
.cw-plan .cw-checks { margin: 20px 0 24px; flex: 1; }
.cw-plan .cw-btn { justify-content: center; }
.cw-plan-foot { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 24px !important; font-size: 0.9rem; color: var(--cw-ink-3); }

.cw-table-wrap { position: relative; overflow-x: auto; border: 1px solid var(--cw-paper-3); border-radius: 18px; background: #fff; }
.cw-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 0.95rem; }
.cw-table th, .cw-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--cw-paper-3); vertical-align: top; }
.cw-table thead th { font-weight: 600; background: var(--cw-paper); }
.cw-table tbody tr:last-child th, .cw-table tbody tr:last-child td { border-bottom: 0; }
.cw-table tbody th { font-weight: 500; color: var(--cw-ink-2); }
.cw-table td { color: var(--cw-ink-2); }
.cw-yes { color: var(--cw-brand); font-weight: 600; }
.cw-no { color: var(--cw-ink-3); }

.cw-price--sm strong { font-size: 1.6rem; }
@media (min-width: 1100px) { .cw-features--4 { grid-template-columns: repeat(4, 1fr); } }
.cw-feature h3 a { text-decoration: none; }
.cw-feature h3 a:hover, .cw-feature h3 a:focus-visible { color: var(--cw-brand); }
.cw-sr { position: absolute !important; top: 0; left: 0; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

/* Placeholder marker for content the owner should confirm */
.cw-ph { display: inline-block; padding: 1px 8px; border-radius: 6px; background: #fff7e0; border: 1px dashed #e0b44a; color: #7a5a00; font-size: 0.75rem; font-weight: 600; vertical-align: middle; }

/* Contact */
.cw-contact { display: grid; gap: 32px; }
@media (min-width: 960px) { .cw-contact { grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start; } }
.cw-form { position: relative; background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 18px; padding: 28px; }
.cw-form h2 { font-family: var(--cw-serif); font-weight: 400; font-size: 1.8rem; line-height: 1.15; }
.cw-form-intro { margin: 8px 0 24px !important; color: var(--cw-ink-3); font-size: 0.95rem; }
.cw-fields { display: grid; gap: 18px; }
@media (min-width: 640px) { .cw-fields { grid-template-columns: repeat(2, 1fr); } .cw-field--full { grid-column: 1 / -1; } }
.cw-field label { display: block; margin-bottom: 6px; font-size: 0.88rem; font-weight: 600; color: var(--cw-ink-2); }
.cw-field .cw-opt { font-weight: 400; color: var(--cw-ink-3); }
.cw-input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--cw-paper-3); background: var(--cw-paper);
  font: inherit; font-size: 0.95rem; color: var(--cw-ink); transition: border-color var(--cw-fast) ease, background-color var(--cw-fast) ease;
}
.cw-input:focus { outline: none; border-color: var(--cw-brand); background: #fff; box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.15); }
textarea.cw-input { min-height: 140px; resize: vertical; }
select.cw-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2372727a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cw-field.is-invalid .cw-input { border-color: #d64545; background: #fff; }
.cw-error { display: none; margin-top: 6px !important; font-size: 0.82rem; color: #b42318; }
.cw-field.is-invalid .cw-error { display: block; }
.cw-hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.cw-form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.cw-form-actions .cw-btn { cursor: pointer; font-family: inherit; }
.cw-form-actions .cw-btn[disabled] { opacity: 0.65; cursor: wait; }
.cw-form-note { font-size: 0.82rem; color: var(--cw-ink-3); }
.cw-alert { display: none; margin-top: 20px; padding: 14px 16px; border-radius: 12px; font-size: 0.95rem; }
.cw-alert.is-visible { display: block; }
.cw-alert--ok { background: #ecfdf3; border: 1px solid #abefc6; color: #067647; }
.cw-alert--err { background: #fef3f2; border: 1px solid #fecdca; color: #b42318; }
.cw-alert a { color: inherit; font-weight: 600; }

.cw-info { display: grid; gap: 14px; }
.cw-info-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--cw-paper-3); border-radius: 14px; padding: 18px; }
.cw-info-item .cw-icon { margin: 0; flex: none; }
.cw-info-item strong { display: block; font-size: 0.95rem; }
.cw-info-item p, .cw-info-item a { color: var(--cw-ink-2); font-size: 0.95rem; text-decoration: none; overflow-wrap: anywhere; }
.cw-info-item a:hover { color: var(--cw-brand); }
.cw-social--light { margin-top: 0; }
.cw-social--light a { background: #fff; border: 1px solid var(--cw-paper-3); color: var(--cw-ink-2); }
.cw-social--light a:hover { background: var(--cw-brand-light); color: var(--cw-brand); }
.cw-map { overflow: hidden; border-radius: 18px; border: 1px solid var(--cw-paper-3); background: var(--cw-paper-2); height: 360px; }
.cw-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* 404 */
.cw-404 { min-height: 70vh; display: flex; align-items: center; padding: calc(72px + 64px) 0 80px; }
.cw-404-code { font-family: var(--cw-serif); font-size: clamp(5rem, 14vw, 9rem); line-height: 1; color: var(--cw-brand); }
.cw-404 h1 { margin-top: 12px !important; font-family: var(--cw-serif); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.cw-404 p:not(.cw-404-code) { margin-top: 14px !important; max-width: 560px; color: var(--cw-ink-2); }
.cw-404-links { margin: 32px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }

/* ================================================================== */
/* Visual components: DeviceShowcase, FloatingBadge, StatsStrip,       */
/* TrustBadges, TechMarquee, Testimonials, CtaBanner                   */
/* ================================================================== */
@keyframes cw-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes cw-marquee { to { transform: translateX(calc(-100% - 12px)); } }

/* Hero layout: text left, visual right */
.cw-hero-grid { display: grid; gap: 40px; align-items: center; }
.cw-hero-visual { min-width: 0; }
@media (min-width: 1024px) { .cw-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; } }
.cw-hero .cw-trust { margin-top: 28px; }

/* ---------- DeviceShowcase ---------- */
.cw-show { position: relative; width: 100%; max-width: 600px; aspect-ratio: 600 / 460; margin: 0 auto; container-type: inline-size; font-family: var(--cw-sans); }
.cw-show *, .cw-show *::before, .cw-show *::after { box-sizing: border-box; }
.cw-show i, .cw-show em { font-style: normal; }
.cw-show-bg { position: absolute; inset: -4% -6%; z-index: 0; border-radius: 40%;
  background: radial-gradient(closest-side at 55% 45%, rgba(6, 163, 218, 0.22), rgba(6, 163, 218, 0) 72%), radial-gradient(closest-side at 82% 80%, rgba(33, 65, 119, 0.14), rgba(33, 65, 119, 0) 70%); }
.cw-show-bg::after { content: ""; position: absolute; inset: 6%; background-image: radial-gradient(rgba(6, 163, 218, 0.35) 1.2px, transparent 1.6px); background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 100%); mask-image: radial-gradient(closest-side, #000 30%, transparent 100%); }

/* Laptop (internals sized in % of the laptop width via cqw) */
.cw-laptop { position: absolute; left: 0; top: 6%; width: 84%; z-index: 1; container-type: inline-size; }
.cw-laptop-screen { display: flex; flex-direction: column; aspect-ratio: 16 / 10; overflow: hidden; background: #fff;
  border: 1.6cqw solid #1b1f2a; border-bottom-width: 2.2cqw; border-radius: 2.6cqw 2.6cqw 0 0; box-shadow: 0 24px 50px rgba(11, 11, 15, 0.14); }
.cw-laptop-base { position: relative; height: 2.6cqw; margin: 0 -6%; border-radius: 0 0 2.4cqw 2.4cqw; background: linear-gradient(#e2e5ea, #b9bec7); box-shadow: 0 10px 18px rgba(11, 11, 15, 0.12); }
.cw-laptop-base::before { content: ""; position: absolute; left: 50%; top: 0; width: 16%; height: 45%; transform: translateX(-50%); border-radius: 0 0 1cqw 1cqw; background: #a9aeb8; }

/* ---------- Screen content: LaptopScreen (.cw-lx) + PhoneScreen (.cw-px) ----------
   Root font-size is a % of the device width (cqw); every size inside is in em,
   so the screens scale with the frame. ~10.5px base on a full-size desktop laptop. */
@keyframes cw-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes cw-fade { from { opacity: 0; } }
@keyframes cw-grow-y { from { transform: scaleY(0); } }
@keyframes cw-grow-x { from { transform: scaleX(0); } }
@keyframes cw-ring { from { stroke-dasharray: 0 100; } }
@keyframes cw-pop { from { opacity: 0; transform: translateY(0.6em); } }
.cw-draw { stroke-dasharray: 1; stroke-dashoffset: 0; animation: cw-draw 1.6s ease-out 0.2s both; }
.cw-area { animation: cw-fade 0.9s ease 0.9s both; }
.cw-grow-y { transform-origin: bottom; animation: cw-grow-y 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.cw-grow-x { transform-origin: left; animation: cw-grow-x 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.cw-seg { animation: cw-ring 1.2s ease-out 0.3s both; }
.cw-i { display: block; width: 1em; height: 1em; flex: none; }

/* Laptop app */
.cw-lx { flex: 1; min-height: 0; display: grid; grid-template-columns: 3.1em minmax(0, 1fr); grid-template-rows: 2.5em minmax(0, 1fr); height: 100%; overflow: hidden;
  background: #0F172A; color: #E2E8F0; font-family: var(--cw-sans); font-size: 2.15cqw; line-height: 1.25; font-variant-numeric: tabular-nums; text-align: left; }
.cw-lx * { margin: 0; }
.cw-lx ul { padding: 0; list-style: none; }
.cw-lx-top { grid-column: 1 / -1; display: flex; align-items: center; gap: 0.6em; padding: 0 0.9em; border-bottom: 1px solid rgba(148, 163, 184, 0.14); }
.cw-lx-top strong { font-size: 0.98em; font-weight: 600; color: #F8FAFC; white-space: nowrap; }
.cw-lx-logo { width: 0.95em; height: 0.95em; border-radius: 50%; background: linear-gradient(135deg, #0EA5E9, #6366F1); box-shadow: 0 0 0 0.2em rgba(14, 165, 233, 0.2); }
.cw-lx-search { display: flex; align-items: center; gap: 0.4em; margin-left: auto; padding: 0.3em 0.8em; border-radius: 1em; background: #1E293B; color: #94A3B8; font-size: 0.82em; min-width: 9em; }
.cw-lx-avatar { display: flex; align-items: center; justify-content: center; width: 1.7em; height: 1.7em; border-radius: 50%; background: linear-gradient(135deg, #0EA5E9, #A855F7); color: #fff; font-size: 0.7em; font-weight: 700; }
.cw-lx-side { display: flex; flex-direction: column; align-items: center; gap: 0.75em; padding-top: 0.8em; border-right: 1px solid rgba(148, 163, 184, 0.14); color: #64748B; }
.cw-lx-side > span { padding: 0.38em; border-radius: 0.5em; font-size: 1.05em; }
.cw-lx-side > span.on { background: rgba(14, 165, 233, 0.16); color: #0EA5E9; }
.cw-lx-main { display: flex; flex-direction: column; gap: 0.65em; min-width: 0; min-height: 0; padding: 0.75em 0.85em; overflow: hidden; }
.cw-lx-main > * { flex-shrink: 0; }

.cw-lx-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.55em; }
.cw-lx-kpi { display: grid; gap: 0.2em; padding: 0.55em 0.65em; border-radius: 0.6em; background: #1E293B; border: 1px solid rgba(148, 163, 184, 0.1); }
.cw-lx-kpi > span:first-child { overflow: hidden; color: #94A3B8; font-size: 0.8em; white-space: nowrap; text-overflow: ellipsis; }
.cw-lx-kpi strong { color: #F8FAFC; font-size: 1.4em; font-weight: 700; line-height: 1.1; white-space: nowrap; }
.cw-lx-trend { display: inline-flex; align-items: center; gap: 0.15em; color: #22C55E; font-size: 0.76em; font-weight: 600; }
.cw-lx-trend.bad { color: #EF4444; }

.cw-lx-charts { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 0.55em; }
.cw-lx-panel { min-width: 0; padding: 0.55em 0.7em; border-radius: 0.6em; background: #1E293B; border: 1px solid rgba(148, 163, 184, 0.1); }
.cw-lx-ptitle { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5em; margin-bottom: 0.35em; }
.cw-lx-ptitle span { color: #CBD5E1; font-size: 0.82em; font-weight: 600; white-space: nowrap; }
.cw-lx-ptitle em { color: #22C55E; font-size: 0.74em; font-style: normal; font-weight: 600; white-space: nowrap; }
.cw-lx-line { display: block; width: 100%; height: auto; overflow: visible; }
.cw-lx-axis { display: flex; justify-content: space-between; margin-top: 0.3em; color: #64748B; font-size: 0.7em; }
.cw-lx-bars { display: flex; align-items: flex-end; gap: 0.6em; height: 5.2em; padding: 0 0.2em; border-bottom: 1px dashed #334155; }
.cw-lx-bars > div { display: flex; align-items: flex-end; flex: 1; height: 100%; }
.cw-lx-bars i { display: block; width: 100%; border-radius: 0.3em 0.3em 0 0; background: linear-gradient(180deg, rgba(14, 165, 233, 0.7), rgba(14, 165, 233, 0.25)); }
.cw-lx-bars i.on { background: linear-gradient(180deg, #0EA5E9, #6366F1); }
.cw-lx-donut { display: flex; align-items: center; gap: 0.7em; }
.cw-lx-ring { position: relative; flex: none; width: 5.4em; height: 5.4em; }
.cw-lx-ring svg { display: block; width: 100%; height: 100%; transform: rotate(0deg); }
.cw-lx-ringval { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.05; }
.cw-lx-ringval strong { color: #F8FAFC; font-size: 1.05em; font-weight: 700; }
.cw-lx-ringval span { color: #94A3B8; font-size: 0.6em; }
.cw-lx-legend { display: grid; flex: 1; gap: 0.35em; min-width: 0; font-size: 0.74em; }
.cw-lx-legend li { display: flex; align-items: center; gap: 0.4em; color: #CBD5E1; }
.cw-lx-legend i { flex: none; width: 0.7em; height: 0.7em; border-radius: 0.2em; }
.cw-lx-legend span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cw-lx-legend b { margin-left: auto; color: #F8FAFC; font-weight: 600; }
.cw-lx-funnel { display: grid; gap: 0.42em; font-size: 0.74em; }
.cw-lx-funnel li { display: grid; grid-template-columns: 5em minmax(0, 1fr) 3.2em; align-items: center; gap: 0.5em; color: #CBD5E1; }
.cw-lx-funnel div { height: 0.95em; border-radius: 0.3em; background: #0F172A; overflow: hidden; }
.cw-lx-funnel i { display: block; height: 100%; border-radius: 0.3em; }
.cw-lx-funnel b { color: #F8FAFC; font-weight: 600; text-align: right; }

.cw-lx-table { padding: 0.3em 0.75em; border-radius: 0.6em; background: #1E293B; border: 1px solid rgba(148, 163, 184, 0.1); font-size: 0.8em; }
.cw-lx-tr { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.7fr); align-items: center; gap: 0.6em; padding: 0.38em 0; border-top: 1px solid rgba(148, 163, 184, 0.1); }
.cw-lx-tr > span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cw-lx-tr > span:last-child { color: #F8FAFC; font-weight: 600; text-align: right; }
.cw-lx-th { border-top: 0; color: #64748B; font-size: 0.86em; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.cw-lx-th > span:last-child { color: #64748B; }
.cw-pill { display: inline-flex; align-items: center; gap: 0.35em; padding: 0.15em 0.6em; border-radius: 1em; font-size: 0.88em; font-style: normal; font-weight: 600; white-space: nowrap; }
.cw-pill::before { content: ""; width: 0.45em; height: 0.45em; border-radius: 50%; background: currentColor; }
.cw-pill .cw-i { width: 1em; height: 1em; }
.cw-pill:has(.cw-i)::before { display: none; }
.cw-pill.sky { background: rgba(14, 165, 233, 0.15); color: #38BDF8; }
.cw-pill.green { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.cw-pill.amber { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.cw-pill.purple { background: rgba(168, 85, 247, 0.15); color: #C084FC; }
.cw-pill.red { background: rgba(239, 68, 68, 0.15); color: #F87171; }

/* Pricing plans on the laptop */
.cw-lx-note { color: #94A3B8; font-size: 0.8em; text-align: center; }
.cw-lx-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7em; padding-top: 0.6em; }
.cw-lx-plan { position: relative; display: flex; flex-direction: column; gap: 0.5em; padding: 0.9em 0.8em 0.8em; border-radius: 0.7em; background: #1E293B; border: 1px solid rgba(148, 163, 184, 0.14); }
.cw-lx-plan.on { border-color: #0EA5E9; background: linear-gradient(180deg, rgba(14, 165, 233, 0.16), #1E293B 60%); transform: translateY(-0.4em); box-shadow: 0 0.8em 1.6em rgba(14, 165, 233, 0.18); }
.cw-lx-badge { position: absolute; top: -0.75em; left: 50%; transform: translateX(-50%); padding: 0.2em 0.7em; border-radius: 1em; background: #0EA5E9; color: #fff; font-size: 0.7em; font-weight: 700; white-space: nowrap; }
.cw-lx-pname { color: #CBD5E1; font-size: 0.85em; font-weight: 600; }
.cw-lx-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.1em 0.35em; }
.cw-lx-price s { width: 100%; color: #64748B; font-size: 0.72em; }
.cw-lx-price strong { color: #F8FAFC; font-size: 1.55em; font-weight: 700; line-height: 1; }
.cw-lx-price span { color: #94A3B8; font-size: 0.72em; }
.cw-lx-plan ul { display: grid; gap: 0.35em; font-size: 0.74em; color: #CBD5E1; }
.cw-lx-plan li { display: flex; align-items: center; gap: 0.4em; }
.cw-lx-plan li .cw-i { color: #22C55E; }
.cw-lx-btn { margin-top: 0.3em; padding: 0.45em 0; border-radius: 1em; background: #334155; color: #F8FAFC; font-size: 0.76em; font-weight: 600; text-align: center; }
.cw-lx-plan.on .cw-lx-btn { background: #0EA5E9; }

/* Support inbox on the laptop */
.cw-lx-inbox { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr); flex: 1; min-height: 0; overflow: hidden; border-radius: 0.6em; background: #1E293B; border: 1px solid rgba(148, 163, 184, 0.1); }
.cw-lx-convs { display: grid; align-content: start; gap: 0.2em; padding: 0.5em 0.4em; border-right: 1px solid rgba(148, 163, 184, 0.12); }
.cw-lx-convs li { display: flex; align-items: center; gap: 0.45em; padding: 0.45em; border-radius: 0.5em; }
.cw-lx-convs li.on { background: rgba(14, 165, 233, 0.14); }
.cw-lx-av { display: flex; align-items: center; justify-content: center; flex: none; width: 2em; height: 2em; border-radius: 50%; background: linear-gradient(135deg, #0EA5E9, #A855F7); color: #fff; font-size: 0.7em; font-weight: 700; }
.cw-lx-cv { display: grid; min-width: 0; flex: 1; }
.cw-lx-cv b { overflow: hidden; color: #F8FAFC; font-size: 0.78em; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.cw-lx-cv small { overflow: hidden; color: #94A3B8; font-size: 0.68em; white-space: nowrap; text-overflow: ellipsis; }
.cw-lx-convs time { align-self: flex-start; color: #64748B; font-size: 0.62em; }
.cw-lx-chat { display: flex; flex-direction: column; min-width: 0; }
.cw-lx-chead { display: flex; align-items: center; gap: 0.5em; padding: 0.55em 0.7em; border-bottom: 1px solid rgba(148, 163, 184, 0.12); }
.cw-lx-chead > span:nth-child(2) { display: grid; }
.cw-lx-chead b { color: #F8FAFC; font-size: 0.82em; }
.cw-lx-chead small { display: flex; align-items: center; gap: 0.3em; color: #4ADE80; font-size: 0.68em; }
.cw-lx-chead small i { width: 0.5em; height: 0.5em; border-radius: 50%; background: #22C55E; }
.cw-lx-chead .cw-pill { margin-left: auto; font-size: 0.68em; }
.cw-lx-msgs { display: flex; flex-direction: column; gap: 0.55em; flex: 1; padding: 0.7em; }
.cw-lx-msg { max-width: 82%; animation: cw-pop 0.5s ease both; }
.cw-lx-msg p { padding: 0.5em 0.7em; border-radius: 0.8em; font-size: 0.76em; line-height: 1.35; }
.cw-lx-msg time { display: block; margin-top: 0.2em; color: #64748B; font-size: 0.6em; }
.cw-lx-msg.in p { background: #334155; color: #E2E8F0; border-bottom-left-radius: 0.2em; }
.cw-lx-msg.out { align-self: flex-end; text-align: right; }
.cw-lx-msg.out p { background: #0EA5E9; color: #fff; border-bottom-right-radius: 0.2em; text-align: left; }
.cw-lx-compose { display: flex; align-items: center; justify-content: space-between; margin: 0 0.7em 0.7em; padding: 0.4em 0.45em 0.4em 0.8em; border-radius: 1.2em; background: #0F172A; color: #64748B; font-size: 0.76em; }
.cw-lx-compose i { display: flex; padding: 0.35em; border-radius: 50%; background: #0EA5E9; color: #fff; }

/* Phone frame (unchanged) */
.cw-phone { position: absolute; right: 2%; bottom: 1%; z-index: 2; width: 25%; aspect-ratio: 9 / 19; container-type: inline-size; overflow: hidden;
  background: #fff; border: clamp(5px, 1.1cqw, 8px) solid #1b1f2a; border-radius: clamp(20px, 4.4cqw, 30px); box-shadow: 0 24px 50px rgba(11, 11, 15, 0.2); animation: cw-float 6s ease-in-out infinite; }
.cw-notch { position: absolute; left: 50%; top: 0; z-index: 1; width: 38%; height: 7cqw; transform: translateX(-50%); border-radius: 0 0 5cqw 5cqw; background: #1b1f2a; }
.cw-phone-screen { height: 100%; }

/* Phone app */
.cw-px { display: flex; flex-direction: column; height: 100%; overflow: hidden; background: #fff; color: #0F172A; font-family: var(--cw-sans); font-size: 6.1cqw; line-height: 1.25; font-variant-numeric: tabular-nums; text-align: left; }
.cw-px * { margin: 0; }
.cw-px ul { padding: 0; list-style: none; }
.cw-px-head { flex: none; padding: 0 1em 0.8em; background: linear-gradient(180deg, #E0F2FE, #F0F9FF); border-radius: 0 0 1.1em 1.1em; }
.cw-px-status { display: flex; align-items: center; justify-content: space-between; height: 1.9em; padding: 0 0.3em; font-size: 0.82em; }
.cw-px-status b { font-weight: 700; }
.cw-px-status span { display: flex; align-items: center; gap: 0.3em; }
.cw-px-status svg { height: 0.8em; width: auto; fill: currentColor; }
.cw-px-hello { display: flex; align-items: center; justify-content: space-between; margin-top: 0.2em; }
.cw-px-hello strong { font-size: 1.12em; font-weight: 700; }
.cw-px-bell { position: relative; display: flex; padding: 0.35em; border-radius: 50%; background: #fff; color: #0F172A; box-shadow: 0 0.1em 0.3em rgba(15, 23, 42, 0.08); }
.cw-px-bell i { position: absolute; top: 0.3em; right: 0.35em; width: 0.45em; height: 0.45em; border-radius: 50%; background: #EF4444; border: 1px solid #fff; }
.cw-px-body { display: flex; flex-direction: column; gap: 0.6em; flex: 1; min-height: 0; padding: 0.7em 0.8em 0.5em; }
.cw-px-body > * { flex-shrink: 0; }
.cw-px-hero { display: grid; gap: 0.2em; padding: 0.7em 0.8em; border-radius: 0.9em; background: linear-gradient(135deg, #0EA5E9, #2563EB); color: #fff; box-shadow: 0 0.5em 1em rgba(14, 165, 233, 0.28); }
.cw-px-hero > span { font-size: 0.78em; opacity: 0.9; }
.cw-px-hero strong { font-size: 1.6em; font-weight: 700; line-height: 1.1; }
.cw-px-hero strong small { font-size: 0.5em; font-weight: 500; opacity: 0.9; }
.cw-px-hero > div { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.4em; }
.cw-px-spark { width: 42%; height: auto; }
.cw-px-hero em { padding: 0.2em 0.5em; border-radius: 1em; background: rgba(255, 255, 255, 0.22); font-size: 0.66em; font-style: normal; font-weight: 600; white-space: nowrap; }
.cw-px-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4em; }
.cw-px-cards > div { display: flex; align-items: center; gap: 0.4em; min-width: 0; padding: 0.45em; border-radius: 0.7em; border: 1px solid #E2E8F0; }
.cw-px-cards > div > span:last-child { display: grid; min-width: 0; }
.cw-px-cards b { overflow: hidden; font-size: 0.92em; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; }
.cw-px-cards small { overflow: hidden; color: #64748B; font-size: 0.66em; white-space: nowrap; text-overflow: ellipsis; }
.cw-px-ico { display: flex; align-items: center; justify-content: center; flex: none; width: 1.7em; height: 1.7em; border-radius: 0.45em; background: #E0F2FE; color: #0EA5E9; font-size: 0.95em; }
.cw-px-ico .cw-i { width: 0.95em; height: 0.95em; }
.cw-px-ico.round { border-radius: 50%; }
.cw-px-acth { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.2em; }
.cw-px-acth b { font-size: 0.86em; font-weight: 700; }
.cw-px-acth span { color: #0EA5E9; font-size: 0.66em; font-weight: 600; }
.cw-px-act li { display: flex; align-items: center; gap: 0.45em; padding: 0.3em 0; border-bottom: 1px solid #F1F5F9; }
.cw-px-act li:last-child { border-bottom: 0; }
.cw-px-act li > span:last-child { display: grid; min-width: 0; }
.cw-px-act li b { overflow: hidden; font-size: 0.74em; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.cw-px-act li small { color: #64748B; font-size: 0.62em; }
.cw-px-btn { margin-top: auto; padding: 0.55em 0; border-radius: 1.2em; background: #0EA5E9; color: #fff; font-size: 0.82em; font-weight: 600; text-align: center; }
.cw-px-tabs { display: flex; flex: none; justify-content: space-around; padding: 0.45em 0 0.7em; border-top: 1px solid #E2E8F0; color: #94A3B8; }
.cw-px-tabs > span { display: flex; flex-direction: column; align-items: center; gap: 0.15em; font-size: 0.95em; }
.cw-px-tabs small { font-size: 0.62em; font-weight: 600; }
.cw-px-tabs > span.on { color: #0EA5E9; }

/* ---------- FloatingBadge ---------- */
.cw-float { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(11, 11, 15, 0.06); box-shadow: 0 10px 30px rgba(11, 11, 15, 0.1);
  color: #0b0b0f; font-size: clamp(11px, 2.1cqw, 13px); line-height: 1.3; white-space: nowrap; animation: cw-float 6s ease-in-out infinite; }
.cw-float strong { display: block; font-weight: 600; }
.cw-float small { display: block; color: #5f5f67; font-size: 0.88em; }
.cw-float-ico { display: flex; align-items: center; justify-content: center; flex: none; width: 30px; height: 30px; border-radius: 10px; background: var(--cw-brand-light); color: #0787ba; }
.cw-float--chip { gap: 8px; padding: 7px 13px; border-radius: 999px; font-weight: 600; }
.cw-float--chip i { width: 9px; height: 9px; border-radius: 50%; }
.cw-float--a { top: 0; right: 6%; animation-delay: -1s; }
.cw-float--b { left: -3%; bottom: 12%; animation-delay: -3s; }
.cw-float--c { top: 34%; left: -5%; animation-delay: -4.5s; }
.cw-float--e { top: 46%; right: 26%; animation-delay: -2s; }
.cw-float--map { left: 6%; bottom: -2%; display: block; width: 36%; padding: 8px; animation-delay: -2.5s; }
.cw-map-svg { display: block; width: 100%; height: auto; }
.cw-map-lbl { position: absolute; padding: 2px 7px; border-radius: 6px; background: #fff; box-shadow: 0 2px 8px rgba(11, 11, 15, 0.12); font-size: 0.82em; font-weight: 600; }
.cw-map-lbl.a { left: 44%; top: 10%; }
.cw-map-lbl.b { left: 57%; top: 60%; }

/* Tablet: stack below the text */
@media (max-width: 1023px) { .cw-hero-visual .cw-show { max-width: 560px; margin-top: 8px; } }
/* Mobile: phone only */
@media (max-width: 767px) {
  .cw-show { aspect-ratio: auto; max-width: 340px; padding: 24px 0 8px; }
  .cw-show .cw-laptop, .cw-show .cw-float--c, .cw-show .cw-float--e, .cw-show .cw-float--map { display: none; }
  .cw-show .cw-phone { position: relative; right: auto; bottom: auto; width: 60%; margin: 0 auto; }
  .cw-show .cw-float--a { top: 8%; right: -2%; }
  .cw-show .cw-float--b { left: -2%; bottom: 14%; }
  .cw-show .cw-float { font-size: 12px; }
}

/* ---------- StatsStrip / StatCard ---------- */
.cw-statband { padding: 40px 0 0; }
.cw-statstrip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; font-family: var(--cw-sans); }
.cw-statstrip + .cw-statstrip { margin-top: 12px; }
@media (min-width: 768px) {
  .cw-statstrip { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .cw-statstrip--3 { grid-template-columns: repeat(3, 1fr); }
  .cw-statstrip + .cw-statstrip { margin-top: 20px; }
}
.cw-statstrip--2 { grid-template-columns: repeat(2, 1fr) !important; }
.cw-stat { display: grid; align-content: start; gap: 6px; padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--cw-paper-3);
  box-shadow: 0 1px 2px rgba(11, 11, 15, 0.03), 0 10px 26px rgba(11, 11, 15, 0.05); }
.cw-stat-ico { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 6px; border-radius: 12px; background: var(--cw-brand-light); color: #0787ba; }
.cw-stat strong { color: var(--cw-ink); font-family: var(--cw-serif); font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 400; line-height: 1; font-variant-numeric: tabular-nums; }
.cw-stat-lbl { color: var(--cw-ink-2); font-size: 0.92rem; font-weight: 500; }
.cw-stat small { color: var(--cw-ink-3); font-size: 0.8rem; }
@media (max-width: 479px) { .cw-stat { padding: 16px; } }

/* ---------- TrustBadges ---------- */
.cw-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.cw-trust li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--cw-paper-3); color: var(--cw-ink-2); font-size: 0.88rem; font-weight: 600; }
.cw-trust svg { color: #0787ba; }

/* ---------- Service metric chip ---------- */
.cw-metric { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 5px 11px; border-radius: 999px; background: var(--cw-brand-light); color: #06719a; font-size: 0.8rem; font-weight: 600; }
.cw-others .cw-metric { margin: 0; }
.cw-others a { flex-direction: column; align-items: flex-start; gap: 10px; }
.cw-others-t { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }

/* ---------- TechMarquee ---------- */
.cw-marquee-sec { padding: 48px 0; overflow: hidden; }
.cw-marquee-title { margin: 0 0 18px !important; text-align: center; color: var(--cw-ink-3); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.cw-marquee { display: flex; gap: 12px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.cw-marquee-track { display: flex; flex-shrink: 0; gap: 12px; margin: 0; padding: 0; list-style: none; animation: cw-marquee 45s linear infinite; }
.cw-marquee:hover .cw-marquee-track { animation-play-state: paused; }
.cw-marquee-track li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--cw-paper-3); color: var(--cw-ink-2); font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.cw-marquee-track i { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- Testimonials (rendered only when real quotes exist) ---------- */
.cw-testi { display: flex; flex-direction: column; gap: 14px; }
.cw-stars { color: #f5a524; letter-spacing: 2px; }
.cw-testi blockquote { margin: 0; color: var(--cw-ink-2); }
.cw-testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.cw-testi-av { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #06a3da, #214177); color: #fff; font-weight: 600; }
.cw-testi-who small { display: block; color: var(--cw-ink-3); }

/* ---------- CtaBanner ---------- */
.cw-ctab-sec { padding: 16px 0 72px; }
.cw-ctab { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; padding: 36px 40px; border-radius: 24px;
  background: linear-gradient(120deg, #0782b3 0%, #0a6fa3 45%, #214177 100%); color: #fff; }
.cw-ctab::after { content: ""; position: absolute; right: -60px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.18), transparent); pointer-events: none; }
.cw-ctab h2 { flex: 1 1 260px; margin: 0; color: #fff; font-family: var(--cw-serif); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400; line-height: 1.15; }
.cw-ctab-ico { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 16px; background: rgba(255, 255, 255, 0.16); }
.cw-btn--white { position: relative; z-index: 1; background: #fff; border-color: #fff; color: var(--cw-ink) !important; }
.cw-btn--white:hover { background: #eef7fc; border-color: #eef7fc; }
@media (max-width: 639px) { .cw-ctab { padding: 28px 24px; } }

/* ---------- Heading icon badges + section divider ---------- */
.cw-page .cw-eyebrow { display: flex; align-items: center; gap: 8px; width: fit-content; }
.cw-page .cw-eyebrow::before { content: ""; flex: none; width: 22px; height: 22px; border-radius: 7px;
  background: var(--cw-brand-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306a3da' stroke-width='2.2' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.9 5.1L19 10l-5.1 1.9L12 17l-1.9-5.1L5 10l5.1-1.9z'/%3E%3C/svg%3E") center / 12px no-repeat; }
.cw-divider { display: flex; justify-content: center; padding: 8px 0; }
.cw-divider span { position: relative; width: min(260px, 50%); height: 1px; background: linear-gradient(90deg, transparent, rgba(6, 163, 218, 0.5), transparent); }
.cw-divider span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 2px solid var(--cw-brand); transform: translate(-50%, -50%); }

/* ---------- Homepage visual band (injected below the hero) ---------- */
.cw-home-x { padding: 72px 0 24px; background: linear-gradient(180deg, #fff 0%, var(--cw-paper) 100%); }
.cw-home-x-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .cw-home-x-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; } }

@media (prefers-reduced-motion: reduce) {
  .cw-phone, .cw-float { animation: none !important; }
  .cw-marquee { -webkit-mask-image: none; mask-image: none; }
  .cw-marquee-track { flex-wrap: wrap; justify-content: center; flex-shrink: 1; animation: none !important; }
  .cw-marquee-track[aria-hidden="true"] { display: none; }
}

/* Keep decorative overflow (glow, floating cards) from causing sideways scroll */
.cw-hero, .cw-home-x, .cw-statband { overflow-x: clip; }

/* Keep laptop content clear of the phone that overlaps the laptop's bottom-right corner */
.cw-lx-main > .cw-lx-charts, .cw-lx-main > .cw-lx-table, .cw-lx-main > .cw-lx-plans, .cw-lx-main > .cw-lx-inbox { margin-right: 12cqw; }

/* ================================================================== */
/* Homepage (static, inside index.html) — scoped to .cw-home / erp    */
/* ================================================================== */
@keyframes cw-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); } 50% { box-shadow: 0 0 0 0.4em rgba(245, 158, 11, 0); } }
.cw-pulse { animation: cw-pulse 2.4s ease-in-out 1.5s infinite; }
.cw-draw--late { animation-delay: 0.6s; }

/* Hero */
.cw-home-hero { padding-top: calc(72px + 48px); }
@media (min-width: 1024px) { .cw-hero-grid--home { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; } }
.cw-home-hero h1 { max-width: 15ch; }
.cw-home h1 em, .cw-home .cw-section-head h2 em { color: var(--cw-brand); font-style: italic; }
.cw-trustrow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--cw-ink-2); font-size: 0.92rem; }
.cw-trustrow li { display: inline-flex; align-items: center; gap: 6px; }
.cw-trustrow li + li::before { content: ""; width: 4px; height: 4px; margin-right: 16px; border-radius: 50%; background: var(--cw-paper-3); }
.cw-trustrow b { color: var(--cw-ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.cw-trustrow .cw-stars { color: #d98a0b; letter-spacing: 1px; }

/* Bigger showcase for the ERP dashboard (desktop/tablet only; mobile keeps the phone-only layout) */
@media (min-width: 768px) {
  .cw-show--erp { max-width: 720px; aspect-ratio: 720 / 520; }
  .cw-show--erp .cw-laptop { width: 87%; top: 5%; }
  .cw-show--erp .cw-phone { width: 21%; right: 0; bottom: 0; }
  .cw-show--erp .cw-float--c { top: auto; bottom: 0; left: 30%; }
}

/* ---------- LaptopScreen variant="erp" ---------- */
.cw-lx--erp { grid-template-columns: 8.4em minmax(0, 1fr); grid-template-rows: 2.7em minmax(0, 1fr); font-size: 1.62cqw; }
.cw-erp-side { grid-row: 1 / -1; grid-column: 1; display: flex; flex-direction: column; gap: 0.8em; padding: 0.55em 0.5em; background: #0B1224; border-right: 1px solid rgba(148, 163, 184, 0.14); }
.cw-erp-brand { display: flex; align-items: center; gap: 0.5em; flex: none; height: 1.9em; margin: 0 0 0 0.3em; color: #E2E8F0; font-size: 1em; font-weight: 600; white-space: nowrap; }
.cw-erp-brand > span:last-child { font-size: 0.76em; }
.cw-erp-brand-ico { display: flex; align-items: center; justify-content: center; flex: none; width: 1.9em; height: 1.9em; border-radius: 0.55em; background: rgba(14, 165, 233, 0.16); color: #0EA5E9; }
.cw-erp-brand-ico .cw-i { width: 1.05em; height: 1.05em; }
/* Logo-mark crop: the emblem is the first 93% of the logo height in width (image never scaled unevenly) */
.cw-px-mark img { display: block; width: auto; max-width: none; height: 100%; }
.cw-erp-side ul { display: grid; gap: 0.12em; }
.cw-erp-side li { display: flex; align-items: center; gap: 0.55em; padding: 0.42em 0.55em; border-radius: 0.5em; color: #94A3B8; font-size: 0.8em; white-space: nowrap; }
.cw-erp-side li .cw-i { width: 1.1em; height: 1.1em; }
.cw-erp-side li.on { background: rgba(14, 165, 233, 0.16); color: #E0F2FE; font-weight: 600; }
.cw-erp-side li.on .cw-i { color: #0EA5E9; }
.cw-erp-top { grid-column: 2; }
.cw-erp-title { display: flex; align-items: center; gap: 0.45em; height: 1.85em; color: #0EA5E9; }
.cw-erp-title .cw-i { width: 1.05em; height: 1.05em; }
.cw-erp-title strong { color: #F8FAFC; font-size: 0.98em; font-weight: 600; white-space: nowrap; }
.cw-erp-top .cw-lx-search { min-width: 15em; }
.cw-erp-bell { position: relative; display: flex; padding: 0.3em; color: #94A3B8; font-size: 1.05em; }
.cw-erp-bell i { position: absolute; top: 0.25em; right: 0.3em; width: 0.45em; height: 0.45em; border-radius: 50%; background: #EF4444; box-shadow: 0 0 0 2px #0F172A; }
.cw-erp-main { grid-column: 2; gap: 0.45em; padding: 0.55em 0.75em; }
.cw-erp-kpi { gap: 0.25em; padding: 0.5em 0.6em; }
.cw-erp-kpih { display: flex; align-items: center; gap: 0.4em; min-width: 0; }
.cw-erp-kpih > span:nth-child(2) { flex: 1; min-width: 0; overflow: hidden; color: #94A3B8; font-size: 0.78em; white-space: nowrap; text-overflow: ellipsis; }
.cw-erp-kpih .cw-lx-trend { flex: none; }
.cw-erp-kico { display: flex; align-items: center; justify-content: center; flex: none; width: 1.55em; height: 1.55em; border-radius: 0.45em; }
.cw-erp-kico .cw-i { width: 0.95em; height: 0.95em; }
.cw-erp-kpi strong { font-size: 1.32em; }
.cw-erp-kpif { display: flex; align-items: center; justify-content: space-between; gap: 0.4em; }
.cw-erp-spark { display: block; width: 42%; height: auto; }
.cw-erp-row1 { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); gap: 0.55em; }
.cw-erp-row2 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55em; }
.cw-erp-legend { display: inline-flex; align-items: center; gap: 0.35em 0.7em; color: #94A3B8 !important; font-size: 0.72em !important; font-weight: 500 !important; }
.cw-erp-legend i { display: inline-block; width: 0.7em; height: 0.7em; margin-right: -0.35em; border-radius: 0.2em; vertical-align: middle; }
.cw-erp-rev .cw-lx-axis { font-size: 0.64em; }
.cw-lx--erp .cw-lx-ring { width: 5em; height: 5em; }
.cw-lx--erp .cw-lx-legend { font-size: 0.7em; gap: 0.3em; }
.cw-lx--erp .cw-lx-funnel { font-size: 0.7em; gap: 0.38em; }
.cw-lx--erp .cw-lx-funnel li { grid-template-columns: 4.6em minmax(0, 1fr) 2.2em; }
.cw-lx-ptitle em.warn { color: #F59E0B; }
.cw-erp-hbars { display: grid; gap: 0.36em; font-size: 0.7em; }
.cw-erp-hbars li { display: grid; grid-template-columns: 6.4em minmax(0, 1fr) 2em; align-items: center; gap: 0.45em; color: #CBD5E1; }
.cw-erp-hbars li > span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cw-erp-hbars div { height: 0.8em; border-radius: 0.3em; background: #0F172A; overflow: hidden; }
.cw-erp-hbars i { display: block; height: 100%; border-radius: 0.3em; background: linear-gradient(90deg, #0EA5E9, #6366F1); }
.cw-erp-hbars b { color: #F8FAFC; font-weight: 600; text-align: right; }
.cw-erp-alerts { display: grid; font-size: 0.72em; }
.cw-erp-alerts li { display: flex; align-items: center; gap: 0.5em; padding: 0.42em 0; border-bottom: 1px solid rgba(148, 163, 184, 0.1); color: #CBD5E1; }
.cw-erp-alerts li:last-child { border-bottom: 0; }
.cw-erp-alerts li > span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cw-erp-alerts i { flex: none; width: 0.6em; height: 0.6em; border-radius: 50%; }
.cw-erp-alerts i.red { background: #EF4444; box-shadow: 0 0 0 0.2em rgba(239, 68, 68, 0.2); }
.cw-erp-alerts i.amber { background: #F59E0B; box-shadow: 0 0 0 0.2em rgba(245, 158, 11, 0.2); }
.cw-erp-alerts b { margin-left: auto; color: #F8FAFC; font-weight: 600; white-space: nowrap; }
.cw-erp-tcap { padding: 0.25em 0 0.05em; color: #CBD5E1; font-size: 1.02em; font-weight: 600; }
.cw-erp-table .cw-lx-tr { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr) minmax(0, 1.1fr) minmax(0, 0.9fr); padding: 0.24em 0; }
.cw-erp-table .cw-lx-tr > span:nth-child(3) { color: #F8FAFC; font-weight: 600; }
.cw-erp-table .cw-lx-tr > span:last-child { text-align: right; }
.cw-erp-clear { margin-right: 8cqw; }

/* PhoneScreen: logo mark in the header */
.cw-px-mark { display: block; flex: none; width: 1.79em; height: 1.9em; margin-right: 0.45em; padding: 0.15em; overflow: hidden; border-radius: 0.55em; background: #fff; box-shadow: 0 0.1em 0.3em rgba(15, 23, 42, 0.08); }
.cw-px-mark + strong { margin-right: auto; }

/* Soft shadow on homepage cards */
.cw-home .cw-feature, .cw-home .cw-mod { box-shadow: 0 1px 2px rgba(11, 11, 15, 0.03), 0 10px 26px rgba(11, 11, 15, 0.05); }

/* Services overview */
.cw-svc { display: flex; flex-direction: column; }
.cw-svc .cw-metric { align-self: flex-start; }
.cw-home .cw-svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 18px; color: #06719a; font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.cw-svc-link svg { transition: transform var(--cw-fast) ease; }
.cw-svc-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.cw-svc-link:hover svg { transform: translateX(3px); }
.cw-svc-link:focus-visible { outline: 2px solid var(--cw-brand); outline-offset: 3px; border-radius: 4px; }

/* ERP spotlight */
.cw-spot { display: grid; gap: 40px; }
@media (min-width: 960px) { .cw-spot { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; gap: 64px; } }
.cw-checks--lg { margin: 24px 0 0; gap: 14px; }
.cw-checks--lg li { font-size: 1rem; }
.cw-spot .cw-hero-actions { margin-top: 30px; }
.cw-modules { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .cw-modules { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.cw-mod { display: grid; justify-items: start; gap: 6px; padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--cw-paper-3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.cw-mod-ico { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 6px; border-radius: 12px; background: var(--cw-brand-light); color: #0787ba; transition: background-color 0.2s ease, color 0.2s ease; }
.cw-mod b { color: var(--cw-ink); font-size: 1rem; font-weight: 600; }
.cw-mod small { color: var(--cw-ink-3); font-size: 0.82rem; }
.cw-mod:hover { border-color: var(--cw-brand); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(6, 163, 218, 0.16); }
.cw-mod:hover .cw-mod-ico { background: var(--cw-brand); color: #fff; }

/* How we work — vertical on mobile, horizontal timeline on desktop */
.cw-how { position: relative; display: grid; gap: 28px; margin: 0; padding: 0; list-style: none; }
.cw-how::before { content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 2px; background: linear-gradient(180deg, var(--cw-brand), rgba(6, 163, 218, 0.15)); }
.cw-how li { position: relative; padding-left: 66px; }
.cw-how-n { position: absolute; left: 0; top: 0; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--cw-brand); color: #0787ba; font-family: var(--cw-serif); font-size: 1.3rem; box-shadow: 0 0 0 6px var(--cw-paper); }
.cw-how-ico { display: inline-flex; margin-bottom: 6px; color: #0787ba; }
.cw-how h3 { margin: 2px 0 6px !important; font-size: 1.12rem; font-weight: 600; }
.cw-how p { color: var(--cw-ink-3); font-size: 0.95rem; }
@media (min-width: 900px) {
  .cw-how { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .cw-how::before { left: 12.5%; right: 12.5%; top: 22px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--cw-brand), rgba(6, 163, 218, 0.2)); }
  .cw-how li { padding: 64px 8px 0; text-align: center; }
  .cw-how-n { left: 50%; transform: translateX(-50%); }
  .cw-how p { max-width: 250px; margin: 0 auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  .cw-pulse { animation: none !important; }
  .cw-mod, .cw-mod:hover { transform: none; }
}

/* Screen-content animations (all pages): off when the visitor prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cw-draw, .cw-area, .cw-grow-y, .cw-grow-x, .cw-seg, .cw-lx-msg { animation: none !important; }
}

/* Shared header: set its own font metrics so it renders the same on every page
   (the homepage also loads the React bundle's base styles). Same values the static pages inherit. */
.cw-nav, .cw-drawer { font-family: var(--cw-sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Shared header: exact pixel sizes (the values the static pages compute at a 16px root),
   so the homepage, whose Tailwind root font-size changes with width, renders it identically. */
.cw-nav .cw-nav-link, .cw-nav .cw-btn, .cw-nav .cw-dd-link { font-size: 14.4px; }
.cw-drawer .cw-drawer-label { font-size: 12px; }
.cw-drawer .cw-drawer-links { font-size: 22.4px; }
.cw-drawer .cw-drawer-links .cw-drawer-cta { font-size: 17.6px; }
.cw-drawer .cw-acc-link { font-size: 16px; }
/* Header buttons: the browser default button font the static pages already use (Tailwind would inherit DM Sans) */
.cw-nav button, .cw-drawer button { font-family: Arial, sans-serif; font-size: 13.3333px; line-height: normal; letter-spacing: normal; }
.cw-drawer .cw-drawer-close { font-size: 20px; line-height: 1; }
/* Match the reference colour of dropdown/accordion links (static pages inherit ink via ".cw-page a") */
.cw-nav .cw-dd-link:not(:hover):not(:focus-visible):not([aria-current="page"]) { color: var(--cw-ink); }
.cw-drawer .cw-acc-link:not(:hover):not(:focus-visible):not([aria-current="page"]) { color: var(--cw-ink); }
/* The React stylesheet (loaded on the homepage) animates every <nav> and sets will-change on it;
   the shared header does not do that on the other pages, so cancel it for the header's navs. */
.cw-nav nav, .cw-drawer nav { animation: none; will-change: auto; }

/* React footer: pin text sizes to the static footer's values (Tailwind's rem sizes shrink with the
   homepage's responsive root font-size, which made its footer text smaller on tablet/mobile) */
.cw-rfoot > div > div:nth-child(2), .cw-rfoot > div > div:last-child { line-height: 1.6; }
.cw-rfoot > div > div:nth-child(2) { font-size: 16px; }
.cw-rfoot > div > div:nth-child(2) .text-xl { font-size: 20px; line-height: 1.6; }
.cw-rfoot > div > div:nth-child(2) .uppercase { font-size: 14px; }
.cw-rfoot > div > div:last-child { font-size: 14px; }

/* ---------------- Solutions pages ---------------- */
/* Eyebrow with a product icon badge instead of the generic sparkle */
.cw-page .cw-eyebrow--ico::before { display: none; }
.cw-eyebrow-ico { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 7px; background: var(--cw-brand-light); color: #0787ba; }
.cw-eyebrow-ico svg { display: block; }
/* RFID zone map inside the laptop screen */
.cw-lx-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4em; }
.cw-lx-zones > div { position: relative; display: grid; gap: 0.15em; padding: 0.45em 0.55em; border-radius: 0.45em; background: #0F172A; border: 1px solid color-mix(in srgb, var(--z) 55%, transparent); }
.cw-lx-zones i { position: absolute; top: 0.5em; right: 0.5em; width: 0.5em; height: 0.5em; border-radius: 50%; background: var(--z); box-shadow: 0 0 0 0.2em color-mix(in srgb, var(--z) 25%, transparent); }
.cw-lx-zones span { color: #94A3B8; font-size: 0.7em; }
.cw-lx-zones b { color: #F8FAFC; font-size: 0.92em; font-weight: 700; }

/* ---------------- ProductShowcase (hardware Solutions pages) ----------------
   Same frame as DeviceShowcase (.cw-show: size, dot grid + blob, floating chips). */
.cw-prod-art { position: absolute; inset: 2% 0 7%; z-index: 1; animation: cw-float 6s ease-in-out infinite; }
.cw-prod-art svg { display: block; width: 100%; height: 100%; overflow: visible; }
.cw-prod-shadow { position: absolute; left: 24%; right: 24%; bottom: 3%; height: 7%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0)); animation: cw-prod-shadow 6s ease-in-out infinite; }
@keyframes cw-prod-shadow { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(0.9); opacity: 0.7; } }
.cw-prod-led { transform-box: fill-box; transform-origin: center; animation: cw-prod-led 2.4s ease-in-out infinite; }
@keyframes cw-prod-led { 0%, 100% { opacity: 0.15; transform: scale(0.85); } 50% { opacity: 0.45; transform: scale(1.15); } }
.cw-prod-waves path { animation: cw-prod-wave 2.4s ease-in-out infinite; }
.cw-prod-waves path:nth-child(2) { animation-delay: 0.3s; }
.cw-prod-waves path:nth-child(3) { animation-delay: 0.6s; }
@keyframes cw-prod-wave { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; } }
.cw-prod-scanline { animation: cw-prod-scan 1.6s ease-in-out infinite; }
@keyframes cw-prod-scan { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
/* Mobile: keep the whole illustration (the phone-only rule is for DeviceShowcase) */
@media (max-width: 767px) { .cw-show.cw-show--product { aspect-ratio: 600 / 460; max-width: 420px; padding: 0; } }
@media (prefers-reduced-motion: reduce) {
  .cw-prod-art, .cw-prod-shadow, .cw-prod-led, .cw-prod-waves path, .cw-prod-scanline { animation: none !important; }
}

/* ---------------- Contact page: General Enquiry / Partnership tabs ---------------- */
.cw-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.cw-tab { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--cw-paper-3); background: #fff; color: var(--cw-ink); font: inherit; font-size: 0.9rem; font-weight: 600; line-height: 1.2;
  transition: background-color var(--cw-fast) ease, border-color var(--cw-fast) ease, color var(--cw-fast) ease; }
.cw-tab:hover { border-color: var(--cw-brand); color: var(--cw-brand-text); }
.cw-tab.is-active { background: var(--cw-brand); border-color: var(--cw-brand); color: #fff; }
.cw-tab:focus-visible { outline: 2px solid var(--cw-ink); outline-offset: 3px; }
.cw-tab svg { flex: none; }
.cw-tabpanel:not([hidden]) { animation: cw-tab-in 0.28s ease both; }
@keyframes cw-tab-in { from { opacity: 0; transform: translateY(8px); } }
.cw-form-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 12px; background: var(--cw-brand-light); color: #0787ba; }
@media (max-width: 479px) { .cw-tab { flex: 1 1 0; padding: 11px 12px; white-space: nowrap; } .cw-tab svg { display: none; } }
@media (prefers-reduced-motion: reduce) { .cw-tabpanel:not([hidden]) { animation: none; } }
