/* ================================================================
   SHAARAIT HOMEPAGE — CUSTOM CSS
   Copy everything below into: Appearance → Customize → Additional CSS
   Brand: Navy #000C66 | Lime Green #32CD32
   ================================================================ */
 
:root {
  --sh-navy: #000C66;
  --sh-navy-deep: #000844;
  --sh-navy-mid: #0a1a80;
  --sh-lime: #32CD32;
  --sh-lime-dark: #22a322;
  --sh-white: #ffffff;
  --sh-off-white: #f8f8fb;
  --sh-gray-100: #f0f1f8;
  --sh-gray-200: #dde0f0;
  --sh-text-primary: #0a0e2c;
  --sh-text-secondary: #000000;
  --sh-text-muted: #8a90b8;
  --sh-radius: 4px;
  --sh-radius-lg: 12px;
  --sh-radius-xl: 20px;
  --sh-shadow: 0 2px 24px rgba(0,12,102,0.08);
  --sh-shadow-hover: 0 8px 40px rgba(0,12,102,0.14);
  --sh-transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}
 
/* Scoped to shaarait page elements — prefixed sh- to avoid conflicts with WPBakery */
.sh-section { -webkit-font-smoothing: antialiased; }
.sh-container { max-width: 1160px; margin: 0 auto; padding: 0 32px; width: 100%; }
 
.sh-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sh-lime); margin-bottom: 14px;
}
.sh-section-tag::before {
  content: ''; display: block; width: 22px; height: 2px; background: var(--sh-lime);
}
 
/* ---- BUTTONS ---- */
.sh-btn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600;
  border-radius: var(--sh-radius); padding: 12px 24px; cursor: pointer;
  text-decoration: none; transition: var(--sh-transition); letter-spacing: 0.02em;
  border: none; line-height: 1;
}
.sh-btn-primary { background: var(--sh-lime); color: var(--sh-navy); }
.sh-btn-primary:hover { background: #28b828; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(50,205,50,0.35); color: var(--sh-navy); text-decoration: none; }
.sh-btn-outline { background: transparent; color: var(--sh-white); border: 1.5px solid rgba(255,255,255,0.4); }
.sh-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--sh-white); text-decoration: none; }
.sh-btn-wa { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.3); font-size: 13px; }
.sh-btn-wa:hover { background: rgba(37,211,102,0.22); color: #25d366; text-decoration: none; }
.sh-btn-navy-outline { background: transparent; color: var(--sh-navy); border: 1.5px solid var(--sh-navy); }
.sh-btn-navy-outline:hover { background: var(--sh-navy); color: var(--sh-white); text-decoration: none; }
 
/* ================================================================
   SECTION 1 — HERO
   WPBakery: Full-width Row | Background: #000844
   ================================================================ */
.sh-hero {
  position: relative; overflow: hidden;
  background: var(--sh-navy-deep);
  padding: 80px 0 80px;
}
/* animated grid texture */
.sh-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(50,205,50,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50,205,50,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: sh-grid 22s linear infinite;
}
@keyframes sh-grid { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }
 
/* floating glows */
.sh-hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.sh-glow-a { width: 480px; height: 480px; background: rgba(50,205,50,0.055); top: -120px; right: 100px; animation: sh-float1 9s ease-in-out infinite; }
.sh-glow-b { width: 340px; height: 340px; background: rgba(10,26,128,0.5); bottom: -100px; left: -80px; animation: sh-float2 12s ease-in-out infinite; }
.sh-glow-c { width: 220px; height: 220px; background: rgba(50,205,50,0.04); top: 40%; right: 60px; animation: sh-float1 14s ease-in-out 2s infinite; }
@keyframes sh-float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-18px,18px); } }
@keyframes sh-float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(16px,-14px); } }
 
.sh-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
 
/* LEFT */
.sh-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(50,205,50,0.12); border: 1px solid rgba(50,205,50,0.3);
  border-radius: 40px; padding: 6px 16px; margin-bottom: 26px;
  animation: sh-fadeup 0.6s ease both;
}
.sh-hero-badge-dot {
  width: 7px; height: 7px; background: var(--sh-lime); border-radius: 50%;
  animation: sh-pulse 2s ease infinite;
}
@keyframes sh-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.55; transform:scale(0.82); } }
.sh-hero-badge span { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sh-lime); }
 
