/* CSS for: home */

.r4h*,.r4h *::before,.r4h *::after{box-sizing:border-box;margin:0;padding:0}
.r4h{
  font-family:'Open Sans',sans-serif;
  background:#ffffff;
  width:100%;
  position:relative;
  overflow:hidden;
  --bd:#0a1f6b;
  --bm:#1a56db;
  --bl:#dbeafe;
  --bxl:#eff6ff;
  --bdr:#e2e8f0;
  --gray:#64748b;
  --dark:#0f172a;
  --acc:#f59e0b;
  --green:#22c55e;
}

/* ── SUBTLE BACKGROUND ── */
.r4h-bg{
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(ellipse 600px 500px at 85% 50%, rgba(26,86,219,.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(26,86,219,.04) 0%, transparent 60%),
    #ffffff;
}
/* Subtle dot grid */
.r4h-dots{
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(26,86,219,.07) 1px,transparent 1px);
  background-size:28px 28px;
}

/* ── LAYOUT ── */
.r4h-wrap{position:relative;z-index:1;max-width:1140px;margin:0 auto;padding:64px 28px 72px}
.r4h-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}

/* ══════════════════════
   LEFT CONTENT
══════════════════════ */
.r4h-left{display:flex;flex-direction:column}

/* Eyebrow badge */
.r4h-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  margin-bottom:20px;width:fit-content;
}
.r4h-eyebrow-pill{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--bxl);border:1.5px solid var(--bl);
  border-radius:50px;padding:6px 14px;
  font-size:12px;font-weight:700;color:var(--bm);
  font-family:'Nunito Sans',sans-serif;
}
.r4h-eyebrow-pill svg{width:13px;height:13px;stroke:var(--bm);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.r4h-live-dot{width:7px;height:7px;border-radius:50%;background:var(--green);flex-shrink:0;animation:r4hBlink 2s ease-in-out infinite}
@keyframes r4hBlink{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(34,197,94,.4)}50%{opacity:.6;box-shadow:0 0 0 5px rgba(34,197,94,0)}}

/* H1 */
.r4h-h1{
  font-family:'Nunito Sans',sans-serif;
  font-weight:900;
  font-size:clamp(2rem,3.8vw,3.4rem);
  line-height:1.1;
  letter-spacing:-1px;
  color:var(--bd);
  margin-bottom:20px;
}
.r4h-h1-blue{color:var(--bm)}
.r4h-h1-line{display:block}

/* Underline decoration */
.r4h-underline{
  display:inline-block;position:relative;
}
.r4h-underline::after{
  content:'';position:absolute;bottom:-3px;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--bm),#60a5fa);
  border-radius:2px;
}

/* Sub text */
.r4h-sub{
  font-size:15px;color:var(--gray);line-height:1.8;
  max-width:460px;margin-bottom:28px;
}
.r4h-sub strong{color:var(--dark);font-weight:600}

/* Trust row */
.r4h-trust{
  display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  margin-bottom:28px;
}
.r4h-trust-item{
  display:inline-flex;align-items:center;gap:5px;
  background:#f8fafc;border:1px solid var(--bdr);
  border-radius:50px;padding:5px 13px;
  font-size:12px;font-weight:600;color:var(--dark);
}
.r4h-trust-item svg{width:13px;height:13px;stroke:var(--bm);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* Buttons */
.r4h-btns{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:40px}

.r4h-btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--bm);color:#fff;
  font-family:'Nunito Sans',sans-serif;font-weight:700;font-size:14px;
  padding:13px 26px;border-radius:10px;text-decoration:none;
  border:2px solid var(--bm);
  box-shadow:0 6px 24px rgba(26,86,219,.25);
  transition:all .25s;
}
.r4h-btn-primary:hover{background:var(--bd);border-color:var(--bd);transform:translateY(-2px);box-shadow:0 10px 32px rgba(26,86,219,.35);color:#fff}
.r4h-btn-primary svg{width:15px;height:15px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s}
.r4h-btn-primary:hover svg{transform:translateX(3px)}

.r4h-btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:var(--bm);
  font-family:'Nunito Sans',sans-serif;font-weight:700;font-size:14px;
  padding:13px 26px;border-radius:10px;text-decoration:none;
  border:2px solid var(--bm);
  transition:all .25s;
}
.r4h-btn-outline:hover{background:var(--bxl);transform:translateY(-2px);color:var(--bm)}
.r4h-btn-outline svg{width:15px;height:15px;stroke:var(--bm);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* Stats */
.r4h-stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;padding-top:28px;
  border-top:1px solid var(--bdr);
}
.r4h-stat{
  padding:0 20px;
  border-right:1px solid var(--bdr);
  text-align:center;
}
.r4h-stat:first-child{padding-left:0;text-align:left}
.r4h-stat:last-child{border-right:none}
.r4h-stat-num{
  font-family:'Nunito Sans',sans-serif;
  font-size:1.75rem;font-weight:900;color:var(--bd);line-height:1;margin-bottom:4px;
}
.r4h-stat-num em{color:var(--bm);font-style:normal}
.r4h-stat-lbl{font-size:11px;color:var(--gray);font-weight:600;text-transform:uppercase;letter-spacing:.5px;line-height:1.3}

/* ══════════════════════
   RIGHT VISUAL
══════════════════════ */
.r4h-right{position:relative}
.r4h-visual-wrap{position:relative;padding:24px 32px 24px 8px}

