@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =============================================
   OWAIS AHMED SHEIKH - SEO EXPERT KARACHI
   Shared Styles v2.0  - Full UI/UX Upgrade
   ============================================= */

:root {
  --bg: #07111b;
  --card: #0d1e2e;
  --card2: #0a1929;
  --card3: #0f2236;
  --accent: #16a34a;
  --accent2: #10b981;
  --accent-glow: rgba(22,163,74,.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --muted2: #64748b;
  --border: rgba(22,163,74,.18);
  --border2: rgba(255,255,255,.07);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.32);
  --shadow-green: 0 8px 40px rgba(22,163,74,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.22; letter-spacing: -.025em; font-weight: 800; }
h1 { font-size: clamp(34px, 5.5vw, 62px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p { color: var(--muted); line-height: 1.8; }

.grad-text {
  background: linear-gradient(135deg, #16a34a 0%, #10b981 60%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- CONTAINER ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ---- SECTIONS ---- */
section { padding: 96px 0; }
section.bg-alt { background: var(--card2); }
section.bg-dark { background: rgba(0,0,0,.28); }

.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: 100px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; line-height: 1.8; }
.section-head.center .section-sub { margin: 12px auto 0; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: filter .18s, transform .16s, box-shadow .18s;
  box-shadow: 0 6px 28px rgba(22,163,74,.38);
  letter-spacing: .01em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .18s;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(22,163,74,.52); }
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent2);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(16,185,129,.38);
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .16s;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(16,185,129,.09); border-color: rgba(16,185,129,.72); transform: translateY(-2px); }
.ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,17,27,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
}
.nav-logo .logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #10b981);
  box-shadow: 0 0 10px rgba(16,185,129,.6);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s, background .15s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-cta { font-size: 13.5px !important; color: var(--accent2) !important; border: 1px solid rgba(16,185,129,.32) !important; padding: 8px 18px !important; }
.nav-cta:hover { background: rgba(16,185,129,.11) !important; border-color: rgba(16,185,129,.6) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 24px 20px;
  border-top: 1px solid var(--border2);
  background: rgba(7,17,27,.98);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 600; color: var(--muted);
  padding: 11px 14px; border-radius: 10px; text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ---- HERO SPLIT (homepage) ---- */
.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(22,163,74,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent2);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.28);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); box-shadow: 0 0 8px rgba(16,185,129,.7); flex-shrink: 0; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin-bottom: 36px; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; }
.hero-stat-num { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.hero-stat-num span { color: var(--accent2); }
.hero-stat-label { font-size: 12px; color: var(--muted2); margin-top: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ---- PROFILE PHOTO CARD ---- */
.profile-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.profile-photo-bg {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, rgba(22,163,74,.14) 0%, rgba(16,185,129,.08) 100%);
  border-radius: 28px;
  border: 1px solid rgba(22,163,74,.22);
  box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255,255,255,.06);
}
.profile-photo-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(22,163,74,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.profile-photo-img {
  image-rendering: auto;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.5));
}
.profile-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(7,17,27,.92);
  border: 1px solid rgba(22,163,74,.32);
  border-radius: 100px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.profile-photo-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.8); animation: pulse-dot 2s infinite; flex-shrink: 0; }
.profile-photo-badge-text { font-size: 13px; font-weight: 700; color: #fff; }
.profile-photo-badge-sub { font-size: 11px; color: var(--muted2); margin-top: 1px; }
.profile-stat-chips {
  position: absolute;
  top: 32px;
  right: -16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-chip {
  background: rgba(7,17,27,.9);
  border: 1px solid rgba(22,163,74,.28);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  min-width: 130px;
}
.profile-chip-num { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.profile-chip-num span { color: var(--accent2); }
.profile-chip-label { font-size: 11px; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ---- ABOUT PHOTO SECTION ---- */
.about-photo-wrap {
  position: relative;
  border-radius: 22px;
  overflow: visible;
}
.about-photo-img {
  image-rendering: auto;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  border: 1px solid rgba(22,163,74,.18);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  min-width: 220px;
}
.about-badge-icon { font-size: 28px; }
.about-badge-title { font-size: 15px; font-weight: 800; color: #fff; }
.about-badge-sub { font-size: 12px; color: var(--muted2); margin-top: 2px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border2);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(22,163,74,.055) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 18px; max-width: 720px; }
.page-hero-sub { font-size: 18px; color: var(--muted); max-width: 580px; margin-bottom: 34px; line-height: 1.78; }
.page-hero-note { font-size: 13px; color: var(--muted2); margin-top: 20px; }

/* ---- CARDS ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .28s, box-shadow .28s, transform .22s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(22,163,74,.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .28s;
}
.card:hover { border-color: rgba(22,163,74,.36); box-shadow: 0 12px 48px rgba(22,163,74,.12), 0 4px 16px rgba(0,0,0,.24); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card-icon { font-size: 34px; margin-bottom: 18px; display: block; }
.card-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 5px; color: var(--accent2); font-size: 13.5px; font-weight: 700; margin-top: 18px; transition: gap .15s; }
.card:hover .card-link { gap: 8px; }

/* ---- GRIDS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- PROCESS ---- */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item { display: flex; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border2); align-items: flex-start; }
.process-item:last-child { border-bottom: none; }
.process-num {
  font-size: 12px; font-weight: 900; color: var(--accent2);
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.28);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .04em; margin-top: 2px;
}
.process-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.process-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---- CHECKLIST ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--muted); }
.check-icon { color: var(--accent2); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ---- WHY SECTION ---- */
.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; }
.why-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(22,163,74,.12); border: 1px solid rgba(22,163,74,.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.why-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.why-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 30px 26px;
  transition: border-color .25s, transform .22s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,255,140,.5), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}
.testimonial-card:hover { border-color: rgba(22,163,74,.25); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.testimonial-card:hover::before { opacity: 1; }
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; letter-spacing: 3px; min-height: 18px; }
.testi-stars::before { content: '★★★★★'; }
.testi-text { font-size: 14.5px; color: var(--text); line-height: 1.78; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 54px; height: 54px; border-radius: 18px;
  background: linear-gradient(135deg, #16a34a, #10b981);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 16px; flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(49,255,140,.22);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-name { font-size: 14px; font-weight: 800; color: #fff; }
.testi-role { font-size: 12px; color: var(--muted2); margin-top: 2px; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 0; }
.faq-item:first-child { border-top: 0; }
.faq-item details {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
}
.faq-item details[open] {
  border-color: rgba(49,255,140,.18);
  box-shadow: 0 20px 50px rgba(0,0,0,.24), 0 0 28px rgba(49,255,140,.05);
}
.faq-q {
  padding: 24px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent2);
  background: rgba(49,255,140,.06);
  border: 1px solid rgba(49,255,140,.14);
  transition: transform .22s, background .22s, border-color .22s;
}
.faq-item details[open] .faq-q::after {
  transform: rotate(45deg);
  background: rgba(49,255,140,.12);
  border-color: rgba(49,255,140,.22);
}
.faq-a {
  padding: 0 24px 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-a a { color: var(--accent2); }

/* ---- CTA BLOCK ---- */
.cta-block {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(22,163,74,.07) 0%, rgba(7,17,27,0) 60%);
  border-top: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(22,163,74,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { margin-bottom: 34px; font-size: 17px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-block .ctas { justify-content: center; }

/* ---- AUDIT / SIDE BOX ---- */
.audit-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.audit-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a34a 0%, #10b981 100%);
}
.audit-box h3 { margin-bottom: 16px; color: #fff; }

/* ---- STAT BOX ---- */
.stat-box {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: border-color .25s, transform .22s;
}
.stat-box:hover { border-color: rgba(22,163,74,.32); transform: translateY(-3px); }
.stat-num { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -.04em; }
.stat-num .accent { color: var(--accent2); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.55; }

/* ---- BREADCRUMB ---- */
.breadcrumb { font-size: 13px; color: var(--muted2); margin-bottom: 22px; display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }
.breadcrumb a { color: var(--muted2); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ---- BLOG ---- */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .28s, box-shadow .28s, transform .22s;
}
.blog-card:hover { border-color: rgba(22,163,74,.3); box-shadow: 0 8px 40px rgba(22,163,74,.1); transform: translateY(-4px); }
.blog-card-body {
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-tag { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--accent2); margin-bottom: 12px; }
.blog-card-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.42; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--accent2); }
.blog-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 18px; }
.blog-meta {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}
.blog-read-more { color: var(--accent2); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* ---- ARTICLE ---- */
.article-body { font-size: 16px; color: var(--muted); line-height: 1.88; }
.article-body h2 { color: #fff; margin: 44px 0 16px; font-size: clamp(20px, 3vw, 28px); }
.article-body h3 { color: #fff; margin: 32px 0 12px; font-size: clamp(17px, 2vw, 21px); font-weight: 700; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--accent2); }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 14px 22px; background: rgba(22,163,74,.06); border-radius: 0 10px 10px 0; margin: 28px 0; font-style: italic; }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-input, .form-textarea, .form-select {
  background: var(--card2);
  border: 1.5px solid var(--border2);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: rgba(22,163,74,.55);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted2); }
.form-textarea { min-height: 135px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--card); }
.form-submit {
  width: 100%; height: 52px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 15px; font-weight: 800;
  background: linear-gradient(135deg, #16a34a, #10b981);
  color: #fff;
  transition: filter .18s, transform .16s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
}
.form-submit:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,.48); }

