/* ============================================
   PROZO CONTROL TOWER — Page Styles
   Prefix: ct-  (avoids conflicts with hl-, adv-, etc.)
   Design system: Poppins, #2f55d4 blue, #ea6425 orange,
                  #1a1a2e dark, Bootstrap grid, MDI icons
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --ct-dark: #1a1a2e;
  --ct-blue: #2f55d4;
  --ct-orange: #ea6425;
  --ct-orange-light: rgba(234, 100, 37, 0.08);
  --ct-text: #1d1d1f;
  --ct-text-muted: #6b7280;
  --ct-text-light: #4b5563;
  --ct-border: #e5e7eb;
  --ct-bg-gray: #f8f9fc;
  --ct-radius: 16px;
  --ct-radius-sm: 12px;
  --ct-font: "Poppins", sans-serif;
  --ct-ease: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.ct-hero {
  background: var(--ct-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.ct-hero__grid {
  display: flex;
  align-items: center;
  gap: 48px;
}
.ct-hero__text {
  flex: 0 0 58%;
  max-width: 58%;
}
.ct-hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-hero__eyebrow {
  display: inline-block;
  font-family: var(--ct-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ct-orange);
  margin-bottom: 20px;
}
.ct-hero__headline {
  font-family: var(--ct-font);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.ct-hero__headline span { color: var(--ct-orange); }
.ct-hero__sub {
  font-family: var(--ct-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 36px;
}
.ct-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* CTA Buttons (shared) */
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ct-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.ct-btn--primary {
  color: #fff;
  background: var(--ct-orange);
  border-color: var(--ct-orange);
  box-shadow: 0 4px 20px rgba(234, 100, 37, 0.3);
}
.ct-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234, 100, 37, 0.4);
  color: #fff;
}
.ct-btn--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.ct-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-2px);
}

/* SVG visual — concentric rings */
.ct-rings { width: 100%; max-width: 420px; }

/* Hero SVG Animations */
@keyframes ct-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}
@keyframes ct-dash {
  to { stroke-dashoffset: -20; }
}
@keyframes ct-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ct-rings__core  { animation: ct-pulse 2.5s ease-in-out infinite; transform-origin: center; }
.ct-rings__line  { stroke-dasharray: 6 4; animation: ct-dash 1.2s linear infinite; }
.ct-rings__outer { animation: ct-orbit 20s linear infinite; transform-origin: center; }

/* ============================================
   SECTION 2 — METRICS BAR
   ============================================ */
