/* =========================================================
   Mobile App Development — Hero (Craitrix blue/white, layered phone deck)
   prefix: cmh-* (hero shell)  ·  cmp-* (single phone mockup)
   ========================================================= */

html, body {
  overflow-x: clip;
  max-width: 100%;
}

:root {
  --cmh-blue-1:    #0072FF;
  --cmh-blue-2:    #0D47A1;
  --cmh-blue-3:    #0a3a85;
  --cmh-blue-deep: #061b4a;
  --cmh-cyan-1:    #06b6d4;
  --cmh-cyan-2:    #22d3ee;
  --cmh-bg-1:      #ffffff;
  --cmh-bg-2:      #f3f7ff;
  --cmh-bg-3:      #eaf1ff;
  --cmh-ink:       #0a1733;
  --cmh-ink-2:     #2a3a5b;
  --cmh-muted:     #5a6a85;
  --cmh-line:      rgba(13, 71, 161, 0.10);
  --cmh-shadow-card: 0 30px 70px -20px rgba(8, 32, 86, 0.42), 0 12px 26px -10px rgba(8, 32, 86, 0.22), 0 0 0 1px rgba(8, 32, 86, 0.06);
  --cmh-radius:    16px;
  --cmh-font:      'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ---------- Hero shell ---------- */
.cmh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cmh-ink);
  font-family: var(--cmh-font);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 65%),
    radial-gradient(ellipse 60% 55% at 0% 100%, rgba(34, 211, 238, 0.08) 0%, rgba(34, 211, 238, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 60%, #eaf1ff 100%);
  padding: 130px 6vw 56px;
  -webkit-font-smoothing: antialiased;
}

.cmh-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cmh-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.cmh-glow--tr {
  top: -180px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.22) 0%, rgba(0, 114, 255, 0) 65%);
}
.cmh-glow--bl {
  bottom: -200px; left: -180px; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.20) 0%, rgba(34, 211, 238, 0) 70%);
}
.cmh-dots {
  position: absolute; width: 110px; height: 110px;
  background-image: radial-gradient(rgba(0, 114, 255, 0.25) 1.4px, transparent 1.6px);
  background-size: 14px 14px; opacity: 0.7;
}
.cmh-dots--tl { top: 90px; left: 3vw; }
.cmh-dots--tr { top: 90px; right: 4vw; opacity: 0.55; }
.cmh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 114, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 114, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.cmh-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}

/* ---------- Left copy ---------- */
.cmh-left { max-width: 620px; }

.cmh-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(240, 247, 255, 0.85)) padding-box,
    linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%) border-box;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  font-family: 'SF Mono', 'JetBrains Mono', 'Roboto Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  box-shadow: 0 6px 18px -10px rgba(0, 114, 255, 0.30);
}
.cmh-eyebrow__dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.55);
  flex-shrink: 0;
}
.cmh-eyebrow__dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.45);
  opacity: 0.8;
  animation: cmh-eyebrow-pulse 2.2s ease-out infinite;
}
@keyframes cmh-eyebrow-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cmh-eyebrow__dot::before { animation: none; }
}

.cmh-title {
  margin: 22px 0 18px;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 4.05rem);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cmh-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.cmh-lede {
  margin: 0 0 32px;
  font-size: clamp(0.98rem, 1.15vw, 1.10rem);
  line-height: 1.66; color: var(--cmh-ink-2);
  font-weight: 400; max-width: 580px;
}