/* Main dashboard card */
.r4h-card{
  background:#fff;
  border:1.5px solid var(--bdr);
  border-radius:20px;
  padding:24px;
  box-shadow:0 20px 60px rgba(10,31,107,.1),0 4px 16px rgba(10,31,107,.06);
  position:relative;overflow:hidden;
}
/* Top accent line */
.r4h-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--bm),#60a5fa,var(--bm));
  background-size:200% auto;animation:r4hShimmer 3s linear infinite;
}
@keyframes r4hShimmer{0%{background-position:0% center}100%{background-position:200% center}}

/* Card top bar */
.r4h-card-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.r4h-card-title{font-family:'Nunito Sans',sans-serif;font-size:13px;font-weight:800;color:var(--bd)}
.r4h-card-live{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:var(--green)}
.r4h-card-live-dot{width:6px;height:6px;border-radius:50%;background:var(--green);animation:r4hBlink 1.8s ease-in-out infinite}

/* Service grid */
.r4h-svc-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px}
.r4h-svc{
  background:var(--bxl);border:1px solid var(--bl);
  border-radius:12px;padding:14px 12px;
  display:flex;align-items:flex-start;gap:10px;
  transition:all .25s;
}
.r4h-svc:hover{background:var(--bl);border-color:#93c5fd;transform:translateY(-2px);box-shadow:0 6px 16px rgba(26,86,219,.1)}
.r4h-svc-ico{
  width:36px;height:36px;border-radius:9px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--bl);
}
.r4h-svc-ico svg{width:18px;height:18px;stroke:var(--bm);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.r4h-svc-info{}
.r4h-svc-name{font-family:'Nunito Sans',sans-serif;font-size:12px;font-weight:800;color:var(--bd);margin-bottom:2px}
.r4h-svc-stat{font-size:11px;color:var(--bm);font-weight:600}

/* Progress section */
.r4h-prog-section{margin-bottom:20px;display:flex;flex-direction:column;gap:10px}
.r4h-prog-row{}
.r4h-prog-label{display:flex;justify-content:space-between;font-size:11px;font-weight:600;color:var(--gray);margin-bottom:5px}
.r4h-prog-label span:last-child{color:var(--bd);font-weight:700}
.r4h-prog-bar{height:7px;background:var(--bl);border-radius:50px;overflow:hidden}
.r4h-prog-fill{height:100%;border-radius:50px;animation:r4hFillBar 1.4s ease forwards;width:0}
@keyframes r4hFillBar{to{width:var(--w)}}
.r4h-pf1{background:linear-gradient(90deg,var(--bm),#60a5fa);animation-delay:.3s}
.r4h-pf2{background:linear-gradient(90deg,#0ea5e9,#38bdf8);animation-delay:.5s}
.r4h-pf3{background:linear-gradient(90deg,var(--acc),#f97316);animation-delay:.7s}

/* Metric bottom */
.r4h-metric{
  background:linear-gradient(135deg,var(--bd) 0%,#1e40af 100%);
  border-radius:14px;padding:16px 18px;
  display:flex;align-items:center;justify-content:space-between;
}
.r4h-metric-num{font-family:'Nunito Sans',sans-serif;font-size:1.8rem;font-weight:900;color:#fff;line-height:1}
.r4h-metric-lbl{font-size:11px;color:rgba(255,255,255,.65);font-weight:600;margin-top:3px}
.r4h-metric-badge{
  display:flex;align-items:center;gap:4px;
  background:rgba(34,197,94,.2);border:1px solid rgba(34,197,94,.4);
  border-radius:50px;padding:6px 12px;
  font-size:12px;font-weight:800;color:#4ade80;
  font-family:'Nunito Sans',sans-serif;
}
.r4h-metric-badge svg{width:12px;height:12px;stroke:#4ade80;fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}

/* Floating cards */
.r4h-float{
  position:absolute;
  background:#fff;border:1px solid var(--bdr);border-radius:14px;
  padding:12px 16px;
  box-shadow:0 12px 36px rgba(10,31,107,.12);
  display:flex;align-items:center;gap:10px;
  animation:r4hFloat 5s ease-in-out infinite;
  min-width:160px;
}
.r4h-float1{top:-18px;left:-10px;animation-delay:0s}
.r4h-float2{bottom:-18px;right:20px;animation-delay:2.5s}
@keyframes r4hFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}

.r4h-float-ico{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.r4h-fi1{background:var(--bxl)}
.r4h-fi2{background:#f0fdf4}
.r4h-float-ico svg{width:19px;height:19px;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;fill:none}
.r4h-fi1 svg{stroke:var(--bm)}
.r4h-fi2 svg{stroke:#16a34a}
.r4h-float-info strong{display:block;font-family:'Nunito Sans',sans-serif;font-size:12.5px;font-weight:800;color:var(--bd);line-height:1.2}
.r4h-float-info span{font-size:11px;color:var(--gray);font-weight:500}

/* ══════════════════════
   MOBILE RESPONSIVE
══════════════════════ */
@media(max-width:900px){
  .r4h-inner{grid-template-columns:1fr;gap:40px}
  .r4h-sub{max-width:100%}
  .r4h-visual-wrap{padding:20px 10px 20px 10px}
  .r4h-float1{left:-5px;top:-14px}
  .r4h-float2{right:5px;bottom:-14px}
  .r4h-stats{grid-template-columns:repeat(2,1fr);gap:16px;padding-top:24px}
  .r4h-stat{padding:0;border-right:none;text-align:left;border:1px solid var(--bdr);border-radius:12px;padding:14px 16px}
  .r4h-stat:first-child{padding:14px 16px;text-align:left}
  .r4h-stat-num{font-size:1.5rem}
}
@media(max-width:600px){
  .r4h-wrap{padding:44px 16px 52px}
  .r4h-h1{font-size:1.85rem;letter-spacing:-.5px}
  .r4h-sub{font-size:14px}
  .r4h-btns{flex-direction:column}
  .r4h-btn-primary,.r4h-btn-outline{justify-content:center;width:100%;padding:14px 20px}
  .r4h-stats{grid-template-columns:1fr 1fr;gap:10px}
  .r4h-stat-num{font-size:1.35rem}
  .r4h-stat-lbl{font-size:10px}
  .r4h-trust{gap:6px}
  .r4h-trust-item{font-size:11px;padding:5px 11px}
  .r4h-card{padding:18px}
  .r4h-svc-grid{gap:8px}
  .r4h-svc{padding:11px 10px;gap:8px}
  .r4h-svc-name{font-size:11px}
  .r4h-svc-stat{font-size:10px}
  .r4h-metric-num{font-size:1.5rem}
  .r4h-float{min-width:140px;padding:10px 13px}
  .r4h-float-ico{width:32px;height:32px}
  .r4h-float-ico svg{width:16px;height:16px}
  .r4h-float-info strong{font-size:11.5px}
  .r4h-float-info span{font-size:10px}
  .r4h-float1{left:-4px;top:-12px}
  .r4h-float2{right:4px;bottom:-12px}
}
@media(max-width:400px){
  .r4h-h1{font-size:1.65rem}
  .r4h-stats{grid-template-columns:1fr 1fr}
  .r4h-stat-num{font-size:1.2rem}
  .r4h-float{min-width:130px}
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f6b;
  --blue-main:   #1a56db;
  --blue-mid:    #1e40af;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --white:       #ffffff;
  --gray-border: #e2e8f0;
  --gray-text:   #64748b;
  --dark-text:   #0f172a;
  --heading:     #0a1f6b;
  --accent:      #f59e0b;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--dark-text);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.r4s-widget {
  width: 100%;
  padding: 36px 14px 52px;
}

/* ── Header ── */
.r4s-header {
  text-align: center;
  margin-bottom: 36px;
}

.r4s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-main);
  margin-bottom: 12px;
}

.r4s-eyebrow::before,
.r4s-eyebrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-main);
  border-radius: 2px;
}

.r4s-header h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 12px;
}

.r4s-header h2 span { color: var(--blue-main); }

.r4s-header p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  text-align: center;
  margin: 0 auto;
}

/* ── Divider ── */
.r4s-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}

.r4s-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  white-space: nowrap;
}

.r4s-divider::before,
.r4s-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

/* ── Grid — 1 column mobile-first ── */
.r4s-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
}

/* ── Card ── */
.r4s-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.r4s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 12px 12px 0 0;
}

.r4s-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,86,219,0.12); border-color: var(--blue-light); }
.r4s-card:hover::before { transform: scaleX(1); }