.sh-hero-h1 {
  font-family: Roboto, sans-serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.0;
  color: var(--sh-white); letter-spacing: -0.01em;
  margin: 0 0 24px; animation: sh-fadeup 0.7s ease 0.1s both;
}
.sh-hero-h1 em { font-style: normal; color: var(--sh-lime); }
.sh-hero-h1 .sh-underline { display: inline-block; position: relative; }
.sh-hero-h1 .sh-underline::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--sh-lime);
  transform: scaleX(0); transform-origin: left;
  animation: sh-line 0.6s ease 0.9s both;
}
@keyframes sh-line { to { transform: scaleX(1); } }
 
.sh-hero-sub { font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.7); line-height: 1.78; margin: 0 0 32px;
  max-width: 480px; animation: sh-fadeup 0.7s ease 0.2s both;
}
 
.sh-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: sh-fadeup 0.7s ease 0.3s both; margin-bottom: 48px; }
 
.sh-trust { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); animation: sh-fadeup 0.7s ease 0.45s both; }
.sh-trust-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.sh-trust-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.sh-trust-logo {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sh-radius); padding: 5px 12px; letter-spacing: 0.02em;
  transition: var(--sh-transition);
}
.sh-trust-logo:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); }
 
@keyframes sh-fadeup { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
 
/* RIGHT — solution panel */
.sh-hero-panel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sh-radius-xl); padding: 28px; position: relative; overflow: hidden;
  animation: sh-fadeup 0.8s ease 0.25s both;
}
.sh-hero-panel::before {
  content: ''; position: absolute; top: -1px; left: 24px; right: 24px;
  height: 1px; background: linear-gradient(90deg,transparent,var(--sh-lime),transparent);
}
.sh-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sh-panel-head-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.sh-panel-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--sh-lime); font-weight: 600; }
.sh-panel-status::before { content:''; width:6px; height:6px; background:var(--sh-lime); border-radius:50%; animation: sh-pulse 2s ease infinite; }
 
.sh-pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sh-pillar-tile {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--sh-radius-lg); padding: 16px; cursor: pointer;
  transition: var(--sh-transition); text-decoration: none; display: block;
}
.sh-pillar-tile:hover { background: rgba(50,205,50,0.08); border-color: rgba(50,205,50,0.3); transform: translateY(-2px); text-decoration: none; }
.sh-pt-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.sh-pt-name { font-size: 13px; font-weight: 600; color: var(--sh-white); margin-bottom: 3px; line-height: 1.3; }
.sh-pt-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.sh-pt-bar { height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px; overflow: hidden; }
.sh-pt-fill { height: 100%; background: var(--sh-lime); border-radius: 1px; }
 
.sh-panel-stats { margin-top: 12px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.sh-pstat { text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--sh-radius); padding: 12px 8px; }
.sh-pstat-num { font-size: 26px; font-weight: 700; color: var(--sh-white); line-height: 1; }
.sh-pstat-num span { color: var(--sh-lime); }
.sh-pstat-label { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 4px; }
 
/* ================================================================
   SECTION 2 — KEY DIFFERENTIATORS (NEW)
   WPBakery: Full-width Row | Background: #ffffff
   ================================================================ */
.sh-diff-section { padding: 80px 0; background: var(--sh-white); }
.sh-diff-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sh-diff-header h2 {
  font-size: clamp(34px,4vw,52px); font-weight: 700;
  color: var(--sh-navy); line-height: 1.05; margin: 0 0 14px;
}
.sh-diff-header p { font-size: 17px; color: var(--sh-text-secondary); line-height: 1.75; }
 