.cmh-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.cmh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.96rem;
  font-family: inherit; letter-spacing: 0.005em;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, filter 0.25s;
  white-space: nowrap;
}
.cmh-btn--primary {
  background: linear-gradient(96deg, var(--cmh-blue-1) 0%, var(--cmh-blue-2) 100%);
  color: #fff;
  box-shadow: 0 16px 30px -10px rgba(0, 114, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.20);
}
.cmh-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -10px rgba(0, 114, 255, 0.55), inset 0 1px 0 rgba(255,255,255,0.28); filter: brightness(1.04); }
.cmh-btn--ghost {
  background: rgba(255,255,255,0.7); color: var(--cmh-blue-2);
  border: 1px solid rgba(0, 114, 255, 0.40);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.cmh-btn--ghost:hover { background: rgba(0, 114, 255, 0.08); border-color: var(--cmh-blue-1); transform: translateY(-2px); }

.cmh-talk {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px 10px 12px;
  border-radius: 999px; background: #fff;
  border: 1px solid var(--cmh-line);
  box-shadow: 0 12px 28px -16px rgba(8, 32, 86, 0.22);
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, border-color 0.25s;
}
.cmh-talk:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 18px 36px -18px rgba(37, 211, 102, 0.40);
}
.cmh-talk__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(37, 211, 102, 0.55);
}
.cmh-talk__num { color: var(--cmh-ink); font-weight: 700; letter-spacing: 0.01em; }
.cmh-talk:hover .cmh-talk__num { color: #128C7E; }

/* ============================================================
   RIGHT — fanned phone deck (.cmp-*)
   ============================================================ */
.cmh-right {
  position: relative;
  width: 100%;
  height: clamp(520px, 44vw, 620px);
  overflow: visible;
}
.cmh-deck {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1800px;
  perspective-origin: 50% 50%;
}

/* shared phone frame */
.cmp {
  position: absolute;
  top: 50%;
  width: 200px;
  aspect-ratio: 200 / 410;
  transform-style: preserve-3d;
  transform: translateY(-50%) rotate(var(--rot, 0deg));
  filter: drop-shadow(0 35px 60px rgba(8, 32, 86, 0.28)) drop-shadow(0 12px 24px rgba(8, 32, 86, 0.18));
  animation: cmp-rise 0.9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cmp-rise {
  from { opacity: 0; transform: translateY(-30%) rotate(var(--rot, 0deg)) scale(0.94); }
  to   { opacity: 1; transform: translateY(-50%) rotate(var(--rot, 0deg)) scale(1); }
}
@media (prefers-reduced-motion: reduce) { .cmp { animation: none; } }

/* fan positions — all 4 phones share the same vertical center,
   fanned from left → right like a card deck. p3 is centerpiece. */
.cmp--p1 { left: 0;    --rot: -20deg; z-index: 2; animation-delay: 0.05s; }
.cmp--p2 { left: 12%;  --rot:  -8deg; z-index: 3; animation-delay: 0.12s; }
.cmp--p3 { left: 50%;  --rot:   0deg; z-index: 5; animation-delay: 0.22s;
           transform: translate(-50%, -50%); width: 232px;
           animation-name: cmp-rise-c; }
@keyframes cmp-rise-c {
  from { opacity: 0; transform: translate(-50%, -34%) scale(0.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cmp--p4 { right: 0;   --rot: +18deg; z-index: 3; animation-delay: 0.30s; }

/* phone bezel + frame */
.cmp__frame {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1f2937 0%, #0f172a 100%);
  border-radius: 30px;
  padding: 6px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.6);
}
.cmp__frame--lg { padding: 7px; border-radius: 34px; }

.cmp__notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.cmp__btnL, .cmp__btnR {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.cmp__btnL { left: -1.5px; top: 78px;  width: 3px; height: 30px; }
.cmp__btnL::after {
  content: ""; position: absolute; left: 0; top: 44px; width: 3px; height: 50px;
  background: rgba(255,255,255,0.06); border-radius: 2px;
}
.cmp__btnR { right: -1.5px; top: 92px; width: 3px; height: 60px; }

.cmp__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding: 28px 12px 8px;
  font-family: var(--cmh-font);
  display: flex; flex-direction: column;
  gap: 8px;
}
.cmp__frame--lg .cmp__screen { border-radius: 28px; padding: 30px 13px 8px; }

/* status bar (shared) */
.cmp__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8px; font-weight: 700;
  color: #1e293b;
  padding: 0 6px 2px;
  letter-spacing: 0.02em;
}
.cmp__statusbar--white { color: rgba(255,255,255,0.95); }
.cmp__sigs { display: inline-flex; gap: 2px; align-items: flex-end; }
.cmp__sigs i {
  display: inline-block; width: 3px; background: currentColor; border-radius: 1px;
}
.cmp__sigs i:nth-child(1) { height: 4px; }
.cmp__sigs i:nth-child(2) { height: 6px; }
.cmp__sigs i:nth-child(3) { height: 8px; }

/* ============================================================
   PHONE 1 — coral / e-commerce
   ============================================================ */
.cmp__screen--coral {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  color: #7c2d12;
}
.cmp__appHead {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 6px;
}
.cmp__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.cmp__avatar--coral { background: linear-gradient(135deg, #fb923c, #c2410c); }
.cmp__avatar--ghost {
  background: rgba(255,255,255,0.18); color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
}
.cmp__appHeadCol { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cmp__hello { font-size: 9px; font-weight: 800; color: #1f2937; line-height: 1.1; }
.cmp__sub   { font-size: 7px; font-weight: 500; color: #78716c; line-height: 1.2; margin-top: 1px; }
.cmp__bell {
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #c2410c;
  box-shadow: 0 4px 10px -3px rgba(194, 65, 12, 0.28);
}
.cmp__bell svg { width: 11px; height: 11px; }

.cmp__searchPill {
  display: flex; align-items: center; gap: 6px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 8px; color: #78716c;
  box-shadow: 0 4px 10px -3px rgba(194, 65, 12, 0.18);
}
.cmp__searchPill svg { width: 10px; height: 10px; flex-shrink: 0; color: #c2410c; }

.cmp__chips { display: flex; gap: 6px; padding: 0 2px; }
.cmp__chip {
  font-size: 7.5px; font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #9a3412;
  border: 1px solid rgba(194, 65, 12, 0.18);
}
.cmp__chip--on {
  background: linear-gradient(135deg, #fb923c, #c2410c);
  color: #fff; border-color: transparent;
}

.cmp__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 2px; flex: 1; }
.cmp__pcard {
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 6px 14px -6px rgba(194, 65, 12, 0.22);
}
.cmp__pimg { width: 100%; height: auto; border-radius: 5px; }
.cmp__pname { font-size: 7.5px; font-weight: 700; color: #1f2937; }
.cmp__pprice { font-size: 8px; font-weight: 800; color: #c2410c; }

/* ============================================================
   PHONE 2 — mint / fitness
   ============================================================ */
.cmp__screen--mint {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  color: #065f46;
}
.cmp__fitHead { display: flex; flex-direction: column; padding: 2px 4px 0; }
.cmp__fitDay  { font-size: 7px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #10b981; }
.cmp__fitTitle{ font-size: 12px; font-weight: 800; color: #064e3b; margin-top: 1px; }

.cmp__ringWrap {
  display: flex; align-items: center; justify-content: center;
  margin: 6px auto 4px;
  width: 100%;
}
.cmp__ring { width: 102px; height: 102px; }

.cmp__metrics3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  padding: 0 2px;
}
.cmp__metric {
  background: #fff;
  border-radius: 8px;
  padding: 5px 4px;
  text-align: center;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 10px -4px rgba(6, 95, 70, 0.18);
}
.cmp__metric b { font-size: 10px; font-weight: 800; color: #064e3b; line-height: 1; }
.cmp__metric span { font-size: 6.5px; font-weight: 700; color: #10b981; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.cmp__bars {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  height: 38px;
  align-items: end;
  padding: 0 4px;
}
.cmp__bars span {
  height: var(--h, 50%);
  background: linear-gradient(180deg, #34d399, #10b981);
  border-radius: 3px 3px 1px 1px;
  display: block;
}

/* ============================================================
   PHONE 3 — Craitrix wallet (centerpiece)
   ============================================================ */
.cmp__screen--blue {
  background: linear-gradient(160deg, #061b4a 0%, #0a3a85 50%, #0072ff 100%);
  color: #fff;
}
.cmp__waHead {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 4px 6px 0;
}
.cmp__waHead > div { display: flex; flex-direction: column; }
.cmp__waHi   { font-size: 7.5px; font-weight: 600; opacity: 0.7; letter-spacing: 0.04em; }
.cmp__waName { font-size: 11px; font-weight: 800; margin-top: 1px; letter-spacing: 0.01em; }

.cmp__balCard {
  position: relative;
  margin: 6px 4px 4px;
  padding: 10px 12px 12px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 100%),
    linear-gradient(135deg, #0a3a85 0%, #1e40af 100%);
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 18px -8px rgba(0,0,0,0.5);
}
.cmp__balLbl { font-size: 7px; font-weight: 600; opacity: 0.72; letter-spacing: 0.16em; text-transform: uppercase; }
.cmp__balVal { display: block; font-size: 16px; font-weight: 800; line-height: 1.05; margin-top: 3px; letter-spacing: -0.01em; }
.cmp__balVal small { font-size: 11px; font-weight: 700; opacity: 0.7; }
.cmp__balRow { display: flex; align-items: center; gap: 6px; margin-top: 5px; font-size: 7.5px; }
.cmp__chgUp { color: #34d399; font-weight: 800; }
.cmp__balToday { opacity: 0.7; }

.cmp__cardChip {
  position: absolute; right: 12px; top: 12px;
  width: 18px; height: 13px;
  border-radius: 3px;
  background: linear-gradient(135deg, #fde68a 0%, #d97706 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
}
.cmp__cardSwirl {
  position: absolute; right: -20px; bottom: -28px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.5), rgba(34, 211, 238, 0) 60%);
  pointer-events: none;
}

.cmp__quick4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px 4px 2px;
}
.cmp__qa {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 7px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.cmp__qaIco {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.cmp__qaIco svg { width: 11px; height: 11px; }

.cmp__txnLbl {
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7;
  padding: 6px 6px 2px;
}
.cmp__txnRow {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  margin: 0 2px 3px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cmp__txnIco {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.cmp__txnIco--in  { background: rgba(52, 211, 153, 0.18); color: #34d399; }
.cmp__txnIco--out { background: rgba(248, 113, 113, 0.18); color: #f87171; }
.cmp__txnCol { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cmp__txnCol b { font-size: 8px; font-weight: 700; line-height: 1.15; }
.cmp__txnCol i { font-size: 6.5px; font-style: normal; opacity: 0.6; margin-top: 1px; }
.cmp__txnAmt { font-size: 8.5px; font-weight: 800; color: rgba(255,255,255,0.95); }
.cmp__txnAmt--in { color: #34d399; }

/* badge above centerpiece phone */
.cmp__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
  color: var(--cmh-blue-2);
  padding: 5px 12px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(8, 32, 86, 0.45), 0 0 0 1px rgba(0, 114, 255, 0.18);
  white-space: nowrap;
  z-index: 6;
}

/* ============================================================
   PHONE 4 — amber / food delivery
   ============================================================ */
.cmp__screen--amber {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  color: #78350f;
}
.cmp__foodBanner { padding: 0 4px; }
.cmp__foodBanner svg { width: 100%; height: auto; border-radius: 8px; }

.cmp__foodCat {
  font-size: 7.5px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #92400e;
  padding: 2px 4px 0;
}
.cmp__foodCats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 0 4px; }
.cmp__fc {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: #fff;
  padding: 5px 2px;
  border-radius: 8px;
  font-size: 6.5px; font-weight: 700;
  color: #78350f;
  box-shadow: 0 4px 8px -4px rgba(180, 83, 9, 0.22);
}
.cmp__fcIco {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: block;
}
.cmp__fcIco--burger { background: radial-gradient(circle at 50% 35%, #fcd34d 0%, #f59e0b 60%, #b45309 100%); }
.cmp__fcIco--pizza  { background: radial-gradient(circle at 50% 50%, #fef3c7 30%, #dc2626 80%); }
.cmp__fcIco--sushi  { background: linear-gradient(135deg, #fff, #1f2937 70%); }
.cmp__fcIco--drink  { background: linear-gradient(180deg, #fbbf24 0%, #ea580c 100%); }

.cmp__foodList { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.cmp__foodRow {
  display: flex; align-items: center; gap: 6px;
  background: #fff;
  padding: 4px 6px;
  border-radius: 8px;
  box-shadow: 0 4px 8px -4px rgba(180, 83, 9, 0.20);
}
.cmp__foodRow svg { width: 28px; height: 28px; flex-shrink: 0; }
.cmp__foodInfo { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.cmp__foodInfo b { font-size: 7.5px; font-weight: 700; color: #1f2937; line-height: 1.15; }
.cmp__foodInfo i { font-size: 6.5px; font-style: normal; color: #92400e; margin-top: 1px; }
.cmp__foodPrice { font-size: 8px; font-weight: 800; color: #c2410c; }

/* ============================================================
   bottom tab bars (shared)
   ============================================================ */
.cmp__tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 6px 8px;
  background: rgba(255,255,255,0.65);
  border-radius: 14px;
  margin-inline: 2px;
  margin-bottom: 2px;
}
.cmp__tab {
  width: 18px; height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.cmp__tab--on { background: linear-gradient(90deg, #fb923c, #c2410c); width: 26px; }
.cmp__tabbar--mint  { background: rgba(255,255,255,0.7); }
.cmp__tabbar--mint  .cmp__tab--on  { background: linear-gradient(90deg, #34d399, #059669); }
.cmp__tabbar--blue  { background: rgba(255,255,255,0.10); }
.cmp__tabbar--blue  .cmp__tab     { background: rgba(255,255,255,0.32); }
.cmp__tabbar--blue  .cmp__tab--on { background: linear-gradient(90deg, #22d3ee, #0072ff); }
.cmp__tabbar--amber { background: rgba(255,255,255,0.7); }
.cmp__tabbar--amber .cmp__tab--on  { background: linear-gradient(90deg, #f59e0b, #dc2626); }

/* ---------- Trust strip ---------- */
.cmh-trust {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(243, 247, 255, 0.7) 100%);
  border: 1px solid var(--cmh-line);
  box-shadow: 0 18px 40px -22px rgba(8, 32, 86, 0.20);
  backdrop-filter: blur(10px);
}
.cmh-trust__item { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.cmh-trust__num {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800;
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cmh-trust__num i { font-style: normal; font-size: 0.7em; }
.cmh-trust__lbl { font-size: 0.78rem; color: var(--cmh-muted); font-weight: 500; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .cmh-inner { gap: 40px; }
  .cmh-right { height: clamp(480px, 58vw, 580px); }
  .cmp { width: 178px; }
  .cmp--p3 { width: 208px; }
}

@media (max-width: 880px) {
  .cmh-hero { padding: 110px 5vw 48px; }
  .cmh-inner { grid-template-columns: 1fr; gap: 36px; }
  .cmh-left { max-width: 100%; }
  .cmh-right { height: 500px; }
  .cmp     { width: 168px; }
  .cmp--p1 { left: 0;    --rot: -18deg; }
  .cmp--p2 { left: 14%;  --rot:  -7deg; }
  .cmp--p3 { width: 196px; }
  .cmp--p4 { right: 0;   --rot: +18deg; }
  .cmh-trust { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 22px 18px; }
}

@media (max-width: 540px) {
  .cmh-hero { padding: 96px 4vw 40px; }
  .cmh-title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .cmh-right { height: 440px; }
  .cmp     { width: 142px; }
  .cmp--p3 { width: 168px; }
  .cmh-btn { padding: 13px 22px; font-size: 0.9rem; }
  .cmh-trust { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTION 2 — Web Application Development (.cma-* content-only)
   ============================================================ */
.cma-biz {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: clamp(56px, 6vw, 80px) 6vw clamp(56px, 6vw, 80px);
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
}
.cma-biz__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-biz__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cma-biz__blob--a {
  top: -160px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-biz__blob--b {
  bottom: -160px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.10) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-biz__rule {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 114, 255, 0.45));
}

.cma-biz__inner {
  position: relative; z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.cma-biz__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cma-biz__title {
  margin: 0 0 22px;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-biz__lede {
  margin: 0 auto 14px;
  max-width: 760px;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
  text-align: left;
}

/* Pillar grid */
.cma-pillars {
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cma-pillar {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 18px;
  padding: 28px 24px 26px;
  box-shadow: 0 18px 40px -22px rgba(8, 32, 86, 0.18);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.cma-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--cmh-blue-1), var(--cmh-cyan-1));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cma-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 255, 0.35);
  box-shadow: 0 30px 60px -22px rgba(0, 114, 255, 0.30);
}
.cma-pillar:hover::before { opacity: 1; }
.cma-pillar__num {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 114, 255, 0.16);
  font-family: 'SF Mono', 'JetBrains Mono', 'Roboto Mono', ui-monospace, monospace;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cmh-blue-2);
}
.cma-pillar__num::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
  flex-shrink: 0;
}
.cma-pillar__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 255, 0.30) 0%, rgba(0, 114, 255, 0) 100%);
}
.cma-pillar__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cmh-ink);
  line-height: 1.25;
}
.cma-pillar__body {
  margin: 0 0 16px;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--cmh-ink-2);
}
.cma-pillar__bul {
  margin: 0; padding: 14px 0 0;
  list-style: none;
  border-top: 1px dashed rgba(0, 114, 255, 0.22);
  display: grid; gap: 7px;
}
.cma-pillar__bul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--cmh-muted);
  letter-spacing: 0.005em;
}
.cma-pillar__bul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.15);
}

.cma-biz__cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cma-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, filter 0.25s;
  white-space: nowrap;
}
.cma-btn--primary {
  background: linear-gradient(96deg, var(--cmh-blue-1) 0%, var(--cmh-blue-2) 100%);
  color: #fff;
  box-shadow: 0 16px 30px -10px rgba(0, 114, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.20);
}
.cma-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -10px rgba(0, 114, 255, 0.55), inset 0 1px 0 rgba(255,255,255,0.28);
  filter: brightness(1.04);
}

@media (max-width: 1100px) {
  .cma-pillars { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .cma-biz { padding: 70px 5vw 70px; }
  .cma-pillars { grid-template-columns: 1fr; }
  .cma-biz__cta { flex-direction: column; align-items: stretch; }
  .cma-btn { width: 100%; }
}
@media (max-width: 540px) {
  .cma-biz__title { font-size: clamp(1.7rem, 7vw, 2.1rem); }
  .cma-pillar { padding: 24px 20px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-pillar { transition: none; }
  .cma-pillar:hover { transform: none; }
}

/* ============================================================
   SECTION 3 — Why businesses need a Mobile Application?
   (.cma-feat-*)  port of original .on-demand-features-* style:
   blue gradient bg + 3 white panel rows · 2 features list left/right
   + 2 stacked rotated image cards that swap on hover
   ============================================================ */
.cma-feat {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 5vw, 60px) 6vw;
  overflow: hidden;
  font-family: var(--cmh-font);
  background:
    radial-gradient(ellipse 55% 50% at 12% 8%,  rgba(186, 230, 253, 0.85) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 88% 16%, rgba(147, 197, 253, 0.70) 0%, transparent 65%),
    radial-gradient(ellipse 60% 55% at 50% 95%, rgba(191, 219, 254, 0.65) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f0f7ff 55%, #e6f0ff 100%);
}
.cma-feat::before,
.cma-feat::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.cma-feat::before {
  top: -120px; left: 28%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.55) 0%, transparent 70%);
}
.cma-feat::after {
  bottom: -140px; right: 22%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.45) 0%, transparent 70%);
}

.cma-feat__title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 0 22px;
  color: var(--cmh-ink);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cma-feat__lede {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cmh-ink-2);
  width: 80%;
  max-width: 920px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
}
@media (max-width: 786px) {
  .cma-feat__lede { width: 100%; }
}

.cma-feat__row {
  position: relative;
  z-index: 1;
  padding: 50px 40px 100px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 14px 40px -12px rgba(31, 38, 135, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.cma-feat__row:last-child { margin-bottom: 0; }

.cma-feat__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cma-feat__item {
  display: flex;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 114, 255, 0.10);
  box-shadow: 0 6px 18px -8px rgba(8, 32, 86, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cma-feat__item:hover {
  border-color: rgba(0, 114, 255, 0.28);
  box-shadow: 0 14px 30px -12px rgba(0, 114, 255, 0.25);
  transform: translateY(-2px);
}
.cma-feat__item i {
  opacity: 0;
  font-size: 24px;
  transition: all 0.3s ease;
  color: #0072FF;
  flex-shrink: 0;
  padding-top: 4px;
}
.cma-feat__item h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--cmh-ink);
  line-height: 1.3;
}
.cma-feat__item p {
  margin: 0;
  color: #5a6a85;
  font-size: 0.95rem;
  line-height: 1.55;
}
.cma-feat__item.active h3 { color: #0072FF; }
.cma-feat__item.active i  { opacity: 1; }

/* Row-wide hover (matches original on-demand-features-div:hover) */
.cma-feat__row:hover .cma-feat__card--front {
  z-index: 2;
  transform: rotate(13deg) translateX(90px) translateY(30px);
}
.cma-feat__row:hover .cma-feat__card--back {
  z-index: 1;
  transform: rotate(-18deg) translateX(-90px) translateY(0);
}

.cma-feat__cards {
  position: relative;
  width: 320px;
  height: 415px;
}
.cma-feat__card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s ease, z-index 0.5s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.cma-feat__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cma-feat__card--front {
  z-index: 2;
  transform: rotate(-8deg) translateX(0) translateY(0);
  transition: all 0.6s ease;
}
.cma-feat__card--back {
  z-index: 1;
  transform: rotate(8deg) translateX(30px) translateY(20px);
  transition: all 0.6s ease;
}

/* Swap when JS toggles .active on .cma-feat__cards */
.cma-feat__cards.active .cma-feat__card--front {
  z-index: 1;
  transform: rotate(13deg) translateX(90px) translateY(0);
}
.cma-feat__cards.active .cma-feat__card--back {
  z-index: 2;
  transform: rotate(-18deg) translateX(-90px) translateY(30px);
}

@media (max-width: 1000px) {
  .cma-feat { padding: 15px; }
  .cma-feat__row {
    padding: 24px 16px 60px;
    margin-bottom: 16px;
  }
  .cma-feat__list { gap: 8px; }
  .cma-feat__cards { width: 220px; height: 286px; margin-top: 30px; }
}
@media (max-width: 486px) {
  .cma-feat__item { padding: 14px 16px; }
  .cma-feat__item h3 { font-size: 19px; }
  .cma-feat__item p  { font-size: 0.88rem; }
  .cma-feat__cards { width: 180px; height: 234px; }
  .cma-feat__row:hover .cma-feat__card--front {
    transform: rotate(13deg) translateX(50px) translateY(20px) !important;
  }
  .cma-feat__row:hover .cma-feat__card--back {
    transform: rotate(-18deg) translateX(-50px) translateY(0) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cma-feat__card,
  .cma-feat__card--front,
  .cma-feat__card--back { transition: none; }
}

/* ============================================================
   SECTION 4 — CTA Banner (.cma-cta-*)  port of web-app cwa-cta
   Light blue/white shell + dot grid + concentric rings + logo halo
   ============================================================ */
.cma-cta {
  padding: clamp(40px, 5vw, 56px) 6vw;
  font-family: var(--cmh-font);
  background: #ffffff;
}
.cma-cta__shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(34, 211, 238, 0.20) 0%, rgba(34, 211, 238, 0) 60%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(135deg, #eef6ff 0%, #d9ebff 40%, #bcdcff 70%, #9cc9f3 100%);
  border: 1px solid rgba(0, 114, 255, 0.15);
  box-shadow: 0 30px 70px -25px rgba(0, 114, 255, 0.25);
}

.cma-cta__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.cma-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cma-cta__blob--a {
  top: -160px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.30) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-cta__blob--b {
  bottom: -180px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.25) 0%, rgba(0, 114, 255, 0) 70%);
}

.cma-cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 114, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 114, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.cma-cta__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 114, 255, 0.18);
  pointer-events: none;
}
.cma-cta__ring--1 {
  width: 360px; height: 360px;
  top: 50%; right: 8%;
  transform: translateY(-50%);
}
.cma-cta__ring--2 {
  width: 540px; height: 540px;
  top: 50%; right: 0;
  transform: translateY(-50%);
  border-color: rgba(0, 114, 255, 0.10);
}

.cma-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 5vw, 64px);
}

.cma-cta__copy { color: var(--cmh-ink); }

.cma-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cma-cta__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 12px rgba(0, 114, 255, 0.55);
  animation: cma-cta-pulse 1.6s ease-in-out infinite;
}
@keyframes cma-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 114, 255, 0); }
}

.cma-cta__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-cta__title-accent {
  display: block;
  margin-top: 6px;
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.cma-cta__lede {
  margin: 0 0 26px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--cmh-ink-2);
  max-width: 540px;
}

.cma-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cma-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, filter 0.25s;
}
.cma-cta__btn i { font-size: 1.05rem; }

.cma-cta__btn--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.55);
}
.cma-cta__btn--wa:hover {
  background: linear-gradient(135deg, #1cb558 0%, #0c6f64 100%);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.65);
}
.cma-cta__btn--tg {
  background: linear-gradient(135deg, #29B6F6 0%, #0277BD 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px -10px rgba(2, 119, 189, 0.55);
}
.cma-cta__btn--tg:hover {
  background: linear-gradient(135deg, #0f9bdc 0%, #015e94 100%);
  box-shadow: 0 18px 36px -10px rgba(2, 119, 189, 0.65);
}
.cma-cta__btn--em {
  background: linear-gradient(135deg, var(--cmh-blue-1) 0%, var(--cmh-blue-2) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px -10px rgba(0, 114, 255, 0.55);
}
.cma-cta__btn--em:hover {
  background: linear-gradient(135deg, #005ad6 0%, #062f6f 100%);
  box-shadow: 0 18px 36px -10px rgba(0, 114, 255, 0.65);
}
.cma-cta__btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.cma-cta__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 36px rgba(0, 60, 150, 0.20));
}
.cma-cta__logo-halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(40px);
  z-index: 0;
}
.cma-cta__logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  animation: cma-cta-float 5s ease-in-out infinite;
}
@keyframes cma-cta-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .cma-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cma-cta__copy { display: flex; flex-direction: column; align-items: center; }
  .cma-cta__btns { justify-content: center; }
  .cma-cta__lede { margin-left: auto; margin-right: auto; }
  .cma-cta__media { order: -1; }
  .cma-cta__logo { width: clamp(140px, 30vw, 200px); }
  .cma-cta__ring--1 { right: 50%; transform: translate(50%, -50%); }
  .cma-cta__ring--2 { right: 50%; transform: translate(50%, -50%); }
}
@media (max-width: 720px) {
  .cma-cta { padding: 50px 4vw; }
  .cma-cta__shell { border-radius: 20px; }
  .cma-cta__inner { padding: 44px 26px; gap: 28px; }
  .cma-cta__btns { gap: 10px; }
  .cma-cta__btn { padding: 12px 20px; font-size: 0.9rem; }
  .cma-cta__ring--1 { width: 240px; height: 240px; }
  .cma-cta__ring--2 { width: 380px; height: 380px; }
}
@media (max-width: 540px) {
  .cma-cta__inner { padding: 36px 20px; }
  .cma-cta__btns { flex-direction: column; align-items: stretch; gap: 8px; width: 100%; }
  .cma-cta__btn { width: 100%; padding: 13px 18px; font-size: 0.92rem; }
  .cma-cta__title { font-size: clamp(1.35rem, 6.5vw, 1.85rem); }
}
@media (prefers-reduced-motion: reduce) {
  .cma-cta__dot,
  .cma-cta__logo { animation: none; }
  .cma-cta__btn:hover { transform: none; }
}

/* ============================================================
   SECTION 5 — Our Expertise in Mobile Application Development
   (OG structure · brand-only theme · OG hairline border · no colored accents)
   ============================================================ */
.ui-ux-solutions {
    position: relative;
    padding: clamp(56px, 6vw, 80px) 6vw;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.ui-ux-solutions h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 0 18px;
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ui-ux-solutions-p {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding-block: 20px 36px;
    font-size: clamp(0.96rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    color: var(--cmh-ink-2);
}

.ui-ux-solutions > .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
}
.ui-ux-solutions .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.ui-ux-solutions-box {
    position: relative;
    padding: 32px 24px 28px;
    border-radius: 1.5rem 0 1.5rem 0;
    border: 0.5px solid rgba(0, 114, 255, 0.22);
    background: #ffffff;
    box-shadow: 0 14px 36px -16px rgba(31, 38, 135, 0.16);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 100%;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.ui-ux-solutions-box:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 114, 255, 0.45);
    box-shadow: 0 22px 50px -16px rgba(0, 114, 255, 0.28);
}

.ui-ux-solutions-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 6px;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.ui-ux-solutions-box:hover img {
    transform: scale(1.06);
}
.ui-ux-solutions-box h3 {
    color: var(--cmh-blue-2);
    font-size: 22px !important;
    font-weight: 700;
    padding: 10px 0;
    line-height: 1.28;
    margin: 0;
}
.ui-ux-solutions-box p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.62;
    color: var(--cmh-ink-2);
}

@media (max-width: 992px) {
    .ui-ux-solutions { padding: 60px 5vw; }
    .ui-ux-solutions .row { --bs-gutter-x: 18px; --bs-gutter-y: 18px; }
}
@media (max-width: 786px) {
    .ui-ux-solutions { padding: 50px 4vw; }
    .ui-ux-solutions h2 { padding-inline: 12px; }
    .ui-ux-solutions-p { width: 100%; padding-inline: 12px; padding-block: 16px 28px; }
    .ui-ux-solutions-box { padding: 24px 20px 22px; }
    .ui-ux-solutions-box img { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
    .ui-ux-solutions-box h3 { font-size: 20px !important; }
    .ui-ux-solutions-box img { width: 56px; height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
    .ui-ux-solutions-box,
    .ui-ux-solutions-box img { transition: none; }
    .ui-ux-solutions-box:hover { transform: none; }
    .ui-ux-solutions-box:hover img { transform: none; }
}

/* ============================================================
   SECTION 6 — Core Features of Mobile App Development (.cma-core-*)
   Glassmorphism · frosted cards over brand-blue/cyan orbs only
   ============================================================ */
.cma-core {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 80px) 6vw;
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.cma-core__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* big diffuse orbs for the glass cards to "frost over" — brand blue/cyan only */
.cma-core__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: cma-core-drift 16s ease-in-out infinite alternate;
}
.cma-core__orb--a {
  top: -120px; left: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.55) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-core__orb--b {
  top: 30%; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.55) 0%, rgba(34, 211, 238, 0) 70%);
  animation-delay: -4s;
}
.cma-core__orb--c {
  bottom: -160px; left: 25%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.45) 0%, rgba(13, 71, 161, 0) 70%);
  animation-delay: -8s;
}
.cma-core__orb--d {
  top: 20%; left: 35%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.45) 0%, rgba(6, 182, 212, 0) 70%);
  animation-delay: -12s;
}
@keyframes cma-core-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 25px) scale(0.96); }
}

/* faint speckled noise overlay to make the glass look real */
.cma-core__noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(8, 32, 86, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
}

.cma-core__inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.cma-core__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}
.cma-core__title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-core__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-core__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
}

.cma-core__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cma-core__card {
  position: relative;
  isolation: isolate;
  padding: 26px 24px 24px;
  border-radius: 22px;
  background: linear-gradient(160deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.35) 100%);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 40px -12px rgba(8, 32, 86, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

/* glossy specular highlight at top */
.cma-core__card::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  pointer-events: none;
}
/* faint colored gloss on the bottom-right */
.cma-core__card::after {
  content: "";
  position: absolute;
  bottom: -40%; right: -40%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.20) 0%, rgba(0, 114, 255, 0) 65%);
  filter: blur(30px);
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cma-core__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 30px 60px -16px rgba(8, 32, 86, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.cma-core__card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

/* per-card gloss — all variations of Craitrix blue/cyan, one theme */
.cma-core__card:nth-child(1)::after { background: radial-gradient(circle, rgba(0, 114, 255, 0.30) 0%, transparent 65%); }
.cma-core__card:nth-child(2)::after { background: radial-gradient(circle, rgba(34, 211, 238, 0.30) 0%, transparent 65%); }
.cma-core__card:nth-child(3)::after { background: radial-gradient(circle, rgba(6, 182, 212, 0.30) 0%, transparent 65%); }
.cma-core__card:nth-child(4)::after { background: radial-gradient(circle, rgba(0, 114, 255, 0.30) 0%, transparent 65%); }
.cma-core__card:nth-child(5)::after { background: radial-gradient(circle, rgba(13, 71, 161, 0.30) 0%, transparent 65%); }
.cma-core__card:nth-child(6)::after { background: radial-gradient(circle, rgba(34, 211, 238, 0.30) 0%, transparent 65%); }

.cma-core__thumb {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 22px -10px rgba(8, 32, 86, 0.20);
  margin-bottom: 18px;
  overflow: hidden;
}
.cma-core__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cma-core__name {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--cmh-ink);
}
.cma-core__copy {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--cmh-ink-2);
}

@media (max-width: 1100px) {
  .cma-core__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .cma-core { padding: 60px 5vw; }
  .cma-core__grid { grid-template-columns: 1fr; gap: 16px; }
  .cma-core__card { padding: 24px 22px 22px; }
  .cma-core__thumb { width: 64px; height: 64px; margin-bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-core__orb { animation: none; }
  .cma-core__card { transition: none; }
  .cma-core__card:hover { transform: none; }
  .cma-core__card:hover::after { transform: none; }
}

/* ============================================================
   SECTION 7 — Security Features (.cma-svc-*)
   Bento grid · image-bg cards · hover lift + zoom + body reveal
   (port of web-app cwa-svc, brand-only)
   ============================================================ */
.cma-svc {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7ff 0%, #eaf2ff 55%, #ffffff 100%);
  padding: clamp(56px, 6vw, 80px) 6vw clamp(56px, 6vw, 80px);
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
}
.cma-svc__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-svc__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cma-svc__blob--a {
  top: -200px; left: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-svc__blob--b {
  bottom: -240px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-svc__weave {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 114, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 114, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.cma-svc__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
}

.cma-svc__head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.cma-svc__title {
  margin: 0 0 22px;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-svc__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-svc__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
}

.cma-svc__grid {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 22px;
}

.cma-svccard {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 26px;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
  z-index: 1;
  background: var(--cma-img, linear-gradient(135deg, #0a3a85, #0072FF)) center / cover no-repeat;
}

.cma-svccard::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
  z-index: -2;
}

/* light overlay — only bottom darkens for title legibility, image stays visible */
.cma-svccard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.05) 40%,
    rgba(15, 23, 42, 0.45) 72%,
    rgba(15, 23, 42, 0.82) 100%);
  transition: background 0.5s ease, opacity 0.5s ease;
  z-index: -1;
}

.cma-svccard:hover {
  transform: translateY(-6px);
  z-index: 6;
  border-color: rgba(0, 114, 255, 0.30);
  box-shadow:
    0 30px 60px -22px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(0, 114, 255, 0.15);
}
.cma-svccard:hover::before { transform: scale(1.06); }
.cma-svccard:hover::after {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.10) 30%,
    rgba(15, 23, 42, 0.60) 65%,
    rgba(15, 23, 42, 0.90) 100%);
}

.cma-svccard__edge {
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cmh-cyan-2), rgba(34, 211, 238, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.cma-svccard:hover .cma-svccard__edge { opacity: 1; }

.cma-svccard__num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  transition: color 0.45s ease, transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.cma-svccard:hover .cma-svccard__num {
  color: var(--cmh-cyan-2);
  transform: scale(1.10) translate(-2px, 2px);
}

.cma-svccard__icon {
  position: absolute;
  top: 22px; left: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.55);
  z-index: 2;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease;
}
.cma-svccard:hover .cma-svccard__icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 16px 32px -8px rgba(34, 211, 238, 0.65);
}