/* ---- FOOTER ---- */
.site-footer {
  background: rgba(0,0,0,.28);
  border-top: 1px solid var(--border2);
  padding: 64px 0 36px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13.5px; color: var(--muted2); margin-top: 14px; line-height: 1.7; max-width: 270px; }
.footer-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; color: #fff; text-decoration: none; }
.footer-col-title { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13.5px; color: var(--muted2); text-decoration: none; transition: color .15s; }
.footer-link:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted2); }
.footer-copy a { color: var(--accent2); text-decoration: none; }

/* ---- CALLOUT ---- */
.callout {
  background: rgba(22,163,74,.07);
  border: 1px solid rgba(22,163,74,.22);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}
.callout strong { color: var(--text); font-weight: 700; }
.callout-title { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--accent2); margin-bottom: 6px; }

/* ---- BADGES ---- */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 100px; }
.badge-green { background: rgba(22,163,74,.12); color: #22c55e; border: 1px solid rgba(22,163,74,.28); }
.badge-yellow { background: rgba(245,158,11,.1); color: #f59e0b; border: 1px solid rgba(245,158,11,.25); }
.badge-red { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.25); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 99;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.55);
  transition: transform .18s, box-shadow .18s;
  text-decoration: none; font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.7); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 28px;
  background: rgba(22,163,74,.04);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.trust-item span { color: var(--accent2); }

.trust-strip-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
}

.trust-point-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(49,255,140,.1), transparent 38%),
    linear-gradient(180deg, rgba(9,22,13,.98), rgba(6,12,8,.99));
  border: 1px solid rgba(49,255,140,.12);
  box-shadow:
    0 24px 64px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.trust-point-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(49,255,140,.2), rgba(19,190,111,.08));
  border: 1px solid rgba(49,255,140,.18);
  box-shadow: 0 12px 30px rgba(49,255,140,.12);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #55ffa3;
  letter-spacing: -.02em;
}

.trust-point-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.trust-point-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: #f4fbf6;
}

.trust-point-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

@media (max-width: 980px) {
  .trust-strip-proof {
    grid-template-columns: 1fr;
  }
}