.sh-diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--sh-gray-200); border-radius: var(--sh-radius-xl); overflow: hidden; box-shadow: var(--sh-shadow); }
.sh-diff-card {
  padding: 40px 32px; border-right: 1px solid var(--sh-gray-200);
  position: relative; overflow: hidden; background: var(--sh-white);
  transition: var(--sh-transition);
}
.sh-diff-card:last-child { border-right: none; }
.sh-diff-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--sh-lime); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.sh-diff-card:hover { background: var(--sh-off-white); }
.sh-diff-card:hover::after { transform: scaleX(1); }
 
.sh-diff-num { font-size:14px; font-weight:700; color:var(--sh-lime); letter-spacing:0.1em; margin-bottom:20px; }
.sh-diff-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--sh-radius-lg);
  background: var(--sh-navy); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 20px;
  transition: var(--sh-transition);
}
.sh-diff-card:hover .sh-diff-icon-wrap { background: var(--sh-lime); }
.sh-diff-name { font-size:22px; font-weight:700; color:var(--sh-navy); line-height:1.1; margin-bottom:12px; }
.sh-diff-desc { font-size:16px; color:var(--sh-text-secondary); line-height:1.65; margin-bottom:20px; }
.sh-diff-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:24px; }
.sh-diff-tag {
  font-size:11px; font-weight:600; padding:4px 10px;
  border:1px solid rgba(0,12,102,0.2); border-radius:20px;
  color:var(--sh-navy); background:rgba(0,12,102,0.05);
  letter-spacing:0.03em;
}
.sh-diff-link { font-size:13px; font-weight:600; color:var(--sh-navy); display:flex; align-items:center; gap:5px; transition:var(--sh-transition); text-decoration:none; }
.sh-diff-link:hover { color:var(--sh-lime-dark); gap:10px; text-decoration:none; }
 
/* ================================================================
   SECTION 3 — STATS RIBBON
   WPBakery: Full-width Row | Background: #32CD32
   ================================================================ */
.sh-stats-ribbon { background: var(--sh-lime); padding: 0; }
.sh-stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.sh-stat-cell { padding: 28px 32px; border-right: 1px solid rgba(0,12,102,0.14); }
.sh-stat-cell:last-child { border-right: none; }
.sh-stat-num { font-size:44px; font-weight:700;
  color:var(--sh-navy); line-height:1; margin-bottom:5px;
}
.sh-stat-label { font-size:13px; font-weight:500; color:rgba(0,12,102,0.7); line-height:1.4; }
 
/* ================================================================
   SECTION 4 — SOLUTION PILLARS (4 columns)
   WPBakery: Full-width Row | Background: #f8f8fb
   ================================================================ */
.sh-pillars-section { padding: 100px 0; background: var(--sh-white); }
.sh-pillars-header { max-width: 640px; margin-bottom: 56px; }
.sh-pillars-header h2 { font-size:clamp(36px,4vw,54px);
  font-weight:700; color:var(--sh-navy); line-height:1.05; margin:0 0 14px;
}
.sh-pillars-header p { font-size:17px; color:var(--sh-text-secondary); line-height:1.75; }
 
.sh-pillars-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--sh-gray-200); border-radius:var(--sh-radius-xl); overflow:hidden; box-shadow:var(--sh-shadow); }
.sh-pillar {
  padding:40px 28px; border-right:1px solid var(--sh-gray-200);
  position:relative; overflow:hidden; background:var(--sh-white);
  transition:var(--sh-transition); text-decoration:none; display:block;
}
.sh-pillar:last-child { border-right:none; }
.sh-pillar::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--sh-lime); transform:scaleX(0); transition:transform 0.3s ease; }
.sh-pillar:hover { background:var(--sh-off-white); }
.sh-pillar:hover::before { transform:scaleX(1); }
.sh-pillar-num { font-size:14px; font-weight:700; color:var(--sh-lime); letter-spacing:0.1em; margin-bottom:18px; }
.sh-pillar-icon { width:52px; height:52px; border-radius:var(--sh-radius-lg); background:var(--sh-navy); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:18px; transition:var(--sh-transition); }
.sh-pillar:hover .sh-pillar-icon { background:var(--sh-lime); }
.sh-pillar-name { font-size:20px; font-weight:700; color:var(--sh-navy); line-height:1.1; margin-bottom:10px; }
.sh-pillar-desc { font-size:16px; color:var(--sh-text-secondary); line-height:1.6; margin-bottom:18px; }
.sh-pillar-list { list-style:none; margin-bottom:24px; padding:0; }
.sh-pillar-list li { font-size:14px; color:var(--sh-text-secondary); padding:5px 0; display:flex; align-items:center; gap:7px; border-bottom:1px solid var(--sh-gray-200); }
.sh-pillar-list li:last-child { border-bottom:none; }
.sh-pillar-list li::before { content:''; display:block; width:5px; height:5px; background:var(--sh-lime); border-radius:50%; flex-shrink:0; }
.sh-pillar-cta { font-size:15px; font-weight:600; color:var(--sh-navy); display:flex; align-items:center; gap:5px; transition:var(--sh-transition); text-decoration:none; }
.sh-pillar:hover .sh-pillar-cta { color:var(--sh-lime-dark); gap:10px; }
 
