/*
 * salesforce-admins-custom.css — custom /salesforce-admins/ page styles (2026 redesign).
 *
 * Loaded AFTER css/salesforce-admins.css (the WordPress/Elementor export
 * that header.njk and footer.njk still depend on for nav/footer styling).
 * Follows the same design system established in css/home-custom.css
 * (.home-2026): same fonts (Inter / JetBrains Mono, loaded site-wide via
 * tracking-head.njk), same brand colors, same component patterns
 * (h-section, h-card, sec, tcard, faq, finalcta). Scoped under .sfa-2026
 * so it can't collide with the homepage's identically-shaped classes.
 */

.sfa-2026 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1D1D1D;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.sfa-2026 *, .sfa-2026 *::before, .sfa-2026 *::after { box-sizing: border-box; }

.sfa-2026 .h-section { position: relative; padding: 104px 24px; }
.sfa-2026 .h-section--tight { padding: 80px 24px; }
.sfa-2026 .h-section--subtle { background: #F5F5F7; }
.sfa-2026 .h-wrap { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.sfa-2026 .h-wrap--narrow { max-width: 720px; }
.sfa-2026 .h-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sfa-2026 .h-head--left { margin: 0 0 48px; text-align: left; max-width: 640px; }

.sfa-2026 .h-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #4068EB; margin-bottom: 18px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}
.sfa-2026 .h-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #14C8A0; flex-shrink: 0;
}
.sfa-2026 .h-h2 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.08;
  color: #05184F; margin: 0 0 18px; text-wrap: balance;
}
.sfa-2026 .h-lead {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: #4D4D4D;
  margin: 0 auto; max-width: 620px;
}
.sfa-2026 .h-head--left .h-lead { margin: 0; }