/* ---- COVERAGE GRID ---- */
@media (max-width: 640px) {
  .coverage-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .trust-strip-proof { grid-template-columns: 1fr; }
  .trust-point-card { padding: 20px 18px; }
  .trust-point-value { min-width: 54px; height: 54px; border-radius: 16px; font-size: 17px; }
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .04s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .2s; }
.d4 { transition-delay: .28s; }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .profile-photo-wrap { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 68px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top > *:first-child { grid-column: 1/-1; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 56px; }
  .page-hero { padding: 60px 0 52px; }
  .hero-stats { gap: 24px; }
  .profile-stat-chips { display: none; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
  .container, .container-sm { padding: 0 18px; }
}

/* ---- CASE STUDY CARDS ---- */
.case-card { background: linear-gradient(135deg, rgba(13,30,46,.98), rgba(10,25,41,.98)); border: 1px solid var(--border2); border-radius: 22px; padding: 34px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.case-card::before { content:''; position:absolute; inset:0 0 auto 0; height:2px; background:linear-gradient(90deg, #16a34a, #10b981, transparent); }
.case-kicker { font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--accent2); margin-bottom: 10px; }
.case-card h3 { margin-bottom: 12px; color: #fff; }
.case-card p { font-size: 14.5px; }
.case-grid { display:grid; grid-template-columns: 1.45fr 1fr; gap: 28px; margin-top: 24px; }
.case-card ul { list-style: disc; padding-left: 20px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.case-card li { margin-bottom: 8px; }
.intent-strip { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.intent-pill { border:1px solid rgba(16,185,129,.25); background:rgba(16,185,129,.08); color:var(--text); border-radius:999px; padding:7px 12px; font-size:12.5px; font-weight:700; }
@media (max-width: 768px) { .case-grid { grid-template-columns:1fr; } .case-card { padding:24px; } .nav-links a { padding:8px 10px; } }

  .lead-form-layout { display:grid; grid-template-columns: .9fr 1.25fr; gap:48px; align-items:start; }
  .lead-form-card { position:sticky; top:88px; }
  .lead-benefits { display:flex; flex-direction:column; gap:14px; margin:28px 0; }
  .form-success { display:none; color:#22c55e; font-size:14px; margin-top:14px; text-align:center; font-weight:700; }
  .nav-links .nav-cta.active { color:#fff !important; background:rgba(16,185,129,.16) !important; }
  @media (max-width: 900px) { .lead-form-layout { grid-template-columns:1fr; } .lead-form-card { position:static; } }
  

/* Premium SaaS visual system */
:root { --cyan:#22d3ee; --glass:rgba(13,30,46,.72); }
body::before { content:''; position:fixed; inset:0; pointer-events:none; z-index:-1; background: radial-gradient(circle at 12% 18%, rgba(16,185,129,.12), transparent 28%), radial-gradient(circle at 88% 12%, rgba(34,211,238,.08), transparent 30%), linear-gradient(180deg, rgba(7,17,27,0), rgba(7,17,27,.78)); }
section { position:relative; }
section::after { content:''; position:absolute; inset:auto 8% 0 auto; width:220px; height:220px; background:radial-gradient(circle, rgba(16,185,129,.08), transparent 70%); pointer-events:none; filter:blur(6px); }
.site-nav { box-shadow:0 8px 30px rgba(0,0,0,.22); }
.nav-links a:focus-visible, .nav-mobile a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline:3px solid rgba(34,211,238,.72); outline-offset:3px; }
.card, .audit-box, .testimonial-card, .stat-box, .case-card { background:linear-gradient(145deg, rgba(13,30,46,.88), rgba(10,25,41,.78)); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); box-shadow:0 18px 60px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05); }
.card:hover, .testimonial-card:hover, .case-card:hover { transform:translateY(-5px); border-color:rgba(16,185,129,.38); box-shadow:0 22px 70px rgba(0,0,0,.34), 0 0 42px rgba(16,185,129,.1); }
.btn-primary, .form-submit { min-height:50px; }
.btn-primary::before { content:''; position:absolute; top:-60%; left:-25%; width:40%; height:220%; background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); transform:rotate(18deg); transition:left .55s ease; }
.btn-primary:hover::before { left:115%; }
.card-icon, .why-icon, .about-badge-icon, .contact-icon { width:52px; height:52px; border-radius:16px; background:linear-gradient(145deg, rgba(16,185,129,.18), rgba(34,211,238,.08)); border:1px solid rgba(16,185,129,.28); position:relative; flex-shrink:0; box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(16,185,129,.12); }
.card-icon::before, .why-icon::before, .about-badge-icon::before, .contact-icon::before { content:''; position:absolute; inset:14px; border:2px solid #34d399; border-radius:7px; }
.icon-pin::before { border-radius:50% 50% 50% 0; transform:rotate(-45deg); } .icon-pin::after { content:''; position:absolute; width:6px; height:6px; border-radius:50%; background:#22d3ee; left:23px; top:22px; }
.icon-gear::before { border-radius:50%; border-style:dashed; } .icon-doc::before { border-radius:4px; border-right-color:#22d3ee; } .icon-link::before { border-radius:999px; transform:rotate(-25deg); } .icon-search::before { border-radius:50%; } .icon-search::after { content:''; position:absolute; width:12px; height:2px; background:#22d3ee; transform:rotate(45deg); right:12px; bottom:14px; }
.icon-chart::before { border:0; inset:auto 13px 13px 13px; height:26px; background:linear-gradient(90deg, #16a34a 0 18%, transparent 18% 28%, #22d3ee 28% 48%, transparent 48% 58%, #34d399 58% 100%); clip-path:polygon(0 70%,18% 70%,18% 100%,28% 100%,28% 42%,48% 42%,48% 100%,58% 100%,58% 10%,100% 10%,100% 100%,0 100%); }
.icon-chat::before { border-radius:10px; } .icon-chat::after { content:''; position:absolute; left:16px; bottom:13px; border:6px solid transparent; border-top-color:#34d399; border-left-color:#34d399; }
.icon-shield::before { border-radius:12px 12px 16px 16px; clip-path:polygon(50% 0,100% 18%,84% 100%,50% 84%,16% 100%,0 18%); } .icon-award::before, .icon-star::before { border:0; background:#34d399; clip-path:polygon(50% 0,62% 33%,98% 35%,70% 56%,79% 91%,50% 72%,21% 91%,30% 56%,2% 35%,38% 33%); }
.icon-mail::before { border-radius:4px; } .icon-mail::after { content:''; position:absolute; left:15px; right:15px; top:20px; height:12px; border-left:2px solid #22d3ee; border-bottom:2px solid #22d3ee; transform:rotate(-45deg); }
.icon-phone::before { border-radius:8px; transform:rotate(-18deg); border-left-width:6px; } .icon-check::before, .check-icon::before { content:''; position:absolute; width:15px; height:8px; border-left:2px solid #34d399; border-bottom:2px solid #34d399; transform:rotate(-45deg); left:8px; top:8px; }
.check-icon { position:relative; width:26px; height:26px; display:inline-flex; flex:0 0 26px; border-radius:9px; background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.24); }
.hero { min-height:calc(100vh - 66px); display:flex; align-items:center; }
.hero::after { content:''; position:absolute; right:8%; top:16%; width:360px; height:360px; border-radius:999px; background:radial-gradient(circle, rgba(34,211,238,.1), transparent 66%); filter:blur(8px); animation:floatGlow 7s ease-in-out infinite; }
.hero-proof-strip { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.hero-proof-strip span { color:#cbd5e1; font-size:12.5px; font-weight:800; border:1px solid rgba(16,185,129,.2); background:rgba(16,185,129,.08); border-radius:999px; padding:8px 12px; }
.profile-photo-img, .about-photo-img { filter:contrast(1.05) saturate(1.06); }
.page-hero { overflow:hidden; background:linear-gradient(135deg, rgba(7,17,27,.98), rgba(10,25,41,.92)); }
.page-hero::before { content:''; position:absolute; inset:-20% -10% auto auto; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle, rgba(16,185,129,.12), transparent 68%); pointer-events:none; }
.page-hero-layout { display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:58px; align-items:center; }
.page-hero-copy { min-width:0; }
.page-hero-visual { min-height:310px; position:relative; display:flex; align-items:center; justify-content:center; }
.visual-orb { position:absolute; width:260px; height:260px; border-radius:80px; background:linear-gradient(145deg, rgba(16,185,129,.18), rgba(34,211,238,.08)); filter:blur(.2px); transform:rotate(12deg); box-shadow:0 0 80px rgba(16,185,129,.12); animation:floatCard 6s ease-in-out infinite; }
.visual-panel { position:relative; width:310px; border:1px solid rgba(16,185,129,.28); border-radius:26px; padding:18px; background:rgba(13,30,46,.76); backdrop-filter:blur(18px); box-shadow:0 28px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08); }
.visual-topline { display:flex; gap:7px; margin-bottom:18px; } .visual-topline span { width:9px; height:9px; border-radius:50%; background:#16a34a; } .visual-topline span:nth-child(2){background:#22d3ee}.visual-topline span:nth-child(3){background:#64748b}
.visual-search { display:flex; align-items:center; gap:10px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.04); border-radius:15px; padding:12px; color:#fff; font-size:13px; } .visual-search i { width:12px; height:12px; border:2px solid #34d399; border-radius:50%; position:relative; } .visual-search i::after{content:'';position:absolute;width:7px;height:2px;background:#34d399;right:-6px;bottom:-4px;transform:rotate(45deg)}
.visual-bars { display:grid; gap:12px; margin:20px 0; } .visual-bars span { height:10px; width:var(--w); border-radius:999px; background:linear-gradient(90deg, #16a34a, #22d3ee); box-shadow:0 0 20px rgba(16,185,129,.24); }
.visual-grid-mini { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; } .visual-grid-mini span { height:52px; border-radius:14px; background:linear-gradient(145deg, rgba(16,185,129,.13), rgba(255,255,255,.04)); border:1px solid rgba(255,255,255,.06); }
.back-to-top { position:fixed; left:22px; bottom:22px; width:42px; height:42px; border-radius:14px; z-index:90; background:rgba(13,30,46,.82); border:1px solid rgba(16,185,129,.28); backdrop-filter:blur(14px); box-shadow:0 12px 32px rgba(0,0,0,.28); } .back-to-top::before { content:''; position:absolute; left:14px; top:16px; width:13px; height:13px; border-left:2px solid #00ff71; border-top:2px solid #00ff71; transform:rotate(45deg); }
.site-footer { position:relative; overflow:hidden; } .site-footer::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 82% 16%, rgba(16,185,129,.1), transparent 32%), linear-gradient(90deg, rgba(16,185,129,.04), transparent); pointer-events:none; }
@keyframes floatCard { 0%,100%{transform:translateY(0) rotate(12deg)} 50%{transform:translateY(-12px) rotate(16deg)} } @keyframes floatGlow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(18px)} }
@media (max-width: 900px) { .hero { min-height:auto; } .page-hero-layout { grid-template-columns:1fr; gap:34px; } .page-hero-visual { min-height:230px; } .visual-panel { width:min(310px,100%); } .back-to-top { display:none; } }
@media (max-width: 640px) { .hero-proof-strip span { width:100%; text-align:center; } .page-hero-visual { display:none; } }

.icon-cart::before, .icon-retail::before { border-radius:4px; border-top:0; } .icon-home::before { border:0; background:#34d399; clip-path:polygon(50% 0,100% 42%,86% 42%,86% 100%,14% 100%,14% 42%,0 42%); } .icon-restaurant::before { border-radius:999px; } .icon-clinic::before { border:0; background:#34d399; clip-path:polygon(38% 0,62% 0,62% 36%,100% 36%,100% 62%,62% 62%,62% 100%,38% 100%,38% 62%,0 62%,0 36%,38% 36%); } .icon-hotel::before, .icon-school::before, .icon-construction::before, .icon-law::before, .icon-salon::before { border-radius:5px; } .icon-hotel::after, .icon-school::after { content:''; position:absolute; left:19px; right:19px; top:15px; bottom:15px; background:repeating-linear-gradient(180deg, #22d3ee 0 3px, transparent 3px 7px); }

/* ---- HOMEPAGE HERO SHOWCASE OVERRIDE ---- */
.hero-showcase {
  min-height: 560px;
  align-items: flex-end;
  justify-content: center;
  padding-right: 8px;
}
.hero-showcase .profile-photo-bg,
.hero-showcase .profile-photo-glow {
  display: none;
}
.hero-showcase-panel {
  position: absolute;
  inset: 8px 18px 26px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(52, 211, 153, .10), transparent 20%),
    linear-gradient(180deg, rgba(11, 33, 19, .96), rgba(8, 20, 14, .98));
  border: 1px solid rgba(52, 211, 153, .12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
}
.hero-showcase-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5));
  opacity: .24;
}
.hero-showcase-glow {
  position: absolute;
  right: -24px;
  bottom: -36px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16,185,129,.24) 0%, rgba(16,185,129,.08) 38%, transparent 72%);
  filter: blur(6px);
  animation: heroAmbient 5.5s ease-in-out infinite;
}
.hero-showcase-topbar {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero-showcase-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero-showcase-topbar span:nth-child(1) { background: #ef4444; }
.hero-showcase-topbar span:nth-child(2) { background: #eab308; }
.hero-showcase-topbar span:nth-child(3) { background: #4ade80; }
.hero-showcase-topbar i {
  margin-left: auto;
  width: 128px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.hero-showcase-chart {
  position: absolute;
  inset: 86px 44px 84px 44px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-showcase-fill {
  position: absolute;
  inset: 26px 6px 24px 6px;
  background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.03));
  clip-path: polygon(0 100%, 0 78%, 76% 14%, 100% 10%, 100% 100%);
  opacity: .95;
  animation: heroFillPulse 4.8s ease-in-out infinite;
}
.hero-showcase-line {
  position: absolute;
  left: 2%;
  right: 4%;
  top: 48%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27f58b 0%, #37ff9c 60%, #79ffbd 100%);
  box-shadow: 0 0 22px rgba(39,245,139,.45);
  transform-origin: left center;
  transform: rotate(-34deg) scaleX(1);
  animation: heroTrend 4.8s ease-in-out infinite;
}
.hero-showcase-point {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #31ff8c;
  box-shadow: 0 0 0 8px rgba(49,255,140,.12), 0 0 26px rgba(49,255,140,.22);
}
.hero-showcase-cards {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  z-index: 1;
}
.hero-showcase-cards span {
  position: relative;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.hero-showcase-cards span::before,
.hero-showcase-cards span::after {
  content: '';
  position: absolute;
  left: 14px;
  border-radius: 999px;
}
.hero-showcase-cards span::before {
  top: 14px;
  width: 34px;
  height: 8px;
  background: rgba(255,255,255,.26);
}
.hero-showcase-cards span::after {
  bottom: 14px;
  width: 48px;
  height: 16px;
  background: rgba(255,255,255,.82);
}
.hero-showcase-cards span:first-child::after { background: #2fe586; }
.hero-showcase-badge {
  position: absolute;
  right: -8px;
  top: 158px;
  z-index: 3;
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(13, 28, 21, .92);
  border: 1px solid rgba(52,211,153,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
  backdrop-filter: blur(16px);
  animation: heroBadgeFloat 4.5s ease-in-out infinite;
}
.hero-showcase-badge strong {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
}
.hero-showcase-badge span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.hero-showcase-portrait-backdrop {
  position: absolute;
  left: 72px;
  right: 74px;
  bottom: 24px;
  top: 126px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(47,229,134,.16), transparent 32%),
    linear-gradient(180deg, rgba(8,20,14,.34), rgba(8,20,14,.08)),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  opacity: 1;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -20px 36px rgba(15,23,42,.16),
    0 20px 44px rgba(0,0,0,.24);
  animation: heroBackdropShift 8s linear infinite;
}
.hero-portrait-img {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 50%;
  width: min(430px, 92%);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-44%);
  filter: brightness(1.08) contrast(1.16) saturate(1.02) drop-shadow(0 26px 48px rgba(0,0,0,.32));
}
.hero-showcase .profile-stat-chips {
  top: 86px;
  right: 18px;
}
.hero-showcase .profile-chip {
  min-width: 156px;
  background: rgba(9,20,16,.86);
}
.hero-showcase .profile-photo-badge {
  bottom: 42px;
  left: 46%;
}
@keyframes heroTrend {
  0%, 100% { transform: rotate(-34deg) scaleX(.96); }
  50% { transform: rotate(-32deg) scaleX(1.02); }
}
@keyframes heroFillPulse {
  0%, 100% { opacity: .82; }
  50% { opacity: 1; }
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroBackdropShift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 52px 0, 0 52px; }
}
@keyframes heroAmbient {
  0%, 100% { transform: translateY(0) scale(1); opacity: .9; }
  50% { transform: translateY(16px) scale(1.06); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-showcase {
    min-height: 500px;
  }
  .hero-showcase-badge {
    right: 8px;
    top: 138px;
    min-width: 112px;
  }
  .hero-showcase-badge span {
    font-size: 24px;
  }
  .hero-showcase .profile-stat-chips {
    right: 8px;
  }
  .hero-showcase-portrait-backdrop {
    left: 48px;
    right: 48px;
  }
  .hero-portrait-img {
    width: min(360px, 86%);
    transform: translateX(-46%);
  }
}
@media (max-width: 640px) {
  .hero-showcase {
    min-height: 430px;
  }
  .hero-showcase-panel {
    inset: 0 0 18px 0;
  }
  .hero-showcase-badge,
  .hero-showcase .profile-stat-chips {
    display: none;
  }
  .hero-showcase-cards {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .hero-showcase-portrait-backdrop {
    left: 24px;
    right: 24px;
    top: 96px;
    bottom: 22px;
  }
  .hero-showcase .profile-photo-badge {
    bottom: 30px;
    left: 50%;
    padding: 7px 16px;
  }
  .hero-portrait-img {
    width: min(300px, 84%);
    bottom: 10px;
    transform: translateX(-48%);
  }
}

/* ---- ARTICLE HERO POLISH ---- */
.article-page-hero {
  padding: 70px 0 58px;
}

.article-hero-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 360px);
  gap: 52px;
  align-items: start;
}

.article-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.article-meta span {
  font-size: 13px;
  color: var(--muted2);
}

.article-meta a {
  color: var(--accent2);
  font-weight: 700;
}

.article-hero-side {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 6px;
}

.article-trust-box {
  margin-top: 0 !important;
  padding: 24px 24px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(11,30,16,.96), rgba(8,20,11,.98));
  border: 1px solid rgba(49,255,140,.14);
  box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.03);
  color: #dbe7dd;
  line-height: 1.82;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.article-trust-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(49,255,140,.96), rgba(49,255,140,.18));
}

.article-trust-box .callout-title {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--accent);
}

.article-hero-visual {
  display: none;
}

.article-page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.article-page-shell .article-body {
  font-size: 17px;
  line-height: 1.92;
  min-width: 0;
}

.article-page-shell .article-body > p:first-child {
  font-size: 18px;
  line-height: 1.88;
  color: #d4ddd5;
}

.article-page-shell .article-body h2 {
  margin-top: 52px;
}

.article-page-shell .article-body ul,
.article-page-shell .article-body ol {
  padding-left: 22px;
}

.article-page-shell .article-body li {
  padding-left: 4px;
}

.article-related {
  margin-top: 0;
  border-top: 0;
  padding-top: 8px;
  position: sticky;
  top: 94px;
}

.article-related-grid {
  margin-top: 18px;
  grid-template-columns: 1fr !important;
}

.article-related .card {
  padding: 20px;
}

.article-page-hero {
  padding: 66px 0 48px;
}

.blog-layout-section + .blog-layout-section {
  padding-top: 0;
}

.blog-stack {
  display: grid;
  gap: 24px;
}

.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.blog-section-head p {
  max-width: 560px;
}

.blog-section-link {
  color: var(--accent2);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.blog-section-link::after {
  content: "\2192";
  margin-left: 6px;
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card.featured .blog-card-title {
  font-size: 22px;
  line-height: 1.28;
}

.blog-card.featured .blog-card-desc {
  font-size: 15px;
  line-height: 1.78;
}

.blog-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-proof-callout {
  margin-top: 30px;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.blog-proof-callout .ctas {
  margin-top: 18px;
}

.article-related-grid .card {
  padding: 26px 22px;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.article-related-grid .card-title {
  font-size: 17px !important;
  margin-top: 10px !important;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .article-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-hero-copy h1 {
    max-width: none;
  }

  .article-hero-side {
    padding-top: 0;
  }

  .article-hero-visual {
    display: none !important;
  }

  .article-page-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-related {
    position: static;
    padding-top: 0;
  }

  .blog-feature-grid,
  .blog-case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-page-hero {
    padding: 54px 0 46px;
  }

  .article-meta {
    gap: 12px;
    padding-top: 14px;
  }

  .article-meta span {
    width: 100%;
  }

  .article-hero-visual {
    display: none !important;
  }

  .article-page-shell {
    padding: 0 18px;
  }

  .article-related-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   Brand Refresh - April 2026
   Local-only theme pass to match reference
   ============================================= */
:root {
  --bg: #040904;
  --card: #0a160d;
  --card2: #071008;
  --card3: #0d1d12;
  --accent: #31ff8c;
  --accent2: #1fe47a;
  --accent-glow: rgba(49,255,140,.2);
  --text: #f6f8f5;
  --muted: #aab5ac;
  --muted2: #738276;
  --border: rgba(49,255,140,.18);
  --border2: rgba(255,255,255,.08);
  --shadow-card: 0 20px 60px rgba(0,0,0,.34);
  --shadow-green: 0 18px 50px rgba(49,255,140,.16);
}

html,
body {
  background: var(--bg);
}

body {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(49,255,140,.1), transparent 22%),
    radial-gradient(circle at 78% 32%, rgba(33,196,116,.08), transparent 26%),
    linear-gradient(180deg, #040904 0%, #060d07 36%, #040904 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 22%, rgba(49,255,140,.08), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(49,255,140,.05), transparent 24%),
    radial-gradient(circle at 74% 72%, rgba(35,231,126,.06), transparent 22%),
    linear-gradient(180deg, rgba(4,9,4,0), rgba(4,9,4,.78));
}

section.bg-alt,
.page-hero,
.cta-block,
.site-footer {
  background: linear-gradient(180deg, rgba(8,18,10,.96), rgba(5,11,6,.98));
}

.site-nav {
  background: rgba(4,10,5,.9);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 34px rgba(0,0,0,.24);
}

.nav-logo,
.footer-logo,
h1,
h2,
h3,
h4,
.btn-primary,
.btn-secondary,
.nav-cta {
  font-family: 'Manrope', 'Inter', sans-serif;
}

.nav-logo .logo-dot,
.footer-logo .logo-dot {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 9px;
  border: none;
  background: #08120a url('/brand-mark.svg?v=20260416mark1') center/cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 12px 26px rgba(49,255,140,.18);
}

.nav-links a {
  color: rgba(246,248,245,.7);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nav-cta {
  background: linear-gradient(135deg, #31ff8c 0%, #20e97a 100%) !important;
  color: #041008 !important;
  border: 1px solid rgba(49,255,140,.26) !important;
  box-shadow: 0 14px 32px rgba(49,255,140,.16);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #40ff97 0%, #29f888 100%) !important;
  border-color: rgba(49,255,140,.4) !important;
  color: #041008 !important;
}

.grad-text {
  background: linear-gradient(135deg, #31ff8c 0%, #22ea7b 55%, #25d18d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label,
.hero-badge,
.badge-green,
.process-num,
.hero-proof-strip span {
  background: rgba(49,255,140,.08);
  border-color: rgba(49,255,140,.2);
  color: var(--accent);
}

.btn-primary {
  background: linear-gradient(135deg, #31ff8c 0%, #22ea7b 100%);
  color: #041008;
  box-shadow: 0 14px 34px rgba(49,255,140,.22);
}

.btn-primary:hover {
  filter: brightness(1.03);
  box-shadow: 0 18px 42px rgba(49,255,140,.28);
}

.btn-secondary {
  color: #f4f7f3;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.26);
}

.card,
.audit-box,
.testimonial-card,
.stat-box,
.case-card,
.faq-list details,
.visual-panel {
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border-color: rgba(255,255,255,.07);
  box-shadow:
    0 22px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.card::before,
.audit-box::before,
.case-card::before {
  background: linear-gradient(90deg, rgba(49,255,140,.02), rgba(49,255,140,.55), rgba(49,255,140,.02));
}

.card:hover,
.testimonial-card:hover,
.stat-box:hover,
.case-card:hover,
.audit-box:hover {
  border-color: rgba(49,255,140,.22);
  box-shadow:
    0 24px 70px rgba(0,0,0,.38),
    0 0 40px rgba(49,255,140,.08);
}

.card-icon,
.why-icon,
.about-badge-icon,
.contact-icon {
  background: linear-gradient(145deg, rgba(49,255,140,.1), rgba(49,255,140,.03));
  border-color: rgba(49,255,140,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 12px 28px rgba(49,255,140,.06);
}

.card-icon::before,
.why-icon::before,
.about-badge-icon::before,
.contact-icon::before {
  border-color: #31ff8c;
}

.hero,
.page-hero {
  position: relative;
}

.hero::after,
.page-hero::before {
  background: radial-gradient(circle, rgba(49,255,140,.1), transparent 66%);
}

.site-footer::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(49,255,140,.08), transparent 30%),
    linear-gradient(90deg, rgba(49,255,140,.03), transparent);
}

.footer-link:hover,
.footer-copy a,
.card-link,
.faq-a a {
  color: var(--accent);
}

.hero-showcase-panel {
  background:
    radial-gradient(circle at 24% 18%, rgba(49,255,140,.08), transparent 22%),
    linear-gradient(180deg, rgba(10,29,14,.96), rgba(7,16,9,.98));
  border-color: rgba(49,255,140,.12);
}

/* ---- LOCAL SEO TECH + CASE STUDIES REFINEMENTS ---- */
.card-link::after,
.blog-read-more::after {
  content: "\2192";
  margin-left: 6px;
  transition: transform .2s ease;
}
.card:hover .card-link::after,
.blog-card:hover .blog-read-more::after,
.proof-card:hover .card-link::after {
  transform: translateX(3px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.proof-card {
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
}
.proof-card-media {
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-card-body {
  padding: 24px;
}
.proof-card h3 {
  margin-bottom: 10px;
}
.proof-card-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(49,255,140,.07);
  border: 1px solid rgba(49,255,140,.12);
  color: #eafff2;
  font-size: 13.5px;
  font-weight: 700;
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.proof-strip-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.proof-strip-card:hover {
  border-color: rgba(49,255,140,.22);
  transform: translateY(-4px);
}
.proof-strip-value {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-strip-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.case-study-hero {
  padding-bottom: 54px;
}
.case-study-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 380px;
  gap: 34px;
  align-items: start;
}
.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.metric-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.metric-value {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.case-study-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.case-study-panels.single {
  grid-template-columns: 1fr;
}
.case-panel {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.case-panel ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.case-panel li + li {
  margin-top: 8px;
}
.case-panel-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
}
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.evidence-grid.single {
  grid-template-columns: 1fr;
}

.evidence-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,22,13,.96), rgba(7,14,8,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.evidence-card img {
  width: 100%;
  display: block;
}

.evidence-card.is-report {
  max-width: 1180px;
  margin-inline: auto;
}

.evidence-card.is-report img {
  background: #eef2f7;
}
.evidence-card figcaption {
  padding: 14px 16px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .proof-grid,
  .proof-strip-grid,
  .case-study-panels,
  .evidence-grid,
  .case-study-metrics {
    grid-template-columns: 1fr;
  }
  .case-study-hero-grid,
  .case-study-layout {
    grid-template-columns: 1fr;
  }
}

.hero-showcase-fill {
  background: linear-gradient(180deg, rgba(49,255,140,.18), rgba(49,255,140,.03));
}

.hero-showcase-line {
  background: linear-gradient(90deg, #31ff8c 0%, #22ea7b 100%);
}

.hero-showcase-badge {
  background: rgba(10,22,13,.9);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

/* ---- Local Audit Pass: icon relevance + UI cleanup ---- */
.check-item {
  align-items: center;
  line-height: 1.55;
}

.check-icon {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(49,255,140,.14), rgba(49,255,140,.06));
  border: 1px solid rgba(49,255,140,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.check-icon::before {
  width: 8px;
  height: 4px;
  left: 7px;
  top: 8px;
  border-left: 2px solid #31ff8c;
  border-bottom: 2px solid #31ff8c;
}

.card-icon,
.why-icon,
.about-badge-icon,
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(49,255,140,.12), transparent 36%),
    linear-gradient(180deg, rgba(13,29,17,.98), rgba(8,17,10,.98));
  border: 1px solid rgba(49,255,140,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 12px 28px rgba(49,255,140,.06);
}

.card-icon::before,
.why-icon::before,
.about-badge-icon::before,
.contact-icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid #31ff8c;
  border-radius: 10px;
}

.card-icon::after,
.why-icon::after,
.about-badge-icon::after,
.contact-icon::after {
  content: "";
  position: absolute;
}

.icon-pin::before {
  inset: 13px 19px 15px 19px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-pin::after {
  width: 6px;
  height: 6px;
  left: 25px;
  top: 22px;
  border-radius: 50%;
  background: #31ff8c;
  box-shadow: 0 0 0 4px rgba(49,255,140,.08);
}

.icon-gear::before {
  inset: 14px;
  border-radius: 50%;
  border-style: dashed;
}

.icon-gear::after {
  inset: 23px;
  border-radius: 50%;
  background: #31ff8c;
  box-shadow: 0 0 0 4px rgba(49,255,140,.14);
}

.icon-doc::before {
  inset: 13px 15px 13px 17px;
  border-radius: 8px;
}

.icon-doc::after {
  left: 23px;
  top: 18px;
  width: 14px;
  height: 18px;
  background:
    linear-gradient(#31ff8c, #31ff8c) 0 0 / 100% 2px no-repeat,
    linear-gradient(#7fffc1, #7fffc1) 0 8px / 100% 2px no-repeat,
    linear-gradient(#7fffc1, #7fffc1) 0 16px / 74% 2px no-repeat;
}

.icon-link::before {
  inset: 18px 25px 18px 14px;
  border-radius: 999px;
}

.icon-link::after {
  inset: 18px 14px 18px 25px;
  border-radius: 999px;
  border: 2px solid #7fffc1;
}

.icon-search::before {
  inset: 14px 18px 18px 14px;
  border-radius: 50%;
}

.icon-search::after {
  width: 13px;
  height: 2px;
  right: 13px;
  bottom: 15px;
  background: #7fffc1;
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-chart::before {
  inset: auto 14px 14px 14px;
  height: 24px;
  border: 0;
  background:
    linear-gradient(180deg, #31ff8c 0 100%) 0 100% / 18% 52% no-repeat,
    linear-gradient(180deg, #7fffc1 0 100%) 41% 100% / 18% 80% no-repeat,
    linear-gradient(180deg, #20e97a 0 100%) 82% 100% / 18% 34% no-repeat;
}

.icon-target::before {
  inset: 14px;
  border-radius: 50%;
}

.icon-target::after {
  inset: 23px;
  border-radius: 50%;
  background: #31ff8c;
  box-shadow: 0 0 0 5px rgba(49,255,140,.12);
}

.icon-map::before {
  inset: 15px 14px;
  border-radius: 8px;
  clip-path: polygon(0 8%, 32% 0, 66% 10%, 100% 0, 100% 92%, 68% 100%, 34% 90%, 0 100%);
}

.icon-map::after {
  width: 6px;
  height: 6px;
  left: 25px;
  top: 24px;
  border-radius: 50%;
  background: #31ff8c;
}

.icon-phone::before {
  inset: 15px 18px;
  border-radius: 12px;
  transform: rotate(-18deg);
  border-left-width: 5px;
}

.icon-chat::before {
  inset: 14px 13px 18px;
  border-radius: 12px;
}

.icon-chat::after {
  left: 19px;
  bottom: 12px;
  width: 12px;
  height: 12px;
  background: #31ff8c;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.icon-mail::before {
  inset: 16px 13px;
  border-radius: 8px;
}

.icon-mail::after {
  left: 18px;
  right: 18px;
  top: 22px;
  height: 10px;
  border-left: 2px solid #7fffc1;
  border-bottom: 2px solid #7fffc1;
  transform: rotate(-45deg);
}

.icon-home::before {
  inset: 14px 13px 12px;
  border: 0;
  background: #31ff8c;
  clip-path: polygon(50% 0, 100% 38%, 86% 38%, 86% 100%, 14% 100%, 14% 38%, 0 38%);
}

.icon-home::after {
  width: 8px;
  height: 12px;
  left: 24px;
  bottom: 12px;
  background: #041008;
  border-radius: 2px 2px 0 0;
}

.icon-cart::before,
.icon-retail::before {
  inset: 17px 14px 18px;
  border-radius: 8px;
  border-top-width: 0;
}

.icon-cart::after,
.icon-retail::after {
  left: 17px;
  right: 17px;
  top: 17px;
  height: 2px;
  background: #7fffc1;
  box-shadow: 0 20px 0 0 #7fffc1;
}

.icon-restaurant::before {
  inset: 14px;
  border: 0;
  background:
    linear-gradient(#31ff8c, #31ff8c) 36% 0 / 2px 100% no-repeat,
    linear-gradient(#31ff8c, #31ff8c) 52% 0 / 2px 100% no-repeat,
    radial-gradient(circle at 74% 50%, #7fffc1 0 7px, transparent 8px);
}

.icon-clinic::before {
  inset: 14px;
  border: 0;
  background: #31ff8c;
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
}

.icon-law::before {
  inset: 16px 13px 14px;
  border-radius: 6px;
  clip-path: polygon(12% 0, 88% 0, 88% 20%, 54% 20%, 54% 100%, 46% 100%, 46% 20%, 12% 20%);
}

.icon-law::after {
  left: 17px;
  right: 17px;
  bottom: 13px;
  height: 2px;
  background: #7fffc1;
}

.icon-calendar::before {
  inset: 15px 13px;
  border-radius: 8px;
}

.icon-calendar::after {
  left: 18px;
  right: 18px;
  top: 20px;
  height: 8px;
  background:
    linear-gradient(#31ff8c, #31ff8c) 0 0 / 100% 2px no-repeat,
    linear-gradient(#7fffc1, #7fffc1) 0 6px / 68% 2px no-repeat;
}

.icon-write::before {
  inset: 14px 17px 14px 15px;
  border-radius: 8px;
}

.icon-write::after {
  width: 18px;
  height: 3px;
  right: 12px;
  bottom: 16px;
  border-radius: 999px;
  background: #7fffc1;
  transform: rotate(-38deg);
  box-shadow: -9px 8px 0 -1px #31ff8c;
}

/* ---- Final Local Polish: Blog, Articles, Case Studies ---- */
.blog-layout-section {
  position: relative;
}

.blog-layout-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(49,255,140,.06), transparent 24%),
    radial-gradient(circle at 82% 84%, rgba(49,255,140,.05), transparent 20%);
  pointer-events: none;
}

.blog-layout-section .container {
  position: relative;
  z-index: 1;
}

.blog-stack {
  gap: 40px;
}

.blog-section-head {
  align-items: flex-end;
  margin-bottom: 30px;
}

.blog-card,
.proof-card {
  position: relative;
}

.blog-card::before,
.proof-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,255,140,.5), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}

.blog-card:hover::before,
.proof-card:hover::before {
  opacity: 1;
}

.blog-card.featured {
  min-height: 100%;
  border-radius: 28px;
}

.blog-card.featured .blog-card-body {
  padding: 30px;
}

.blog-card.featured .blog-card-title {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
}

.blog-card.featured .blog-card-desc {
  font-size: 15px;
  line-height: 1.82;
}

.blog-case-grid .blog-card {
  min-height: 100%;
}

.blog-proof-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.blog-proof-callout .callout-title {
  margin-bottom: 10px;
  grid-column: 1;
  max-width: 220px;
}

.blog-proof-callout .ctas {
  margin-top: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  align-self: center;
  flex-shrink: 0;
}

.blog-proof-callout .card-desc {
  grid-column: 1;
  margin: 0;
  max-width: 780px;
}

.article-hero-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.article-hero-copy h1 {
  max-width: 760px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(49,255,140,.06);
  border: 1px solid rgba(49,255,140,.14);
  color: #cfe7d6;
  font-size: 12.5px;
  line-height: 1;
}

.article-meta a {
  color: #f6f8f5;
  font-weight: 700;
}

.article-page-shell {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}

.article-page-shell .article-body {
  background: linear-gradient(180deg, rgba(9,20,12,.96), rgba(6,12,7,.98));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 34px clamp(24px, 4vw, 42px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.article-page-shell .article-body > *:last-child {
  margin-bottom: 0;
}

.article-page-shell .article-body ul,
.article-page-shell .article-body ol {
  margin-bottom: 24px;
}

.article-page-shell .article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(49,255,140,.16);
  background: linear-gradient(180deg, rgba(49,255,140,.08), rgba(49,255,140,.03));
  color: #eef8f1;
  font-style: normal;
}

.article-related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-related-grid {
  display: grid;
  gap: 16px;
}

.article-related-grid .card {
  min-height: auto;
  border-radius: 20px;
}

.case-study-hero-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.case-study-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.case-study-layout aside {
  position: sticky;
  top: 94px;
}

.metric-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-grid {
  align-items: stretch;
}

.proof-card-body,
.case-panel {
  height: 100%;
}

.evidence-card {
  height: 100%;
}

.evidence-card figcaption {
  min-height: 70px;
}

@media (max-width: 980px) {
  .blog-proof-callout {
    grid-template-columns: 1fr;
  }

  .blog-proof-callout .callout-title,
  .blog-proof-callout .card-desc,
  .blog-proof-callout .ctas {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-proof-callout .ctas {
    justify-content: flex-start;
  }

  .case-study-layout aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .article-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .article-page-shell .article-body {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .article-meta span {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ---- Final FAQ + Testimonial polish ---- */
#faq .faq-list,
.container-sm .faq-list {
  gap: 18px;
}

#faq .faq-item details,
.container-sm .faq-item details {
  border-radius: 22px;
  border: 1px solid rgba(49,255,140,.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(49,255,140,.08), transparent 34%),
    linear-gradient(180deg, rgba(9,22,13,.98), rgba(6,12,8,.99));
  box-shadow:
    0 24px 64px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.03);
}

#faq .faq-item details:hover,
.container-sm .faq-item details:hover {
  border-color: rgba(49,255,140,.18);
}

#faq .faq-item details[open],
.container-sm .faq-item details[open] {
  border-color: rgba(49,255,140,.24);
  box-shadow:
    0 26px 72px rgba(0,0,0,.3),
    0 0 38px rgba(49,255,140,.07);
}

#faq .faq-q,
.container-sm .faq-q {
  padding: 28px 28px;
  min-height: 88px;
  font-size: 18px;
  line-height: 1.45;
}

#faq .faq-q::after,
.container-sm .faq-q::after {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(49,255,140,.08), rgba(49,255,140,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

#faq .faq-a,
.container-sm .faq-a {
  padding: 0 28px 28px;
  max-width: 820px;
}

.testimonial-card {
  padding-top: 34px;
}

.testimonial-card .testi-avatar {
  position: relative;
  background: linear-gradient(145deg, rgba(49,255,140,.16), rgba(22,184,111,.06));
}

.testimonial-card .testi-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}

.testimonial-card .testi-avatar img {
  object-position: center top;
  background: radial-gradient(circle at 50% 12%, rgba(49,255,140,.16), transparent 42%);
}

.testimonial-card .testi-text {
  min-height: 132px;
}

@media (max-width: 760px) {
  #faq .faq-q,
  .container-sm .faq-q {
    padding: 22px 20px;
    min-height: 76px;
    font-size: 16px;
  }

  #faq .faq-a,
  .container-sm .faq-a {
    padding: 0 20px 22px;
  }

  .testimonial-card .testi-text {
    min-height: auto;
  }
}

/* ---- Services + Geo page consistency ---- */
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-panel {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 32px;
}

.service-panel-copy {
  min-width: 0;
}

.service-panel-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.service-panel-desc {
  margin-bottom: 14px;
}

.service-panel-points {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.service-panel-points .check-item {
  font-size: 13px;
}

.service-panel-cta {
  white-space: nowrap;
  align-self: center;
}

.service-consult-ctas {
  justify-content: center;
}

.city-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.city-link-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 82px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, rgba(11,24,14,.96), rgba(7,14,9,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.city-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(49,255,140,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.22), 0 0 26px rgba(49,255,140,.05);
}

.city-link-card.is-accent {
  background: linear-gradient(180deg, rgba(18,43,25,.98), rgba(9,19,12,.98));
  border-color: rgba(49,255,140,.2);
}

.city-link-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 4px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #7dffbc, #31ff8c 58%, #15924f 100%);
  box-shadow: 0 0 0 4px rgba(49,255,140,.08), 0 0 18px rgba(49,255,140,.18);
}

.city-link-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.city-link-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}

.geo-proof-band .section-head {
  margin-bottom: 34px;
}

.geo-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.geo-proof-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(49,255,140,.08), transparent 36%),
    linear-gradient(180deg, rgba(9,22,13,.96), rgba(6,12,8,.99));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 48px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.geo-proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(49,255,140,.18);
  box-shadow:
    0 24px 58px rgba(0,0,0,.28),
    0 0 26px rgba(49,255,140,.06);
}

.geo-proof-kicker {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.geo-proof-metric {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 10px;
}

.geo-proof-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

.geo-proof-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted2);
  text-align: center;
}

@media (max-width: 980px) {
  .service-panel {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-panel-cta {
    grid-column: 2;
    justify-self: start;
  }

  .geo-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .service-panel-cta {
    grid-column: auto;
    width: 100%;
    justify-content: center;
  }

  .service-panel-points {
    gap: 10px 14px;
  }

  .city-link-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile overflow hardening ---- */
@media (max-width: 640px) {
  .article-page-shell,
  .article-related,
  .article-related-grid,
  .article-related-grid .card,
  .case-study-hero-grid,
  .case-study-layout,
  .case-study-metrics,
  .metric-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .article-related {
    align-self: stretch;
  }

  .article-page-shell,
  .case-study-hero-grid,
  .case-study-layout {
    grid-template-columns: 1fr !important;
  }

  .article-related-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .case-study-metrics {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .metric-card {
    padding: 18px 16px;
  }
}

/* ---- Dynamic Blog Admin + SEO Blog System ---- */
.blog-hub-hero {
  padding: 112px 0 76px;
  background:
    linear-gradient(135deg, rgba(2,10,5,.96), rgba(5,16,8,.9)),
    radial-gradient(circle at 18% 30%, rgba(49,255,140,.13), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(0,212,255,.08), transparent 28%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.blog-hub-intro {
  max-width: 820px;
}

.blog-hub-intro h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.blog-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.blog-command-section {
  padding: 22px 0 0;
  background: linear-gradient(180deg, rgba(2,10,5,.98), rgba(4,13,7,.92));
}

.blog-command-bar {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 24px;
  background: rgba(5,18,9,.82);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.blog-search-wrap {
  position: relative;
}

.blog-search-wrap span {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #31ff8c;
  border-radius: 999px;
  transform: translateY(-50%);
  opacity: .85;
}

.blog-search-wrap span::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #31ff8c;
  transform: rotate(45deg);
}

.blog-search-wrap input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(49,255,140,.18);
  border-radius: 16px;
  background: rgba(2,10,5,.86);
  color: #f6fff8;
  font: inherit;
  padding: 0 16px 0 46px;
  outline: none;
}

.blog-search-wrap input:focus {
  border-color: rgba(49,255,140,.7);
  box-shadow: 0 0 0 4px rgba(49,255,140,.12);
}

.blog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.blog-filter-pills button {
  min-height: 42px;
  border: 1px solid rgba(49,255,140,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #d9efe0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 15px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.blog-filter-pills button:hover,
.blog-filter-pills button.active {
  background: linear-gradient(135deg, #31ff8c, #46f58f);
  border-color: transparent;
  color: #001507;
  transform: translateY(-1px);
}

.blog-post-grid,
.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9,25,12,.96), rgba(5,13,7,.98));
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49,255,140,.36);
  box-shadow: 0 32px 90px rgba(0,0,0,.34), 0 0 45px rgba(49,255,140,.1);
}

.blog-post-card[hidden] {
  display: none !important;
}

.blog-post-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(49,255,140,.16), rgba(0,212,255,.08)),
    rgba(255,255,255,.03);
  overflow: hidden;
}

.blog-post-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,10,5,.04), rgba(2,10,5,.46)),
    radial-gradient(circle at 20% 18%, rgba(49,255,140,.18), transparent 34%);
  pointer-events: none;
}

.blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .96;
  transform: scale(1.01);
  filter: saturate(.92) contrast(1.04);
  transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

.blog-post-card:hover .blog-post-media img {
  opacity: 1;
  filter: saturate(1.03) contrast(1.07);
  transform: scale(1.05);
}

.blog-post-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.blog-post-kicker {
  color: #31ff8c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-post-card h3 {
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 12px;
}

.blog-post-card h3 a:hover {
  color: #31ff8c;
}

.blog-post-card p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.blog-post-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(49,255,140,.07);
  border: 1px solid rgba(49,255,140,.12);
  color: #a9c8b0;
  font-size: 12px;
  font-weight: 700;
}

.blog-post-card.is-featured .blog-post-body {
  padding: 30px;
}

.blog-post-card.is-featured h3 {
  font-size: 30px;
}

.blog-resource-band {
  background:
    linear-gradient(135deg, rgba(2,10,5,.98), rgba(5,20,9,.94)),
    radial-gradient(circle at 72% 42%, rgba(49,255,140,.09), transparent 34%);
  border-top: 1px solid rgba(255,255,255,.06);
}

.blog-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-resource-grid article {
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 28px;
  padding: 34px;
  background: rgba(8,24,11,.74);
}

.blog-resource-grid article p {
  margin-bottom: 22px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.article-hero-main h1 {
  max-width: 840px;
  margin-bottom: 18px;
}

.article-main-section {
  padding-top: 70px;
}

.article-page-shell-pro {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.article-sidebar,
.article-related-pro {
  position: sticky;
  top: 96px;
}

.article-toc,
.author-mini-card,
.article-side-cta {
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8,23,11,.92), rgba(5,13,7,.96));
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}

.article-toc {
  padding: 20px;
  margin-bottom: 18px;
}

.article-toc p {
  color: #f7fff8;
  font-weight: 900;
  margin: 0 0 12px;
}

.article-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #a9c8b0;
  font-size: 13px;
  line-height: 1.45;
}

.article-toc a:hover {
  color: #31ff8c;
}

.author-mini-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.author-mini-card img,
.article-author-box img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(49,255,140,.28);
}

.author-mini-card strong {
  color: #fff;
  display: block;
  line-height: 1.35;
}

.author-mini-card span {
  color: #a9c8b0;
  display: block;
  font-size: 13px;
}

.author-mini-card a {
  color: #31ff8c;
  font-weight: 900;
  font-size: 13px;
}

.article-author-box {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  margin-top: 44px;
  padding: 24px;
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 24px;
  background: rgba(49,255,140,.05);
}

.article-author-box h2 {
  font-size: 24px;
  margin: 0 0 8px;
}

.article-related-pro .article-related-grid {
  grid-template-columns: 1fr;
}

.article-related-pro .card {
  padding: 20px;
}

.article-side-cta {
  padding: 22px;
  margin-top: 18px;
}

.article-side-cta h3 {
  margin-bottom: 10px;
}

.article-side-cta p {
  font-size: 14px;
  margin-bottom: 18px;
}

.article-side-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

.blog-comments-section {
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.blog-comments-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.blog-comments-head h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.blog-comments-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.blog-comment,
.blog-comment-empty {
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 22px;
  background: rgba(49,255,140,.04);
  padding: 20px;
}

.blog-comment-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.blog-comment-top strong {
  display: block;
  color: #fff;
}

.blog-comment-top span,
.blog-comment-top time {
  color: #9fb3a5;
  font-size: 12px;
}

.blog-comment p,
.blog-comment-empty p {
  margin: 0;
  font-size: 14px;
}

.blog-comment-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8,23,11,.92), rgba(5,13,7,.96));
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.comment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-comment-form label {
  display: grid;
  gap: 8px;
  color: #eaffee;
  font-size: 13px;
  font-weight: 800;
}

.blog-comment-form input,
.blog-comment-form textarea,
.blog-comment-form select {
  width: 100%;
  border: 1px solid rgba(49,255,140,.18);
  border-radius: 16px;
  background: rgba(2,10,5,.86);
  color: #f6fff8;
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
}

.blog-comment-form select {
  appearance: none;
}

.blog-comment-form textarea {
  resize: vertical;
  min-height: 136px;
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus,
.blog-comment-form select:focus {
  border-color: rgba(49,255,140,.7);
  box-shadow: 0 0 0 4px rgba(49,255,140,.12);
}

.hidden-field {
  display: none;
}

.comment-form-note {
  color: #8da494;
  font-size: 12px;
  margin: 0;
}

.write-guidelines-section {
  padding: 80px 0 20px;
}

.write-guidelines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.write-pitch-form h2 {
  margin-bottom: 4px;
}

.write-pitch-form > p:not(.section-label):not(.hidden-field):not(.comment-form-note) {
  margin-bottom: 10px;
}

@media (max-width: 1120px) {
  .article-page-shell-pro {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-sidebar,
  .article-related-pro {
    position: static;
  }

  .article-sidebar {
    order: -1;
  }

  .article-toc {
    display: none;
  }

  .article-related-pro .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .write-guidelines-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .blog-command-bar,
  .blog-feature-grid,
  .blog-post-grid,
  .blog-resource-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-filter-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .blog-hub-hero {
    padding: 72px 0 48px;
  }

  .blog-command-bar {
    border-radius: 20px;
    padding: 12px;
  }

  .blog-filter-pills button {
    flex: 1 1 auto;
  }

  .blog-post-card.is-featured h3,
  .blog-post-card h3 {
    font-size: 21px;
  }

  .blog-post-body,
  .blog-post-card.is-featured .blog-post-body,
  .blog-resource-grid article {
    padding: 22px;
  }

  .article-page-shell-pro {
    width: min(100% - 28px, 1240px);
  }

  .article-related-pro .article-related-grid,
  .article-author-box,
  .comment-form-grid {
    grid-template-columns: 1fr;
  }

  .author-mini-card {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
  }

  .author-mini-card a {
    grid-column: 1 / -1;
  }
}

/* ---- Blog UI, Article Readability, and Contributor Form Polish ---- */
.blog-hub-hero .container,
.blog-command-section .container,
.blog-layout-section .container,
.blog-resource-band .container,
.article-page-hero .container {
  max-width: 1320px;
}

.blog-hub-intro {
  max-width: 920px;
}

.blog-hub-intro h1 {
  max-width: 850px;
}

.blog-post-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  align-items: stretch;
}

.blog-feature-grid {
  grid-template-columns: repeat(2, minmax(360px, 1fr));
}

.blog-post-card {
  border-color: rgba(49,255,140,.2);
}

.blog-post-media {
  min-height: 230px;
  border-bottom: 1px solid rgba(49,255,140,.12);
}

.blog-post-card.is-featured .blog-post-media {
  min-height: 300px;
}

.blog-post-card h3 {
  max-width: 96%;
}

.blog-post-card p {
  color: #b9cabe;
}

.blog-resource-band {
  padding: 96px 0;
}

.article-hero-grid {
  grid-template-columns: minmax(0, 760px) minmax(320px, 420px);
  justify-content: space-between;
  gap: 56px;
}

.article-page-shell-pro {
  width: min(1240px, calc(100% - 56px));
  max-width: none;
  padding: 0;
  grid-template-columns: minmax(0, 800px) minmax(300px, 360px);
  gap: 48px;
  justify-content: space-between;
}

.article-main-section {
  padding-top: 24px;
}

.article-page-shell-pro .article-sidebar {
  display: none;
}

.article-page-shell .article-body {
  padding: clamp(40px, 4.2vw, 62px);
  border-radius: 32px;
}

.article-page-shell .article-body p,
.article-page-shell .article-body li {
  max-width: 74ch;
  font-size: 17px;
  line-height: 1.9;
}

.article-page-shell .article-body h2,
.article-page-shell .article-body h3,
.article-page-shell .article-author-box,
.article-page-shell .blog-comments-section {
  max-width: 760px;
}

.article-page-shell .article-body ul,
.article-page-shell .article-body ol {
  max-width: 76ch;
}

.article-related-pro {
  display: grid;
  gap: 18px;
}

.article-related-pro > .section-label {
  width: fit-content;
  margin-bottom: 0;
}

.article-related-pro .card-desc {
  font-size: 13px;
  line-height: 1.65;
}

.write-form-container {
  max-width: 1040px;
}

.write-pitch-form {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
}

.write-pitch-form textarea {
  min-height: 220px;
}

.write-pitch-form .btn-primary {
  width: 100%;
  justify-content: center;
  min-height: 58px;
}

@media (max-width: 1180px) {
  .article-page-shell-pro {
    grid-template-columns: minmax(0, 1fr);
    width: min(960px, calc(100% - 36px));
  }

  .article-sidebar,
  .article-related-pro {
    position: static;
  }

  .article-sidebar {
    order: -1;
  }

  .article-toc {
    display: none;
  }

  .article-related-pro .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .blog-post-grid,
  .blog-feature-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-media,
  .blog-post-card.is-featured .blog-post-media {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .blog-hub-hero .container,
  .blog-command-section .container,
  .blog-layout-section .container,
  .blog-resource-band .container,
  .article-page-hero .container {
    padding: 0 18px;
  }

  .article-page-shell-pro {
    width: min(100% - 24px, 960px);
  }

  .article-page-shell .article-body {
    padding: 24px;
  }

  .article-page-shell .article-body p,
  .article-page-shell .article-body li {
    font-size: 16px;
    line-height: 1.82;
  }

  .write-pitch-form {
    padding: 22px;
  }
}

/* ---- Blog Detail Publishing Blocks ---- */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(49,255,140,.22);
  border-radius: 999px;
  color: #caffd8;
  background: rgba(49,255,140,.06);
  font-size: 12px;
  font-weight: 800;
}

.article-featured-image {
  margin: 0 0 34px;
  overflow: hidden;
  max-width: none;
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(49,255,140,.12), rgba(3,12,6,.96));
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}

.article-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-featured-image figcaption {
  padding: 12px 16px;
  color: #8fae98;
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.06);
}

.article-mobile-toc {
  display: none;
  margin: 0 0 30px;
}

.article-share-card,
.article-audit-widget,
.article-newsletter {
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(49,255,140,.16), transparent 36%),
    linear-gradient(180deg, rgba(8,28,12,.94), rgba(3,12,6,.98));
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.article-share-card {
  padding: 20px;
}

.article-share-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.article-share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(49,255,140,.2);
  border-radius: 14px;
  color: #eaffee;
  background: rgba(255,255,255,.03);
  font-size: 13px;
  font-weight: 900;
}

.article-share-links a:hover {
  color: #051007;
  background: linear-gradient(135deg, #31ff8c, #22d6b3);
  border-color: transparent;
}

.article-related-pro .article-related-grid {
  grid-template-columns: 1fr !important;
  gap: 14px;
}

.article-related-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(49,255,140,.14);
  border-radius: 22px;
  color: inherit;
  background: rgba(255,255,255,.035);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.article-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(49,255,140,.34);
  background: rgba(49,255,140,.06);
}

.article-related-image {
  display: block;
  overflow: hidden;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: rgba(49,255,140,.08);
}

.article-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.article-related-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
}

.article-related-copy strong {
  color: #f7fff8;
  font-size: 15px;
  line-height: 1.35;
}

.article-related-copy span:last-child {
  display: -webkit-box;
  overflow: hidden;
  color: #a9c8b0;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.article-audit-widget {
  padding: 22px;
}

.article-audit-widget h3 {
  margin: 0 0 10px;
  color: #f7fff8;
  font-size: 24px;
  line-height: 1.1;
}

.article-audit-widget p {
  margin: 0 0 18px;
  color: #b9cabe;
  font-size: 14px;
  line-height: 1.6;
}

.article-audit-widget form,
.article-newsletter form {
  display: grid;
  gap: 12px;
}

.article-audit-widget input,
.article-newsletter input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(49,255,140,.22);
  border-radius: 16px;
  background: rgba(2,10,5,.88);
  color: #f6fff8;
  font: inherit;
  font-weight: 600;
  padding: 13px 15px;
  outline: none;
}

.article-audit-widget input:focus,
.article-newsletter input:focus {
  border-color: rgba(49,255,140,.72);
  box-shadow: 0 0 0 4px rgba(49,255,140,.12);
}

.article-audit-widget .btn-primary,
.article-newsletter .btn-primary {
  width: 100%;
  justify-content: center;
}

.article-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: end;
  margin: 48px 0 36px;
  padding: clamp(24px, 4vw, 34px);
}

.article-newsletter h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.article-newsletter p:not(.section-label) {
  margin: 0;
  color: #b9cabe;
  font-size: 15px;
  line-height: 1.7;
}

.article-newsletter label {
  display: grid;
  gap: 8px;
  color: #eaffee;
  font-size: 13px;
  font-weight: 900;
}

.article-faq-block {
  margin: 48px 0 36px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(49,255,140,.13), transparent 34%),
    linear-gradient(180deg, rgba(8,28,12,.9), rgba(3,12,6,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.article-faq-block h2 {
  margin: 0 0 20px;
}

.article-faq-block details {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}

.article-faq-block details:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.article-faq-block summary {
  cursor: pointer;
  color: #f7fff8;
  font-weight: 900;
  line-height: 1.45;
}

.article-faq-block summary::marker {
  color: #31ff8c;
}

.article-faq-block p {
  margin: 12px 0 0;
  color: #b9cabe;
  font-size: 15px;
  line-height: 1.75;
}

.article-page-shell .article-body h4 {
  margin: 26px 0 12px;
  color: #caffd8;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .02em;
}

.article-page-shell .article-body h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #31ff8c, #22d6b3);
  box-shadow: 0 0 18px rgba(49,255,140,.45);
}

/* ---- Homepage Recent Articles ---- */
.home-blog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 8vw, 120px) 0;
}

.home-blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 15%, rgba(49,255,140,.13), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(34,214,179,.11), transparent 30%);
}

.home-blog-section .container {
  position: relative;
}

.home-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.home-blog-head h2 {
  margin: 0 0 12px;
}

.home-blog-head .section-sub {
  max-width: 720px;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-blog-card {
  overflow: hidden;
  border: 1px solid rgba(49,255,140,.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(49,255,140,.14), transparent 36%),
    linear-gradient(180deg, rgba(9,30,14,.9), rgba(4,12,6,.98));
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49,255,140,.34);
  box-shadow: 0 34px 110px rgba(0,0,0,.36), 0 0 50px rgba(49,255,140,.08);
}

.home-blog-image {
  display: block;
  overflow: hidden;
  height: 190px;
  background: rgba(49,255,140,.08);
}

.home-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.home-blog-card:hover .home-blog-image img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.08);
}

.home-blog-copy {
  padding: 24px;
}

.home-blog-copy > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #31ff8c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-blog-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
}

.home-blog-copy h3 a {
  color: #fff;
}

.home-blog-copy h3 a:hover {
  color: #31ff8c;
}

.home-blog-copy p {
  margin: 0 0 18px;
  color: #b9cabe;
  font-size: 14px;
  line-height: 1.7;
}

.home-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-blog-meta time,
.home-blog-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(49,255,140,.18);
  border-radius: 999px;
  color: #caffd8;
  background: rgba(49,255,140,.06);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .home-blog-head {
    display: grid;
    align-items: start;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-image {
    height: 240px;
  }
}

@media (max-width: 560px) {
  .home-blog-section {
    padding: 64px 0;
  }

  .home-blog-image {
    height: 190px;
  }

  .home-blog-copy {
    padding: 22px;
  }
}

@media (max-width: 1180px) {
  .article-mobile-toc {
    display: block;
  }

  .article-mobile-toc .article-toc {
    display: block;
    margin-bottom: 0;
  }

  .article-related-pro .article-toc {
    display: none;
  }

  .article-share-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .article-share-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-related-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .article-related-image {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 520px) {
  .article-tags span {
    font-size: 11px;
  }

  .article-featured-image {
    border-radius: 20px;
    margin-bottom: 26px;
  }

  .article-share-card,
  .article-audit-widget,
  .article-newsletter {
    border-radius: 20px;
  }

  .article-share-links {
    grid-template-columns: 1fr;
  }
}