.cma-svccard__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.cma-svccard:hover .cma-svccard__title {
  transform: translateY(-4px);
}

.cma-svccard__body {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.6s cubic-bezier(.2,.7,.2,1),
    opacity 0.45s ease 0.05s,
    transform 0.5s cubic-bezier(.2,.7,.2,1) 0.05s,
    margin-top 0.5s ease;
}
.cma-svccard:hover .cma-svccard__body {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .cma-svc__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 720px) {
  .cma-svc { padding: 70px 5vw 70px; }
  .cma-svc__grid { grid-template-columns: 1fr; gap: 14px; }
  .cma-svccard__num { font-size: 3rem; }
}

/* ============================================================
   CTA — "Shape Your Digital Future Today" (.cta-dark-*)
   Dark premium card · 3-review auto-cycling testimonial slider
   (port of web-app cta-dark, --cmh-* vars)
   ============================================================ */
.cta-dark {
  position: relative;
  padding: clamp(40px, 4vw, 70px) 6vw;
  font-family: var(--cmh-font);
  background: #050810;
  overflow: hidden;
}
.cta-dark__card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, #131826 0%, #0d1322 100%);
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 50px -28px rgba(0, 0, 0, 0.55);
}
.cta-dark__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-dark__glow {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 320px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 114, 255, 0.55) 0%, rgba(34, 211, 238, 0.35) 40%, rgba(99, 102, 241, 0.20) 65%, transparent 80%);
  filter: blur(70px);
  border-radius: 50%;
}

