
:root {
  --cct-bg: #06101f;
  --cct-bg-2: #0a1730;
  --cct-surface: #0d1d38;
  --cct-surface-2: #102442;
  --cct-card: #ffffff;
  --cct-soft: #f4f7fb;
  --cct-text: #101828;
  --cct-muted: #667085;
  --cct-line: #dfe7f2;
  --cct-white: #ffffff;
  --cct-primary: #6d5dfc;
  --cct-primary-2: #00c2ff;
  --cct-accent: #14d7a5;
  --cct-warning: #ffb020;
  --cct-shadow: 0 24px 70px rgba(9, 24, 52, .14);
  --cct-shadow-dark: 0 30px 90px rgba(0, 0, 0, .32);
  --cct-radius: 26px;
  --cct-radius-sm: 18px;
  --cct-max: 1200px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.cct-site {
  margin: 0;
  color: var(--cct-text);
  background: #fff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.cct-site.is-nav-open { overflow: hidden; }
body.cct-site button,
body.cct-site input,
body.cct-site textarea,
body.cct-site select { font: inherit; }
body.cct-site a { color: inherit; text-decoration: none; }
body.cct-site img { max-width: 100%; height: auto; display: block; }
body.cct-site svg { display: block; }
.cct-container { width: min(var(--cct-max), calc(100% - 40px)); margin: 0 auto; }
.cct-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.cct-skip-link {
  position: fixed; left: 18px; top: -60px; z-index: 9999; padding: 12px 18px;
  border-radius: 12px; background: #fff; color: #111; box-shadow: var(--cct-shadow);
}
.cct-skip-link:focus { top: 16px; }

.cct-topbar {
  background: #040b16; color: #b9c7db; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cct-topbar-inner {
  min-height: 38px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cct-topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.cct-topbar a { color: #e8f0fb; }
.cct-topbar a:hover { color: #fff; }
.cct-topbar-note { display: flex; align-items: center; gap: 8px; }
.cct-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cct-accent); box-shadow: 0 0 0 5px rgba(20,215,165,.12); }

.cct-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,231,242,.8);
  transition: box-shadow .25s ease, background .25s ease;
}
.cct-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 14px 45px rgba(10,30,65,.08); }
.cct-nav {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px;
}
.cct-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.cct-logo img { width: 190px; max-height: 54px; object-fit: contain; object-position: left center; }
.cct-menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.cct-menu a {
  position: relative; color: #26344d; font-weight: 700; font-size: 14px; letter-spacing: -.01em;
}
.cct-menu > a:not(.cct-nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: linear-gradient(90deg, var(--cct-primary), var(--cct-primary-2)); transition: right .2s ease;
}
.cct-menu > a:hover::after,
.cct-menu > a[aria-current="page"]::after { right: 0; }
.cct-menu > a:hover,
.cct-menu > a[aria-current="page"] { color: #111c32; }
.cct-nav-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0 18px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(135deg, var(--cct-primary), #5145e5 55%, var(--cct-primary-2));
  box-shadow: 0 12px 30px rgba(93,79,232,.23);
}
.cct-nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--cct-line);
  border-radius: 14px; background: #fff; cursor: pointer; padding: 11px;
}
.cct-nav-toggle span { display: block; height: 2px; background: #17233b; margin: 5px 0; border-radius: 2px; transition: .2s; }

.cct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.cct-btn:hover { transform: translateY(-2px); }
.cct-btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--cct-primary), #5145e5 55%, var(--cct-primary-2));
  box-shadow: 0 16px 36px rgba(93,79,232,.26);
}
.cct-btn-primary:hover { box-shadow: 0 20px 44px rgba(93,79,232,.34); }
.cct-btn-secondary { background: #fff; border-color: var(--cct-line); color: #17233b; box-shadow: 0 10px 30px rgba(18,40,78,.07); }
.cct-btn-ghost { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }

.cct-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(109,93,252,.35), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(0,194,255,.22), transparent 34%),
    radial-gradient(circle at 78% 80%, rgba(20,215,165,.13), transparent 28%),
    linear-gradient(135deg, #050c18 0%, #08162c 48%, #0b1c39 100%);
}
.cct-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}
.cct-hero-inner {
  position: relative; z-index: 1; min-height: 680px; padding: 94px 0 76px;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: 56px; align-items: center;
}
.cct-kicker {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.06);
  color: #dbe8ff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.cct-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--cct-accent); box-shadow: 0 0 0 5px rgba(20,215,165,.12); }