.sfa-2026 .h-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; line-height: 1;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}
.sfa-2026 .h-btn--primary { background: #4068EB; color: #fff; }
.sfa-2026 .h-btn--primary:hover { background: #2D4FD4; transform: translateY(-1px); }
.sfa-2026 .h-btn--ghost { background: #fff; color: #1D1D1D; border-color: #E7EBF3; }
.sfa-2026 .h-btn--ghost:hover { background: #F5F5F7; border-color: #D8DDEA; }
.sfa-2026 .h-btn--light { background: #fff; color: #4068EB; }
.sfa-2026 .h-btn--light:hover { background: #EDF0FC; }
.sfa-2026 .h-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.sfa-2026 .h-btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.65); }

/* ---- Hero -------------------------------------------------------------- */
.sfa-2026 .hero { position: relative; padding: 196px 24px 128px; background: #fff; overflow: hidden; }
.sfa-2026 .hero__halo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.sfa-2026 .hero__halo::before {
  content: ""; position: absolute; top: -160px; left: -8%; width: 820px; height: 820px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,104,235,0.06) 0%, transparent 65%);
}
.sfa-2026 .hero__halo::after {
  content: ""; position: absolute; top: 40px; right: -10%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,218,0.05) 0%, transparent 65%);
}
.sfa-2026 .hero__grid {
  max-width: 1180px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sfa-2026 .hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.04;
  letter-spacing: -0.03em; color: #1D1D1D; margin: 0 0 24px; text-wrap: pretty;
}
.sfa-2026 .hero__title-accent {
  background: linear-gradient(135deg, #4068EB 0%, #00FFDA 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent; display: inline;
}
.sfa-2026 .hero__subtitle { font-size: 18px; line-height: 1.7; color: #4D4D4D; max-width: 500px; margin: 0 0 36px; text-wrap: pretty; }
.sfa-2026 .hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.sfa-2026 .hero__trust { font-size: 13px; color: #7A7A8C; margin: 0; letter-spacing: 0.01em; }

.sfa-2026 .hero__demo { position: relative; }

/* ---- Animated architecture widget (hero) --------------------------------
   Three-panel round-trip visualization: Chat -> Cirra AI MCP Server -> Salesforce
   -> Cirra AI MCP Server -> Chat. See script at bottom of page for sequencing. */
.sfa-2026 .aiw3 {
  background: #fff; border: 1px solid #E7EBF3; border-radius: 20px;
  box-shadow: 0 20px 56px rgba(5,24,79,0.11), 0 4px 12px rgba(5,24,79,0.05); overflow: hidden;
}
.sfa-2026 .aiw3__bar {
  background: #F5F5F7; border-bottom: 1px solid #E7EBF3; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.sfa-2026 .aiw3__brand { display: flex; align-items: center; gap: 9px; }
.sfa-2026 .aiw3__logo { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; display: block; }
.sfa-2026 .aiw3__name { font-size: 13px; font-weight: 700; color: #05184F; line-height: 1.2; }
.sfa-2026 .aiw3__live { display: flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: #7A7A8C; }
.sfa-2026 .aiw3__live-dot { width: 7px; height: 7px; border-radius: 50%; background: #0DBF90; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(13,191,144,0.18); }

.sfa-2026 .aiw3__stage { display: flex; align-items: stretch; gap: 0; padding: 18px 14px; }

/* ---- Panels ----
   Fixed height so a wrapped chat-input line never grows the whole widget;
   the chat-body flexes/shrinks internally instead (see below). */
.sfa-2026 .aiw3__panel {
  background: #fff; border: 1px solid #E7EBF3; border-radius: 12px; padding: 12px 10px;
  display: flex; flex-direction: column; min-width: 0; height: 232px; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sfa-2026 .aiw3__panel--chat { flex: 1.35 1 0; }
.sfa-2026 .aiw3__panel--mcp { flex: 1 1 0; background: #EEF2FF; align-items: center; text-align: center; }
.sfa-2026 .aiw3__panel--sf { flex: 1 1 0; }
.sfa-2026 .aiw3__panel--mcp.is-active {
  border-color: #0DBF90; box-shadow: 0 0 0 3px rgba(13,191,144,0.16), 0 6px 18px rgba(13,191,144,0.12);
}
.sfa-2026 .aiw3__panel--sf.is-active { border-color: #4068EB; box-shadow: 0 0 0 3px rgba(64,104,235,0.12); }

.sfa-2026 .aiw3__panel-label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 600; color: #7A7A8C;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px; justify-content: flex-start;
}
.sfa-2026 .aiw3__panel--mcp .aiw3__panel-label { justify-content: center; color: #4068EB; }
.sfa-2026 .aiw3__panel--sf .aiw3__panel-label { color: #05184F; }
.sfa-2026 .aiw3__sf-icon { width: 13px; height: 13px; flex-shrink: 0; }

/* Chat panel */
.sfa-2026 .aiw3__chat-body {
  display: flex; flex-direction: column; gap: 6px; justify-content: flex-end;
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
}
.sfa-2026 .aiw3__bubble {
  font-size: 10.5px; line-height: 1.4; padding: 6px 9px; border-radius: 9px 9px 9px 3px;
  max-width: 100%; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.sfa-2026 .aiw3__bubble.is-visible { opacity: 1; transform: translateY(0); }
.sfa-2026 .aiw3__bubble--user { align-self: flex-end; background: #4068EB; color: #fff; border-radius: 9px 9px 3px 9px; }
.sfa-2026 .aiw3__bubble--cirra { align-self: flex-start; background: #F5F5F7; color: #1D1D1D; }

.sfa-2026 .aiw3__chat-input {
  margin-top: 8px; display: flex; align-items: center; gap: 6px;
  background: #F5F5F7; border: 1px solid #E7EBF3; border-radius: 8px; padding: 6px 6px 6px 9px;
  flex: 0 0 auto; max-height: 44px; overflow-y: auto;
}
.sfa-2026 .aiw3__chat-input-text { flex: 1; font-size: 10.5px; color: #1D1D1D; line-height: 1.4; word-break: break-word; padding-top: 1px; }
.sfa-2026 .aiw3__chat-send {
  width: 18px; height: 18px; border-radius: 50%; background: #4068EB; border: none; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 0; cursor: default;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sfa-2026 .aiw3__chat-send.is-flash { box-shadow: 0 0 0 5px rgba(64,104,235,0.28); transform: scale(1.12); }

/* MCP panel */
.sfa-2026 .aiw3__pulse { display: inline-flex; gap: 3px; margin-bottom: 8px; height: 6px; align-items: center; }
.sfa-2026 .aiw3__pulse-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #0DBF90; opacity: 0.25; transform: scale(0.85);
}
.sfa-2026 .aiw3__panel--mcp.is-active .aiw3__pulse-dot { animation: aiw3-pulse 1.1s ease-in-out infinite; }
.sfa-2026 .aiw3__pulse-dot:nth-child(2) { animation-delay: 0.15s; }
.sfa-2026 .aiw3__pulse-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiw3-pulse { 0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); } 40% { opacity: 1; transform: scale(1); } }
.sfa-2026 .aiw3__log {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px; line-height: 1.5; color: #4D4D4D;
  min-height: 28px; opacity: 0; transition: opacity 0.3s ease;
}
.sfa-2026 .aiw3__log.is-visible { opacity: 1; }
.sfa-2026 .aiw3__panel--mcp .aiw3__log { color: #2D4FD4; }

/* Salesforce panel */
.sfa-2026 .aiw3__loadbar { width: 100%; height: 4px; border-radius: 2px; background: #EDF0FC; overflow: hidden; margin-top: 6px; }
.sfa-2026 .aiw3__loadbar-fill { height: 100%; width: 0%; background: #4068EB; border-radius: 2px; transition: width 0.9s cubic-bezier(0.22,1,0.36,1); }
.sfa-2026 .aiw3__sf-check {
  display: inline-flex; align-items: center; gap: 4px; color: #0DBF90; font-size: 9.5px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease; margin-top: 4px;
}
.sfa-2026 .aiw3__sf-check.is-visible { opacity: 1; transform: translateY(0); }
.sfa-2026 .aiw3__sf-check svg { flex-shrink: 0; }

/* ---- Arrows / signal flow ---- */
.sfa-2026 .aiw3__arrow { flex: 0 0 26px; display: flex; align-items: center; justify-content: center; position: relative; }
.sfa-2026 .aiw3__arrow-track { width: 100%; height: 2px; background: #E7EBF3; border-radius: 2px; position: relative; overflow: visible; }
.sfa-2026 .aiw3__arrow-dot {
  position: absolute; top: 50%; left: 0%; width: 7px; height: 7px; border-radius: 50%;
  background: #4068EB; transform: translate(-50%, -50%); opacity: 0;
  box-shadow: 0 0 0 3px rgba(64,104,235,0.18);
}
.sfa-2026 .aiw3__arrow-dot.is-fwd { animation: aiw3-flow-fwd 0.7s ease forwards; }
.sfa-2026 .aiw3__arrow-dot.is-rev { animation: aiw3-flow-rev 0.7s ease forwards; background: #0DBF90; box-shadow: 0 0 0 3px rgba(13,191,144,0.18); }
@keyframes aiw3-flow-fwd { 0% { left: 0%; opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes aiw3-flow-rev { 0% { left: 100%; opacity: 1; } 100% { left: 0%; opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .sfa-2026 .aiw3__pulse-dot { animation: none !important; opacity: 0.8; }
  .sfa-2026 .aiw3__arrow-dot.is-fwd, .sfa-2026 .aiw3__arrow-dot.is-rev { animation: none; opacity: 0; }
  .sfa-2026 .aiw3__bubble, .sfa-2026 .aiw3__log, .sfa-2026 .aiw3__sf-check, .sfa-2026 .aiw3__loadbar-fill { transition: none; }
}

@media (max-width: 560px) {
  .sfa-2026 .aiw3__stage { flex-direction: column; gap: 0; padding: 12px; }
  /* Arrow becomes a proper vertical connector — no rotation, just a tall thin track */
  .sfa-2026 .aiw3__arrow { flex: 0 0 28px; width: 100%; transform: none; display: flex; align-items: center; justify-content: center; }
  .sfa-2026 .aiw3__arrow-track { width: 2px; height: 28px; background: #E7EBF3; border-radius: 2px; position: relative; overflow: visible; }
  .sfa-2026 .aiw3__arrow-dot { position: absolute; left: 50%; top: 0%; transform: translate(-50%, -50%); }
  .sfa-2026 .aiw3__arrow-dot.is-fwd { animation: aiw3-flow-down 0.7s ease forwards; }
  .sfa-2026 .aiw3__arrow-dot.is-rev { animation: aiw3-flow-up 0.7s ease forwards; }
  .sfa-2026 .aiw3__panel { flex: none; height: auto; overflow: hidden; }
  .sfa-2026 .aiw3__panel--chat { height: 180px; }
  .sfa-2026 .aiw3__panel--mcp { height: 120px; }
  .sfa-2026 .aiw3__panel--sf { height: 150px; }
  .sfa-2026 .aiw3__chat-body { min-height: 0; }

  /* mcpdiag: compact vertical layout — logos row → connector → SF pills */
  .sfa-2026 .mcpdiag__grid { display: flex; flex-direction: column; align-items: center; gap: 0; }

  /* AI tools: horizontal logo-only icon row */
  .sfa-2026 .mcpdiag__col:first-child { flex-direction: row; gap: 8px; justify-content: center; width: 100%; }
  .sfa-2026 .mcpdiag__col:first-child .mcpdiag__col-label { display: none; }
  .sfa-2026 .mcpdiag__col:first-child .mcpdiag__item { padding: 8px; gap: 0; flex-direction: column; width: 52px; min-width: 52px; justify-content: center; align-items: center; box-shadow: none; }
  .sfa-2026 .mcpdiag__col:first-child .mcpdiag__logo { width: 32px; height: 32px; border-radius: 8px; }
  .sfa-2026 .mcpdiag__col:first-child .mcpdiag__name { display: none; }

  /* Center: clean vertical connector */
  .sfa-2026 .mcpdiag__center { flex-direction: column; padding: 12px 0; gap: 8px; width: 100%; align-items: center; justify-content: center; }
  .sfa-2026 .mcpdiag__arrows { display: block; position: relative; width: 2px; height: 32px; background: linear-gradient(to bottom, #4068EB, #14C8A0); border-radius: 2px; align-self: center; }
  .sfa-2026 .mcpdiag__arrows svg { display: none; }
  .sfa-2026 .mcpdiag__arrows-label { display: none; }
  .sfa-2026 .mcpdiag__arrows::before {
    content: ""; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 6px solid #4068EB;
  }
  .sfa-2026 .mcpdiag__arrows::after {
    content: ""; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #14C8A0;
  }
  /* SF org: 2-column pill grid */
  .sfa-2026 .mcpdiag__col:last-child { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; width: 100%; }
  .sfa-2026 .mcpdiag__col:last-child .mcpdiag__col-label { grid-column: 1 / -1; text-align: center; margin-bottom: 2px; }
  .sfa-2026 .mcpdiag__col:last-child .mcpdiag__item { padding: 6px 14px; border-radius: 999px; box-shadow: none; gap: 0; background: #fff; justify-content: center; }
  .sfa-2026 .mcpdiag__col:last-child .mcpdiag__icon { display: none; }
  .sfa-2026 .mcpdiag__col:last-child .mcpdiag__name { font-size: 12px; }
}
@keyframes aiw3-flow-down { 0% { top: 0%; opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes aiw3-flow-up { 0% { top: 100%; opacity: 1; } 100% { top: 0%; opacity: 0; } }

/* ---- Problem statement -------------------------------------------------- */
.sfa-2026 .problem { background: #F5F5F7; padding-top: 56px; padding-bottom: 56px; }
.sfa-2026 .problem__rule { width: 40px; height: 2px; background: #4068EB; border-radius: 2px; margin-bottom: 32px; }
.sfa-2026 .problem__rule:last-child { margin-bottom: 0; margin-top: 32px; }
.sfa-2026 .problem p { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.72; margin: 0 0 32px; text-wrap: pretty; }
.sfa-2026 .problem p:first-of-type { color: #1D1D1D; }
.sfa-2026 .problem p:last-of-type { color: #4D4D4D; margin-bottom: 0; }

/* ---- What Cirra AI Does / MCP diagram ----------------------------------- */
.sfa-2026 .whatdoes { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sfa-2026 .whatdoes p { font-size: 16px; line-height: 1.72; color: #4D4D4D; margin: 0 0 16px; }
.sfa-2026 .whatdoes p:last-child { margin-bottom: 0; }
.sfa-2026 .whatdoes a { color: #4068EB; text-decoration: underline; text-underline-offset: 3px; }

.sfa-2026 .mcpdiag { background: #F5F5F7; border-radius: 20px; padding: 32px 28px; border: 1px solid #E7EBF3; }
.sfa-2026 .mcpdiag__label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: #7A7A8C;
  text-transform: uppercase; letter-spacing: 0.1em; text-align: center; margin-bottom: 28px;
}
.sfa-2026 .mcpdiag__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
.sfa-2026 .mcpdiag__col { display: flex; flex-direction: column; gap: 8px; }
.sfa-2026 .mcpdiag__col-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: #7A7A8C;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.sfa-2026 .mcpdiag__item {
  background: #fff; border: 1px solid #E7EBF3; border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 9px; box-shadow: 0 2px 8px rgba(5,24,79,0.05);
}
.sfa-2026 .mcpdiag__icon {
  width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: #fff;
}
.sfa-2026 .mcpdiag__logo { width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0; display: block; object-fit: contain; }
.sfa-2026 .mcpdiag__icon--cap { background: linear-gradient(135deg, #EDF0FC 0%, #E3F7F1 100%); color: #4068EB; }
.sfa-2026 .mcpdiag__name { font-size: 13px; font-weight: 600; color: #1D1D1D; }
.sfa-2026 .mcpdiag__center { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 0 20px; }
.sfa-2026 .mcpdiag__arrows { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.sfa-2026 .mcpdiag__arrows-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #7A7A8C; text-align: center; white-space: nowrap; }
.sfa-2026 .mcpdiag__node { background: linear-gradient(135deg, #4068EB 0%, #00FFDA 100%); border-radius: 16px; padding: 2px; }
.sfa-2026 .mcpdiag__node-inner { background: #fff; border-radius: 14px; padding: 16px 14px; text-align: center; min-width: 88px; }
.sfa-2026 .mcpdiag__node-icon { display: block; margin: 0 auto 8px; width: 36px; height: 36px; }
.sfa-2026 .mcpdiag__node-name { font-size: 12px; font-weight: 700; color: #05184F; line-height: 1.2; }
.sfa-2026 .mcpdiag__node-sub { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #7A7A8C; margin-top: 3px; }
.sfa-2026 .mcpdiag__trust {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid #E7EBF3;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.sfa-2026 .mcpdiag__trust-item { display: flex; align-items: center; gap: 6px; }
.sfa-2026 .mcpdiag__trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #0DBF90; flex-shrink: 0; }
.sfa-2026 .mcpdiag__trust-txt { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #7A7A8C; }

/* ---- Use cases (3-col card grid) ---------------------------------------- */
.sfa-2026 .h-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sfa-2026 .h-card {
  background: #fff; border: 1px solid #E7EBF3; border-radius: 16px; padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sfa-2026 .h-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(5,24,79,0.08); border-color: #D7DEF2; }
.sfa-2026 .h-card__icon {
  width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #EDF0FC 0%, #E3F7F1 100%);
  color: #4068EB; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.sfa-2026 .h-card__icon svg { width: 22px; height: 22px; }
.sfa-2026 .h-card__t { font-size: 17px; font-weight: 700; line-height: 1.25; color: #1D1D1D; margin: 0 0 12px; letter-spacing: -0.01em; }
.sfa-2026 .h-card__b { font-size: 14px; line-height: 1.65; color: #4D4D4D; margin: 0; }
.sfa-2026 .h-card__b a { color: #4068EB; text-decoration: underline; text-underline-offset: 3px; }

/* ---- Why choose (bento) -------------------------------------------------
   Shared component: css/why-choose.css (markup uses .why-choose). Only the
   page-native CTA button (.h-btn) remains part of this page's system. */

/* ---- Testimonials (LinkedIn screenshot cards) --------------------------- */
.sfa-2026 .tshots { display: flex; gap: 22px; align-items: flex-start; }
.sfa-2026 .tshots__col { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.sfa-2026 .tshot {
  display: block; text-decoration: none; border-radius: 16px; overflow: hidden;
  border: 1px solid #E7EBF3; background: #fff; box-shadow: 0 2px 8px rgba(5,24,79,0.04);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s ease;
}
.sfa-2026 .tshot:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(5,24,79,0.1); border-color: #D7DEF2; }
.sfa-2026 .tshot__img { display: block; width: 100%; height: auto; }

/* ---- Security strip (dark band, text metrics) --------------------------- */
.sfa-2026 .secband {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, #07205A 0%, #0B2E63 48%, #0E4F63 100%); color: #fff;
}
.sfa-2026 .secband__inner { max-width: 1140px; margin: 0 auto; padding: 80px 24px; }
.sfa-2026 .secband__label {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 48px;
}
.sfa-2026 .secband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; margin-bottom: 48px; }
.sfa-2026 .secband__k {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.sfa-2026 .secband__v { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.sfa-2026 .secband__d { font-size: 13.5px; color: rgba(255,255,255,0.58); line-height: 1.6; }
.sfa-2026 .secband__rule { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.sfa-2026 .secband__note { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.65; max-width: 580px; margin: 0; }

/* ---- FAQ (shared faq pattern) ------------------------------------------- */
.sfa-2026 .faq { max-width: 720px; margin: 0 auto; border-top: 1px solid #E7EBF3; }
.sfa-2026 .faq__item { border-bottom: 1px solid #E7EBF3; }
.sfa-2026 .faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer;
  padding: 24px 4px; font-size: 16px; font-weight: 600; color: #1D1D1D; line-height: 1.4;
  transition: color 0.15s ease;
}
.sfa-2026 .faq__item summary:hover { color: #4068EB; }
.sfa-2026 .faq__item summary::-webkit-details-marker { display: none; }
.sfa-2026 .faq__icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; color: currentColor; }
.sfa-2026 .faq__icon::before, .sfa-2026 .faq__icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px; transition: transform 0.2s ease;
}
.sfa-2026 .faq__icon::before { top: 10px; left: 3px; width: 16px; height: 2px; }
.sfa-2026 .faq__icon::after { left: 10px; top: 3px; width: 2px; height: 16px; }
.sfa-2026 .faq__item[open] .faq__icon::after { transform: scaleY(0); }
.sfa-2026 .faq__a { padding: 0 4px 28px; font-size: 15px; color: #4D4D4D; line-height: 1.72; max-width: 92%; }

/* ---- Final CTA (shared finalcta pattern) -------------------------------- */
.sfa-2026 .finalcta { position: relative; overflow: hidden; background: #05184F; color: #fff; }
.sfa-2026 .finalcta::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #00FFDA 32%, #4068EB 68%, transparent 100%); opacity: 0.65;
}
.sfa-2026 .finalcta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 78% 28%, rgba(64,104,235,0.5) 0%, transparent 60%),
              radial-gradient(ellipse 50% 55% at 18% 82%, rgba(0,255,218,0.2) 0%, transparent 60%);
}
.sfa-2026 .finalcta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; padding: 104px 24px; }
.sfa-2026 .finalcta h2 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 24px; color: #fff; }
.sfa-2026 .finalcta__lead { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 auto 34px; max-width: 480px; }
.sfa-2026 .finalcta__row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sfa-2026 .finalcta__note { font-size: 13px; color: rgba(255,255,255,0.42); margin: 20px 0 0; letter-spacing: 0.01em; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .sfa-2026 .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .sfa-2026 .hero { padding: 180px 24px 112px; }
  .sfa-2026 .hero__subtitle { max-width: 100%; }
  .sfa-2026 .whatdoes { grid-template-columns: 1fr; gap: 40px; }
  .sfa-2026 .h-cards3 { grid-template-columns: repeat(2, 1fr); }
  .sfa-2026 .secband__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 767px) {
  .sfa-2026 .h-section { padding: 64px 20px; }
  .sfa-2026 .h-section--tight { padding: 56px 20px; }
  .sfa-2026 .hero { padding: 164px 20px 100px; }
  .sfa-2026 .h-cards3 { grid-template-columns: 1fr; }
  .sfa-2026 .tshots { flex-direction: column; }
  .sfa-2026 .tshots__col { flex: unset; width: 100%; }
  .sfa-2026 .secband__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sfa-2026 .finalcta__inner { padding: 72px 20px; }
  .sfa-2026 .mcpdiag { padding: 24px 16px; }
  .sfa-2026 .mcpdiag__grid { grid-template-columns: 1fr; gap: 16px; }
  .sfa-2026 .mcpdiag__center { flex-direction: row; padding: 0; }
  /* Mobile (≤560px) replaces these — see below */
}
@media (max-width: 480px) {
  .sfa-2026 .secband__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .sfa-2026 .mcpdiag__trust { display: none; }
  .sfa-2026 .h-cards3 { grid-template-columns: 1fr; }
}