/* ================================================================
   SECTION 5 — INDUSTRIES
   WPBakery: Full-width Row | Background: #000C66
   ================================================================ */
.sh-industries { padding:100px 0; background:var(--sh-navy); position:relative; overflow:hidden; }
.sh-industries::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image: linear-gradient(rgba(50,205,50,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(50,205,50,0.03) 1px,transparent 1px);
  background-size:80px 80px;
}
.sh-ind-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:52px; position:relative; }
.sh-ind-header h2 { font-size:clamp(36px,4vw,54px); font-weight:700; color:var(--sh-white); line-height:1.05; max-width:480px; margin:0; }
.sh-ind-header p { font-size:18px; color:rgba(255,255,255,0.5); max-width:300px; line-height:1.7; }
 
.sh-sectors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; position:relative; }
.sh-sector {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--sh-radius-xl); padding:30px 26px;
  transition:var(--sh-transition); position:relative; overflow:hidden;
  text-decoration:none; display:block;
}
.sh-sector::before { content:''; position:absolute; top:0; left:0; width:3px; height:0; background:var(--sh-lime); transition:height 0.3s ease; }
.sh-sector:hover { background:rgba(255,255,255,0.07); border-color:rgba(50,205,50,0.25); text-decoration:none; }
.sh-sector:hover::before { height:100%; }
.sh-sector-icon { font-size:30px; margin-bottom:14px; display:block; }
.sh-sector-name { font-size:21px; font-weight:700; color:var(--sh-white); margin-bottom:9px; }
.sh-sector-desc { font-size:15px; color:rgba(255,255,255,0.55); line-height:1.65; margin-bottom:18px; }
.sh-sector-chips { display:flex; flex-wrap:wrap; gap:6px; }
.sh-chip { font-size:11px; font-weight:600; padding:4px 10px; border:1px solid rgba(50,205,50,0.3); border-radius:20px; color:var(--sh-lime); background:rgba(50,205,50,0.08); }
 
/* ================================================================
   SECTION 6 — WHY SHAARAIT
   WPBakery: Full-width Row | Background: #f8f8fb
   ================================================================ */
.sh-why { padding:100px 0; background:var(--sh-off-white); }
.sh-why-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
 
