/* ═══════════════════════════════════════════════════════════
   REMOTE ASSET MONITORING SOLUTION PAGE
   page-sol-remote.css
   Accent: Slate #64748b  ·  Field-ops, precision, industrial
════════════════════════════════════════════════════════════ */

:root {
  --ram-slate:  #64748b;
  --ram-red:    #ef4444;
  --ram-amber:  #f59e0b;
  --ram-green:  #10b981;
  --ram-teal:   #00C2A8;
  --ram-blue:   #3b82f6;
  --ram-purple: #8b5cf6;
  --ram-orange: #f97316;
}

/* ═══ HERO ═══ */
.ram-hero {
  background: #fff;
  padding: 120px 0 64px;
  position: relative; overflow: hidden;
}

.ram-hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(100,116,139,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,116,139,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ram-hero__glow {
  position: absolute; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(100,116,139,.06) 0%, transparent 70%);
  top: -120px; right: -100px;
}

.ram-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.ram-hero__left { display: flex; flex-direction: column; gap: 0; }

/* Breadcrumb */
.ram-bc { display: flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-size: .72rem; color: var(--color-slate); margin-bottom: 14px; }
.ram-bc a { color: var(--color-slate); text-decoration: none; }
.ram-bc a:hover { color: var(--color-navy); }
.ram-bc i { font-size: .52rem; color: #cbd5e1; }
.ram-bc span { color: var(--color-navy); font-weight: 600; }

/* Tags */
.ram-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.ram-tag { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 100px; border: 1px solid; font-family: var(--font-heading); font-size: .7rem; font-weight: 700; }
.ram-tag--slate { background: rgba(100,116,139,.08); border-color: rgba(100,116,139,.28); color: var(--ram-slate); }
.ram-tag--navy  { background: rgba(14,42,94,.05);    border-color: rgba(14,42,94,.14);    color: var(--color-navy); }

/* H1 */
.ram-h1 { font-family: var(--font-heading); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; color: var(--color-navy); margin: 0 0 14px; }
.ram-h1 em { font-style: normal; color: var(--ram-slate); }

.ram-desc { font-size: .88rem; line-height: 1.75; color: var(--color-slate); max-width: 440px; margin: 0 0 20px; }

/* Stats */
.ram-stats { display: flex; align-items: center; background: var(--color-off-white); border: 1px solid var(--color-border); border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.ram-stat { flex: 1; text-align: center; padding: 11px 6px; display: flex; flex-direction: column; gap: 2px; }
.ram-stat strong { font-family: var(--font-heading); font-size: 1rem; font-weight: 900; color: var(--ram-slate); line-height: 1; }
.ram-stat span   { font-family: var(--font-heading); font-size: .6rem; color: var(--color-slate); }
.ram-stat__sep   { width: 1px; height: 24px; background: var(--color-border); flex-shrink: 0; }

.ram-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.ram-btn-primary { background: var(--ram-slate) !important; color: white !important; border-color: var(--ram-slate) !important; }
.ram-btn-primary:hover { background: #475569 !important; border-color: #475569 !important; box-shadow: 0 8px 24px rgba(100,116,139,.35) !important; transform: translateY(-2px); }

/* ── Hero card ── */
.ram-hero__right { position: relative; }
.ram-card { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(100,116,139,.1), 0 2px 8px rgba(0,0,0,.04); max-width: 520px; margin-left: auto; }

.ram-card__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--color-off-white); border-bottom: 1px solid var(--color-border); }
.ram-card__dots { display: flex; gap: 4px; }
.ram-card__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border); }
.ram-card__title { font-family: var(--font-heading); font-size: .74rem; font-weight: 600; color: var(--color-charcoal); flex: 1; display: flex; align-items: center; gap: 7px; }
.ram-card__title i { color: var(--ram-slate); }
.ram-card__live { margin-left: auto; display: flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-size: .66rem; font-weight: 700; color: var(--ram-green); }
.ram-card__live span { width: 6px; height: 6px; border-radius: 50%; background: var(--ram-green); animation: livePulse 1.4s ease-in-out infinite; }