.cta-dark__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
}

.cta-dark__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-dark__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.cta-dark__sub {
  margin: 0;
  max-width: 380px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.cta-dark__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cta-dark__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.005em;
  line-height: 1.2;
  transition: transform 0.25s ease, background 0.25s ease, color 0.2s ease, box-shadow 0.3s ease, border-color 0.25s ease;
  border: 1px solid transparent;
}
.cta-dark__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.cta-dark__btn:hover svg { transform: translateX(3px); }
.cta-dark__btn i {
  font-size: 0.95rem;
  line-height: 1;
}
.cta-dark__btn--demo {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}
.cta-dark__btn--demo:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
  color: #ffffff;
  transform: translateY(-1px);
}
.cta-dark__btn--demo i { color: #25D366; }
.cta-dark__btn--signup {
  background: #ffffff;
  color: #0d1626;
  box-shadow: 0 6px 14px -8px rgba(255, 255, 255, 0.35);
}
.cta-dark__btn--signup:hover {
  background: #f1f5fb;
  color: #0d1626;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(255, 255, 255, 0.45);
}

.cta-dark__slider {
  position: relative;
  display: grid;
}
.cta-dark__slider:hover .cta-dark__quote,
.cta-dark__slider:hover .cta-dark__dot::after {
  animation-play-state: paused;
}
.cta-dark__quote {
  grid-area: 1 / 1;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 11px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  animation: cta-dark-quote-cycle 18s cubic-bezier(.4,0,.2,1) infinite;
}
.cta-dark__quote:nth-child(1) { animation-delay: 0s; }
.cta-dark__quote:nth-child(2) { animation-delay: 6s; }
.cta-dark__quote:nth-child(3) { animation-delay: 12s; }

@keyframes cta-dark-quote-cycle {
  0%   { opacity: 0; visibility: hidden; transform: translateY(8px); }
  3%   { opacity: 1; visibility: visible; transform: translateY(0); }
  30%  { opacity: 1; visibility: visible; transform: translateY(0); }
  35%  { opacity: 0; visibility: hidden; transform: translateY(-8px); }
  100% { opacity: 0; visibility: hidden; transform: translateY(8px); }
}

.cta-dark__dots {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
}
.cta-dark__dot {
  position: relative;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.cta-dark__dot::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  transform: scaleX(0);
  transform-origin: left;
  animation: cta-dark-dot-fill 18s linear infinite;
}
.cta-dark__dot:nth-child(1)::after { animation-delay: 0s; }
.cta-dark__dot:nth-child(2)::after { animation-delay: 6s; }
.cta-dark__dot:nth-child(3)::after { animation-delay: 12s; }

@keyframes cta-dark-dot-fill {
  0%   { transform: scaleX(0); }
  33%  { transform: scaleX(1); }
  34%, 100% { transform: scaleX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-dark__quote,
  .cta-dark__dot::after { animation: none; }
  .cta-dark__quote { opacity: 1; visibility: visible; transform: none; }
  .cta-dark__quote:nth-child(2),
  .cta-dark__quote:nth-child(3) { display: none; }
}
.cta-dark__stars {
  display: inline-flex;
  gap: 2px;
}
.cta-dark__stars svg {
  width: 15px;
  height: 15px;
  fill: #f5b400;
}
.cta-dark__quote-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}
.cta-dark__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}
.cta-dark__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-dark__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-dark__author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.cta-dark__author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}
.cta-dark__author-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

@media (max-width: 880px) {
  .cta-dark__inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-dark__title { font-size: clamp(1.6rem, 6vw, 2.1rem); }
}
@media (max-width: 540px) {
  .cta-dark__card { padding: 30px 22px; border-radius: 22px; }
  .cta-dark__quote { padding: 20px; }
  .cta-dark__btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION 7 — Security Features of Mobile Application Development
   (literal copy-paste of OG six-card-hover layout)
   ============================================================ */
.six-card-hover {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 50px 0px;
}

.six-card-hover-heading p {
    width: 85%;
    padding-bottom: 20px;
    margin: auto;
    padding-top: 20px;
}

.six-card-hover h2 {
    font-size: 40px !important;
    text-align: center;
}

.six-card-hover h2 span {
    color: transparent;
    background: linear-gradient(to right, #0072FF, #0D47A1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cards-hover-effect {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    gap: 20px;
    padding: 20px 60px;
    align-items: center;
}

.plain-card {
    width: 400px;
    min-height: 100%;
    border-radius: 12px;
    max-width: 100%;
    margin: auto;
    padding: 10px;
    text-align: center;
    background-color: white;
    box-shadow: 0 0px 11px 0px rgba(0, 115, 255, 0.639);
    position: relative;
    transition: all 0.4s ease;
}

.plain-card img {
    width: 80px;
    height: 80px;
}

.plain-card h3 {
    color: #0072FF;
    font-weight: 600;
    font-size: 22px;
    padding: 10px 0px;
}

.plain-card p {
    padding: 0px;
}

.left-pattern {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.right-pattern {
    position: absolute;
    bottom: 6px;
    right: 1px;
    z-index: -2;
}

.hover-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0072FF;
    z-index: -1;
    transition: transform 0.4s ease-in-out;
}

.plain-card:hover .hover-card {
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.blur-circle {
    background-color: #0072FF;
    width: 100px;
    height: 100px;
    filter: blur(60px);
    position: absolute;
    bottom: 80px;
    z-index: -1;
}

.blur-circle2 {
    background-color: #0072FF;
    width: 100px;
    height: 100px;
    filter: blur(60px);
    position: absolute;
    top: 0px;
    z-index: -1;
    right: 30px;
}

@media (max-width: 992px) {
    .left-pattern { display: none; }
    .right-pattern { display: none; }
}

@media (max-width: 786px) {
    .six-card-hover h2 {
        font-size: 30px !important;
        padding-inline: 20px;
    }
    .six-card-hover .six-card-hover-heading p {
        padding-inline: 20px;
        padding-block: 10px;
    }
    .six-card-hover { padding: 20px 0px; }
    .plain-card img { width: 50px; height: 50px; }
    .six-card-hover-heading p {
        padding-top: 0px;
        width: 100%;
    }
    .plain-card { width: 100%; height: auto; }
}

@media (max-width: 486px) {
    .six-card-hover h2 { font-size: 24px !important; }
    .plain-card h3 { font-size: 20px !important; }
    .plain-card img { width: 40px; height: 40px; }
    .cards-hover-effect {
        grid-template-columns: auto;
        gap: 25px;
        padding: 20px;
    }
}

/* ============================================================
   SECTION 8 — Add-on Features (.cma-addon-*)
   Concept layout: phone mockup centerpiece + 3 features each side + connectors
   ============================================================ */
.cma-addon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 7vw, 100px) 6vw;
  font-family: var(--cmh-font);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 60%, #eaf2ff 100%);
}
.cma-addon__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-addon__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cma-addon__blob--a {
  top: -180px; left: 8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.20) 0%, transparent 70%);
}
.cma-addon__blob--b {
  bottom: -200px; right: 8%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.20) 0%, transparent 70%);
}
.cma-addon__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0, 114, 255, 0.18) 1.2px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
}

.cma-addon__inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.cma-addon__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}
.cma-addon__title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-addon__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-addon__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--cmh-ink-2);
}

/* ---------- Stage: 3 columns (left features | phone | right features) ---------- */
.cma-addon__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
}

/* ---------- Feature columns ---------- */
.cma-addon__col {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cma-addon__feat {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 114, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px -16px rgba(8, 32, 86, 0.20);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.cma-addon__col--left .cma-addon__feat { text-align: right; }
.cma-addon__col--right .cma-addon__feat { text-align: left; }

.cma-addon__feat:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 114, 255, 0.40);
  box-shadow: 0 18px 36px -16px rgba(0, 114, 255, 0.32);
}
.cma-addon__col--left .cma-addon__feat:hover { transform: translate(-4px, -3px); }
.cma-addon__col--right .cma-addon__feat:hover { transform: translate(4px, -3px); }

/* connector dot + line that extends from feature toward phone */
.cma-addon__feat::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 0 12px rgba(34, 211, 238, 0.55);
  transform: translateY(-50%);
  z-index: 2;
}
.cma-addon__feat::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 114, 255, 0.45) 0%, rgba(34, 211, 238, 0) 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cma-addon__col--left .cma-addon__feat::before { right: -9px; }
.cma-addon__col--left .cma-addon__feat::after {
  right: -38px;
  width: 30px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0) 0%, rgba(0, 114, 255, 0.45) 100%);
}
.cma-addon__col--right .cma-addon__feat::before { left: -9px; }
.cma-addon__col--right .cma-addon__feat::after {
  left: -38px;
  width: 30px;
  background: linear-gradient(90deg, rgba(0, 114, 255, 0.45) 0%, rgba(34, 211, 238, 0) 100%);
}

/* feature icon orb */
.cma-addon__feat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cmh-cyan-2) 0%, var(--cmh-blue-1) 100%);
  box-shadow: 0 10px 22px -8px rgba(0, 114, 255, 0.45);
  border: 2px solid #ffffff;
}
.cma-addon__feat-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cma-addon__feat-text { flex: 1; min-width: 0; }
.cma-addon__feat h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: var(--cmh-blue-2);
}
.cma-addon__feat p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--cmh-ink-2);
}

/* ---------- Phone centerpiece — iPhone 16 style ---------- */
.cma-addon__phone {
  position: relative;
  width: 280px;
  filter: drop-shadow(0 50px 60px rgba(8, 32, 86, 0.32)) drop-shadow(0 18px 28px rgba(8, 32, 86, 0.18));
}
.cma-addon__phone-glow {
  position: absolute; inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.42) 0%, rgba(0, 114, 255, 0.22) 40%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: cma-addon-glow 4.2s ease-in-out infinite alternate;
}
@keyframes cma-addon-glow {
  0%   { opacity: 0.7; transform: scale(0.95); }
  100% { opacity: 1;   transform: scale(1.06); }
}

.cma-addon__phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 580;
  border-radius: 44px;
  background:
    linear-gradient(180deg, #5a6478 0%, #2c3340 30%, #1c2230 65%, #2a3140 100%);
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.30),
    inset 0 -1px 1px rgba(0, 0, 0, 0.5);
}

.cma-addon__phone-side {
  position: absolute;
  background: linear-gradient(90deg, #232936 0%, #3c4456 50%, #232936 100%);
  border-radius: 1.5px;
  z-index: 2;
}
.cma-addon__phone-side--silent { left: -2px; top: 90px;  width: 3px; height: 28px; }
.cma-addon__phone-side--volup  { left: -2px; top: 130px; width: 3px; height: 44px; }
.cma-addon__phone-side--voldn  { left: -2px; top: 184px; width: 3px; height: 44px; }
.cma-addon__phone-side--power  { right: -2px; top: 145px; width: 3px; height: 64px; }

.cma-addon__phone-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 41px;
  overflow: hidden;
}

.cma-addon__phone-island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(40, 50, 70, 0.55);
}

.cma-addon__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 38px;
  overflow: hidden;
  padding: 12px 16px 0;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  color: #0f172a;
}

.cma-addon__ios-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 22px;
  padding: 0 6px;
}
.cma-addon__ios-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.cma-addon__ios-sysicons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0f172a;
}
.cma-addon__ios-sysicons svg { width: 11px; height: 11px; }
.cma-addon__ios-sysicons svg:last-child { width: 18px; height: 9px; }

.cma-addon__ios-head {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  margin-top: 14px;
  padding: 0 4px;
}
.cma-addon__ios-back, .cma-addon__ios-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  color: #0072FF;
}
.cma-addon__ios-back svg, .cma-addon__ios-action svg { width: 14px; height: 14px; }
.cma-addon__ios-h1 {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cma-addon__ios-hero {
  position: relative;
  margin: 14px 0 10px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, #0072FF 0%, #06b6d4 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 24px -10px rgba(0, 114, 255, 0.45);
}
.cma-addon__ios-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.cma-addon__ios-hero-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
}
.cma-addon__ios-hero-bg span:first-child {
  top: -30%; right: -10%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
}
.cma-addon__ios-hero-bg span:last-child {
  bottom: -30%; left: -10%;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.55) 0%, transparent 70%);
}
.cma-addon__ios-hero-chip {
  position: relative;
  display: inline-block;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.10em;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  margin-bottom: 8px;
}
.cma-addon__ios-hero-title {
  position: relative;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.cma-addon__ios-hero-sub {
  position: relative;
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.4;
  opacity: 0.90;
}
.cma-addon__ios-hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #ffffff;
  color: #0072FF;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.005em;
}
.cma-addon__ios-hero-cta svg { width: 11px; height: 11px; }