.cct-hero h1 {
  margin: 20px 0 22px; max-width: 900px; font-size: clamp(44px, 5.7vw, 78px);
  line-height: .98; letter-spacing: -.055em;
}
.cct-gradient-text {
  color: transparent; background: linear-gradient(90deg, #a99cff 0%, #62d9ff 52%, #76f1cd 100%);
  -webkit-background-clip: text; background-clip: text;
}
.cct-hero-copy { margin: 0; max-width: 720px; color: #b9c8dc; font-size: 18px; }
.cct-hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }
.cct-trust-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; color: #b7c6db; font-size: 13px; font-weight: 700; }
.cct-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.cct-tick { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(20,215,165,.14); color: #71f3cf; }

.cct-hero-visual { position: relative; }
.cct-dashboard {
  position: relative; border-radius: 30px; padding: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
  box-shadow: var(--cct-shadow-dark); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.cct-dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 4px 16px; }
.cct-window-dots { display: flex; gap: 6px; }
.cct-window-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.cct-live-pill { display: inline-flex; align-items: center; gap: 7px; color: #c8f9ec; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.cct-dashboard-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.cct-dash-card {
  border-radius: 20px; padding: 18px; background: rgba(4,12,25,.78); border: 1px solid rgba(255,255,255,.08);
}
.cct-dash-card h3 { margin: 0; font-size: 14px; color: #eaf2ff; }
.cct-dash-card p { margin: 7px 0 0; color: #8fa4c0; font-size: 12px; }
.cct-agent-convo { min-height: 310px; }
.cct-message { max-width: 88%; padding: 11px 13px; border-radius: 16px; margin-top: 13px; font-size: 12px; line-height: 1.55; }
.cct-message.bot { background: #162948; color: #dceaff; border-bottom-left-radius: 5px; }
.cct-message.user { margin-left: auto; background: linear-gradient(135deg, var(--cct-primary), #3d8fff); color: #fff; border-bottom-right-radius: 5px; }
.cct-mini-metric { margin-top: 12px; padding: 14px; border-radius: 17px; background: rgba(255,255,255,.045); }
.cct-mini-metric strong { display: block; color: #fff; font-size: 20px; }
.cct-mini-metric span { color: #8fa4c0; font-size: 11px; }
.cct-flow { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.cct-flow-step { flex: 1 1 110px; min-height: 58px; display: grid; place-items: center; text-align: center; border-radius: 15px; background: #10213d; color: #cbd9ec; font-size: 11px; font-weight: 800; }
.cct-flow-arrow { color: #5e789c; }
.cct-float-badge {
  position: absolute; right: -24px; top: 46px; z-index: 2; padding: 12px 15px; border-radius: 16px;
  background: #fff; color: #17233b; box-shadow: var(--cct-shadow); font-size: 12px; font-weight: 800;
}
.cct-float-badge strong { color: var(--cct-primary); }

.cct-logo-strip { position: relative; z-index: 2; margin-top: -31px; }
.cct-logo-strip-inner {
  display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden;
  border-radius: 22px; border: 1px solid var(--cct-line); background: #fff; box-shadow: var(--cct-shadow);
}
.cct-logo-strip-inner span {
  min-height: 64px; display: grid; place-items: center; padding: 12px; text-align: center;
  color: #536178; font-size: 12px; font-weight: 800; border-right: 1px solid var(--cct-line);
}
.cct-logo-strip-inner span:last-child { border-right: 0; }

.cct-section { padding: 96px 0; }
.cct-section-soft { background: var(--cct-soft); }
.cct-section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(109,93,252,.2), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(0,194,255,.13), transparent 32%),
    linear-gradient(135deg, #071222, #0b1b35);
}
.cct-section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.cct-section-heading.cct-left { margin-left: 0; text-align: left; }
.cct-eyebrow { color: var(--cct-primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.cct-section-dark .cct-eyebrow { color: #7ee9ff; }
.cct-section-heading h2 { margin: 12px 0 14px; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.06; letter-spacing: -.045em; }
.cct-section-heading p { margin: 0; color: var(--cct-muted); font-size: 17px; }
.cct-section-dark .cct-section-heading p { color: #aebed3; }

.cct-grid { display: grid; gap: 22px; }
.cct-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cct-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cct-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.cct-service-card {
  position: relative; min-height: 300px; overflow: hidden; padding: 30px; border-radius: var(--cct-radius);
  border: 1px solid var(--cct-line); background: #fff; box-shadow: 0 18px 60px rgba(20,44,82,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cct-service-card:hover { transform: translateY(-7px); border-color: #c9c1ff; box-shadow: 0 28px 70px rgba(20,44,82,.14); }
.cct-service-card::after {
  content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,93,252,.13), transparent 65%);
}
.cct-service-number { color: #9aa7b8; font-weight: 900; font-size: 12px; letter-spacing: .08em; }
.cct-service-icon {
  width: 54px; height: 54px; margin: 24px 0 24px; display: grid; place-items: center; border-radius: 17px;
  color: #fff; font-size: 22px; font-weight: 900; background: linear-gradient(135deg, var(--cct-primary), var(--cct-primary-2));
  box-shadow: 0 14px 30px rgba(93,79,232,.2);
}
.cct-service-card h3 { margin: 0 0 11px; font-size: 23px; line-height: 1.18; letter-spacing: -.025em; }
.cct-service-card p { margin: 0; color: var(--cct-muted); font-size: 14px; }
.cct-card-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--cct-primary); font-size: 13px; font-weight: 900; }
.cct-card-link:hover { gap: 12px; }

.cct-bento { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.cct-bento-main {
  min-height: 520px; padding: 42px; border-radius: 32px; color: #fff; overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 85% 12%, rgba(0,194,255,.28), transparent 30%),
    linear-gradient(135deg, #0a1830, #132a52);
}
.cct-bento-main::after {
  content: ""; position: absolute; width: 360px; height: 360px; right: -90px; bottom: -90px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.03), 0 0 0 96px rgba(255,255,255,.02);
}
.cct-bento-main h2 { margin: 12px 0 18px; max-width: 670px; font-size: clamp(34px,4.3vw,56px); line-height: 1.05; letter-spacing: -.045em; }
.cct-bento-main p { max-width: 650px; color: #b9c9dd; font-size: 16px; }
.cct-feature-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 28px; position: relative; z-index: 1; }
.cct-feature-list span { padding: 14px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.055); color: #e6effc; font-size: 13px; font-weight: 800; }
.cct-bento-side { display: grid; gap: 22px; }
.cct-bento-small { padding: 30px; border-radius: 28px; border: 1px solid var(--cct-line); background: #fff; box-shadow: 0 18px 60px rgba(20,44,82,.08); }
.cct-bento-small.dark { color: #fff; border-color: rgba(255,255,255,.08); background: #0a162a; }
.cct-bento-small h3 { margin: 10px 0 10px; font-size: 25px; line-height: 1.15; letter-spacing: -.03em; }
.cct-bento-small p { margin: 0; color: var(--cct-muted); font-size: 14px; }
.cct-bento-small.dark p { color: #aebed3; }
.cct-stat { display: flex; align-items: baseline; gap: 7px; margin-top: 20px; }
.cct-stat strong { font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.cct-stat span { color: var(--cct-muted); font-size: 12px; font-weight: 800; }

.cct-industries { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }
.cct-industry-pill {
  padding: 12px 16px; border-radius: 999px; border: 1px solid var(--cct-line);
  background: #fff; color: #34425a; font-size: 13px; font-weight: 800; box-shadow: 0 8px 20px rgba(20,44,82,.05);
}
.cct-industry-pill:hover { border-color: #bfb5ff; color: var(--cct-primary); }

.cct-process { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.cct-process::before { content: ""; position: absolute; top: 31px; left: 10%; right: 10%; height: 1px; background: #ced8e6; }
.cct-process-card { position: relative; z-index: 1; padding: 0 12px; text-align: center; }
.cct-process-number {
  width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%;
  border: 8px solid var(--cct-soft); background: linear-gradient(135deg, var(--cct-primary), var(--cct-primary-2)); color: #fff;
  font-size: 13px; font-weight: 900; box-shadow: 0 12px 28px rgba(93,79,232,.2);
}
.cct-process-card h3 { margin: 0 0 8px; font-size: 18px; }
.cct-process-card p { margin: 0; color: var(--cct-muted); font-size: 13px; }

.cct-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cct-panel {
  border-radius: 30px; padding: 36px; border: 1px solid var(--cct-line); background: #fff; box-shadow: var(--cct-shadow);
}
.cct-check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.cct-check-list li { position: relative; padding-left: 32px; color: #33415a; font-size: 14px; }
.cct-check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(20,215,165,.12); color: #019c77; font-size: 12px; font-weight: 900;
}
.cct-warning-note {
  margin-top: 22px; padding: 16px 18px; border-radius: 16px; border: 1px solid #ffd796;
  background: #fff8e9; color: #805300; font-size: 12px;
}
.cct-code-window { overflow: hidden; border-radius: 27px; background: #06101f; color: #dce9f8; box-shadow: var(--cct-shadow-dark); }
.cct-code-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cct-code-body { padding: 26px; }
.cct-code-line { display: flex; align-items: center; gap: 12px; margin: 15px 0; font-size: 13px; }
.cct-code-node { padding: 10px 12px; border-radius: 13px; background: #10213d; border: 1px solid rgba(255,255,255,.08); }
.cct-code-arrow { color: #627b9d; }
.cct-code-result { padding: 18px; margin-top: 24px; border-radius: 18px; background: linear-gradient(135deg, rgba(109,93,252,.2), rgba(0,194,255,.12)); border: 1px solid rgba(126,233,255,.15); }
.cct-code-result strong { display: block; color: #fff; font-size: 18px; }
.cct-code-result span { color: #aebed3; font-size: 12px; }

.cct-page-hero {
  padding: 100px 0 78px; color: #fff; text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(109,93,252,.32), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(0,194,255,.2), transparent 30%),
    linear-gradient(135deg, #050c18, #0a1a35);
}
.cct-page-hero .cct-container { max-width: 900px; }
.cct-page-hero h1 { margin: 15px 0 18px; font-size: clamp(42px,6vw,70px); line-height: 1.02; letter-spacing: -.05em; }
.cct-page-hero p { margin: 0 auto; max-width: 760px; color: #b8c8dd; font-size: 18px; }
.cct-page-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.cct-content-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .6fr); gap: 40px; align-items: start; }
.cct-prose h2 { margin: 0 0 18px; font-size: clamp(30px,4vw,46px); line-height: 1.08; letter-spacing: -.04em; }
.cct-prose h3 { margin: 34px 0 12px; font-size: 23px; }
.cct-prose p { color: #4f5f76; }
.cct-prose ul { padding-left: 21px; color: #4f5f76; }
.cct-sticky-card { position: sticky; top: 112px; }
.cct-quote-form { display: grid; gap: 12px; }
.cct-field { display: grid; gap: 7px; }
.cct-field label { font-size: 12px; font-weight: 800; color: #4b5c73; }
.cct-field input,
.cct-field textarea,
.cct-field select {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--cct-line);
  border-radius: 14px; color: #17233b; background: #fbfcfe; outline: none;
}
.cct-field textarea { min-height: 112px; resize: vertical; }
.cct-field input:focus,
.cct-field textarea:focus,
.cct-field select:focus { border-color: #8d80ff; box-shadow: 0 0 0 4px rgba(109,93,252,.09); }
.cct-form-status { min-height: 22px; margin: 3px 0 0; font-size: 12px; }
.cct-form-status.success { color: #087d61; }
.cct-form-status.error { color: #b42318; }
.cct-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.cct-faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.cct-faq details { border: 1px solid var(--cct-line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(20,44,82,.05); }
.cct-faq summary { list-style: none; cursor: pointer; padding: 20px 52px 20px 22px; font-weight: 800; position: relative; }
.cct-faq summary::-webkit-details-marker { display: none; }
.cct-faq summary::after { content: "+"; position: absolute; right: 22px; top: 16px; font-size: 24px; color: var(--cct-primary); }
.cct-faq details[open] summary::after { content: "−"; }
.cct-faq details p { margin: 0; padding: 0 22px 22px; color: var(--cct-muted); font-size: 14px; }

.cct-cta { padding: 0 0 96px; }
.cct-cta-box {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 36px;
  padding: 48px; border-radius: 34px; color: #fff; overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,194,255,.32), transparent 36%),
    linear-gradient(135deg, #0a1730, #322b83);
  box-shadow: var(--cct-shadow-dark);
}
.cct-cta-box h2 { margin: 8px 0 12px; font-size: clamp(34px,4.6vw,54px); line-height: 1.05; letter-spacing: -.045em; }
.cct-cta-box p { margin: 0; color: #c9d6e8; }
.cct-cta-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

.cct-footer { color: #b7c6da; background: #040b16; }
.cct-footer-main { padding: 66px 0 32px; display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 40px; }
.cct-footer-logo img { width: 190px; filter: brightness(0) invert(1); opacity: .96; }
.cct-footer-intro { margin: 18px 0 0; max-width: 350px; color: #8fa3be; font-size: 13px; }
.cct-footer h4 { margin: 2px 0 17px; color: #fff; font-size: 14px; }
.cct-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cct-footer li, .cct-footer a { font-size: 13px; }
.cct-footer a:hover { color: #fff; }
.cct-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 24px 0 34px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px;
}
.cct-footer-bottom p { margin: 0; }

.cct-floating-actions {
  position: fixed; right: 24px; bottom: 98px; z-index: 1200; display: grid; gap: 10px;
}
.cct-float-action {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px;
  color: #fff; box-shadow: 0 14px 35px rgba(5,19,45,.25); font-size: 19px; font-weight: 900;
}
.cct-float-action.whatsapp { background: #16a96b; }
.cct-float-action.phone { background: #235be8; }

.cct-chat-launcher {
  position: fixed; right: 24px; bottom: 24px; z-index: 1300; min-width: 176px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 19px; border: 0; border-radius: 19px; color: #fff; cursor: pointer;
  background: linear-gradient(135deg, var(--cct-primary), #4d8df8);
  box-shadow: 0 18px 45px rgba(58,72,190,.36); font-weight: 900; font-size: 13px;
}
.cct-chat-launcher:hover { transform: translateY(-2px); }
.cct-chat-launcher-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.16); font-size: 16px; }
.cct-chat-panel {
  position: fixed; right: 24px; bottom: 94px; z-index: 1301; width: min(390px, calc(100vw - 28px)); height: min(620px, calc(100vh - 125px));
  display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16); background: #fff; box-shadow: 0 30px 90px rgba(6,16,31,.3);
  opacity: 0; transform: translateY(18px) scale(.97); pointer-events: none; transition: opacity .22s ease, transform .22s ease;
}
.cct-chat-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cct-chat-header {
  display: flex; align-items: center; gap: 12px; padding: 17px 18px; color: #fff;
  background: linear-gradient(135deg, #0a1730, #22205f);
}
.cct-chat-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, var(--cct-primary), var(--cct-primary-2)); font-weight: 900; }
.cct-chat-title { min-width: 0; flex: 1; }
.cct-chat-title strong { display: block; font-size: 14px; }
.cct-chat-title span { display: flex; align-items: center; gap: 6px; color: #b9c8dd; font-size: 10px; }
.cct-chat-close { width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; font-size: 20px; }
.cct-chat-body { overflow-y: auto; padding: 18px; background: #f5f8fc; }
.cct-chat-bubble { max-width: 86%; padding: 11px 13px; margin-bottom: 10px; border-radius: 16px; font-size: 12px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.cct-chat-bubble.ai { margin-right: auto; color: #24344e; background: #fff; border: 1px solid #e2e9f3; border-bottom-left-radius: 5px; }
.cct-chat-bubble.user { margin-left: auto; color: #fff; background: linear-gradient(135deg, var(--cct-primary), #4d8df8); border-bottom-right-radius: 5px; }
.cct-chat-bubble.system { max-width: 100%; text-align: center; color: #718096; background: transparent; font-size: 10px; }
.cct-chat-typing { display: inline-flex; gap: 4px; padding: 13px 15px; border-radius: 16px; background: #fff; border: 1px solid #e2e9f3; }
.cct-chat-typing i { width: 5px; height: 5px; border-radius: 50%; background: #8898ae; animation: cctTyping 1s infinite alternate; }
.cct-chat-typing i:nth-child(2) { animation-delay: .2s; }
.cct-chat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes cctTyping { to { opacity: .25; transform: translateY(-2px); } }
.cct-chat-quick { display: flex; gap: 7px; flex-wrap: wrap; margin: 6px 0 14px; }
.cct-chat-quick button { padding: 8px 10px; border: 1px solid #d8e2ef; border-radius: 999px; color: #485b73; background: #fff; cursor: pointer; font-size: 10px; font-weight: 800; }
.cct-chat-quick button:hover { border-color: #aa9fff; color: var(--cct-primary); }
.cct-chat-form { display: grid; grid-template-columns: 1fr 43px; gap: 9px; padding: 12px; border-top: 1px solid #e3eaf3; background: #fff; }
.cct-chat-form input { min-width: 0; border: 1px solid #dfe7f2; border-radius: 14px; padding: 10px 13px; outline: none; font-size: 12px; }
.cct-chat-form input:focus { border-color: #968aff; box-shadow: 0 0 0 3px rgba(109,93,252,.08); }
.cct-chat-send { border: 0; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--cct-primary), #4d8df8); cursor: pointer; font-size: 17px; }
.cct-chat-send:disabled { opacity: .5; cursor: wait; }
.cct-chat-lead-card { padding: 14px; border-radius: 17px; background: #fff; border: 1px solid #dfe7f2; }
.cct-chat-lead-card input, .cct-chat-lead-card select { width: 100%; margin-top: 8px; padding: 10px 11px; border: 1px solid #dfe7f2; border-radius: 11px; font-size: 11px; }
.cct-chat-lead-card button { width: 100%; margin-top: 9px; padding: 10px; border: 0; border-radius: 11px; color: #fff; background: var(--cct-primary); font-size: 11px; font-weight: 900; cursor: pointer; }

@media (max-width: 1100px) {
  .cct-hero-inner { grid-template-columns: 1fr 420px; gap: 30px; }
  .cct-menu { gap: 17px; }
  .cct-footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .cct-footer-main > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .cct-topbar-note { display: none; }
  .cct-nav-toggle { display: block; }
  .cct-menu {
    position: fixed; inset: 78px 0 auto 0; max-height: calc(100vh - 78px); overflow-y: auto;
    display: grid; gap: 0; padding: 18px 20px 28px; background: #fff; border-bottom: 1px solid var(--cct-line);
    box-shadow: 0 28px 60px rgba(8,25,54,.15); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .22s;
  }
  .cct-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .cct-menu > a { padding: 14px 5px; border-bottom: 1px solid #edf1f6; font-size: 15px; }
  .cct-menu > a::after { display: none; }
  .cct-nav-cta { margin-top: 14px; border-bottom: 0 !important; }
  .cct-hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 76px 0 72px; }
  .cct-hero-copy { max-width: 650px; }
  .cct-hero-visual { max-width: 620px; }
  .cct-grid-3, .cct-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cct-bento, .cct-split, .cct-content-grid, .cct-cta-box { grid-template-columns: 1fr; }
  .cct-cta-actions { justify-content: flex-start; }
  .cct-process { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 32px 18px; }
  .cct-process::before { display: none; }
  .cct-sticky-card { position: static; }
}
@media (max-width: 640px) {
  .cct-container { width: min(100% - 28px, var(--cct-max)); }
  .cct-topbar-inner { min-height: 34px; justify-content: center; }
  .cct-topbar-links { justify-content: center; gap: 12px; font-size: 11px; }
  .cct-nav { min-height: 70px; }
  .cct-logo img { width: 154px; }
  .cct-menu { top: 70px; }
  .cct-hero-inner { padding: 58px 0 65px; }
  .cct-hero h1 { font-size: clamp(40px,12vw,57px); }
  .cct-hero-copy, .cct-page-hero p { font-size: 15px; }
  .cct-dashboard-grid { grid-template-columns: 1fr; }
  .cct-flow { display: grid; grid-template-columns: 1fr; }
  .cct-flow-arrow { display: none; }
  .cct-float-badge { right: -4px; top: -18px; }
  .cct-logo-strip { margin-top: -20px; }
  .cct-logo-strip-inner { grid-template-columns: repeat(2,1fr); }
  .cct-logo-strip-inner span { min-height: 56px; border-bottom: 1px solid var(--cct-line); }
  .cct-section { padding: 72px 0; }
  .cct-grid-2, .cct-grid-3, .cct-grid-4, .cct-feature-list, .cct-process { grid-template-columns: 1fr; }
  .cct-service-card { min-height: 0; padding: 25px; }
  .cct-bento-main, .cct-panel, .cct-cta-box { padding: 26px; }
  .cct-footer-main { grid-template-columns: 1fr 1fr; }
  .cct-footer-main > div:first-child,
  .cct-footer-main > div:last-child { grid-column: 1 / -1; }
  .cct-footer-bottom { justify-content: center; text-align: center; }
  .cct-chat-launcher { min-width: 58px; width: 58px; padding: 0; border-radius: 18px; }
  .cct-chat-launcher-text { display: none; }
  .cct-chat-panel { right: 14px; bottom: 86px; height: min(610px, calc(100vh - 105px)); }
  .cct-floating-actions { right: 14px; bottom: 94px; }
  .cct-float-action { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@supports not (backdrop-filter: blur(1px)) {
  .cct-header { background: rgba(255,255,255,.98); }
  .cct-dashboard { background: #0d1d38; }
}

/* Legacy page cleanup when the modern assistant is injected */
.qContact{display:none!important;}