/* KPIs */
.ram-card__kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--color-border); }
.ram-kpi { background: #fff; padding: 10px 6px; text-align: center; }
.ram-kpi strong { display: block; font-family: var(--font-heading); font-size: .9rem; font-weight: 900; line-height: 1; }
.ram-kpi strong small { font-size: .54rem; font-weight: 600; opacity: .7; }
.ram-kpi span { font-family: var(--font-heading); font-size: .58rem; color: var(--color-slate); }
.ram-kpi--slate strong { color: var(--ram-slate); }
.ram-kpi--red   strong { color: var(--ram-red); }
.ram-kpi--amber strong { color: var(--ram-amber); }
.ram-kpi--green strong { color: var(--ram-green); }

/* Asset list */
.ram-card__assets { display: flex; flex-direction: column; }
.ram-asset { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--color-border); transition: background var(--transition); }
.ram-asset:hover { background: var(--color-off-white); }
.ram-asset--fault { border-left: 3px solid var(--ram-red); }
.ram-asset--warn  { border-left: 3px solid var(--ram-amber); }
.ram-asset:not(.ram-asset--fault):not(.ram-asset--warn) { border-left: 3px solid var(--ram-green); }

.ram-asset__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ram-dot--red   { background: var(--ram-red);   animation: livePulse 1.2s infinite; }
.ram-dot--amber { background: var(--ram-amber); }
.ram-dot--green { background: var(--ram-green); }

.ram-asset__info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ram-asset__info strong { font-family: var(--font-heading); font-size: .77rem; font-weight: 700; color: var(--color-navy); }
.ram-asset__info span   { font-family: var(--font-heading); font-size: .66rem; color: var(--color-slate); }

.ram-asset__badge { flex-shrink: 0; padding: 2px 8px; border-radius: 100px; font-family: var(--font-heading); font-size: .6rem; font-weight: 800; }
.ram-badge--red   { background: rgba(239,68,68,.08);  color: var(--ram-red);   border: 1px solid rgba(239,68,68,.2); }
.ram-badge--amber { background: rgba(245,158,11,.08); color: var(--ram-amber); border: 1px solid rgba(245,158,11,.2); }
.ram-badge--green { background: rgba(16,185,129,.08); color: var(--ram-green); border: 1px solid rgba(16,185,129,.2); }

/* Alert strip */
.ram-card__alert { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(100,116,139,.04); border-top: 1px solid rgba(100,116,139,.14); font-family: var(--font-heading); font-size: .71rem; color: var(--color-slate); }
.ram-card__alert strong { color: var(--color-navy); }
.ram-alert-icon { color: var(--ram-slate); flex-shrink: 0; }
.ram-card__alert-badge { margin-left: auto; flex-shrink: 0; padding: 2px 9px; border-radius: 100px; background: rgba(100,116,139,.1); color: var(--ram-slate); font-size: .62rem; font-weight: 800; border: 1px solid rgba(100,116,139,.25); }

/* Card footer */
.ram-card__footer { display: flex; align-items: center; gap: 14px; padding: 7px 14px; background: var(--color-off-white); border-top: 1px solid var(--color-border); font-family: var(--font-heading); font-size: .67rem; }
.ram-card__footer span { display: flex; align-items: center; gap: 5px; }
.ram-fi--green { color: var(--ram-green); }
.ram-fi--red   { color: var(--ram-red); }
.ram-fi--slate { color: var(--ram-slate); }

/* Float badge */
.ram-badge { position: absolute; bottom: -14px; left: 16px; display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 10px; padding: 8px 14px; box-shadow: 0 8px 28px rgba(0,0,0,.12); border: 1px solid var(--color-border); animation: floatBob 3s ease-in-out infinite; }
.ram-badge__icon { color: var(--ram-slate); font-size: 1rem; }
.ram-badge div { display: flex; flex-direction: column; gap: 1px; }
.ram-badge strong { font-family: var(--font-heading); font-size: .9rem; font-weight: 900; color: var(--color-navy); line-height: 1; }
.ram-badge span   { font-family: var(--font-heading); font-size: .62rem; color: var(--color-slate); }