.cma-addon__ios-section-h {
  margin: 6px 4px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.cma-addon__ios-list {
  background: #f1f3f7;
  border-radius: 14px;
  padding: 4px 10px;
}
.cma-addon__ios-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cma-addon__ios-row:last-child { border-bottom: 0; }

.cma-addon__ios-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  color: #ffffff;
  flex-shrink: 0;
}
.cma-addon__ios-row-icon svg { width: 14px; height: 14px; }
.cma-addon__ios-row-icon--violet { background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); }
.cma-addon__ios-row-icon--green  { background: linear-gradient(135deg, #34d399 0%, #10b981 100%); }
.cma-addon__ios-row-icon--orange { background: linear-gradient(135deg, #fb923c 0%, #f97316 100%); }

.cma-addon__ios-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cma-addon__ios-row-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}
.cma-addon__ios-row-sub {
  font-size: 9.5px;
  color: #6b7280;
  margin-top: 1px;
}

.cma-addon__ios-toggle {
  position: relative;
  width: 30px; height: 18px;
  border-radius: 999px;
  background: #e5e7eb;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.cma-addon__ios-toggle::after {
  content: "";
  position: absolute;
  top: 1.5px; left: 1.5px;
  width: 15px; height: 15px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}
.cma-addon__ios-toggle--on { background: #34c759; }
.cma-addon__ios-toggle--on::after { transform: translateX(12px); }

.cma-addon__ios-home {
  margin: auto auto 6px;
  width: 100px; height: 4px;
  border-radius: 999px;
  background: #0f172a;
  opacity: 0.85;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cma-addon__phone { width: 240px; }
  .cma-addon__feat h3 { font-size: 0.98rem; }
  .cma-addon__feat p { font-size: 0.82rem; }
  .cma-addon__feat-icon { width: 42px; height: 42px; }
  .cma-addon__feat-icon img { width: 24px; height: 24px; }
}
@media (max-width: 880px) {
  .cma-addon__stage {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
  .cma-addon__phone { order: -1; width: 220px; }
  .cma-addon__col {
    width: 100%;
    max-width: 520px;
  }
  .cma-addon__col--left .cma-addon__feat { text-align: left; flex-direction: row-reverse; }
  .cma-addon__feat::before, .cma-addon__feat::after { display: none; }
  .cma-addon__col--left .cma-addon__feat:hover,
  .cma-addon__col--right .cma-addon__feat:hover { transform: translateY(-3px); }
}
@media (max-width: 540px) {
  .cma-addon__phone { width: 200px; }
  .cma-addon__feat { padding: 14px 16px; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-addon__phone-glow,
  .cma-addon__phone-pulse { animation: none; }
  .cma-addon__feat { transition: none; }
  .cma-addon__feat:hover { transform: none; }
}

/* ============================================================
   SECTION 9 — Industries We Serve (.cma-ind-*)
   8 brand-aligned tiles · clean white surface · blue/cyan accents
   (port of web-app cwa-ind, no eyebrow, brand-only)
   ============================================================ */
.cma-ind {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 80px) 6vw;
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 211, 238, 0.05) 0%, rgba(34, 211, 238, 0) 60%),
    #ffffff;
}

.cma-ind__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-ind__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cma-ind__blob--a {
  top: -160px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-ind__blob--b {
  bottom: -180px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.10) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-ind__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 114, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 114, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
}

.cma-ind__inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.cma-ind__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 44px;
}
.cma-ind__title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-ind__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-ind__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
}

.cma-ind__grid-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cma-ind__tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px 28px;
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.cma-ind__tile::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 65%);
  filter: blur(28px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cma-ind__tile:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 114, 255, 0.45);
  box-shadow: 0 22px 48px -18px rgba(0, 114, 255, 0.30);
}
.cma-ind__tile:hover::before { opacity: 1; }

.cma-ind__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18) 0%, rgba(0, 114, 255, 0.18) 100%);
  border: 1px solid rgba(0, 114, 255, 0.18);
  color: var(--cmh-blue-1);
  font-size: 1.4rem;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
              background 0.4s ease,
              color 0.4s ease;
}
.cma-ind__tile:hover .cma-ind__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--cmh-cyan-2) 0%, var(--cmh-blue-1) 100%);
  color: #ffffff;
}

.cma-ind__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.30;
  color: var(--cmh-ink);
}

.cma-ind__edge {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cmh-blue-1), var(--cmh-cyan-1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cma-ind__tile:hover .cma-ind__edge { opacity: 1; }

@media (max-width: 1100px) {
  .cma-ind__grid-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .cma-ind__grid-tiles { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cma-ind__tile { padding: 26px 14px 24px; gap: 12px; }
  .cma-ind__icon { width: 56px; height: 56px; font-size: 1.25rem; border-radius: 14px; }
  .cma-ind__name { font-size: 0.92rem; }
  .cma-ind__head { margin-bottom: 32px; }
}
@media (max-width: 400px) {
  .cma-ind__icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .cma-ind__name { font-size: 0.84rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-ind__tile,
  .cma-ind__icon { transition: none; }
  .cma-ind__tile:hover { transform: none; }
  .cma-ind__tile:hover .cma-ind__icon { transform: none; }
}

/* ============================================================
   SECTION 11 — Craitrix Practices to Requirement Analysis (.cma-flow-*)
   Alternating zig-zag rows · image + 3 phase items · animated.
   ============================================================ */
.cma-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 6vw;
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(34, 211, 238, 0.10) 0%, rgba(34, 211, 238, 0) 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 114, 255, 0.06) 0%, rgba(0, 114, 255, 0) 65%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf3fc 100%);
}

.cma-flow__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-flow__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cma-flow__blob--a {
  top: 20%; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-flow__blob--b {
  bottom: 10%; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.14) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-flow__weave {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0, 114, 255, 0.04) 1.4px, transparent 1.6px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
}

.cma-flow__inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.cma-flow__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.cma-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.60);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cma-flow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 12px rgba(0, 114, 255, 0.55);
  animation: cma-flow-pulse 1.6s ease-in-out infinite;
}
@keyframes cma-flow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 114, 255, 0); }
}
.cma-flow__title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-flow__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-flow__lede {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
}

/* ---------- Rows ---------- */
.cma-flow__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.cma-flow__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.cma-flow__row--reverse {
  /* image on right, phases on left — visual zig-zag */
}

/* Connector between rows — animated dashed vertical line down the middle */
.cma-flow__row::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(-1 * clamp(48px, 6vw, 80px));
  transform: translateX(-50%);
  width: 2px;
  height: clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, var(--cmh-blue-1), transparent 90%);
  background-size: 100% 24px;
  opacity: 0.45;
  animation: cma-flow-drip 3s linear infinite;
}
.cma-flow__row:last-child::after { display: none; }
@keyframes cma-flow-drip {
  0%   { background-position: 0 -24px; }
  100% { background-position: 0 24px; }
}

/* ---------- Media (image side) ---------- */
.cma-flow__media {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(8, 32, 86, 0.25);
  animation: cma-flow-float 6s ease-in-out infinite;
}
@keyframes cma-flow-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.cma-flow__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cma-flow__media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.10) 0%, rgba(0, 114, 255, 0.10) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.cma-flow__media-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 6px 12px 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--cmh-blue-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.20);
}
.cma-flow__media-tag::before {
  content: "●";
  margin-right: 6px;
  color: var(--cmh-cyan-2);
  font-size: 0.6rem;
}

/* ---------- Phase items ---------- */
.cma-flow__phases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cma-flow__phase {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  column-gap: 18px;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid rgba(0, 114, 255, 0.12);
  /* slide-in animation — staggered via inline --d delay */
  opacity: 0;
  transform: translateY(16px);
  animation: cma-flow-rise 0.7s cubic-bezier(.2,.7,.2,1) var(--d, 0s) forwards;
}
.cma-flow__phase:last-child { border-bottom: 0; }
@keyframes cma-flow-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Big number on the left — outlined display style */
.cma-flow__num {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(0, 114, 255, 0.55);
          text-stroke: 1.4px rgba(0, 114, 255, 0.55);
  transition: color 0.4s ease,
              -webkit-text-stroke-color 0.4s ease,
              transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.cma-flow__phase:hover .cma-flow__num {
  color: transparent;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

/* short hairline rule below the number that grows on hover */
.cma-flow__line {
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cmh-blue-1), var(--cmh-cyan-1));
  margin-top: 10px;
  transition: width 0.5s cubic-bezier(.2,.7,.2,1);
}
.cma-flow__phase:hover .cma-flow__line { width: 56px; }

.cma-flow__name {
  margin: 0 0 6px;
  grid-column: 2;
  font-family: 'Inter', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.30;
  color: var(--cmh-ink);
  transition: color 0.3s ease;
}
.cma-flow__phase:hover .cma-flow__name { color: var(--cmh-blue-2); }

.cma-flow__copy {
  margin: 0;
  grid-column: 2;
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--cmh-ink-2);
  font-weight: 400;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cma-flow__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cma-flow__row--reverse > .cma-flow__media { order: -1; }
  .cma-flow__row--reverse > .cma-flow__phases { order: 1; }
  .cma-flow__row > .cma-flow__media { order: -1; }
  .cma-flow__row > .cma-flow__phases { order: 1; }
  .cma-flow__media img { aspect-ratio: 16 / 10; }
  .cma-flow__row::after {
    bottom: calc(-1 * clamp(32px, 5vw, 56px));
    height: clamp(32px, 5vw, 56px);
  }
}
@media (max-width: 540px) {
  .cma-flow__phase { grid-template-columns: 50px 1fr; column-gap: 14px; }
  .cma-flow__num { font-size: 2rem; }
  .cma-flow__name { font-size: 1rem; }
  .cma-flow__phases { gap: 18px; }
  .cma-flow__head { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .cma-flow__media,
  .cma-flow__row::after,
  .cma-flow__dot { animation: none; }
  .cma-flow__phase {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cma-flow__num,
  .cma-flow__line,
  .cma-flow__name { transition: none; }
  .cma-flow__phase:hover .cma-flow__num { transform: none; }
  .cma-flow__phase:hover .cma-flow__line { width: 24px; }
}


/* ============================================================
   SECTION 14 — Tech Stack (verbatim from live craitrix)
   Hub-and-spokes laptop view + responsive mobile view + connectors
   ============================================================ */
.techstack-background {
  background: linear-gradient(135deg, #f7f9ff 0%, #e8eeff 100%);
  width: 100%;
  padding: 50px 0;
}
.reponsive-techstack { display: none; }

  .stage {
    min-height: 100vh;
    padding: 28px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .frame {
    width: 99%;
    max-width: 100%;
    
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
  }

.icon-card.add-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px #0073ff69;
      border:2px solid #0056cc;

}

.icon-card.add-icon span {
 opacity: 1;
}



  .layout {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
  }

  

  /* LEFT COLUMN */
  .left {
    display: flex;
    width: 45%;
    flex-direction: column;
    gap: 20px;
  }

  .node {
    width: 350px;
    position: relative;
    z-index: 10;
  }


  .inner {
    background: #fff;
    margin: 6px;
    border-radius: 10px;
    border: 3px solid #eaf4ff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: center;
        transition: 0.3s linear;
        justify-content: center;

  }
  .inner:hover{
     
    background: #0072FF;
    color: #fff;
    border-color: #0056cc;
    transform: scale(1.01);
  }
  
  .icon img{
    display: none;
  }

  .icon {
    width: 0px; 
    display: none;
    border-radius: 10px;
    background: #f7fbff;
    border: 1px solid rgba(14,74,173,0.12);
    display: flex;
    justify-content: center; 
    align-items: center;
  }

  .icon img { width: 26px; height: 26px; }

  .label {
    font-weight: 700;
    color: #0b3b7a;
    text-align: center;
    transition: 0.3s linear;
  }
.inner:hover .label{
    color: white;
}
  /* CENTER */
 
.centerlogo{
    width: 200px;
 display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
    align-items: center;
}
.centerlogo img{
    width: 80%;
    height: 80%;
}
  .circle {
    width: 120px; 
    height: 120px;
    background-color: white;
    border-radius: 999px;
    display: flex;

    justify-content: center;
    align-items: center;
    border: 6px double transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(#0072ff, #00d4ff, #0072ff, #00d4ff) border-box;
  }


  /* RIGHT ICON GRID */
  .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .icons {
    display: flex;
    flex-direction: column;
    gap: 35px 50px;
  }

  .icons-group {
    display: flex;
    gap: 16px;
  }

  .icon-card {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(10,60,120,0.06);
    box-shadow: 0 10px 18px rgba(10,60,120,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.3s linear;

  }

  /* TOOLTIP — small floating chip ABOVE the icon, wraps long names to 2 lines */
.icon-card span {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translate(-50%, 4px);
    background: #ffffff;
    color: #0072FF;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 114, 255, 0.22);
    box-shadow: 0 6px 14px -4px rgba(0, 114, 255, 0.20);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-align: center;
    /* allow wrapping to 2 lines instead of nowrap, so long names don't bleed sideways */
    white-space: normal;
    word-break: keep-all;
    max-width: 120px;
    width: max-content;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.25s ease,
                transform 0.3s cubic-bezier(.2,.7,.2,1);
}

.icon-card:hover span {
    opacity: 1;
    transform: translate(-50%, 0);
}
.icon-card:hover{
    border: 1px solid #0072FF;
    transform: translateY(-10px);
        box-shadow: 0 10px 18px #0073ff1e;

}

  .icon-card img {
    width: 40px;
    height: 40px;
  }

  /* SVG lines */
  #connectors {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
  }
.Tech-heading {
    text-align: center;
}
.hover-line{
    color: #004499;
    background-color: #004499;
}

.Tech-heading h2 {
    font-size: 40px !important;
    color: #0072FF;
    text-align: center;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.reponsive-techstack{
    display: none;
}
@media(max-width:1150px){
    .icons-group{
        gap: 10px;
    }
    .icon-card{
        width: 50px;
    height: 50px;
    }
     .icon-card img {
    width: 30px;
    height: 30px;
  }

}

/* RESPONSIVE */
@media (max-width: 996px) {
    .techstack-background{
        display: none;
    }
    .reponsive-techstack{
     background: linear-gradient(135deg, #f7f9ff 0%, #e8eeff 100%);
     width: 100%;
     padding: 50px 0px;
     display: block;
}
     
    .map-wrapper1 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }
    .center-logo{
        display: none;
    }
    .infoPanel{
        display: none;
    }

    .connection-lines {
        display: none;
    }
.left-section-reponsive{
     display: flex;
        gap: 30px;
        justify-content: flex-start; /* better for horizontal scroll */
        overflow-x: auto;
        overflow-y: hidden;
        z-index: 2;
}

   .right-section-reponsive{
     display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;

} 
    
.left-box-reponsive {
    width: auto;
    background: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    border: 2px solid #cfe3ff;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,114,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
 padding:0px 40px;
    text-align: center;
    
}

.left-box-reponsive.activetech1{
    background: #0072FF;
    color: #fff;
}   
.icon-group-reponsive{
    display: none;
}

.icon-group-reponsive.highlighted1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
        filter: drop-shadow(0 0 10px rgba(0,114,255,0.3));

}

.icon-group-.highlighted1 {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0,114,255,0.3));
}
.icon-group-reponsive.highlighted1 .tech-icon-reponsive{
        animation: icon-group 0.5s linear;

    }
    @keyframes icon-group{
        0%{
            transform: rotate(90deg);
        }
        50%{
                        transform: rotate(180deg);

        }
        100%{
                                    transform: rotate(360deg);


        }
    }
@media (max-width: 996px) {
    .left-section-reponsive {
        display: flex;
        gap: 20px;
        padding: 10px 15px;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }

  .left-section-reponsive::-webkit-scrollbar {
    width: 50px;
    height: 5px;   /* bottom scrollbar thickness */
}

.left-section-reponsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.left-section-reponsive::-webkit-scrollbar-thumb {
    background: #0072ff;
    border-radius: 10px;
}

    .left-box-reponsive {
        flex: 0 0 auto;
        padding: 10px 18px;
        border-radius: 15px;
        background: #f2f4f7;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s ease;
    }
}

/* ICON BOXES */
.tech-icon-reponsive {
    width: 70px;
    height: 70px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #dce3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tech-icon-reponsive:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: #0072FF;
}

.tech-icon-reponsive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.tech-icon-reponsive.highlighted {
     transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: #0072FF;
}

/* TOOLTIP */
.tech-icon-reponsive .tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.tech-icon-reponsive:hover .tooltip {
    opacity: 1;
}


    /* .icon-group {
        justify-content: center;
        display: none;
    }
    .left-box.active[data-category="frontend"]{
 background: #0072FF;
    color: #fff;
    border-color: #0056cc;
    }
    .icon-group.highlighted[data-category="frontend"] {
        display: flex;
    } */
   
    
}
@media(max-width:786px){
    .Tech-heading h2{
        font-size: 30px !important;
        padding-inline: 20px;
    }
    .left-section-reponsive{
        width: 100%;
    }
    .reponsive-techstack{
        padding-block: 20px;
    }
        .tech-icon-reponsive{
            width:60px;
            height:60px;
        }
}
@media(max-width:768px){
        
.left-box-reponsive {
  font-size: 16px;
      padding:  15px;
      display: flex;
      align-items: center;
      justify-content: center;

}
.left-section-reponsive {
    gap:15px;
}

}
@media(max-width:480px){
  
    .tech-icon-reponsive{
            width:50px;
            height:50px;
        }

    .Tech-heading h2{
        font-size: 24px !important;
                padding: 10px;

    }
}
/* ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}   


/* ============================================================
   SECTION 13 — Why Choose Craitrix (.cma-choose-*)
   Two-column · unique paragraph treatment with spine + chips + quote
   ============================================================ */
.cma-choose {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 80px) 6vw;
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0, 114, 255, 0.06) 0%, rgba(0, 114, 255, 0) 65%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.cma-choose__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-choose__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cma-choose__blob--a {
  top: 10%; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.10) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-choose__blob--b {
  bottom: -160px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 70%);
}