/* Icon */
.r4s-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}

.r4s-card:hover .r4s-icon { background: var(--blue-main); }

.r4s-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.22s;
}

.r4s-card:hover .r4s-icon svg { stroke: #fff; }

/* Content */
.r4s-content { flex: 1; min-width: 0; }

.r4s-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-main);
  background: var(--blue-xlight);
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.r4s-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 4px;
}

.r4s-desc {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
}

.r4s-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-main);
}

.r4s-link svg {
  width: 11px; height: 11px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Featured */
.r4s-featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-color: transparent;
}
.r4s-featured .r4s-icon { background: rgba(255,255,255,0.15); }
.r4s-featured .r4s-icon svg { stroke: #fff; }
.r4s-featured:hover .r4s-icon { background: rgba(255,255,255,0.25); }
.r4s-featured .r4s-cat { background: rgba(255,255,255,0.15); color: #fff; }
.r4s-featured .r4s-title { color: #fff; }
.r4s-featured .r4s-desc { color: rgba(255,255,255,0.78); }
.r4s-featured .r4s-link { color: var(--accent); }
.r4s-featured .r4s-link svg { stroke: var(--accent); }
.r4s-featured::before { display: none; }
.r4s-featured:hover { box-shadow: 0 12px 36px rgba(10,31,107,0.3); border-color: transparent; }

/* ── 2 columns: 480px+ ── */
@media (min-width: 480px) {
  .r4s-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .r4s-card { flex-direction: column; padding: 18px 16px; }
  .r4s-featured { flex-direction: row; align-items: flex-start; grid-column: span 2; }
}

/* ── 3 columns: 768px+ ── */
@media (min-width: 768px) {
  .r4s-widget { padding: 48px 24px 64px; }
  .r4s-header h2 { font-size: 34px; }
  .r4s-header p { font-size: 15px; max-width: 560px; }
  .r4s-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .r4s-title { font-size: 15px; }
  .r4s-desc { font-size: 13px; }
  .r4s-featured { grid-column: span 2; }
}

/* ── 4 columns: 1100px+ ── */
@media (min-width: 1100px) {
  .r4s-widget { padding: 56px 32px 72px; }
  .r4s-header h2 { font-size: 40px; }
  .r4s-header p { max-width: 580px; }
  .r4s-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .r4s-featured { grid-column: span 2; }
}

/* Entrance animation */
.r4s-card { opacity: 0; animation: r4sFade 0.4s ease forwards; }
@keyframes r4sFade { to { opacity: 1; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f6b;
  --blue-main:   #1a56db;
  --blue-mid:    #1e40af;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --white:       #ffffff;
  --gray-bg:     #f8fafc;
  --gray-border: #e2e8f0;
  --gray-text:   #64748b;
  --dark-text:   #0f172a;
  --heading:     #0a1f6b;
  --accent:      #f59e0b;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--white);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.r4s-who {
  width: 100%;
  padding: 56px 16px;
}

.r4s-who-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Left Visual ── */
.r4s-who-visual {
  position: relative;
  width: 100%;
}

.r4s-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,86,219,0.15);
  line-height: 0;
}

.r4s-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.r4s-img-wrap:hover img {
  transform: scale(1.03);
}

.r4s-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10,31,107,0.6), transparent);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}