/* ═══ MONITOR GRID ═══ */
.ram-monitor-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.ram-mon-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 20px 12px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); transition: all var(--transition); }
.ram-mon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--ram-slate); }
.ram-mon-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.ram-mon-icon svg { width: 40px; height: 40px; }
.ram-mon-icon--slate  { background: rgba(100,116,139,.08); }
.ram-mon-icon--amber  { background: rgba(245,158,11,.08); }
.ram-mon-icon--blue   { background: rgba(59,130,246,.08); }
.ram-mon-icon--orange { background: rgba(249,115,22,.08); }
.ram-mon-icon--purple { background: rgba(139,92,246,.08); }
.ram-mon-icon--green  { background: rgba(16,185,129,.08); }
.ram-mon-card strong { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: var(--color-navy); }
.ram-mon-card span   { font-family: var(--font-heading); font-size: .66rem; color: var(--color-slate); line-height: 1.4; }

/* ═══ CONNECTIVITY SECTION ═══ */
.ram-connect { background: #fff; }
.section-sub { font-size: .9rem; color: var(--color-slate); max-width: 580px; margin: 0 auto; line-height: 1.7; text-align: center; }

.ram-connect-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }

.ram-conn-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all var(--transition);
}
.ram-conn-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--ram-slate); }
.ram-conn-card--primary { border-color: rgba(100,116,139,.3); background: rgba(100,116,139,.02); }

.ram-conn-icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 4px; }
.ram-conn-icon--slate  { background: rgba(100,116,139,.1); color: var(--ram-slate); }
.ram-conn-icon--teal   { background: rgba(0,194,168,.1);   color: var(--ram-teal); }
.ram-conn-icon--blue   { background: rgba(59,130,246,.1);  color: var(--ram-blue); }
.ram-conn-icon--purple { background: rgba(139,92,246,.1);  color: var(--ram-purple); }

.ram-conn-card h4 { font-family: var(--font-heading); font-size: .92rem; font-weight: 800; color: var(--color-navy); margin: 0; }
.ram-conn-card p  { font-size: .8rem; color: var(--color-slate); line-height: 1.6; margin: 0; flex: 1; }

.ram-conn-specs { display: flex; flex-direction: column; gap: 5px; border-top: 1px solid var(--color-border); padding-top: 10px; margin-top: auto; }
.ram-conn-specs span { display: flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-size: .72rem; color: var(--color-charcoal); }
.ram-conn-specs i { color: var(--ram-green); font-size: .65rem; flex-shrink: 0; }

/* ═══ FEATURE ROWS ═══ */
.ram-rows { }
.ram-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-block: 56px; border-bottom: 1px solid var(--color-border); }
.ram-row:last-child { border-bottom: none; }
.ram-row--flip .ram-row__text   { order: 2; }
.ram-row--flip .ram-row__visual { order: 1; }

.ram-row__icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 14px; }
.ram-row-icon--slate { background: rgba(100,116,139,.1); color: var(--ram-slate); }
.ram-row-icon--red   { background: rgba(239,68,68,.08);  color: var(--ram-red); }
.ram-row-icon--teal  { background: rgba(0,194,168,.1);   color: var(--ram-teal); }

.ram-row__text h3 { font-size: 1.4rem; font-weight: 800; color: var(--color-navy); margin-bottom: 10px; line-height: 1.2; }
.ram-row__text p  { font-size: .88rem; line-height: 1.75; color: var(--color-slate); margin-bottom: 16px; }

.ram-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ram-points li { display: flex; align-items: center; gap: 9px; font-family: var(--font-heading); font-size: .8rem; color: var(--color-charcoal); }
.ram-points i { font-size: .72rem; flex-shrink: 0; color: var(--ram-slate); }
.ram-points--red  i { color: var(--ram-red); }
.ram-points--teal i { color: var(--ram-teal); }