.sh-why-left h2 { font-size:clamp(34px,4vw,52px); font-weight:700; color:var(--sh-navy); line-height:1.05; margin:0 0 18px; }
.sh-why-left > p { font-size:17px; color:var(--sh-text-secondary); line-height:1.75; margin-bottom:36px; }
.sh-why-list { list-style:none; padding:0; }
.sh-why-item { display:flex; align-items:flex-start; gap:16px; padding:20px 0; border-bottom:1px solid var(--sh-gray-200); }
.sh-why-item:last-child { border-bottom:none; }
.sh-why-icon { width:42px; height:42px; background:var(--sh-navy); border-radius:var(--sh-radius); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.sh-why-text h4 { font-size:15px; font-weight:600; color:var(--sh-navy); margin:0 0 5px; }
.sh-why-text p { font-size:13px; color:var(--sh-text-secondary); line-height:1.65; margin:0; }
 
.sh-ach-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.sh-ach-card { background:var(--sh-white); border:1px solid var(--sh-gray-200); border-radius:var(--sh-radius-xl); padding:26px 22px; box-shadow:var(--sh-shadow); transition:var(--sh-transition); }
.sh-ach-card:hover { box-shadow:var(--sh-shadow-hover); transform:translateY(-3px); }
.sh-ach-card.featured { background:var(--sh-navy); border-color:var(--sh-navy); grid-column:span 2; display:flex; align-items:center; gap:26px; }
.sh-ach-num { font-size:52px; font-weight:700; color:var(--sh-navy); line-height:1; margin-bottom:5px; }
.sh-ach-num span { color:var(--sh-lime); }
.sh-ach-card.featured .sh-ach-num { font-size:62px; color:var(--sh-white); flex-shrink:0; }
.sh-ach-label { font-size:15px; font-weight:500; color:var(--sh-text-secondary); line-height:1.4; }
.sh-ach-sub { font-size:11px; color:var(--sh-text-muted); margin-top:4px; }
.sh-ach-card.featured .sh-ach-label { color:rgba(255,255,255,0.65); font-size:15px; }
.sh-ach-card.featured .sh-ach-sub { color:rgba(255,255,255,0.35); }
 
/* ================================================================
   SECTION 7 — PARTNERS
   WPBakery: Full-width Row | Background: #ffffff
   ================================================================ */
.sh-partners { padding:60px 0; background:var(--sh-white); border-top:1px solid var(--sh-gray-200); border-bottom:1px solid var(--sh-gray-200); }
.sh-partners-label { text-align:center; font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--sh-text-muted); margin-bottom:32px; }
.sh-partners-row { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; }
.sh-partner { flex:1; min-width:120px; max-width:180px; text-align:center; padding:14px 20px; border-right:1px solid var(--sh-gray-200); cursor:pointer; transition:var(--sh-transition); }
.sh-partner:last-child { border-right:none; }
.sh-partner:hover .sh-partner-name { color:var(--sh-navy); }
.sh-partner-name { display:block; font-size:14px; font-weight:700; color:var(--sh-text-muted); transition:var(--sh-transition); }
.sh-partner-tier { display:block; font-size:10px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--sh-lime); margin-top:3px; }
 
/* ================================================================
   SECTION 8 — INSIGHTS / BLOG
   WPBakery: Full-width Row | Background: #ffffff
   ================================================================ */
.sh-insights { padding:100px 0; background:var(--sh-white); }
.sh-insights-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:44px; }
.sh-insights-head h2 { font-size:clamp(32px,4vw,48px); font-weight:700; color:var(--sh-navy); line-height:1.05; margin:0; }
.sh-insights-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:22px; }
.sh-article { background:var(--sh-white); border:1px solid var(--sh-gray-200); border-radius:var(--sh-radius-xl); overflow:hidden; box-shadow:var(--sh-shadow); transition:var(--sh-transition); text-decoration:none; display:block; }
.sh-article:hover { box-shadow:var(--sh-shadow-hover); transform:translateY(-3px); text-decoration:none; }
.sh-article-img { height:200px; background:var(--sh-navy); position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:18px; }
.sh-article:not(:first-child) .sh-article-img { height:140px; }
.sh-article-img-bg { position:absolute; inset:0; opacity:0.2; background-image:linear-gradient(rgba(50,205,50,0.25) 1px,transparent 1px),linear-gradient(90deg,rgba(50,205,50,0.25) 1px,transparent 1px); background-size:28px 28px; }
.sh-article-cat { position:relative; font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--sh-navy); background:var(--sh-lime); padding:3px 10px; border-radius:3px; }
.sh-article-body { padding:22px; }
.sh-article:not(:first-child) .sh-article-body { padding:16px; }
.sh-article-title { font-size:20px; font-weight:700; color:var(--sh-navy); line-height:1.2; margin-bottom:10px; }
.sh-article:not(:first-child) .sh-article-title { font-size:16px; }
.sh-article-excerpt { font-size:14px; color:var(--sh-text-secondary); line-height:1.6; margin-bottom:14px; }
.sh-article:not(:first-child) .sh-article-excerpt { display:none; }
.sh-article-meta { display:flex; align-items:center; gap:7px; font-size:12px; color:var(--sh-text-muted); }
.sh-meta-dot { width:3px; height:3px; background:var(--sh-text-muted); border-radius:50%; }
 