.r4s-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(26,86,219,0.15);
  z-index: 2;
}

.r4s-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: r4sBlink 2s ease-in-out infinite;
}

@keyframes r4sBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.r4s-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.r4s-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.r4s-stat {
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
}

.r4s-stat-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.r4s-stat-num span {
  color: var(--blue-main);
}

.r4s-stat-label {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.4;
  font-weight: 600;
}

/* ── Right Content ── */
.r4s-who-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.r4s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-main);
}

.r4s-eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-main);
  border-radius: 2px;
}

.r4s-who-content h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.r4s-who-content h2 span {
  color: var(--blue-main);
}

.r4s-body-text {
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.8;
}

.r4s-body-text strong {
  color: var(--dark-text);
  font-weight: 600;
}

.r4s-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.r4s-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-main);
}

.r4s-feature svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.r4s-quote {
  background: var(--gray-bg);
  border-left: 4px solid var(--blue-main);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  font-size: 14px;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.7;
}

.r4s-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.r4s-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-main);
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--blue-main);
  transition: background 0.2s, transform 0.2s;
}

.r4s-btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.r4s-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.r4s-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-main);
  font-family: "Nunito Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--blue-main);
  transition: background 0.2s, transform 0.2s;
}

.r4s-btn-outline:hover {
  background: var(--blue-xlight);
  transform: translateY(-2px);
}

.r4s-btn-outline svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tablet+ ── */
@media (min-width: 768px) {
  .r4s-who { padding: 72px 28px; }
  .r4s-who-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .r4s-who-visual { width: 45%; flex-shrink: 0; }
  .r4s-who-content { width: 55%; padding-top: 0; }
  .r4s-who-content h2 { font-size: 32px; }
}

@media (min-width: 1100px) {
  .r4s-who { padding: 80px 40px; }
  .r4s-who-content h2 { font-size: 38px; }
  .r4s-body-text { font-size: 15px; }
}

/* Entrance */
.r4s-who-visual {
  opacity: 0;
  transform: translateY(24px);
  animation: r4sUp 0.6s ease forwards;
}
.r4s-who-content {
  opacity: 0;
  transform: translateY(24px);
  animation: r4sUp 0.6s ease 0.15s forwards;
}
@keyframes r4sUp {
  to { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f6b;
  --blue-main:   #1a56db;
  --blue-mid:    #1e40af;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --white:       #ffffff;
  --gray-bg:     #f8fafc;
  --gray-border: #e2e8f0;
  --gray-text:   #64748b;
  --dark-text:   #0f172a;
  --heading:     #0a1f6b;
  --accent:      #f59e0b;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--white);
  margin: 0; padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.r4s-why {
  width: 100%;
  padding: 0 16px;
  background: var(--white);
}

.r4s-why-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ══════════════════════════
   ROW 1: Text (left) + Stats (right)
══════════════════════════ */
.r4s-row1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Left text */
.r4s-why-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.r4s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-main);
}

.r4s-eyebrow::before {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--blue-main);
  border-radius: 2px;
}

.r4s-why-text h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.r4s-why-text h2 span { color: var(--blue-main); }

.r4s-why-text p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.85;
}

.r4s-why-text p strong {
  color: var(--dark-text);
  font-weight: 600;
}

/* Right stats — horizontal on mobile */
.r4s-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.r4s-stat-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-radius: 14px;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.r4s-stat-box::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.r4s-stat-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.r4s-stat-num span { color: var(--accent); }

.r4s-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ══════════════════════════
   ROW 2: 4 Cards equal height
══════════════════════════ */
.r4s-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}

.r4s-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.r4s-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 14px 14px 0 0;
}

.r4s-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,86,219,0.12);
  border-color: var(--blue-light);
}

.r4s-card:hover::before { transform: scaleX(1); }

/* Featured blue card */
.r4s-card.r4s-featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-color: transparent;
}

.r4s-card.r4s-featured::before { display: none; }

.r4s-card.r4s-featured:hover {
  box-shadow: 0 16px 48px rgba(10,31,107,0.3);
  border-color: transparent;
}

.r4s-card-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.r4s-card:hover .r4s-card-icon { background: var(--blue-main); }

.r4s-card-icon svg {
  width: 21px; height: 21px;
  stroke: var(--blue-main);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}