/* Visual card */
.ram-visual-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 12px 40px rgba(100,116,139,.07), 0 2px 8px rgba(0,0,0,.04); }
.ram-vc-bar { display: flex; align-items: center; gap: 9px; padding: 11px 16px; background: var(--color-off-white); border-bottom: 1px solid var(--color-border); font-family: var(--font-heading); font-size: .78rem; font-weight: 600; color: var(--color-charcoal); }

.ram-live-dot { margin-left: auto; display: flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-size: .68rem; font-weight: 700; color: var(--ram-green); }
.ram-live-dot span { width: 6px; height: 6px; border-radius: 50%; background: var(--ram-green); animation: livePulse 1.4s ease-in-out infinite; }

.ram-report-ready { margin-left: auto; font-family: var(--font-heading); font-size: .66rem; font-weight: 700; color: var(--ram-green); background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); padding: 2px 9px; border-radius: 100px; }

/* Map */
.ram-map-wrap { padding: 8px 12px 0; }
.ram-map-wrap svg { width: 100%; height: 170px; display: block; }

/* Predictive list */
.ram-pred-list { display: flex; flex-direction: column; }
.ram-pred { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--color-border); transition: background var(--transition); }
.ram-pred:hover { background: var(--color-off-white); }
.ram-pred--crit { border-left: 3px solid var(--ram-red); }
.ram-pred--warn { border-left: 3px solid var(--ram-amber); }
.ram-pred--info { border-left: 3px solid var(--ram-blue); }

.ram-pred__icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.ram-pred-ico--red   { background: rgba(239,68,68,.1);  color: var(--ram-red); }
.ram-pred-ico--amber { background: rgba(245,158,11,.1); color: var(--ram-amber); }
.ram-pred-ico--blue  { background: rgba(59,130,246,.1); color: var(--ram-blue); }

.ram-pred__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ram-pred__body strong { font-family: var(--font-heading); font-size: .77rem; font-weight: 700; color: var(--color-navy); }
.ram-pred__body span   { font-family: var(--font-heading); font-size: .66rem; color: var(--color-slate); }

.ram-pred__badge { flex-shrink: 0; padding: 3px 9px; border-radius: 100px; font-family: var(--font-heading); font-size: .62rem; font-weight: 800; }
.ram-pred-badge--red   { background: rgba(239,68,68,.08);  color: var(--ram-red);   border: 1px solid rgba(239,68,68,.2); }
.ram-pred-badge--amber { background: rgba(245,158,11,.08); color: var(--ram-amber); border: 1px solid rgba(245,158,11,.2); }
.ram-pred-badge--blue  { background: rgba(59,130,246,.08); color: var(--ram-blue);  border: 1px solid rgba(59,130,246,.2); }

/* Stats strip */
.ram-pred-stats { display: flex; align-items: center; background: var(--color-off-white); border-top: 1px solid var(--color-border); }
.ram-ps-item { flex: 1; text-align: center; padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; }
.ram-ps-item strong { font-family: var(--font-heading); font-size: .92rem; font-weight: 900; line-height: 1; }
.ram-ps-item span   { font-family: var(--font-heading); font-size: .6rem; color: var(--color-slate); }
.ram-ps-sep { width: 1px; height: 28px; background: var(--color-border); flex-shrink: 0; }