.cma-choose__inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ---------- Copy column (LEFT) ---------- */
.cma-choose__copy { max-width: 700px; }

.cma-choose__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(0, 114, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 18px;
}
.cma-choose__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 12px rgba(0, 114, 255, 0.55);
}

.cma-choose__title {
  margin: 0 0 26px;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-choose__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Lead block — vertical cyan spine on the left + display-weight opener */
.cma-choose__lead {
  position: relative;
  padding: 4px 0 4px 22px;
  margin-bottom: 22px;
}
.cma-choose__lead::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cmh-cyan-2), var(--cmh-blue-1), var(--cmh-blue-2));
}
.cma-choose__lead-text {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.72;
  color: var(--cmh-ink-2);
}
.cma-choose__opener {
  font-weight: 800;
  color: var(--cmh-ink);
  background: linear-gradient(95deg, var(--cmh-blue-1), var(--cmh-blue-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Body paragraphs */
.cma-choose__body {
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--cmh-ink-2);
}

/* Inline industry chips — replace plain commas with on-brand pills */
.cma-choose__chip {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 3px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--cmh-blue-2);
  background: rgba(0, 114, 255, 0.08);
  border: 1px solid rgba(0, 114, 255, 0.25);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.cma-choose__chip:hover {
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
}

/* Pull-quote — magazine treatment for the strongest line */
.cma-choose__quote {
  position: relative;
  margin: 26px 0;
  padding: 22px 26px 22px 32px;
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(0, 114, 255, 0.04), rgba(34, 211, 238, 0.04));
  border-radius: 4px 16px 16px 4px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  color: var(--cmh-ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-left: 3px solid var(--cmh-blue-1);
}
.cma-choose__quote-mark {
  position: absolute;
  top: -4px;
  left: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: normal;
  pointer-events: none;
}

/* Trust strip — checkmark inline list */
.cma-choose__strip {
  list-style: none;
  margin: 26px 0 0;
  padding: 18px 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px dashed rgba(0, 114, 255, 0.22);
}
.cma-choose__strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--cmh-ink);
}
.cma-choose__check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.20), rgba(0, 114, 255, 0.20));
  border: 1px solid rgba(0, 114, 255, 0.40);
  flex-shrink: 0;
}
.cma-choose__check::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 2px solid var(--cmh-blue-1);
  border-bottom: 2px solid var(--cmh-blue-1);
  transform: rotate(-45deg) translate(1px, -1px);
}

/* ---------- Media column (RIGHT) ---------- */
.cma-choose__media {
  position: relative;
}
.cma-choose__media img {
  width: 100%;
  height: auto;
  display: block;
  /* gentle float — same family as other floating media on the page */
  animation: cma-choose-float 6s ease-in-out infinite;
}
@keyframes cma-choose-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cma-choose__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cma-choose__copy { max-width: none; order: 2; }
  .cma-choose__media { order: 1; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .cma-choose__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .cma-choose__lead { padding-left: 18px; }
  .cma-choose__quote { padding: 18px 20px 18px 26px; font-size: 1rem; }
  .cma-choose__quote-mark { font-size: 2.6rem; left: 12px; }
  .cma-choose__chip { font-size: 0.76rem; padding: 1px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .cma-choose__media img { animation: none; }
  .cma-choose__chip { transition: none; }
  .cma-choose__chip:hover { transform: none; }
}


/* ============================================================
   SECTION 15 — FAQ (.cma-faq-*)
   Numbered accordion · sliding spine · radio-driven (CSS-only)
   ============================================================ */
.cma-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 6vw;
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 211, 238, 0.08) 0%, rgba(34, 211, 238, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.cma-faq__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-faq__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cma-faq__blob--a {
  top: 10%; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.08) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-faq__blob--b {
  bottom: -120px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, rgba(34, 211, 238, 0) 70%);
}

.cma-faq__inner {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.cma-faq__head {
  text-align: center;
  margin-bottom: 48px;
}
.cma-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(0, 114, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 18px;
}
.cma-faq__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 12px rgba(0, 114, 255, 0.55);
}
.cma-faq__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-faq__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-faq__lede {
  margin: 0;
  font-size: 0.96rem;
  color: var(--cmh-muted);
  line-height: 1.6;
}

/* ---------- List wrapper ---------- */
.cma-faq__list {
  position: relative;
  display: grid;
  gap: 0;
}

/* Each Q&A item — native <details> for proper open/close, no JS, no scroll-jump */
.cma-faq__item {
  position: relative;
  border-bottom: 1px solid rgba(0, 114, 255, 0.14);
  transition: background 0.4s ease;
}
.cma-faq__item:first-of-type { border-top: 1px solid rgba(0, 114, 255, 0.14); }

/* Vertical accent bar on the left — slides in when open */
.cma-faq__item::before {
  content: "";
  position: absolute;
  top: 14px; bottom: 14px; left: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cmh-cyan-2), var(--cmh-blue-1), var(--cmh-blue-2));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}

/* Question row — <summary> styled */
.cma-faq__q {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.3s ease, padding-left 0.4s cubic-bezier(.2,.7,.2,1);
}
.cma-faq__q::-webkit-details-marker { display: none; }
.cma-faq__q::marker { content: ""; }
.cma-faq__q:hover { background: rgba(0, 114, 255, 0.03); }

/* Question text */
.cma-faq__text {
  flex: 1;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.40;
  color: var(--cmh-ink);
  transition: color 0.3s ease;
}

/* Custom +/− toggle caret on the right */
.cma-faq__caret {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0, 114, 255, 0.08);
  border: 1px solid rgba(0, 114, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.cma-faq__caret::before,
.cma-faq__caret::after {
  content: "";
  position: absolute;
  background: var(--cmh-blue-1);
  border-radius: 1px;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
              opacity 0.3s ease,
              background 0.3s ease;
}
.cma-faq__caret::before { width: 12px; height: 2px; }
.cma-faq__caret::after  { width: 2px; height: 12px; }

/* Answer panel */
.cma-faq__a {
  padding: 0 22px 22px 22px;
  animation: cma-faq-reveal 0.35s cubic-bezier(.2,.7,.2,1);
}
.cma-faq__a > p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--cmh-ink-2);
}
@keyframes cma-faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Open state (native [open] attribute on <details>) ----- */
.cma-faq__item[open] {
  background: rgba(0, 114, 255, 0.04);
}
.cma-faq__item[open]::before {
  transform: scaleY(1);
}
.cma-faq__item[open] .cma-faq__q {
  padding-left: 30px;
}
.cma-faq__item[open] .cma-faq__text {
  color: var(--cmh-blue-2);
}
.cma-faq__item[open] .cma-faq__caret {
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  border-color: transparent;
  transform: rotate(180deg);
}
.cma-faq__item[open] .cma-faq__caret::before,
.cma-faq__item[open] .cma-faq__caret::after {
  background: #ffffff;
}
.cma-faq__item[open] .cma-faq__caret::after {
  transform: rotate(90deg);
  opacity: 0;
}
.cma-faq__item[open] .cma-faq__a {
  padding-left: 30px;
}

/* ---------- Bottom note ---------- */
.cma-faq__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 0;
  font-size: 0.92rem;
  color: var(--cmh-muted);
  font-weight: 500;
}
.cma-faq__note a {
  color: var(--cmh-blue-1);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}
.cma-faq__note a:hover { color: var(--cmh-blue-2); }
.cma-faq__note-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 114, 255, 0.45), transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .cma-faq__q { gap: 12px; padding: 16px 18px; }
  .cma-faq__text { font-size: 0.94rem; }
  .cma-faq__a { padding: 0 18px 18px 18px; font-size: 0.9rem; }
  .cma-faq__item[open] .cma-faq__q { padding-left: 24px; }
  .cma-faq__item[open] .cma-faq__a { padding-left: 24px; }
}
@media (max-width: 540px) {
  .cma-faq__title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .cma-faq__a { padding: 0 14px 16px 14px; }
  .cma-faq__item[open] .cma-faq__a { padding-left: 20px; }
  .cma-faq__note { flex-wrap: wrap; gap: 8px; font-size: 0.85rem; }
  .cma-faq__note-line { width: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .cma-faq__item,
  .cma-faq__item::before,
  .cma-faq__q,
  .cma-faq__text,
  .cma-faq__caret,
  .cma-faq__caret::before,
  .cma-faq__caret::after,
  .cma-faq__a { transition: none; animation: none; }
}


/* ============================================================
   SECTION 16 — Let's talk about your project (.cma-talk-*)
   2-col split: copy + trust signals on left · floating-label form right
   ============================================================ */
.cma-talk {
  position: relative;
  padding: clamp(56px, 6vw, 80px) 6vw clamp(64px, 7vw, 96px);
  font-family: var(--cmh-font);
  color: var(--cmh-ink);
  background: #ffffff;
}

.cma-talk__shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(34, 211, 238, 0.12) 0%, rgba(34, 211, 238, 0) 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(0, 114, 255, 0.10) 0%, rgba(0, 114, 255, 0) 65%),
    linear-gradient(160deg, #f8fbff 0%, #eaf2ff 100%);
  border: 1px solid rgba(0, 114, 255, 0.16);
  box-shadow: 0 40px 80px -30px rgba(8, 32, 86, 0.30);
}

.cma-talk__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cma-talk__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cma-talk__blob--a {
  top: -160px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.30) 0%, rgba(34, 211, 238, 0) 70%);
}
.cma-talk__blob--b {
  bottom: -180px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.30) 0%, rgba(0, 114, 255, 0) 70%);
}
.cma-talk__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 114, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 114, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.cma-talk__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 56px);
}

/* ---------- LEFT: copy + signals + channels ---------- */
.cma-talk__copy {
  display: flex;
  flex-direction: column;
}
.cma-talk__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cma-talk__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 12px rgba(0, 114, 255, 0.55);
}
.cma-talk__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--cmh-ink);
}
.cma-talk__title .cma-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-talk__lede {
  margin: 0 0 24px;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.66;
  color: var(--cmh-ink-2);
  max-width: 480px;
}