.r4s-card:hover .r4s-card-icon svg { stroke: #fff; }

.r4s-card.r4s-featured .r4s-card-icon {
  background: rgba(255,255,255,0.15);
}
.r4s-card.r4s-featured .r4s-card-icon svg { stroke: #fff; }
.r4s-card.r4s-featured:hover .r4s-card-icon { background: rgba(255,255,255,0.25); }

.r4s-card-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
}

.r4s-card.r4s-featured .r4s-card-title { color: #fff; }

.r4s-card-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.7;
  flex: 1;
}

.r4s-card.r4s-featured .r4s-card-desc { color: rgba(255,255,255,0.78); }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */

/* Mobile: 1 column cards, stats horizontal 3 col */
@media (max-width: 479px) {
  .r4s-cards-grid { grid-template-columns: 1fr; }
  .r4s-stat-num { font-size: 22px; }
  .r4s-why-text h2 { font-size: 22px; }
}

/* Tablet 768px+: side by side top row, 4 col cards */
@media (min-width: 768px) {
  .r4s-why { padding: 0 28px; }
  .r4s-row1 {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .r4s-why-text { flex: 1; }
  .r4s-stats-row {
    width: 280px;
    flex-shrink: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .r4s-why-text h2 { font-size: 30px; }
  .r4s-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .r4s-why { padding: 0 40px; }
  .r4s-why-text h2 { font-size: 36px; }
  .r4s-why-text p { font-size: 15px; }
  .r4s-stats-row { width: 300px; }
  .r4s-stat-num { font-size: 36px; }
}

/* Entrance */
.r4s-row1 {
  opacity: 0;
  transform: translateY(20px);
  animation: r4sUp 0.5s ease forwards;
}
.r4s-cards-grid {
  opacity: 0;
  transform: translateY(20px);
  animation: r4sUp 0.5s ease 0.2s forwards;
}
@keyframes r4sUp {
  to { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f6b;
  --blue-main:   #1a56db;
  --blue-mid:    #1e40af;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --white:       #ffffff;
  --gray-bg:     #f8fafc;
  --gray-border: #e2e8f0;
  --gray-text:   #64748b;
  --dark-text:   #0f172a;
  --heading:     #0a1f6b;
  --accent:      #f59e0b;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--white);
  margin: 0; padding: 0;
  overflow-x: hidden;
}

.r4s-wrap { width: 100%; padding: 0 16px; background: var(--white); }
.r4s-inner { max-width: 1140px; margin: 0 auto; }

/* ══════════════════════════════
   DESKTOP ORBITAL
══════════════════════════════ */
.r4s-desktop {
  display: none;
  position: relative;
  width: 100%;
  height: 780px;
}

/* Rings */
.r4s-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.r4s-ring-1 { width: 300px; height: 300px; border: 1.5px dashed rgba(26,86,219,0.2); animation: spinRing 22s linear infinite; }
.r4s-ring-2 { width: 500px; height: 500px; border: 1px dashed rgba(26,86,219,0.12); animation: spinRing 36s linear infinite reverse; }
.r4s-ring-3 { width: 680px; height: 680px; border: 1px dashed rgba(26,86,219,0.06); }

@keyframes spinRing {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbiting dots */
.r4s-odot {
  position: absolute;
  width: 9px; height: 9px;
  background: var(--blue-main);
  border-radius: 50%;
  top: 50%; left: 50%;
  box-shadow: 0 0 10px rgba(26,86,219,0.7);
}
.r4s-odot-1 { animation: od1 7s linear infinite; }
.r4s-odot-2 { animation: od2 11s linear infinite; }
.r4s-odot-3 { width: 6px; height: 6px; background: var(--accent); box-shadow: 0 0 8px rgba(245,158,11,0.7); animation: od3 5s linear infinite; }

@keyframes od1 { from{transform:translate(-50%,-50%) rotate(0deg)   translateX(150px) rotate(0deg)}   to{transform:translate(-50%,-50%) rotate(360deg)  translateX(150px) rotate(-360deg)} }
@keyframes od2 { from{transform:translate(-50%,-50%) rotate(60deg)  translateX(250px) rotate(-60deg)} to{transform:translate(-50%,-50%) rotate(420deg)  translateX(250px) rotate(-420deg)} }
@keyframes od3 { from{transform:translate(-50%,-50%) rotate(200deg) translateX(150px) rotate(-200deg)} to{transform:translate(-50%,-50%) rotate(560deg) translateX(150px) rotate(-560deg)} }

/* Center image */
.r4s-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.r4s-center img {
  width: 210px; height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 10px var(--blue-light), 0 20px 60px rgba(26,86,219,0.25);
  display: block;
  animation: pulseImg 3.5s ease-in-out infinite;
}

@keyframes pulseImg {
  0%,100% { box-shadow: 0 0 0 10px var(--blue-light), 0 20px 60px rgba(26,86,219,0.2); }
  50%      { box-shadow: 0 0 0 20px rgba(219,234,254,0.3), 0 20px 60px rgba(26,86,219,0.35); }
}

.r4s-center-badge {
  margin-top: 12px;
  display: inline-block;
  background: var(--blue-main);
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(26,86,219,0.35);
}

/* SVG lines */
.r4s-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── Service Items ── */
.r4s-svc-item {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  width: 210px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.r4s-svc-item:hover { transform: scale(1.05); }

/* Right side items: icon | text */
.r4s-svc-item.r-side { flex-direction: row; }

/* Left side items: text | icon (reversed) */
.r4s-svc-item.l-side { flex-direction: row-reverse; text-align: right; }

/* Icon */
.r4s-ico {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: var(--blue-xlight);
  border: 1.5px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(26,86,219,0.1);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.r4s-svc-item:hover .r4s-ico {
  background: var(--blue-main);
  border-color: var(--blue-main);
  transform: rotate(-6deg) scale(1.1);
}

.r4s-ico svg {
  width: 21px; height: 21px;
  stroke: var(--blue-main); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.25s;
}
.r4s-svc-item:hover .r4s-ico svg { stroke: #fff; }

/* Text */
.r4s-txt {}

.r4s-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px; font-weight: 800;
  color: var(--blue-main);
  background: var(--blue-xlight);
  padding: 2px 7px; border-radius: 5px;
  display: inline-block; margin-bottom: 5px;
  transition: background 0.25s, color 0.25s;
}
.r4s-svc-item:hover .r4s-num { background: var(--blue-main); color: #fff; }

.r4s-ttl {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px; font-weight: 800;
  color: var(--heading); line-height: 1.25;
  margin-bottom: 5px;
}

.r4s-dsc {
  font-size: 11.5px; color: var(--gray-text); line-height: 1.6;
}

/* ── Positions ── */
/* 01 top-right */
.pos-1 { top: 80px; left: calc(50% + 90px); }
/* 02 mid-right */
.pos-2 { top: calc(50% - 40px); left: calc(50% + 270px); }
/* 03 bottom-right */
.pos-3 { bottom: 80px; left: calc(50% + 90px); }
/* 04 bottom-left */
.pos-4 { bottom: 80px; right: calc(50% + 90px); }
/* 05 mid-left */
.pos-5 { top: calc(50% - 40px); right: calc(50% + 270px); }
/* 06 top-left */
.pos-6 { top: 80px; right: calc(50% + 90px); }

/* Entrance */
.r4s-svc-item { opacity: 0; animation: fadeUp 0.5s ease forwards; }
@keyframes fadeUp { to { opacity: 1; } }

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
.r4s-mobile { display: flex; flex-direction: column; gap: 18px; }

.r4s-mob-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0 8px;
  position: relative;
}

.r4s-mob-img img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 10px var(--blue-light), 0 16px 48px rgba(26,86,219,0.25);
  display: block;
  animation: pulseImg 3.5s ease-in-out infinite;
}

@keyframes pulseImg {
  0%,100% { box-shadow: 0 0 0 10px var(--blue-light), 0 16px 48px rgba(26,86,219,0.2); }
  50%      { box-shadow: 0 0 0 18px rgba(219,234,254,0.3), 0 16px 48px rgba(26,86,219,0.35); }
}

.r4s-mob-badge {
  display: inline-block;
  background: var(--blue-main); color: #fff;
  font-family: "Nunito Sans", sans-serif; font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}

.r4s-mob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.r4s-mob-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 12px; padding: 15px 13px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 7px;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  -webkit-tap-highlight-color: transparent;
}
.r4s-mob-card::before {
  content: ""; position: absolute;
  top:0; left:0; right:0; height: 3px;
  background: var(--blue-main);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s; border-radius: 12px 12px 0 0;
}
.r4s-mob-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(26,86,219,0.12); border-color: var(--blue-light); }
.r4s-mob-card:hover::before { transform: scaleX(1); }

.mc-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--blue-xlight); display: flex; align-items: center; justify-content: center; transition: background 0.22s; }
.r4s-mob-card:hover .mc-ico { background: var(--blue-main); }
.mc-ico svg { width: 16px; height: 16px; stroke: var(--blue-main); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.22s; }
.r4s-mob-card:hover .mc-ico svg { stroke: #fff; }
.mc-num { font-size: 10px; font-weight: 800; color: var(--blue-main); background: var(--blue-xlight); padding: 2px 6px; border-radius: 4px; display: inline-block; }
.mc-ttl { font-family: "Nunito Sans", sans-serif; font-size: 12.5px; font-weight: 800; color: var(--heading); line-height: 1.3; }
.mc-dsc { font-size: 11px; color: var(--gray-text); line-height: 1.55; }

/* Show/hide */
@media (max-width: 899px) {
  .r4s-desktop { display: none !important; }
  .r4s-mobile  { display: flex; }
}
@media (min-width: 900px) {
  .r4s-wrap { padding: 0 24px; }
  .r4s-desktop { display: block; }
  .r4s-mobile  { display: none; }
}
@media (min-width: 1100px) { .r4s-wrap { padding: 0 40px; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f6b;
  --blue-main:   #1a56db;
  --blue-mid:    #1e40af;
  --blue-light:  #dbeafe;
  --blue-xlight: #eff6ff;
  --white:       #ffffff;
  --gray-bg:     #f8fafc;
  --gray-border: #e2e8f0;
  --gray-text:   #64748b;
  --dark-text:   #0f172a;
  --heading:     #0a1f6b;
  --accent:      #f59e0b;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--white);
  margin: 0; padding: 0;
  overflow-x: hidden;
}

.r4s-wrap {
  width: 100%;
  padding: 0 16px;
  background: var(--white);
}

.r4s-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Grid: 2 cols on tablet+, 1 col mobile ── */
.r4s-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
}

/* ── Mobile first item layout ── */
.r4s-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border-bottom: 1px solid var(--gray-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.r4s-item:last-child { border-bottom: none; }

.r4s-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-main);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.r4s-item:hover { background: var(--blue-xlight); }
.r4s-item:hover::before { transform: scaleY(1); }

/* Number — smaller on mobile */
.r4s-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  min-width: 32px;
  flex-shrink: 0;
  transition: color 0.25s;
  user-select: none;
}

.r4s-item:hover .r4s-num { color: var(--blue-main); }

/* Icon — smaller on mobile */
.r4s-ico {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 11px;
  background: var(--blue-xlight);
  border: 1.5px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.r4s-item:hover .r4s-ico {
  background: var(--blue-main);
  border-color: var(--blue-main);
  transform: rotate(-5deg) scale(1.08);
}

.r4s-ico svg {
  width: 18px; height: 18px;
  stroke: var(--blue-main); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.25s;
}
.r4s-item:hover .r4s-ico svg { stroke: #fff; }

/* Text block */
.r4s-txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r4s-ttl {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  transition: color 0.25s;
}

.r4s-item:hover .r4s-ttl { color: var(--blue-main); }

.r4s-dsc {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Arrow — hide on very small screens */
.r4s-arrow {
  align-self: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.r4s-item:hover .r4s-arrow {
  background: var(--blue-main);
  border-color: var(--blue-main);
  transform: translateX(3px);
}

.r4s-arrow svg {
  width: 13px; height: 13px;
  stroke: var(--gray-text); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.25s;
}
.r4s-item:hover .r4s-arrow svg { stroke: #fff; }

/* Alternating row bg */
.r4s-item:nth-child(even) { background: var(--gray-bg); }
.r4s-item:nth-child(even):hover { background: var(--blue-xlight); }

/* ── 2 column layout on tablet+ ── */
@media (min-width: 700px) {
  .r4s-list {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    gap: 0;
  }

  .r4s-item {
    border-bottom: 1px solid var(--gray-border);
    border-right: 1px solid var(--gray-border);
    padding: 22px 18px;
    gap: 14px;
  }

  .r4s-item:nth-child(2n) { border-right: none; }
  .r4s-item:nth-last-child(-n+2) { border-bottom: none; }
  .r4s-item:nth-child(even) { background: var(--white); }
  .r4s-item:nth-child(even):hover { background: var(--blue-xlight); }

  .r4s-num { font-size: 28px; min-width: 40px; }
  .r4s-ico { width: 48px; height: 48px; min-width: 48px; }
  .r4s-ico svg { width: 20px; height: 20px; }
  .r4s-ttl { font-size: 16px; }
  .r4s-dsc { font-size: 13px; }
  .r4s-arrow { width: 34px; height: 34px; }
}

@media (min-width: 900px) {
  .r4s-wrap { padding: 0 24px; }
  .r4s-item { padding: 26px 22px; gap: 16px; }
  .r4s-num { font-size: 32px; min-width: 48px; }
  .r4s-ico { width: 52px; height: 52px; min-width: 52px; }
  .r4s-ico svg { width: 22px; height: 22px; }
  .r4s-ttl { font-size: 17px; }
  .r4s-dsc { font-size: 13.5px; }
  .r4s-arrow { width: 36px; height: 36px; }
}

@media (min-width: 1100px) {
  .r4s-wrap { padding: 0 40px; }
  .r4s-ttl { font-size: 18px; }
}

/* Entrance animation */
.r4s-item {
  opacity: 0;
  transform: translateY(16px);
  animation: r4sFade 0.4s ease forwards;
}

@keyframes r4sFade {
  to { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Open Sans", sans-serif;
  background: transparent;
  margin: 0; padding: 0;
  overflow-x: hidden;
}

.r4s-skills {
  width: 100%;
  padding: 48px 16px;
  background: linear-gradient(135deg, #0a1f6b 0%, #1a56db 60%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

/* Background blobs */
.r4s-skills::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
  pointer-events: none;
}

.r4s-skills::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

.r4s-skills-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Grid */
.r4s-circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  justify-items: center;
}

/* Each circle item */
.r4s-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* SVG circle wrapper */
.r4s-svg-wrap {
  position: relative;
  width: 150px; height: 150px;
}

.r4s-svg-wrap svg {
  width: 150px; height: 150px;
  transform: rotate(-90deg);
}

/* Background track */
.r4s-track {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 10;
}

/* Orange progress arc */
.r4s-progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke: url(#progressGrad);
  stroke-dasharray: 408;
  stroke-dashoffset: 408;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* White inner circle */
.r4s-inner-circle {
  fill: white;
}

/* Percent text in center */
.r4s-pct {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a56db;
  line-height: 1;
  text-align: center;
}

/* Label below */
.r4s-label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

/* Tablet: 4 columns */
@media (min-width: 600px) {
  .r4s-circles { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .r4s-svg-wrap { width: 160px; height: 160px; }
  .r4s-svg-wrap svg { width: 160px; height: 160px; }
  .r4s-pct { font-size: 30px; }
}

@media (min-width: 900px) {
  .r4s-skills { padding: 60px 28px; }
  .r4s-svg-wrap { width: 180px; height: 180px; }
  .r4s-svg-wrap svg { width: 180px; height: 180px; }
  .r4s-pct { font-size: 34px; }
  .r4s-label { font-size: 17px; }
}

@media (min-width: 1100px) {
  .r4s-skills { padding: 60px 40px; }
}

/* All styles scoped to .r4s-widget-results only — no body/html overrides */

.r4s-widget-results *,
.r4s-widget-results *::before,
.r4s-widget-results *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.r4s-widget-results {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  padding: 0 16px;
  background: transparent;
  overflow: hidden;
}

.r4s-wr-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* Layout */
.r4s-wr-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Left Image ── */
.r4s-wr-img-side {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: r4sWrUp 0.5s ease forwards;
}

.r4s-wr-img-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,86,219,0.15);
}

.r4s-wr-img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.r4s-wr-img-box:hover img { transform: scale(1.03); }

.r4s-wr-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1a56db;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
}

.r4s-wr-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: r4sWrBlink 2s ease-in-out infinite;
}

@keyframes r4sWrBlink {
  0%,100% { opacity:1; }
  50%      { opacity:0.3; }
}

/* ── Right Content ── */
.r4s-wr-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: r4sWrUp 0.5s ease 0.15s forwards;
}

@keyframes r4sWrUp {
  to { opacity:1; transform:translateY(0); }
}

.r4s-wr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a56db;
  font-family: "Open Sans", sans-serif;
}

.r4s-wr-eyebrow::before {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: #1a56db;
  border-radius: 2px;
}

.r4s-wr-content h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0a1f6b;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.r4s-wr-content h2 span { color: #1a56db; }

/* Tabs */
.r4s-wr-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.r4s-wr-tab {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  transition: all 0.22s ease;
  outline: none;
  line-height: 1;
}

.r4s-wr-tab:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: #eff6ff;
}

.r4s-wr-tab.r4s-active {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}

/* Panels */
.r4s-wr-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  animation: r4sWrFade 0.35s ease;
}

.r4s-wr-panel.r4s-active { display: flex; }

@keyframes r4sWrFade {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

.r4s-wr-panel-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0a1f6b;
  line-height: 1.3;
}

.r4s-wr-panel-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  font-family: "Open Sans", sans-serif;
}

/* Bullets */
.r4s-wr-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.r4s-wr-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #0f172a;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

.r4s-wr-bico {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #1a56db;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.r4s-wr-bico svg {
  width: 11px; height: 11px;
  stroke: #fff; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

/* Mini stats */
.r4s-wr-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.r4s-wr-stat {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.r4s-wr-stat-num {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a56db;
  line-height: 1;
  margin-bottom: 3px;
}

.r4s-wr-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  font-family: "Open Sans", sans-serif;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .r4s-widget-results { padding: 0 28px; }
  .r4s-wr-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 52px;
  }
  .r4s-wr-img-side { width: 46%; flex-shrink: 0; }
  .r4s-wr-content { width: 54%; padding-top: 4px; }
  .r4s-wr-content h2 { font-size: 30px; }
}

@media (min-width: 1024px) {
  .r4s-widget-results { padding: 0 40px; }
  .r4s-wr-content h2 { font-size: 36px; }
  .r4s-wr-panel-text { font-size: 15px; }
}

@media (max-width: 480px) {
  .r4s-wr-content h2 { font-size: 22px; }
  .r4s-wr-panel-title { font-size: 16px; }
  .r4s-wr-badge { font-size: 11px; padding: 8px 14px; bottom: 12px; left: 12px; }
}

.r4s-reviews *,
.r4s-reviews *::before,
.r4s-reviews *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.r4s-reviews {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  padding: 0 16px;
  background: transparent;
  overflow: hidden;
}

.r4s-rv-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Header ── */
.r4s-rv-header {
  text-align: center;
  margin-bottom: 40px;
}

.r4s-rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a56db;
  margin-bottom: 12px;
}

.r4s-rv-eyebrow::before,
.r4s-rv-eyebrow::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: #1a56db;
  border-radius: 2px;
}