/* Uptime chart */
.ram-uptime-chart { padding: 12px 16px; }
.ram-uptime-label { font-family: var(--font-heading); font-size: .67rem; color: var(--color-slate); margin-bottom: 10px; }
.ram-ut-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; font-family: var(--font-heading); font-size: .68rem; }
.ram-ut-name { min-width: 110px; color: var(--color-slate); font-size: .66rem; }
.ram-ut-bar  { flex: 1; height: 7px; background: #f1f5f9; border-radius: 4px; overflow: hidden; }
.ram-ut-bar div { height: 100%; border-radius: 4px; }
.ram-ut-pct  { min-width: 38px; text-align: right; font-weight: 700; font-size: .68rem; }

/* Report rows */
.ram-report-rows { display: flex; flex-direction: column; border-top: 1px solid var(--color-border); }
.ram-rr { display: flex; align-items: center; gap: 9px; padding: 7px 16px; border-bottom: 1px solid var(--color-border); font-family: var(--font-heading); font-size: .72rem; transition: background var(--transition); }
.ram-rr:hover { background: var(--color-off-white); }
.ram-rr:last-child { border-bottom: none; }
.ram-rr span:nth-child(2) { flex: 1; color: var(--color-charcoal); }
.ram-rr span:last-child   { color: var(--color-slate); font-size: .65rem; }

/* Visual footer */
.ram-vc-footer { display: flex; align-items: center; gap: 14px; padding: 8px 16px; background: var(--color-off-white); border-top: 1px solid var(--color-border); font-family: var(--font-heading); font-size: .69rem; color: var(--color-slate); flex-wrap: wrap; }
.ram-vc-footer span { display: flex; align-items: center; gap: 5px; }

/* ═══ SECTORS ═══ */
.ram-sectors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ram-sector-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 22px 14px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); transition: all var(--transition); }
.ram-sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ram-sector-icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.ram-sector-card strong { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; color: var(--color-navy); }
.ram-sector-card span   { font-family: var(--font-heading); font-size: .68rem; font-weight: 600; }

/* ═══ METRICS ═══ */
.ram-metrics { background: var(--ram-slate); padding-block: 48px; }
.ram-metrics__grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.ram-metric { flex: 1; min-width: 110px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ram-metric > i    { font-size: 1.2rem; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.ram-metric strong { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.ram-metric span   { font-family: var(--font-heading); font-size: .7rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ═══ PRODUCTS ═══ */
.ram-prods-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.ram-prod { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); text-decoration: none; transition: all var(--transition); }
.ram-prod:hover { border-color: var(--ram-slate); box-shadow: 0 8px 24px rgba(100,116,139,.12); transform: translateX(4px); }
.ram-prod__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ram-prod__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ram-prod__body em     { font-style: normal; font-family: var(--font-heading); font-size: .6rem; font-weight: 700; letter-spacing: .06em; color: var(--color-slate); text-transform: uppercase; }
.ram-prod__body strong { font-size: .88rem; font-weight: 700; color: var(--color-navy); }
.ram-prod__body span   { font-size: .76rem; color: var(--color-slate); }
.ram-prod__arr { font-size: .8rem; flex-shrink: 0; opacity: 0; transition: all var(--transition); }
.ram-prod:hover .ram-prod__arr { opacity: 1; transform: translateX(3px); }

/* ═══ CTA ═══ */
.ram-cta { background: #fff; }
.ram-cta__inner { background: linear-gradient(135deg, rgba(100,116,139,.04) 0%, rgba(100,116,139,.01) 100%); border: 1px solid rgba(100,116,139,.15); border-radius: var(--radius-xl); padding: 56px; text-align: center; }
.ram-cta__icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(100,116,139,.1); color: var(--ram-slate); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ram-cta__inner h2 { font-size: 1.8rem; font-weight: 800; color: var(--color-navy); margin-bottom: 10px; line-height: 1.2; }
.ram-cta__inner p  { font-size: .9rem; color: var(--color-slate); max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }
.ram-cta__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Eyebrow */
.ram-eyebrow { color: var(--ram-slate) !important; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .ram-monitor-grid { grid-template-columns: repeat(3,1fr); }
  .ram-connect-grid { grid-template-columns: repeat(2,1fr); }
  .ram-sectors-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .ram-hero__grid  { grid-template-columns: 1fr; }
  .ram-hero__right { display: none; }
  .ram-row { grid-template-columns: 1fr; }
  .ram-row--flip .ram-row__text,
  .ram-row--flip .ram-row__visual { order: unset; }
  .ram-prods-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ram-monitor-grid { grid-template-columns: repeat(2,1fr); }
  .ram-connect-grid { grid-template-columns: 1fr; }
  .ram-sectors-grid { grid-template-columns: repeat(2,1fr); }
  .ram-cta__inner   { padding: 32px 20px; }
  .ram-metrics__grid { justify-content: center; }
}