/* trust signals — 2x2 grid of small chips */
.cma-talk__signals {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cma-talk__signals li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--cmh-line);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.cma-talk__signals li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 255, 0.40);
  box-shadow: 0 14px 26px -10px rgba(0, 114, 255, 0.20);
}
.cma-talk__sig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.cma-talk__signals li > div { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.cma-talk__signals li strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cmh-ink);
  letter-spacing: -0.005em;
}
.cma-talk__signals li span {
  font-size: 0.74rem;
  color: var(--cmh-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* channel mini-buttons */
.cma-talk__channels {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 114, 255, 0.22);
}
.cma-talk__ch-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cmh-muted);
}
.cma-talk__ch-row { display: flex; gap: 10px; }
.cma-talk__ch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.cma-talk__ch--wa { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 22px -8px rgba(37, 211, 102, 0.55); }
.cma-talk__ch--tg { background: linear-gradient(135deg, #29B6F6, #0277BD); box-shadow: 0 10px 22px -8px rgba(2, 119, 189, 0.55); }
.cma-talk__ch--ms { background: linear-gradient(135deg, #6264A7, #4B4D93); box-shadow: 0 10px 22px -8px rgba(98, 100, 167, 0.55); }
.cma-talk__ch:hover { transform: translateY(-3px) scale(1.05); }

/* ---------- RIGHT: form ---------- */
.cma-talk__form {
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 30px 60px -22px rgba(8, 32, 86, 0.22);
  display: grid;
  gap: 16px;
  align-content: start;
}
.cma-talk__form-tag {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cmh-blue-1);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 114, 255, 0.08);
  margin-bottom: 4px;
  display: inline-block;
  width: max-content;
}

.cma-talk__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cma-talk__field { position: relative; }

/* phone field — intl-tel-input dropdown integration */
.cma-talk__field--phone .iti { width: 100%; display: block; }
.cma-talk__field--phone .iti__selected-flag {
  height: 100%;
  background: rgba(0, 114, 255, 0.06);
  border-right: 1px solid var(--cmh-line);
  border-radius: 12px 0 0 12px;
  padding: 0 12px;
}
.cma-talk__field--phone .iti--separate-dial-code .iti__selected-dial-code {
  font-family: var(--cmh-font);
  font-weight: 600;
  color: var(--cmh-ink);
  margin-left: 8px;
}
/* Phone field — placeholder-driven (no floating label, since intl-tel-input wraps the input) */
.cma-talk__field--phone .cma-talk__input--phone {
  padding: 18px 18px 18px 116px;
  text-align: center;
  line-height: 1.4;
}
.cma-talk__input.cma-talk__input--phone::placeholder {
  color: var(--cmh-muted);
  opacity: 1;
  font-weight: 500;
  letter-spacing: 0.005em;
}

/* Screen-reader-only label — kept for accessibility */
.cma-talk__sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.cma-talk__field--phone .iti__country-list {
  font-family: var(--cmh-font);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(8, 32, 86, 0.30);
  border: 1px solid var(--cmh-line);
}

/* Messenger / chat ID — combined select + input field */
.cma-talk__field--msg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cma-talk__msg-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  padding-left: 4px;
}
.cma-talk__msg-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) minmax(0, 1fr);
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 12px;
  /* overflow visible so the dropdown menu can extend below the row without clipping */
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cma-talk__msg-row:focus-within {
  border-color: var(--cmh-blue-1);
  box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.10);
}
/* Custom messenger dropdown — icons inside the menu (native <select> can't show those) */
.cma-dd {
  position: relative;
  border-right: 1px solid var(--cmh-line);
  background: rgba(37, 211, 102, 0.08);
  transition: background 0.3s ease;
  /* match parent's left rounded corners since overflow is now visible */
  border-radius: 12px 0 0 12px;
}
.cma-dd[data-platform="whatsapp"] { background: rgba(37, 211, 102, 0.08); }
.cma-dd[data-platform="telegram"] { background: rgba(2, 119, 189, 0.08); }
.cma-dd[data-platform="teams"]    { background: rgba(98, 100, 167, 0.08); }

/* Trigger button — looks like the closed select */
.cma-dd__trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 38px 12px 12px;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--cmh-ink);
  letter-spacing: 0.005em;
  position: relative;
  text-align: left;
}
.cma-dd__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 14px -4px rgba(37, 211, 102, 0.55);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.cma-dd[data-platform="whatsapp"] .cma-dd__icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 14px -4px rgba(37, 211, 102, 0.55);
}
.cma-dd[data-platform="telegram"] .cma-dd__icon {
  background: linear-gradient(135deg, #29B6F6, #0277BD);
  box-shadow: 0 6px 14px -4px rgba(2, 119, 189, 0.55);
}
.cma-dd[data-platform="teams"] .cma-dd__icon {
  background: linear-gradient(135deg, #6264A7, #4B4D93);
  box-shadow: 0 6px 14px -4px rgba(98, 100, 167, 0.55);
}
.cma-dd__lbl {
  flex: 1;
  font-weight: 700;
  color: var(--cmh-ink);
}
.cma-dd__caret {
  position: absolute;
  top: 50%; right: 14px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--cmh-blue-2);
  border-bottom: 2px solid var(--cmh-blue-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.cma-dd.is-open .cma-dd__caret {
  transform: translateY(-30%) rotate(225deg);
}

/* Menu — appears when open */
.cma-dd__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 14px;
  box-shadow: 0 22px 44px -12px rgba(8, 32, 86, 0.30);
  z-index: 30;
  display: grid;
  gap: 2px;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.cma-dd.is-open .cma-dd__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cma-dd__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--cmh-ink);
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
}
.cma-dd__opt:hover,
.cma-dd__opt:focus {
  background: rgba(0, 114, 255, 0.08);
  outline: 0;
}
.cma-dd__opt.is-active {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(0, 114, 255, 0.12));
  color: var(--cmh-blue-2);
  font-weight: 700;
}
.cma-dd__opt.is-active::after {
  content: "✓";
  margin-left: auto;
  color: var(--cmh-blue-1);
  font-weight: 800;
}

.cma-dd__opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 0.86rem;
  flex-shrink: 0;
}
.cma-dd__opt-icon--wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.cma-dd__opt-icon--tg { background: linear-gradient(135deg, #29B6F6, #0277BD); }
.cma-dd__opt-icon--ms { background: linear-gradient(135deg, #6264A7, #4B4D93); }
.cma-talk__input--handle {
  border: 0;
  /* match parent's right rounded corners since overflow is now visible */
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  font-size: 0.94rem;
  text-align: center;
}
.cma-talk__input--handle:focus {
  box-shadow: none;
  border: 0;
}
/* the global rule hides placeholders for floating-label inputs — restore visibility here.
   double-class boosts specificity above the global .cma-talk__input::placeholder rule. */
.cma-talk__input.cma-talk__input--handle::placeholder {
  color: var(--cmh-muted);
  opacity: 1;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.cma-talk__input {
  width: 100%;
  padding: 22px 14px 10px 14px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--cmh-ink);
  background: #ffffff;
  border: 1px solid var(--cmh-line);
  border-radius: 12px;
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.cma-talk__input::placeholder { color: transparent; }
.cma-talk__input:focus {
  border-color: var(--cmh-blue-1);
  box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.10);
}
.cma-talk__input--area {
  padding-top: 26px;
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}
.cma-talk__label {
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  color: var(--cmh-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  pointer-events: none;
  transition: top 0.2s, transform 0.2s, font-size 0.2s, color 0.2s;
}
.cma-talk__input--area + .cma-talk__label { top: 22px; transform: none; }
.cma-talk__input:focus + .cma-talk__label,
.cma-talk__input:not(:placeholder-shown) + .cma-talk__label {
  top: 8px;
  transform: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
}

.cma-talk__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.cma-talk__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--cmh-muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 1 1 auto;
  min-width: 200px;
}
.cma-talk__note i { color: var(--cmh-blue-1); font-size: 0.85rem; }
.cma-talk__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(96deg, var(--cmh-blue-1) 0%, var(--cmh-blue-2) 100%);
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  box-shadow: 0 16px 30px -10px rgba(0, 114, 255, 0.45);
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.cma-talk__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(96deg, #005ad6, #062f6f);
  box-shadow: 0 22px 40px -10px rgba(0, 114, 255, 0.55);
}

@media (max-width: 980px) {
  .cma-talk__inner { grid-template-columns: 1fr; gap: 32px; }
  .cma-talk__signals { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .cma-talk__signals { grid-template-columns: 1fr; }
  .cma-talk__row { grid-template-columns: 1fr; }
  .cma-talk__form { padding: 22px; }
}
@media (max-width: 540px) {
  .cma-talk__title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .cma-talk__foot { flex-direction: column; align-items: stretch; }
  .cma-talk__btn { width: 100%; }
  .cma-talk__channels { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cma-talk__shell { border-radius: 22px; }
  .cma-talk__inner { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-talk__signals li,
  .cma-talk__ch,
  .cma-talk__btn { transition: none; }
  .cma-talk__signals li:hover,
  .cma-talk__ch:hover,
  .cma-talk__btn:hover { transform: none; }
}



/* ============================================================
   POPUP MODAL — "Connect With Us" (mirrors live craitrix design)
   Side-by-side image+content at all sizes, scaled responsively.
   ============================================================ */
.cgh-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--cmh-font);
}
.cgh-modal.is-open { display: flex; }

.cgh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cgh-modal-fade 0.3s ease;
}

.cgh-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(8, 32, 86, 0.40), 0 0 0 1px rgba(8, 32, 86, 0.04);
  animation: cgh-modal-pop 0.4s cubic-bezier(.2,.7,.2,1);
}

@keyframes cgh-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cgh-modal-pop  {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* close (×) */
.cgh-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  color: #0a1733;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
}
.cgh-modal__close:hover {
  background: #ffffff;
  transform: rotate(90deg);
}

/* row layout — STAYS side-by-side at all sizes */
.cgh-modal__row {
  display: flex;
  align-items: stretch;
  min-height: 0;
}
.cgh-modal__col {
  flex: 1 1 50%;
  min-width: 0;
}

/* LEFT — woman illustration filling the column */
.cgh-modal__col--left {
  background: linear-gradient(160deg, #EAF6FF 0%, #C7E7FF 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.cgh-modal__col--left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* RIGHT — eyebrow + title + lede + 3 channel rows + footer */
.cgh-modal__col--right {
  background: #F0FBFF;
  padding: 36px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cgh-modal__eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 114, 255, 0.30);
  border-radius: 999px;
  background: rgba(0, 114, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cmh-blue-2);
  margin-bottom: 14px;
}
.cgh-modal__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cmh-blue-1);
  box-shadow: 0 0 8px rgba(0, 114, 255, 0.55);
}

.cgh-modal__title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 8px;
  color: var(--cmh-ink);
}
.cgh-modal__title .cgh-grad {
  background: linear-gradient(95deg, var(--cmh-blue-1) 0%, var(--cmh-cyan-1) 50%, var(--cmh-blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.cgh-modal__lede {
  margin: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cmh-muted);
}

.cgh-modal__channels {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.cgh-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--cmh-line);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}
.cgh-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(8, 32, 86, 0.20);
}

.cgh-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  color: #ffffff;
  flex-shrink: 0;
}
.cgh-channel--wa .cgh-channel__icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.cgh-channel--tg .cgh-channel__icon { background: linear-gradient(135deg, #29B6F6, #0277BD); }
.cgh-channel--em .cgh-channel__icon { background: linear-gradient(135deg, var(--cmh-blue-1), var(--cmh-blue-2)); }

.cgh-channel--wa:hover { border-color: rgba(37, 211, 102, 0.45); }
.cgh-channel--tg:hover { border-color: rgba(2, 119, 189, 0.45); }
.cgh-channel--em:hover { border-color: rgba(0, 114, 255, 0.45); }

.cgh-channel__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.cgh-channel__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cmh-ink);
  letter-spacing: -0.005em;
}
.cgh-channel__sub {
  font-size: 0.78rem;
  color: var(--cmh-muted);
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cgh-channel__arrow {
  color: var(--cmh-muted);
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s, color 0.25s;
}
.cgh-channel:hover .cgh-channel__arrow {
  transform: translateX(4px);
  color: var(--cmh-blue-1);
}

.cgh-modal__foot {
  text-align: center;
  font-size: 0.78rem;
  color: var(--cmh-muted);
  padding-top: 12px;
  border-top: 1px dashed var(--cmh-line);
}

/* ---------- Responsive (mirrors live craitrix breakpoints) ---------- */
@media (max-width: 1000px) {
  .cgh-modal__card { max-width: 660px; }
  .cgh-modal__col--right { padding: 30px 24px 24px; }
}

@media (max-width: 786px) {
  .cgh-modal__card { max-width: 580px; border-radius: 18px; }
  .cgh-modal__col--right { padding: 26px 20px 22px; }
  .cgh-modal__title { font-size: 1.18rem; }
  .cgh-modal__lede  { font-size: 0.84rem; margin-bottom: 16px; }
  .cgh-channel { padding: 10px 12px; gap: 10px; }
  .cgh-channel__icon { width: 36px; height: 36px; }
  .cgh-channel__icon svg { width: 18px; height: 18px; }
  .cgh-channel__name { font-size: 0.86rem; }
  .cgh-channel__sub  { font-size: 0.74rem; }
  .cgh-modal__foot   { font-size: 0.74rem; padding-top: 10px; }
}

@media (max-width: 568px) {
  .cgh-modal { padding: 14px; }
  .cgh-modal__card { max-width: 480px; border-radius: 16px; }
  .cgh-modal__col--right { padding: 20px 14px 18px; }
  .cgh-modal__eyebrow { font-size: 0.6rem; padding: 4px 10px 4px 8px; margin-bottom: 10px; gap: 6px; }
  .cgh-modal__title { font-size: 1rem; line-height: 1.22; }
  .cgh-modal__lede { font-size: 0.74rem; line-height: 1.45; margin-bottom: 12px; }
  .cgh-modal__channels { gap: 7px; margin-bottom: 12px; }
  .cgh-channel { padding: 8px 10px; gap: 9px; border-radius: 10px; }
  .cgh-channel__icon { width: 30px; height: 30px; border-radius: 9px; }
  .cgh-channel__icon svg { width: 14px; height: 14px; }
  .cgh-channel__name { font-size: 0.76rem; }
  .cgh-channel__sub  { font-size: 0.66rem; }
  .cgh-channel__arrow { font-size: 0.9rem; }
  .cgh-modal__foot { font-size: 0.68rem; padding-top: 8px; }
  .cgh-modal__close { top: 8px; right: 10px; width: 28px; height: 28px; font-size: 13px; }
}

@media (max-width: 400px) {
  .cgh-modal__col--right { padding: 16px 10px 14px; }
  .cgh-modal__title { font-size: 0.9rem; }
  .cgh-modal__lede  { font-size: 0.68rem; margin-bottom: 10px; }
  .cgh-channel { padding: 7px 8px; gap: 7px; }
  .cgh-channel__icon { width: 26px; height: 26px; border-radius: 8px; }
  .cgh-channel__icon svg { width: 12px; height: 12px; }
  .cgh-channel__name { font-size: 0.7rem; }
  .cgh-channel__sub  { font-size: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cgh-modal__backdrop,
  .cgh-modal__card { animation: none; }
  .cgh-modal__close:hover { transform: none; }
  .cgh-channel:hover { transform: none; }
  .cgh-channel:hover .cgh-channel__arrow { transform: none; }
}



/* ============================================================
   SECTION 10 — Mid-page CTA (.cma-mid-cta-*)
   Horizontal split banner · brand-blue gradient · "Connect with Us"
   ============================================================ */
.cma-mid-cta {
  padding: clamp(28px, 4vw, 56px) 6vw;
  font-family: var(--cmh-font);
  background: #ffffff;
}
.cma-mid-cta__shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 22px;
  background:
    linear-gradient(135deg, var(--cmh-blue-2) 0%, var(--cmh-blue-1) 50%, var(--cmh-cyan-1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 32px 60px -28px rgba(0, 30, 90, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.cma-mid-cta__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cma-mid-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cma-mid-cta__orb--a {
  top: -120px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.50) 0%, transparent 70%);
}
.cma-mid-cta__orb--b {
  bottom: -120px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.30) 0%, transparent 70%);
}
.cma-mid-cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 100%);
}
.cma-mid-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 56px);
}
.cma-mid-cta__copy { color: #ffffff; }
.cma-mid-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.30);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cma-mid-cta__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.8);
  animation: cma-mid-cta-pulse 1.6s ease-out infinite;
}
@keyframes cma-mid-cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.8); }
  100% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
}
.cma-mid-cta__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.cma-mid-cta__accent {
  background: linear-gradient(95deg, #ffffff 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.cma-mid-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cma-mid-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 26px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--cmh-blue-2);
  font-family: inherit;
  border: 0;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.30);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, background 0.25s;
}
.cma-mid-cta__btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.cma-mid-cta__btn-main {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--cmh-blue-2);
}
.cma-mid-cta__btn-sub {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cmh-muted);
}
.cma-mid-cta__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cmh-cyan-1) 0%, var(--cmh-blue-1) 100%);
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
  box-shadow: 0 6px 14px -4px rgba(0, 114, 255, 0.45);
}
.cma-mid-cta__btn-arrow svg { width: 16px; height: 16px; }
.cma-mid-cta__btn:hover {
  transform: translateY(-2px);
  background: #f1f7ff;
  box-shadow: 0 22px 40px -10px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.cma-mid-cta__btn:hover .cma-mid-cta__btn-arrow {
  transform: translateX(3px);
  box-shadow: 0 10px 20px -4px rgba(0, 114, 255, 0.55);
}

@media (max-width: 880px) {
  .cma-mid-cta__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }
  .cma-mid-cta__action { align-items: flex-start; }
}
@media (max-width: 540px) {
  .cma-mid-cta__shell { border-radius: 18px; }
  .cma-mid-cta__btn { width: 100%; justify-content: center; }
  .cma-mid-cta__action { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-mid-cta__pulse { animation: none; }
  .cma-mid-cta__btn:hover { transform: none; }
  .cma-mid-cta__btn:hover svg { transform: none; }
}

/* ============================================================
   Auto-trigger "Trusted Digital Partner" popup (.cma-trust-*)
   2-col card · gradient left (trust signals + reviews + LinkedIn)
   white right (form + WhatsApp/Telegram/Teams channel buttons)
   ============================================================ */
.cma-trust {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  font-family: var(--cmh-font);
}
.cma-trust.is-open { display: flex; }
.cma-trust__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 27, 74, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: cma-trust-fadein 0.35s ease;
}
@keyframes cma-trust-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cma-trust__card {
  position: relative;
  width: min(1100px, calc(100vw - 40px));
  max-height: min(680px, calc(100vh - 40px));
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.45);
  animation: cma-trust-pop 0.45s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
}
@keyframes cma-trust-pop {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cma-trust__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: #0a1733;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.18);
}
.cma-trust__close:hover { background: #ffffff; transform: rotate(90deg); }
.cma-trust__close svg { width: 16px; height: 16px; }

.cma-trust__row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  flex: 1;
  min-height: 0;
  overflow: auto;
}