.r4s-rv-header h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0a1f6b;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.r4s-rv-header h2 span { color: #1a56db; }

.r4s-rv-header p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* Overall rating bar */
.r4s-rv-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.r4s-rv-big-score {
  font-family: "Nunito Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #0a1f6b;
  line-height: 1;
}

.r4s-rv-stars-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r4s-rv-stars {
  display: flex;
  gap: 3px;
}

.r4s-rv-star {
  font-size: 18px;
  color: #f59e0b;
}

.r4s-rv-total {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* ── Grid ── */
.r4s-rv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ── Card ── */
.r4s-rv-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.r4s-rv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #1a56db;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.r4s-rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,86,219,0.12);
  border-color: #dbeafe;
}

.r4s-rv-card:hover::before { transform: scaleX(1); }

/* Featured card */
.r4s-rv-card.r4s-rv-featured {
  background: linear-gradient(135deg, #0a1f6b 0%, #1e40af 100%);
  border-color: transparent;
}

.r4s-rv-card.r4s-rv-featured::before { display: none; }

.r4s-rv-card.r4s-rv-featured:hover {
  box-shadow: 0 16px 48px rgba(10,31,107,0.3);
  border-color: transparent;
}

/* Quote icon */
.r4s-rv-quote {
  font-size: 48px;
  line-height: 1;
  color: #dbeafe;
  font-family: Georgia, serif;
  font-weight: 900;
  height: 32px;
  display: block;
  margin-bottom: -8px;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-quote {
  color: rgba(255,255,255,0.2);
}

/* Stars */
.r4s-rv-card-stars {
  display: flex;
  gap: 2px;
}

.r4s-rv-card-star {
  font-size: 14px;
  color: #f59e0b;
}

/* Review text */
.r4s-rv-text {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-text {
  color: rgba(255,255,255,0.82);
}

/* Divider */
.r4s-rv-divider {
  height: 1px;
  background: #e2e8f0;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-divider {
  background: rgba(255,255,255,0.15);
}

/* Author */
.r4s-rv-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.r4s-rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a56db, #0a1f6b);
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-avatar {
  background: rgba(255,255,255,0.2);
}

.r4s-rv-author-info {
  flex: 1;
  min-width: 0;
}

.r4s-rv-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #0a1f6b;
  line-height: 1.2;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-name { color: #fff; }

.r4s-rv-role {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-role { color: rgba(255,255,255,0.65); }

/* Verified badge */
.r4s-rv-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #1a56db;
  background: #eff6ff;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-verified {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.r4s-rv-verified svg {
  width: 10px; height: 10px;
  stroke: #1a56db; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.r4s-rv-card.r4s-rv-featured .r4s-rv-verified svg { stroke: #fff; }

/* ── Responsive ── */
@media (min-width: 600px) {
  .r4s-rv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .r4s-reviews { padding: 0 28px; }
  .r4s-rv-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .r4s-rv-header h2 { font-size: 34px; }
}

@media (min-width: 1100px) {
  .r4s-reviews { padding: 0 40px; }
}

/* Entrance */
.r4s-rv-card {
  opacity: 0;
  transform: translateY(20px);
  animation: r4sRvUp 0.45s ease forwards;
}

@keyframes r4sRvUp {
  to { opacity:1; transform:translateY(0); }
}