.ct-metrics {
  background: #fff;
  border-top: 1px solid var(--ct-border);
  border-bottom: 1px solid var(--ct-border);
  padding: 48px 0;
}
.ct-metrics__grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ct-metrics__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.ct-metrics__item + .ct-metrics__item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: var(--ct-border);
}
.ct-metrics__num {
  font-family: var(--ct-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--ct-dark);
  line-height: 1.15;
  margin-bottom: 6px;
  display: block;
}
.ct-metrics__label {
  font-family: var(--ct-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--ct-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTION 3 — TWO-LAYER ARCHITECTURE
   ============================================ */
.ct-arch { background: #fff; padding: 80px 0; }
.ct-arch__title {
  font-family: var(--ct-font);
  font-size: 40px; font-weight: 700;
  color: var(--ct-text);
  margin-bottom: 16px; letter-spacing: -0.5px;
  text-align: center;
}
.ct-arch__sub {
  font-family: var(--ct-font);
  font-size: 17px; color: var(--ct-text-muted);
  line-height: 1.65; max-width: 700px; margin: 0 auto 56px;
  text-align: center;
}

/* Governance (top) layer */
.ct-arch__governance {
  background: var(--ct-dark);
  border-radius: var(--ct-radius);
  padding: 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  position: relative; z-index: 2;
}
.ct-arch__governance-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ct-arch__governance-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(234, 100, 37, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.ct-arch__governance-icon i { font-size: 24px; color: var(--ct-orange); }
.ct-arch__governance-title { font-family: var(--ct-font); font-size: 22px; font-weight: 700; color: #fff; }
.ct-arch__governance-desc { font-family: var(--ct-font); font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Capability pills (2x2) */
.ct-arch__pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; max-width: 480px; }
.ct-arch__pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 16px;
}
.ct-arch__pill i { font-size: 18px; color: var(--ct-orange); flex-shrink: 0; }
.ct-arch__pill span { font-family: var(--ct-font); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }

/* Connector arrows */
.ct-arch__connector {
  display: flex; justify-content: space-around;
  padding: 0 80px; height: 48px;
  position: relative; z-index: 1;
}
.ct-arch__arrow { width: 1px; height: 100%; border-left: 2px dashed var(--ct-border); }

/* Execution (bottom) layer */
.ct-arch__execution { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.ct-arch__exec-card {
  background: #fff; border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius); padding: 32px 24px;
  text-align: center; position: relative;
  transition: all var(--ct-ease);
}
.ct-arch__exec-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.ct-arch__exec-card::before {
  content: ""; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--ct-border);
}
.ct-arch__exec-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--ct-orange-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ct-arch__exec-icon i { font-size: 22px; color: var(--ct-orange); }
.ct-arch__exec-name { font-family: var(--ct-font); font-size: 16px; font-weight: 700; color: var(--ct-text); margin-bottom: 8px; }
.ct-arch__exec-desc { font-family: var(--ct-font); font-size: 13px; color: var(--ct-text-muted); line-height: 1.6; }

/* ============================================
   SECTION 4 — 16 DOMAINS GRID
   ============================================ */
.ct-domains { background: #fff; padding: 80px 0; }
.ct-domains__title {
  font-family: var(--ct-font); font-size: 40px; font-weight: 700;
  color: var(--ct-text); margin-bottom: 12px; letter-spacing: -0.5px;
}
.ct-domains__sub { font-family: var(--ct-font); font-size: 17px; color: var(--ct-text-muted); line-height: 1.65; max-width: 600px; margin-bottom: 48px; }
.ct-domains__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }

/* Domain card */
.ct-domain-card {
  background: #fff; border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius-sm); padding: 24px;
  transition: all var(--ct-ease);
  display: flex; gap: 16px; align-items: flex-start;
}
.ct-domain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.ct-domain-card__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ct-orange-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-domain-card__icon i { font-size: 18px; color: var(--ct-orange); }
.ct-domain-card__content { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ct-domain-card__name { font-family: var(--ct-font); font-size: 15px; font-weight: 700; color: var(--ct-dark); margin-bottom: 4px; }
.ct-domain-card__badge {
  font-family: var(--ct-font); font-size: 11px; font-weight: 600;
  color: var(--ct-blue); background: rgba(47,85,212,0.06);
  padding: 2px 10px; border-radius: 100px; white-space: nowrap;
  display: inline-block; width: fit-content; margin-bottom: 8px;
}
.ct-domain-card__desc { font-family: var(--ct-font); font-size: 13px; color: var(--ct-text-muted); line-height: 1.6; margin: 0; }
.ct-domains__note {
  font-family: var(--ct-font); font-size: 14px; font-style: italic;
  color: var(--ct-text-muted); text-align: center;
  max-width: 720px; margin: 0 auto; line-height: 1.65;
}

/* ============================================
   SECTION 5 — PILLARS DEEP DIVE
   ============================================ */
.ct-pillar { padding: 80px 0; position: relative; }
.ct-pillar:nth-of-type(odd)  { background: #fff; }
.ct-pillar:nth-of-type(even) { background: var(--ct-bg-gray); }

.ct-pillar__grid { display: flex; align-items: center; gap: 64px; }
.ct-pillar__text  { flex: 1; }
.ct-pillar__visual { flex: 1; }
.ct-pillar--reverse .ct-pillar__grid { flex-direction: row-reverse; }

.ct-pillar__eyebrow {
  display: inline-block; font-family: var(--ct-font);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ct-orange); margin-bottom: 12px;
}
.ct-pillar__title {
  font-family: var(--ct-font); font-size: 32px; font-weight: 700;
  color: var(--ct-dark); margin-bottom: 16px;
  letter-spacing: -0.3px; line-height: 1.2;
}
.ct-pillar__body {
  font-family: var(--ct-font); font-size: 15px;
  color: var(--ct-text-light); line-height: 1.75; margin-bottom: 24px;
}
.ct-pillar__list { list-style: none; padding: 0; margin: 0; }
.ct-pillar__list li {
  font-family: var(--ct-font); font-size: 14px;
  color: var(--ct-text-light); line-height: 1.65;
  padding: 10px 0 10px 16px;
  border-left: 4px solid var(--ct-orange); margin: 12px 0;
}
.ct-pillar__list--compact li {
  padding: 6px 0 6px 16px;
  margin: 6px 0;
  font-size: 13px;
}

/* Sub-blocks (used in Handshake pillar) */
.ct-pillar__sub-blocks { display: flex; flex-direction: column; gap: 16px; }
.ct-pillar__sub-block {
  padding: 16px 20px;
  border-left: 4px solid var(--ct-orange);
  background: var(--ct-bg-gray);
  border-radius: 0 var(--ct-radius-sm) var(--ct-radius-sm) 0;
}
.ct-pillar__sub-block h4 {
  font-family: var(--ct-font); font-size: 15px; font-weight: 700;
  color: var(--ct-dark); margin: 0 0 6px;
}
.ct-pillar__sub-block p {
  font-family: var(--ct-font); font-size: 13px;
  color: var(--ct-text-muted); line-height: 1.65; margin: 0;
}

/* Channel pills (SLA escalation pillar) */
.ct-pillar__channels { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ct-pillar__channel-pill {
  font-family: var(--ct-font); font-size: 12px; font-weight: 600;
  color: var(--ct-orange); background: var(--ct-orange-light);
  border: 1px solid rgba(234, 100, 37, 0.15);
  padding: 6px 16px; border-radius: 100px;
}

/* Query pills (ProPilot pillar) */
.ct-pillar__query-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ct-pillar__query-pill {
  font-family: var(--ct-font); font-size: 12px; font-weight: 600;
  color: var(--ct-blue); background: rgba(47,85,212,0.06);
  border: 1px solid rgba(47,85,212,0.12);
  padding: 6px 16px; border-radius: 100px;
}

/* Note text (ProPilot pillar) */
.ct-pillar__note {
  font-family: var(--ct-font); font-size: 13px; font-style: italic;
  color: var(--ct-text-muted); line-height: 1.65;
}

/* Pillar SVG visual sizing */
.ct-pillar-svg {
  width: 100%; max-width: 100%; height: auto;
  border-radius: var(--ct-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* --- Pillar: SLA Escalation Timeline --- */
.ct-escalation {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px; background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.ct-escalation__stage {
  display: flex; align-items: center; gap: 16px;
}
.ct-escalation__marker {
  width: 14px; height: 14px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.ct-escalation__content {
  display: flex; flex-direction: column; gap: 2px;
}
.ct-escalation__time {
  font-family: var(--ct-font); font-size: 13px; font-weight: 700;
  line-height: 1.2;
}
.ct-escalation__desc {
  font-family: var(--ct-font); font-size: 13px;
  color: var(--ct-text-muted); line-height: 1.4;
}

/* --- Pillar: ProPilot Chat --- */
.ct-chat {
  border-radius: var(--ct-radius); overflow: hidden;
  border: 1px solid var(--ct-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.ct-chat__header {
  background: var(--ct-dark); padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
}
.ct-chat__header i {
  font-size: 20px; color: var(--ct-orange);
}
.ct-chat__header span {
  font-family: var(--ct-font); font-size: 14px; font-weight: 600; color: #fff;
}
.ct-chat__status {
  font-family: var(--ct-font); font-size: 11px; font-weight: 600;
  color: #22c55e; margin-left: auto;
  letter-spacing: 0.5px;
}
.ct-chat__body { background: #f9fafb; padding: 20px; min-height: 200px; }
.ct-chat__msg {
  font-family: var(--ct-font); font-size: 13px; color: var(--ct-text-light);
  line-height: 1.65; background: #fff;
  border: 1px solid var(--ct-border); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 12px; max-width: 85%;
}
.ct-chat__msg--bot {
  background: rgba(47,85,212,0.04); border-color: rgba(47,85,212,0.1);
}
.ct-chat__msg--user {
  margin-left: auto;
  background: rgba(234,100,37,0.04);
  border-color: rgba(234,100,37,0.12);
}

/* ============================================
   SECTION 6 — COMPLIANCE
   ============================================ */
.ct-compliance { background: #fff; padding: 80px 0; }
.ct-compliance__title {
  font-family: var(--ct-font); font-size: 40px; font-weight: 700;
  color: var(--ct-text); margin-bottom: 12px; letter-spacing: -0.5px;
  text-align: center;
}
.ct-compliance__sub {
  font-family: var(--ct-font); font-size: 17px; color: var(--ct-text-muted);
  line-height: 1.65; max-width: 600px; margin: 0 auto 48px;
  text-align: center;
}

/* Certification badges */
.ct-compliance__badges { display: flex; justify-content: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.ct-compliance__badge { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ct-compliance__badge-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--ct-bg-gray); border: 1px solid var(--ct-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ct-ease);
}
.ct-compliance__badge-icon:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.ct-compliance__badge-icon i { font-size: 28px; color: var(--ct-blue); }
.ct-compliance__badge-name {
  font-family: var(--ct-font); font-size: 12px; font-weight: 600;
  text-transform: uppercase; color: var(--ct-text-muted); letter-spacing: 0.5px;
}
.ct-compliance__badge-label {
  font-family: var(--ct-font); font-size: 11px;
  color: var(--ct-text-muted); text-align: center;
}

/* Compliance cards */
.ct-compliance__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ct-compliance__card {
  background: #fff; border: 1px solid var(--ct-border);
  border-left: 4px solid var(--ct-orange);
  border-radius: var(--ct-radius); padding: 28px 24px;
  transition: all var(--ct-ease);
}
.ct-compliance__card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.ct-compliance__card-icon { font-size: 24px; color: var(--ct-orange); margin-bottom: 14px; }
.ct-compliance__card-icon i { font-size: 24px; color: var(--ct-orange); }
.ct-compliance__card h3 { font-family: var(--ct-font); font-size: 16px; font-weight: 700; color: var(--ct-text); margin-bottom: 8px; }
.ct-compliance__card p { font-family: var(--ct-font); font-size: 13px; color: var(--ct-text-muted); line-height: 1.65; margin: 0; }

/* ============================================
   SECTION 7 — TRUST / SOCIAL PROOF
   ============================================ */
.ct-trust { background: var(--ct-bg-gray); padding: 64px 0; }
.ct-trust__text {
  font-family: var(--ct-font); font-size: 20px; font-weight: 400;
  color: var(--ct-text); line-height: 1.6;
  text-align: center; max-width: 700px; margin: 0 auto 40px;
}
.ct-trust__text strong { font-weight: 700; color: var(--ct-blue); }

/* ============================================
   SECTION 8 — CTA
   ============================================ */
.ct-cta { background: var(--ct-dark); padding: 80px 0; text-align: center; }
.ct-cta__title { font-family: var(--ct-font); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.ct-cta__sub { font-family: var(--ct-font); font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 600px; margin: 0 auto 36px; }
.ct-cta .ct-btn--primary { font-size: 16px; padding: 16px 44px; }

/* ============================================
   SECTION 9 — FAQ / AEO
   ============================================ */
.ct-faq { background: #fff; padding: 80px 0; }
.ct-faq__title {
  font-family: var(--ct-font); font-size: 36px; font-weight: 700;
  color: var(--ct-text); letter-spacing: -0.5px;
  margin-bottom: 32px; text-align: center;
}

/* Accordion (details/summary) */
.ct-faq__item { border-bottom: 1px solid var(--ct-border); }
.ct-faq__item:last-child { border-bottom: none; }
.ct-faq__q {
  font-family: var(--ct-font); font-size: 16px; font-weight: 600;
  color: var(--ct-text); padding: 20px 36px 20px 0;
  cursor: pointer; list-style: none; position: relative; line-height: 1.5;
}
.ct-faq__q::-webkit-details-marker { display: none; }
.ct-faq__q::marker { display: none; content: ""; }
.ct-faq__q::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: #aaa;
  transition: transform 0.3s;
}
.ct-faq__item[open] .ct-faq__q::after { content: "\2212"; color: var(--ct-orange); }
.ct-faq__a {
  font-family: var(--ct-font); font-size: 14px; color: var(--ct-text-muted);
  line-height: 1.75; padding: 0 36px 20px 0; margin: 0;
}

/* ============================================
   SECTION 10 — CONTACT
   ============================================ */
.ct-contact {
  background: var(--ct-bg-gray);
  padding: 80px 0;
}

/* ============================================
   NEW: PERFORMANCE SECTIONS (Warehousing, Inventory, Logistics)
   ============================================ */
.ct-perf { padding: 80px 0; }
.ct-perf--gray { background: var(--ct-bg-gray); }
.ct-perf--white { background: #fff; }

.ct-perf__eyebrow {
  display: inline-block; font-family: var(--ct-font);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ct-orange); margin-bottom: 12px;
  text-align: center; width: 100%;
}
.ct-perf__title {
  font-family: var(--ct-font); font-size: 40px; font-weight: 700;
  color: var(--ct-text); margin-bottom: 16px; letter-spacing: -0.5px;
  text-align: center;
}
.ct-perf__body {
  font-family: var(--ct-font); font-size: 17px; color: var(--ct-text-muted);
  line-height: 1.65; max-width: 720px; margin: 0 auto 48px;
  text-align: center;
}
.ct-perf__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ct-perf__grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
.ct-perf__card {
  background: #fff; border: 1px solid var(--ct-border);
  border-top: 4px solid var(--ct-orange);
  border-radius: var(--ct-radius); padding: 28px 24px;
  transition: all var(--ct-ease);
}
.ct-perf--gray .ct-perf__card { background: #fff; }
.ct-perf--white .ct-perf__card { background: var(--ct-bg-gray); }
.ct-perf__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.ct-perf__card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ct-orange-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ct-perf__card-icon i { font-size: 22px; color: var(--ct-orange); }
.ct-perf__card-title {
  font-family: var(--ct-font); font-size: 16px; font-weight: 700;
  color: var(--ct-dark); margin-bottom: 10px;
}
.ct-perf__card-text {
  font-family: var(--ct-font); font-size: 13px;
  color: var(--ct-text-muted); line-height: 1.65; margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .ct-hero__grid { flex-direction: column; text-align: center; }
  .ct-hero__text { flex: none; max-width: 100%; }
  .ct-hero__sub { margin-left: auto; margin-right: auto; }
  .ct-hero__actions { justify-content: center; }
  .ct-hero__visual { max-width: 320px; margin: 24px auto 0; }

  .ct-metrics__grid { flex-wrap: wrap; gap: 24px 0; }
  .ct-metrics__item { flex: 0 0 33.33%; margin-bottom: 16px; }

  .ct-arch__execution { grid-template-columns: repeat(2, 1fr); }
  .ct-arch__governance { flex-direction: column; text-align: center; }
  .ct-arch__governance-left { flex-direction: column; }
  .ct-arch__pills { max-width: 100%; }

  .ct-domains__grid { grid-template-columns: repeat(2, 1fr); }

  .ct-pillar__grid { flex-direction: column; gap: 40px; }
  .ct-pillar--reverse .ct-pillar__grid { flex-direction: column; }
  .ct-pillar__text { text-align: center; }
  .ct-pillar__list li { text-align: left; }
  .ct-pillar__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .ct-pillar__sub-blocks { text-align: left; }
  .ct-pillar__channels { justify-content: center; }
  .ct-pillar__query-pills { justify-content: center; }

  .ct-compliance__cards { grid-template-columns: repeat(2, 1fr); }

  .ct-perf__grid { grid-template-columns: repeat(2, 1fr); }
  .ct-perf__title { font-size: 34px; }

  .ct-arch__title, .ct-domains__title,
  .ct-compliance__title { font-size: 34px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .ct-hero { padding: 120px 0 56px; }
  .ct-hero__headline { font-size: 36px; letter-spacing: -1px; }
  .ct-hero__sub { font-size: 15px; }
  .ct-hero__visual { display: none; }
  .ct-btn { font-size: 14px; padding: 12px 28px; }

  .ct-metrics { padding: 36px 0; }
  .ct-metrics__item { flex: 0 0 50%; }
  .ct-metrics__item::before { display: none; }
  .ct-metrics__num { font-size: 28px; }

  .ct-arch { padding: 56px 0; }
  .ct-arch__governance { padding: 28px 20px; }
  .ct-arch__pills { grid-template-columns: 1fr; }
  .ct-arch__execution { grid-template-columns: 1fr; }
  .ct-arch__connector { padding: 0 40px; height: 32px; }

  .ct-domains { padding: 56px 0; }
  .ct-domains__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ct-domain-card { padding: 20px; }
  .ct-domains__title { font-size: 30px; }

  .ct-perf { padding: 56px 0; }
  .ct-perf__title { font-size: 30px; }
  .ct-perf__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .ct-pillar { padding: 56px 0; }
  .ct-pillar__title { font-size: 26px; }
  .ct-pillar__body { font-size: 14px; }
  .ct-pillar__grid { gap: 32px; }

  .ct-compliance { padding: 56px 0; }
  .ct-compliance__badges { gap: 20px; }
  .ct-compliance__badge-icon { width: 60px; height: 60px; }
  .ct-compliance__badge-icon i { font-size: 22px; }
  .ct-compliance__cards { grid-template-columns: 1fr; }
  .ct-compliance__title { font-size: 30px; }

  .ct-trust { padding: 48px 0; }
  .ct-trust__text { font-size: 18px; }

  .ct-cta { padding: 56px 0; }
  .ct-cta__title { font-size: 30px; }
  .ct-cta__sub { font-size: 15px; }

  .ct-faq { padding: 56px 0; }
  .ct-faq__title { font-size: 28px; }

  .ct-escalation { padding: 20px; }
  .ct-chat__msg { max-width: 95%; }

  .ct-contact { padding: 56px 0; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .ct-hero__headline { font-size: 30px; }
  .ct-hero__eyebrow { font-size: 11px; }
  .ct-hero__actions { flex-direction: column; align-items: center; }

  .ct-metrics__grid { flex-direction: column; gap: 20px; }
  .ct-metrics__item { flex: none; width: 100%; padding: 12px 0; }
  .ct-metrics__item + .ct-metrics__item::before { width: 40px; height: 1px; top: -10px; left: 50%; transform: translateX(-50%); }

  .ct-domains__grid { grid-template-columns: 1fr; }
  .ct-domains__title { font-size: 26px; }

  .ct-compliance__badges { gap: 16px; }
  .ct-compliance__badge-icon { width: 54px; height: 54px; }
  .ct-compliance__badge-icon i { font-size: 20px; }
  .ct-compliance__badge-name { font-size: 10px; }

  .ct-perf__grid { grid-template-columns: 1fr; }
  .ct-perf__title { font-size: 26px; }
  .ct-perf__body { font-size: 15px; }

  .ct-arch__title, .ct-compliance__title { font-size: 26px; }
  .ct-arch__sub, .ct-compliance__sub { font-size: 15px; }
  .ct-pillar__title { font-size: 24px; }
  .ct-cta__title { font-size: 26px; }
  .ct-faq__title { font-size: 24px; }

  .ct-escalation__time { font-size: 11px; }
  .ct-escalation__desc { font-size: 12px; }
}
