/* ---------- HERO ---------- */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 120px;
    color: #fff;
    isolation: isolate;
  }
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.60);
    z-index: -1;
  }
  .hero h1, .hero .lede, .hero .hero-meta .num, .hero .hero-meta .lbl, .hero .pill { color: #fff !important; }
  .hero h1 .em { color: var(--orange) !important; }
  .hero .pill { border-color: rgba(255,255,255,0.35); }
  .hero .hero-meta { border-top-color: rgba(255,255,255,0.25); }
  .hero .eyebrow { color: var(--orange); }
  .hero .btn-ghost { color:#fff; border-color: rgba(255,255,255,0.4); }
  .hero .btn-ghost:hover { border-color:#fff; }
  .hero .floating-spec { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .hero .floating-spec .k { color: rgba(255,255,255,0.7); }
  .hero .floating-spec .v { color:#fff; }
  .hero .floating-spec .ic { background: rgba(245,134,52,0.25); color:#fff; }
  .hero .grid-bg { display:none; }
  .hero .platter { background: radial-gradient(circle at 50% 55%, rgba(245,134,52,0.35), transparent 70%) !important; }
  .hero svg.rings { stroke: rgba(255,255,255,0.25) !important; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero h1 .em { color: var(--orange); }
  .hero .lede {
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 540px;
  }
  .hero-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--navy-12);
  }
  .hero-meta .num { font-size: 32px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }
  .hero-meta .lbl { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }

  /* schematic AP visual */
  .hero-vis {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin-left: auto;
  }
  .hero-vis .platter {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 55%, var(--orange-50), transparent 70%);
    border-radius: 50%;
  }
  [data-theme="navy"] .hero-vis .platter {
    background: radial-gradient(circle at 50% 55%, rgba(245,134,52,0.18), transparent 70%);
  }
  .hero-vis svg.rings {
    position: absolute; inset: 0; width: 100%; height: 100%;
    animation: pulse 4.2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
  }
  .ap-render {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 58%;
  }
  .floating-spec {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--navy-12);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 28px -16px rgba(23,8,77,0.25);
    font-size: 12.5px;
    display: flex; align-items: center; gap: 10px;
  }
  [data-theme="navy"] .floating-spec { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); }
  .floating-spec .k { font-family: var(--mono); color: var(--ink-3); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; }
  .floating-spec .v { font-weight: 600; color: var(--ink); font-size: 14px; }
  .floating-spec.s1 { top: 8%; left: -2%; }
  .floating-spec.s2 { top: 38%; right: -4%; }
  .floating-spec.s3 { bottom: 8%; left: 6%; }
  .floating-spec .ic { width: 28px; height: 28px; border-radius: 8px; background: var(--orange-50); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; }
  [data-theme="navy"] .floating-spec .ic { background: rgba(245,134,52,0.18); }

  /* hero VARIANT B — centered orbit */
  body[data-hero="orbit"] .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  body[data-hero="orbit"] .hero h1 { max-width: 18ch; margin: 0 auto; font-size: clamp(48px, 6.5vw, 86px); }
  body[data-hero="orbit"] .hero .lede { margin-left: auto; margin-right: auto; }
  body[data-hero="orbit"] .hero-actions { justify-content: center; }
  body[data-hero="orbit"] .hero-meta { max-width: 720px; margin-left: auto; margin-right: auto; }
  body[data-hero="orbit"] .hero-vis { margin: 0 auto; max-width: 640px; }

  /* hero bg grid */
  .grid-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(to right, var(--navy-04) 1px, transparent 1px),
      linear-gradient(to bottom, var(--navy-04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  }

  /* ----------  HERO PILL TICKER ---------- */
  .hero-pills {
    margin-top: 28px;
    display: inline-flex; flex-wrap: wrap; gap: 8px;
  }
  .pill {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-2); padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--navy-12); background: transparent;
  }
  .pill .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); margin-right: 6px; vertical-align: middle; }

  /* ---------- SME 2-col ---------- */
  .two-col-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }
  .feature-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .feature-card .vis {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--orange-50), #ffe4cf);
    position: relative; overflow: hidden;
  }
  [data-theme="navy"] .feature-card .vis { background: linear-gradient(135deg, rgba(245,134,52,0.15), rgba(245,134,52,0.05)); }
  .feature-card .vis svg { position: absolute; inset: 0; margin: auto; }
  .feature-card .body { padding: 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
  .feature-card h3 { font-size: 26px; line-height: 1.18; }
  .feature-card .body .specs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--navy-08);
  }
  .feature-card .body .specs .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
  .feature-card .body .specs .v { font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 4px; }
  .feature-card .body .cta { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 600; font-size: 14px; }
  .feature-card:hover .cta .arrow { transform: translateX(4px); }
  .cta .arrow { transition: transform .15s ease; }

  /* ---------- CLOUD EMULATOR ---------- */
  .emu-wrap {
    background: var(--navy);
    color: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  [data-theme="navy"] .emu-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
  .emu-wrap::before {
    content:""; position: absolute; inset: 0;
    background:
      radial-gradient(800px 300px at 100% -10%, rgba(245,134,52,0.18), transparent 60%),
      radial-gradient(600px 300px at 0% 100%, rgba(120,80,255,0.18), transparent 60%);
    pointer-events: none;
  }
  .emu-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 36px; position: relative; }
  .emu-head h2 { color: white; max-width: 14ch; }
  .emu-head .lede { color: rgba(255,255,255,0.72); max-width: 480px; font-size: 16px; }

  .emu-tabs { display: flex; gap: 4px; padding: 4px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; position: relative; flex-wrap: wrap; }
  .emu-tab {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 13.5px; font-weight: 500;
    color: rgba(255,255,255,0.72);
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .emu-tab .count { font-family: var(--mono); font-size: 11px; padding: 2px 7px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
  .emu-tab[aria-selected="true"] { background: white; color: var(--navy); }
  .emu-tab[aria-selected="true"] .count { background: var(--orange); color: white; }

  .emu-screen {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    color: var(--ink);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.4);
  }
  .emu-bar {
    height: 44px; display: flex; align-items: center; gap: 8px;
    padding: 0 16px;
    background: #F4F1EC;
    border-bottom: 1px solid var(--navy-08);
  }
  .emu-bar .dots { display: flex; gap: 6px; }
  .emu-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: #DCD7CD; }
  .emu-bar .url { flex: 1; height: 26px; background: white; border-radius: 6px; display: flex; align-items: center; padding: 0 12px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); }
  .emu-bar .url::before { content: "🔒"; margin-right: 8px; opacity: 0.5; font-size: 10px; }
  .emu-app { display: grid; grid-template-columns: 220px 1fr; min-height: 540px; }
  .emu-side { background: #FBF7F2; border-right: 1px solid var(--navy-08); padding: 22px 14px; }
  .emu-side .org {
    display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 10px; background: white; border: 1px solid var(--navy-08); margin-bottom: 18px;
  }
  .emu-side .org .av { width: 30px; height: 30px; border-radius: 8px; background: var(--orange); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
  .emu-side .org .nm { font-size: 13px; font-weight: 600; }
  .emu-side .org .nm small { display: block; font-weight: 400; color: var(--ink-3); font-size: 11px; }
  .emu-side h6 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 16px 0 8px; }
  .emu-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
  .emu-side ul li a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; font-size: 13px; color: var(--ink-2); }
  .emu-side ul li a.active { background: var(--orange-50); color: var(--orange-600); font-weight: 600; }
  .emu-side ul li a:hover { background: var(--navy-04); }

  .emu-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
  .emu-main .crumbs { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
  .emu-main .h-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
  .emu-main h3 { font-size: 22px; }
  .emu-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .stat-tile { padding: 14px; border-radius: 12px; border: 1px solid var(--navy-08); background: #FBF7F2; }
  .stat-tile .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); }
  .stat-tile .v { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; color: var(--ink); }
  .stat-tile .d { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
  .stat-tile .d.up { color: #2D9E5F; }
  .stat-tile .d.dn { color: #C84B3F; }

  .emu-table { border: 1px solid var(--navy-08); border-radius: 12px; overflow: hidden; }
  .emu-table .row {
    display: grid; grid-template-columns: 24px 1.4fr 1fr 1fr 1fr 1fr 80px;
    align-items: center; gap: 12px;
    padding: 12px 14px; font-size: 12.5px; border-bottom: 1px solid var(--navy-08);
  }
  .emu-table .row:last-child { border-bottom: 0; }
  .emu-table .row.head { background: #FBF7F2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); padding: 10px 14px; }
  .emu-table .nm { font-weight: 600; color: var(--ink); }
  .emu-table .nm small { display: block; font-weight: 400; color: var(--ink-3); font-size: 11px; }
  .emu-table .pill-st { font-family: var(--mono); font-size: 10.5px; padding: 3px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
  .pill-st.ok  { background: #E5F4EB; color: #1F7A48; }
  .pill-st.warn { background: #FFF1DA; color: #A85A0E; }
  .pill-st.err { background: #FCE6E2; color: #A33023; }
  .pill-st .led { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

  .emu-meter { display: flex; align-items: center; gap: 8px; }
  .emu-meter .bar { width: 60px; height: 4px; border-radius: 999px; background: var(--navy-08); position: relative; overflow: hidden; }
  .emu-meter .bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--orange); border-radius: 999px; }

  .emu-pane { display: none; flex-direction: column; gap: 20px; }
  .emu-pane[aria-hidden="false"] { display: flex; }

  /* topo (APs view) */
  .topo {
    height: 220px;
    border-radius: 12px;
    border: 1px solid var(--navy-08);
    background:
      radial-gradient(circle at 30% 60%, rgba(245,134,52,0.16), transparent 30%),
      radial-gradient(circle at 70% 40%, rgba(120,80,255,0.13), transparent 30%),
      #FBF7F2;
    position: relative; overflow: hidden;
  }
  .topo svg { position: absolute; inset: 0; }
  .ap-node { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); border: 3px solid white; box-shadow: 0 0 0 3px rgba(245,134,52,0.18); }
  .ap-node.idle { background: #B5B0A6; box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
  .ap-label { position: absolute; font-family: var(--mono); font-size: 10px; color: var(--ink-2); background: white; padding: 2px 6px; border-radius: 4px; border: 1px solid var(--navy-08); }

  /* ---------- TECHNOLOGIES (AI) ---------- */
  .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .tech-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
  }
  .tech-card .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--orange-50);
    color: var(--orange-600);
    display: inline-flex; align-items: center; justify-content: center;
  }
  [data-theme="navy"] .tech-card .ic { background: rgba(245,134,52,0.18); color: var(--orange); }
  .tech-card h3 { font-size: 20px; }
  .tech-card .ai-tag {
    align-self: flex-start;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--orange); padding: 4px 8px; border-radius: 999px;
    background: var(--orange-50);
  }
  [data-theme="navy"] .tech-card .ai-tag { background: rgba(245,134,52,0.15); }
  .tech-card .meta { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid var(--navy-08); margin-top: auto; }
  .tech-card .meta .m { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
  .tech-card .meta .m b { display: block; color: var(--ink); font-size: 18px; font-family: var(--font); font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }

  /* ---------- TRUST / LOGOS ---------- */
  .trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
  .trust-stat .num { font-size: clamp(40px, 4vw, 56px); font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
  .trust-stat .num span { color: var(--orange); }
  .trust-stat .lbl { font-size: 13px; color: var(--ink-2); margin-top: 4px; max-width: 24ch; }

  .logo-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--navy-08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
  }
  .logo-cell { padding: 28px 18px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--navy-08); border-bottom: 1px solid var(--navy-08); min-height: 92px; }
  .logo-cell:nth-child(6n) { border-right: 0; }
  .logo-cell:nth-last-child(-n+6) { border-bottom: 0; }
  .logo-cell .lo { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink-3); letter-spacing: -0.02em; text-transform: uppercase; opacity: 0.85; }
  .logo-cell .lo b { color: var(--ink); font-weight: 700; }

  /* ---------- CASE STUDIES ---------- */
  .cases-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
  .case-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .case-card .vis { aspect-ratio: 16/10; background: var(--cream-2); border-bottom: 1px solid var(--navy-08); position: relative; overflow: hidden; }
  [data-theme="navy"] .case-card .vis { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
  .case-card .vis::before {
    content:""; position: absolute; inset: 0;
    background: repeating-linear-gradient( 135deg, transparent 0 14px, rgba(23,8,77,0.05) 14px 15px );
  }
  [data-theme="navy"] .case-card .vis::before {
    background: repeating-linear-gradient( 135deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 15px );
  }
  .case-card .vis .label { position: absolute; left: 16px; top: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: white; color: var(--ink-2); border: 1px solid var(--navy-08); }
  .case-card .body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
  .case-card h3 { font-size: 22px; line-height: 1.18; }
  .case-card .meta { display: flex; gap: 18px; font-size: 12px; color: var(--ink-3); font-family: var(--mono); padding-top: 14px; border-top: 1px solid var(--navy-08); margin-top: auto; }
  .case-card.featured { grid-row: span 1; }
  .case-card.featured .vis { aspect-ratio: auto; flex: 1; min-height: 260px; }

  /* ---------- REVIEWS ---------- */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .review {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 28px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .review .stars { color: var(--orange); letter-spacing: 4px; font-size: 14px; }
  .review blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink); }
  .review .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--navy-08); margin-top: auto; }
  .review .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-50); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--orange-600); }
  [data-theme="navy"] .review .who .av { background: rgba(245,134,52,0.2); }
  .review .who .nm { font-size: 13.5px; font-weight: 600; }
  .review .who .nm small { display: block; font-weight: 400; color: var(--ink-3); }

  /* ---------- CTA STRIP ---------- */
  .cta-strip {
    background: var(--navy);
    color: white;
    border-radius: var(--radius-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative; overflow: hidden;
  }
  .cta-strip::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(700px 300px at 100% 100%, rgba(245,134,52,0.22), transparent 60%);
  }
  .cta-strip h2 { color: white; font-size: clamp(28px, 3vw, 42px); position: relative; }
  .cta-strip p { color: rgba(255,255,255,0.72); position: relative; }
  .cta-strip .ctas { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; position: relative; }
  .cta-strip .btn-ghost { color: white; border-color: rgba(255,255,255,0.25); }
  .cta-strip .btn-ghost:hover { border-color: white; }

  /* ---------- INDUSTRY ACCORDION ---------- */
  .ind-row { display:flex; gap:10px; height: 520px; }
  .ind-panel {
    position: relative;
    flex: 1 1 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(.2,.7,.2,1);
    isolation: isolate;
  }
  .ind-panel.active { flex: 4 1 0; }
  .ind-panel .img {
    position:absolute; inset:0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 0.8s ease;
  }
  .ind-panel.active .img { transform: scale(1); }
  .ind-panel::after {
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(10,4,32,0.40) 0%, rgba(10,4,32,0.85) 80%);
    z-index: 1;
  }
  .ind-panel .ind-title {
    position:absolute; left: 28px; top: 28px; right: 28px;
    color: #fff; font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
    z-index: 2; line-height: 1.1;
  }
  .ind-panel .ind-body {
    position:absolute; left: 28px; right: 28px; bottom: 28px;
    color: rgba(255,255,255,0.9); z-index: 2;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
  }
  .ind-panel.active .ind-body { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
  .ind-panel .ind-body p { 
    font-size: 14.5px;
  line-height: 1.55;
  max-width: 460px;
  font-weight: 700;
  color: #fff;
  }
  .ind-panel .ind-body .stats { display:flex; gap: 22px; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .ind-panel .ind-body .stats b { color: #fff; font-family: var(--font); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; display:block; margin-top:2px; }
  .ind-panel .ind-cta { margin-top: 14px; display: inline-flex; align-items:center; gap: 8px; color: var(--orange); font-weight: 600; font-size: 13px; }

  /* ---------- CASE CAROUSEL ---------- */
  .case-rail-wrap { position: relative; }
  .case-rail {
    display: flex; gap: 22px; overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 24px;
    scrollbar-width: none;
  }
  .case-rail::-webkit-scrollbar { display:none; }
  .case-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    scroll-snap-align: start;
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display:flex; flex-direction: column;
  }
  .case-slide .vis { aspect-ratio: 16/10; background: var(--cream-2); position: relative; overflow: hidden; }
  [data-theme="navy"] .case-slide .vis { background: rgba(255,255,255,0.04); }
  .case-slide .vis::before { content:""; position:absolute; inset:0; background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(23,8,77,0.05) 14px 15px); }
  [data-theme="navy"] .case-slide .vis::before { background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.05) 14px 15px); }
  .case-slide .vis .label { position:absolute; left:16px; top:16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: white; color: var(--ink-2); border: 1px solid var(--navy-08); z-index: 2; }
  .case-slide .body { padding: 24px; display:flex; flex-direction: column; gap: 12px; flex: 1; }
  .case-slide h3 { font-size: 20px; line-height: 1.22; }
  .case-slide p { font-size: 14px; color: var(--ink-2); }
  .case-slide .row-cta { display:flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--navy-08); margin-top: auto; }
  .case-slide .row-cta .btn { padding: 8px 14px; font-size: 12.5px; }
  .case-rail-arrow {
    position: absolute; top: 38%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 999px;
    background: white; border: 1px solid var(--navy-08);
    color: var(--ink); cursor: pointer; z-index: 5;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 24px -10px rgba(23,8,77,0.25);
  }
  .case-rail-arrow:hover { background: var(--orange); color: white; border-color: var(--orange); }
  .case-rail-arrow.prev { left: -20px; }
  .case-rail-arrow.next { right: -20px; }
  .case-rail-dots { display:flex; gap: 6px; justify-content: center; margin-top: 8px; }
  .case-rail-dots span { width: 22px; height: 3px; border-radius: 999px; background: var(--navy-08); transition: background 0.2s; }
  .case-rail-dots span.active { background: var(--orange); }

  /* ---------- SME REWORK ---------- */
  .sme-card { display: flex; flex-direction: column; }
  .sme-card .photo {
    aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--cream-2); border-bottom: 1px solid var(--navy-08);
  }
  .sme-card .photo .badge {
    position:absolute; top: 18px; right: 18px; z-index: 3;
    background: rgba(255,255,255,0.92); padding: 8px 14px; border-radius: 8px;
    font-weight: 700; letter-spacing: 0.04em; font-size: 12.5px;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px -10px rgba(0,0,0,0.3);
  }
  .sme-card .photo .badge .mark { width: 16px; height: 16px; border-radius: 4px; background: var(--orange); }
  .sme-card .photo svg.bg { position:absolute; inset:0; width:100%; height:100%; }
  .sme-card .body { padding: 32px; display:flex; flex-direction: column; gap: 14px; }
  .sme-card h3 { font-size: 26px; color: var(--orange); letter-spacing: -0.01em; }
  .sme-card ul.ticks { list-style:none; padding: 0; margin: 6px 0 16px; display:flex; flex-direction: column; gap: 8px; }
  .sme-card ul.ticks li { display:flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); }
  .sme-card ul.ticks li::before {
    content: ""; flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); margin-top: 9px;
  }
  .sme-card .btn-row { margin-top: 6px; }

  @media (max-width: 1100px) {
    .nav-link { padding: 0 10px; font-size: 13.5px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .two-col-cards, .tech-grid, .reviews-grid, .cases-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .logo-grid { grid-template-columns: repeat(3, 1fr); }
    .logo-cell:nth-child(3n) { border-right: 0; }
    .logo-cell:nth-child(6n) { border-right: 1px solid var(--navy-08); }
    .emu-app { grid-template-columns: 1fr; }
    .emu-side { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { grid-template-columns: 1fr; }
    .cta-strip .ctas { justify-content: flex-start; }
    .ind-row { flex-direction: column; height: auto; }
    .ind-panel, .ind-panel.active { flex: none; height: 240px; }
    .case-slide { flex: 0 0 calc((100% - 22px) / 2); }
    .case-rail-arrow.prev { left: 4px; }
    .case-rail-arrow.next { right: 4px; }
  }
  @media (max-width: 720px) {
    .case-slide { flex: 0 0 100%; }
  }