/* ================================================================
   SECTION 9 — CTA
   WPBakery: Full-width Row | Background: #000844
   ================================================================ */
.sh-cta { padding:100px 0; background:var(--sh-navy-deep); position:relative; overflow:hidden; }
.sh-cta::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:linear-gradient(rgba(50,205,50,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(50,205,50,0.04) 1px,transparent 1px);
  background-size:48px 48px;
}
.sh-cta::after { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; border-radius:50%; background:rgba(50,205,50,0.04); filter:blur(80px); pointer-events:none; }
.sh-cta-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr auto; gap:60px; align-items:center; }
.sh-cta-left h2 { font-size:clamp(36px,4vw,56px); font-weight:700; color:var(--sh-white); line-height:1.05; margin:0 0 16px; }
.sh-cta-left h2 span { color:var(--sh-lime); }
.sh-cta-left p { font-size:17px; color:rgba(255,255,255,0.6); line-height:1.75; max-width:560px; margin:0; }
.sh-cta-actions { display:flex; flex-direction:column; gap:12px; align-items:flex-start; flex-shrink:0; }
.sh-cta-btn {
  display:inline-flex; align-items:center; gap:10px;
  font-size:15px; font-weight:700; color:var(--sh-navy); background:var(--sh-lime);
  border:none; border-radius:var(--sh-radius); padding:16px 32px;
  cursor:pointer; text-decoration:none; transition:var(--sh-transition); white-space:nowrap;
}
.sh-cta-btn:hover { background:#28b828; transform:translateY(-2px); box-shadow:0 8px 30px rgba(50,205,50,0.4); color:var(--sh-navy); text-decoration:none; }
.sh-cta-alt { font-size:12px; color:rgba(255,255,255,0.4); text-align:center; }
.sh-cta-alt a { color:rgba(255,255,255,0.65); }
.sh-cta-alt a:hover { color:var(--sh-white); }
 
/* SCROLL REVEAL — applied via JS observer */
.sh-reveal { opacity:0; transform:translateY(28px); transition:opacity 0.6s ease,transform 0.6s ease; }
.sh-reveal.sh-visible { opacity:1; transform:translateY(0); }
.sh-reveal-d1 { transition-delay:0.1s; }
.sh-reveal-d2 { transition-delay:0.2s; }
.sh-reveal-d3 { transition-delay:0.3s; }
 
/* ================================================================
   RESPONSIVE — basic breakpoint for tablet
   ================================================================ */
@media (max-width: 900px) {
  .sh-hero-inner { grid-template-columns:1fr; gap:40px; }
  .sh-hero-panel { display:none; } /* hide panel on mobile, keep hero text clean */
  .sh-diff-grid { grid-template-columns:1fr; }
  .sh-pillars-grid { grid-template-columns:1fr 1fr; }
  .sh-sectors-grid { grid-template-columns:1fr 1fr; }
  .sh-why-inner { grid-template-columns:1fr; gap:48px; }
  .sh-insights-grid { grid-template-columns:1fr; }
  .sh-stats-inner { grid-template-columns:1fr 1fr; }
  .sh-cta-inner { grid-template-columns:1fr; gap:32px; }
  .sh-ach-card.featured { grid-column:span 2; }
  .sh-ind-header { flex-direction:column; align-items:flex-start; gap:16px; }
  .sh-insights-head { flex-direction:column; align-items:flex-start; gap:16px; }
}
@media (max-width: 600px) {
  .sh-container { padding: 0 20px; }
  .sh-pillars-grid { grid-template-columns:1fr; }
  .sh-sectors-grid { grid-template-columns:1fr; }
  .sh-stats-inner { grid-template-columns:1fr 1fr; }
  .sh-ach-grid { grid-template-columns:1fr; }
  .sh-ach-card.featured { grid-column:span 1; flex-direction:column; }
}