/* ---------- LEFT: trust signals ---------- */
.cma-trust__left {
  position: relative;
  padding: 36px 32px 32px;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(34, 211, 238, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 114, 255, 0.25) 0%, transparent 65%),
    linear-gradient(160deg, #061b4a 0%, #0a3a85 60%, #0072ff 100%);
  color: #ffffff;
  overflow: hidden;
}
.cma-trust__left::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
  pointer-events: none;
}
.cma-trust__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.cma-trust__chip svg { width: 13px; height: 13px; color: #fbbf24; }

.cma-trust__title {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.cma-trust__title .cma-grad {
  background: linear-gradient(95deg, #ffffff 0%, #22d3ee 50%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cma-trust__sub {
  position: relative;
  margin: 0 0 20px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 380px;
}

/* Auto-cycling review slider — 3 figures stack into the same grid cell */
.cma-trust__slider {
  position: relative;
  display: grid;
  margin: 0 0 32px;
  min-height: 180px;
}
.cma-trust__slider:hover .cma-trust__review,
.cma-trust__slider:hover .cma-trust__dot::after { animation-play-state: paused; }

.cma-trust__review {
  grid-area: 1 / 1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  animation: cma-trust-quote-cycle 12s cubic-bezier(.4,0,.2,1) infinite;
}
.cma-trust__review:nth-child(1) { animation-delay: 0s; }
.cma-trust__review:nth-child(2) { animation-delay: 4s; }
.cma-trust__review:nth-child(3) { animation-delay: 8s; }
@keyframes cma-trust-quote-cycle {
  0%   { opacity: 0; visibility: hidden; transform: translateY(8px); }
  4%   { opacity: 1; visibility: visible; transform: translateY(0); }
  30%  { opacity: 1; visibility: visible; transform: translateY(0); }
  37%  { opacity: 0; visibility: hidden; transform: translateY(-8px); }
  100% { opacity: 0; visibility: hidden; transform: translateY(8px); }
}

.cma-trust__dots {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
}
.cma-trust__dot {
  position: relative;
  width: 22px; height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  overflow: hidden;
}
.cma-trust__dot::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, var(--cmh-cyan-2), var(--cmh-blue-1));
  transform: scaleX(0);
  transform-origin: left;
  animation: cma-trust-dot-fill 12s linear infinite;
}
.cma-trust__dot:nth-child(1)::after { animation-delay: 0s; }
.cma-trust__dot:nth-child(2)::after { animation-delay: 4s; }
.cma-trust__dot:nth-child(3)::after { animation-delay: 8s; }
@keyframes cma-trust-dot-fill {
  0%   { transform: scaleX(0); }
  33%  { transform: scaleX(1); }
  34%, 100% { transform: scaleX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cma-trust__review,
  .cma-trust__dot::after { animation: none; }
  .cma-trust__review { opacity: 1; visibility: visible; transform: none; }
  .cma-trust__review:nth-child(2),
  .cma-trust__review:nth-child(3) { display: none; }
}
.cma-trust__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 6px;
}
.cma-trust__stars svg { width: 12px; height: 12px; fill: #fbbf24; }
.cma-trust__review blockquote {
  margin: 0 0 10px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
}
.cma-trust__review figcaption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cma-trust__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.20);
}
.cma-trust__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cma-trust__review figcaption span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cma-trust__review figcaption b {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}
.cma-trust__review figcaption i {
  font-size: 0.7rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

/* LinkedIn-style profile card — handcrafted, mimics official embed look */
.cma-trust__li {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 14px 30px -10px rgba(0, 0, 0, 0.30),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  margin-top: 12px;
}

/* LinkedIn cover banner */
.cma-trust__li-cover {
  position: relative;
  height: 56px;
  background: linear-gradient(135deg, #0a66c2 0%, #074a8c 50%, #0a66c2 100%);
  overflow: hidden;
}
.cma-trust__li-cover-shine {
  position: absolute;
  top: -50%; left: 30%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.20) 0%, transparent 50%);
  filter: blur(12px);
}
.cma-trust__li-cover-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.30);
  z-index: 1;
}
.cma-trust__li-brand {
  position: absolute;
  top: 8px; right: 12px;
  width: 22px; height: 22px;
  color: #ffffff;
  opacity: 0.85;
}
.cma-trust__li-brand svg { width: 100%; height: 100%; }

/* Body */
.cma-trust__li-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 16px 14px;
  margin-top: -28px;
}
.cma-trust__li-avatar {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #f1f3f7;
  overflow: hidden;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.20);
}
.cma-trust__li-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cma-trust__li-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 30px;
  min-width: 0;
}
.cma-trust__li-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #0a1733;
  line-height: 1.2;
}
.cma-trust__li-verified {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.cma-trust__li-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
}
.cma-trust__li-company {
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.3;
}
.cma-trust__li-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.cma-trust__li-meta svg { width: 11px; height: 11px; flex-shrink: 0; }

/* Visit Profile button — full-width LinkedIn-style */
.cma-trust__li-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid #0a66c2;
  color: #0a66c2;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cma-trust__li-btn svg { width: 16px; height: 16px; }
.cma-trust__li-btn:hover {
  background: #0a66c2;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -4px rgba(10, 102, 194, 0.55);
}

/* ---------- RIGHT: form + channels ---------- */
.cma-trust__right {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.cma-trust__r-title {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cmh-ink);
}
.cma-trust__r-sub {
  margin: 0 0 18px;
  font-size: 0.86rem;
  color: var(--cmh-muted);
  line-height: 1.5;
}
.cma-trust__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cma-trust__field {
  position: relative;
  display: flex;
  align-items: center;
  background: #f4f7fc;
  border: 1px solid rgba(0, 114, 255, 0.10);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cma-trust__field:focus-within {
  border-color: rgba(0, 114, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.10);
  background: #ffffff;
}
.cma-trust__field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  color: var(--cmh-muted);
  flex-shrink: 0;
}
.cma-trust__field-icon svg { width: 16px; height: 16px; }
.cma-trust__field input,
.cma-trust__field textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 12px 12px 0;
  font: inherit;
  font-size: 0.92rem;
  color: var(--cmh-ink);
}
.cma-trust__field--area textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}
.cma-trust__field input::placeholder,
.cma-trust__field textarea::placeholder { color: #94a3b8; }

.cma-trust__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(96deg, var(--cmh-blue-1) 0%, var(--cmh-blue-2) 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 26px -10px rgba(0, 114, 255, 0.55);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.cma-trust__submit svg { width: 14px; height: 14px; transition: transform 0.3s; }
.cma-trust__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -10px rgba(0, 114, 255, 0.65);
  filter: brightness(1.04);
}
.cma-trust__submit:hover svg { transform: translateX(3px); }

.cma-trust__divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cmh-muted);
}
.cma-trust__divider::before,
.cma-trust__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: rgba(0, 114, 255, 0.16);
}
.cma-trust__divider::before { left: 0; }
.cma-trust__divider::after  { right: 0; }
.cma-trust__divider span {
  position: relative;
  background: #ffffff;
  padding: 0 12px;
}

.cma-trust__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cma-trust__channel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cmh-ink);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.cma-trust__channel i {
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #94a3b8, #475569);
}
.cma-trust__channel--wa    i { background: linear-gradient(135deg, #25D366, #128C7E); }
.cma-trust__channel--tg    i { background: linear-gradient(135deg, #29B6F6, #0277BD); }
.cma-trust__channel--teams i { background: linear-gradient(135deg, #4b53bc, #6264a7); }
.cma-trust__channel:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 255, 0.35);
  background: #f1f7ff;
}

@media (max-width: 880px) {
  .cma-trust__row { grid-template-columns: 1fr; }
  .cma-trust__left { padding: 28px 24px 24px; }
  .cma-trust__right { padding: 28px 24px 24px; }
  .cma-trust__title { font-size: 1.4rem; }
}
@media (max-width: 540px) {
  .cma-trust__card { width: calc(100vw - 16px); border-radius: 16px; }
  .cma-trust__channels { grid-template-columns: 1fr; }
  .cma-trust__channel { flex-direction: row; justify-content: flex-start; padding: 10px 14px; }
  .cma-trust__channel i { width: 30px; height: 30px; font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cma-trust__card, .cma-trust__backdrop { animation: none; }
  .cma-trust__close:hover { transform: none; }
  .cma-trust__submit:hover { transform: none; }
  .cma-trust__submit:hover svg { transform: none; }
}
