:root {
  /* ══ Primary Colors (Teal Palette) ══ */
  --primary-main: #009688;
  --primary-light: #38b09c;
  --primary-dark: #007069;
  --primary-lighter: #e0f2f1;
  --primary-darker: #002424;

  /* ══ Feedback & UI Colors ══ */
  --success-main: #4caf50;
  --success-light: #a5d6a7;
  --success-dark: #388e3c;
  --success-lighter: #e8f5e9;

  --error-main: #F04134;
  --error-light: #F25E52;
  --error-dark: #EE3B2F;
  --error-lighter: #FDE8E7;

  --warning-main: #fbc02d;
  --warning-light: #fff59d;
  --warning-dark: #f9a825;
  --warning-lighter: #fffde7;

  --info-main: #26c6da;
  --info-light: #80deea;
  --info-dark: #00acc1;
  --info-lighter: #e0f7fa;

  /* ══ Grey Palette (Light Mode) ══ */
  --grey-0: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f5f5f5;
  --grey-200: #f0f0f0;
  --grey-300: #d9d9d9;
  --grey-400: #bfbfbf;
  --grey-500: #8c8c8c;
  --grey-600: #595959;
  --grey-700: #262626;
  --grey-800: #141414;
  --grey-900: #000000;

  /* ══ Surfaces & Backgrounds ══ */
  --surface-paper: #ffffff;
  --surface-default: #fafafb;
  --surface-divider: #f0f0f0;

  /* ══ Layout & Effects ══ */
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow: 0 6px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--grey-0);
  color: var(--grey-700);
  line-height: 1.7;
}

.top-bar {
  background: var(--primary-darker);
  padding: .35rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar span {
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

.top-bar a {
  color: var(--warning-light);
  font-size: .78rem;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.navbar {
  background: var(--primary-darker);
  border-bottom: 3px solid var(--primary-main);
  /* padding: 0 2rem; */
  min-height: 64px;
  box-shadow: 0 2px 12px rgba(15, 32, 68, .45);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--grey-0);
}

.nav-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  /* color: var(--grey-0); */
  padding-top: 10px;
  color: var(--primary-light);
}

.nav-name span {
  color: var(--warning-main);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .75) !important;
  font-size: .88rem;
  font-weight: 600;
  transition: color .18s;
  font-family: 'Nunito', sans-serif;
  padding: 0.5rem 0.2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--warning-dark) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-cta {
  background: var(--warning-dark) !important;
  color: var(--grey-0) !important;
  padding: .42rem 1.1rem;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background .18s !important;
  text-decoration: none !important;
}

.nav-cta:hover {
  /* background: #ea6a0a !important; */
  background: var(--warning-main) !important;
}

.hero {
  /* background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 55%, var(--primary-main) 100%); */
  padding: 72px 2rem 64px;
  text-align: center;
  /* position: relative; */
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  /* background: radial-gradient(circle, rgba(26, 115, 232, .18) 0%, transparent 70%); */
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  /* background: radial-gradient(circle, rgba(249, 115, 22, .10) 0%, transparent 70%); */
  pointer-events: none;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  /* background: var(--warning-lighter); */
  background-color: var(--grey-0);
  border: 1px solid var(--warning-dark);
  color: var(--warning-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .28rem .9rem;
  margin-bottom: 1.4rem;
  font-family: 'Nunito', sans-serif;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--grey-0);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--primary-main);
}

.hero p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.search-bar {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--grey-0);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: .75rem 1rem;
  font-size: .95rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--grey-700);
}

.search-bar button {
  background: var(--warning-dark);
  color: var(--grey-0);
  border: none;
  padding: .75rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
  transition: background .18s;
  white-space: nowrap;
}

.search-bar button:hover {
  background: var(--warning-main);
}

.stats-strip {
  /* background: var(--surface-default); */
  /* background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 55%, var(--primary-main) 100%); */
  /* border-bottom: 1px solid var(--surface-divider); */
  padding: 22px 2rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  /* text-align: center; */
}

@media (max-width: 992px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    align-content: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(1, 1fr) !important;
    align-content: center;
    justify-content: center;
  }

  .hero-card,
  .stats-inner>div {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 30px 20px !important;
  }

  .hero-card svg,
  .stats-inner>div svg {
    margin: 0 auto 10px !important;
  }
}

.stats-inner>div {
  background-color: var(--grey-100);
  border-radius: 10px;
  padding: 20px 10px;
}

.stat-n {
  font-family: 'Nunito', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-main);
  line-height: 1;
  /* margin-bottom: 10px; */
}

.stat-l {
  font-size: .8rem;
  color: var(--grey-800);
  margin-top: .25rem;
  font-weight: 600;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 2rem;
}

.sec-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-main);
  margin-bottom: .4rem;
}

.sec-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-darker);
  margin-bottom: 2rem;
}

.sec-title span {
  color: var(--warning-main);
}

.categories {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.cats {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  /* margin-bottom: 2rem; */
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.pill {
  border: 1.5px solid var(--surface-divider);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey-500);
  cursor: pointer;
  transition: all .18s;
  font-family: 'Nunito', sans-serif;
  background: var(--grey-0);
  text-decoration: none;
  display: inline-block;
}

.pill:hover,
.pill.active {
  background: var(--primary-main);
  border-color: var(--primary-main);
  color: var(--grey-0);
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-divider);
  margin-bottom: 3rem;
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
  display: grid;
}

.featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feat-img {
  /* background: linear-gradient(140deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary-main) 100%); */
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feat-img .dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.feat-img .icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.feat-img .ghost {
  font-size: 7rem;
  position: absolute;
  right: -16px;
  bottom: -16px;
  opacity: .12;
}

.feat-body {
  padding: 2.4rem;
  background: var(--grey-0);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-chip {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary-main);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  margin-bottom: .9rem;
  font-family: 'Nunito', sans-serif;
}

.tag-chip.orange {
  background: #fff4ed;
  color: var(--warning-dark);
}

.chip {
  color: var(--grey-100);
}

.feat-body h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--grey-600);
  line-height: 1.28;
  margin-bottom: .8rem;
}

.feat-body p {
  color: var(--grey-500);
  font-size: .95rem;
  margin-bottom: 1.3rem;
}

.meta-row {
  display: flex;
  gap: .8rem;
  align-items: center;
  font-size: .8rem;
  color: var(--grey-400);
}

.meta-row .sep {
  width: 3px;
  height: 3px;
  background: var(--primary-main);
  border-radius: 50%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary-main);
  font-weight: 700;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap .18s;
}

.btn-link:hover {
  gap: .65rem;
  color: var(--primary-darker);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--surface-divider);
  border-radius: var(--radius);
  background: var(--grey-0);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-main);
}

.card-thumb {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}

.card-thumb .dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 18px 18px;
}

.card-body-inner {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body-inner h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--grey-600);
  margin-bottom: .55rem;
  line-height: 1.35;
}

.card-body-inner p {
  color: var(--grey-500);
  font-size: .87rem;
  line-height: 1.62;
  flex: 1;
  margin-bottom: 1rem;
}

.why-band {
  background: var(--surface-default);
  border-top: 1px solid var(--surface-divider);
  border-bottom: 1px solid var(--surface-divider);
  padding: 48px 2rem;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-item {
  text-align: center;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: .7rem;
}

.why-item h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--primary-darker);
  font-size: .95rem;
  margin-bottom: .3rem;
}

.why-item p {
  font-size: .83rem;
  color: var(--grey-500);
}

.cta-strip {
  background: linear-gradient(135deg, var(--warning-dark) 0%, var(--warning-main) 100%);
  padding: 50px 2rem;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--grey-0);
  margin-bottom: .6rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.6rem;
}

.nl-row {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: .5rem;
}

.nl-row input {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: .7rem 1rem;
  font-size: .95rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
}

.nl-row button {
  background: var(--grey-700);
  color: var(--grey-0);
  border: none;
  border-radius: 6px;
  padding: .7rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
  white-space: nowrap;
  transition: background .18s;
}

.nl-row button:hover {
  background: var(--grey-600);
}

footer {
  background: var(--primary-darker);
  padding: 44px 2rem 20px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-about p {
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
  margin-top: .6rem;
  max-width: 360px;
}

.footer-col,
.f-col {
  flex: 1;
}

.footer-col h5,
.f-col h5,
.f-col h3 {
  color: var(--warning-dark);
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col a,
.f-col a {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  text-decoration: none;
  margin-bottom: .6rem;
  transition: all .2s;
}

.footer-col a:hover,
.f-col a:hover {
  color: var(--warning-light);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom a {
  color: var(--warning-light);
  text-decoration: none;
}

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

  .feat-img {
    min-height: 160px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .navbar-collapse {
    background: var(--primary-darker);
    padding: 1rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
}

/* ═══ POST HERO ═══ */
.post-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary-main) 100%);
  /* background-color: var(--bs-gray-300); */
  padding: 60px 2rem 52px;
  text-align: center;
  border-bottom: .5px solid var(--primary-lighter);
  position: relative;
  overflow: hidden;
}


.post-hero-inner {
  max-width: 60vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  color: var(--grey-600);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--grey-600);
  text-decoration: none;
  cursor: pointer;
  transition: color .18s;
}

.breadcrumb a:hover {
  color: var(--warning-light);
}

.breadcrumb span {
  color: var(--warning-light);
}

.post-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--grey-100);
  line-height: 1.25;
  margin: 1rem 0;
}

.post-hero h1 span {
  color: var(--primary-main);
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: .9rem;
  align-items: center;
  color: var(--grey-400);
  font-size: .83rem;
  flex-wrap: wrap;
}

.post-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--warning-main);
  border-radius: 50%;
}

/* ═══ POST LAYOUT ═══ */
.post-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 2rem;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 2.8rem;
}

.article h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 2rem 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-lighter);
}

.article h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  /* color: var(--primary-main); */
  color: var(--grey-700);
  margin: 1.5rem 0 .55rem;
}

.article p {
  color: var(--grey-600);
  font-size: .96rem;
  line-height: 1.78;
  margin-bottom: 1.1rem;
}

.article ul,
.article ol {
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}

.article li {
  color: var(--grey-600);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .38rem;
}

.article li::marker {
  color: var(--warning-main);
}

.article strong {
  color: var(--primary-darker);
}

.callout {
  background: var(--primary-lighter);
  border-left: 4px solid var(--primary-main);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.6rem 0;
}

.callout.org {
  background: #fff4ed;
  border-color: var(--warning-main);
}

.callout p {
  margin: 0;
  color: var(--grey-700);
  font-size: .93rem;
}

.callout strong {
  color: var(--primary-main);
}

.callout.org strong {
  color: var(--warning-main);
}

.art-divider {
  height: 1px;
  background: var(--surface-divider);
  margin: 2rem 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 2rem;
}

.tag-item {
  background: var(--surface-default);
  border: 1px solid var(--surface-divider);
  border-radius: 6px;
  color: var(--grey-500);
  padding: .22rem .65rem;
  font-size: .76rem;
}

/* ═══ SIDEBAR ═══ */
.sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
}

.s-card {
  background: var(--grey-0);
  border: 1px solid var(--surface-divider);
  border-radius: var(--radius);
  padding: 1.3rem;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.s-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .93rem;
  font-weight: 800;
  color: var(--primary-darker);
  margin-bottom: .9rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--primary-lighter);
}

.s-post {
  padding: .65rem 0;
  border-bottom: 1px solid var(--surface-divider);
  display: block;
  text-decoration: none;
}

.s-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.s-post span {
  display: block;
  font-size: .86rem;
  color: var(--grey-700);
  font-weight: 600;
  line-height: 1.4;
  transition: color .18s;
  font-family: 'Nunito', sans-serif;
}

.s-post:hover span {
  color: var(--primary-main);
}

.s-post small {
  display: block;
  font-size: .75rem;
  color: var(--grey-400);
}

.cta-card {
  /* background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%); */
  background-color: var(--primary-lighter);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary-main);
  padding: 1.5rem;
  margin-bottom: 1.3rem;
}

.cta-card h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: .5rem;
}

.cta-card p {
  font-size: .84rem;
  color: var(--grey-700);
  margin-bottom: 1rem;
}

.cta-card a {
  display: block;
  text-align: center;
  background: var(--warning-dark);
  color: var(--grey-0);
  border-radius: 6px;
  padding: .65rem 1rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: background .18s;
}

.cta-card a:hover {
  background: var(--warning-main);
}

.contact-s p {
  font-size: .85rem;
  color: var(--grey-500);
  margin: .25rem 0;
}

.contact-s a {
  color: var(--primary-main);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
}

/* ═══ POST NAV ═══ */
.post-nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--surface-divider);
  max-width: 1100px;
  margin: 0 auto;
}

.post-nav a {
  color: var(--primary-main);
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
}

.post-nav a:hover {
  text-decoration: underline;
}

/* ═══ RESPONSIVE ADJUSTMENTS ═══ */
@media(max-width: 900px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar {
    position: static;
  }
}

/* ── Comparison Table & Score Cards ── */
.comparison-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-divider);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  min-width: 640px;
}

.comparison-table thead tr {
  background: var(--primary-darker);
}

.comparison-table thead th {
  padding: 1rem 1.1rem;
  text-align: center;
  color: rgba(255, 255, 255, .75);
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 34%;
}

.comparison-table thead th.highlight {
  background: var(--primary-main);
  color: #fff;
  position: relative;
}

.comparison-table thead th.highlight::after {
  content: '★ Best Choice';
  display: block;
  font-size: .65rem;
  font-weight: 600;
  color: var(--warning-light);
  letter-spacing: .04em;
  margin-top: .2rem;
  text-transform: uppercase;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--surface-divider);
  transition: background .15s;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--grey-50);
}

.comparison-table tbody tr.section-row td {
  background: var(--primary-darker);
  color: var(--warning-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .65rem 1.1rem;
}

.comparison-table tbody td {
  padding: .85rem 1.1rem;
  color: var(--grey-500);
  border-right: 1px solid var(--surface-divider);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  color: var(--grey-700);
  font-weight: 600;
  font-size: .9rem;
}

.comparison-table tbody td.col-pawnr {
  background: var(--primary-lighter);
  text-align: center;
  border-right: 1px solid rgba(0, 150, 136, .1);
}

.comparison-table tbody td:not(:first-child) {
  text-align: center;
}

.tick {
  color: var(--success-main);
  font-size: 1.15rem;
  font-weight: 800;
}

.cross {
  color: var(--error-main);
  font-size: 1.1rem;
  font-weight: 800;
}

.partial {
  color: var(--warning-dark);
  font-size: .85rem;
  font-weight: 600;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.score-card {
  border: 1px solid var(--surface-divider);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.score-card.best {
  border-color: var(--primary-main);
  background: var(--primary-lighter);
}

.score-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .3rem;
}

.score-card.best .score-num {
  color: var(--primary-main);
}

.score-card:not(.best) .score-num {
  color: var(--grey-500);
}

.score-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: var(--primary-darker);
  margin-bottom: .2rem;
}

.score-sub {
  font-size: .76rem;
  color: var(--grey-500);
}

.verdict {
  background: var(--primary-darker);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.verdict-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.verdict h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--warning-light);
  margin-bottom: .5rem;
}

.verdict p {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
  line-height: 1.7;
  margin: 0;
}

.verdict p strong {
  color: #fff;
}

@media(max-width: 768px) {
  .comparison-wrap {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    margin: 1.5rem 0;
  }

  .comparison-table {
    min-width: 100%;
    border: none;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 2rem;
    border: 1px solid var(--surface-divider);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .comparison-table tr.section-row {
    margin-bottom: 1rem;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .comparison-table tr.section-row td {
    border-radius: var(--radius);
    padding: .75rem 1rem !important;
  }

  .comparison-table td {
    text-align: right !important;
    padding: 1rem !important;
    border: none;
    border-bottom: 1px solid var(--surface-divider);
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: .95rem;
  }

  .comparison-table td:last-child {
    border-bottom: none;
  }

  /* Feature Name Header */
  .comparison-table td:first-child {
    background: var(--grey-50);
    text-align: left !important;
    color: var(--primary-darker);
    font-weight: 800;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary-main);
    justify-content: flex-start;
  }

  /* Data Labels for Columns */
  .comparison-table td:not(:first-child)::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--grey-500);
  }

  .comparison-table td.col-pawnr {
    background: var(--primary-lighter);
    border-right: none;
  }
}

@media(max-width:700px) {
  .score-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══ MOBILE MENU OVERLAY (IMAGE-LIKE) ═══ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-lighter) e0f2f16e;
  /* Dark backdrop */
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;

}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-card {
  background: var(--grey-0);
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-card {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-menu-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--grey-600);
  /* Dark navy */
  letter-spacing: -0.5px;
}

.mobile-menu-title span {
  color: var(--warning-dark);
  /* Lighter grey for 'Solutions' */
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--error-main);
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin-bottom: 1rem;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--grey-500);
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-menu-list a.active {
  color: var(--warning-dark);
  /* Blue for active state */
}

.mobile-menu-list a.active svg {
  color: var(--warning-dark);
}

.mobile-menu-list a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--grey-500);
  transition: color 0.2s;
}

.mobile-menu-list a:hover {
  background: var(--grey-0);
  transform: translateX(5px);
}

/* Hide default Bootstrap menu on mobile since we use custom overlay */
@media (max-width: 991px) {

  .navbar-collapse.collapse.show,
  .navbar-collapse.collapsing {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .responsive-table-hide {
    display: none !important;
  }
}

.whatsapp-chat {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.whatsapp-chat:hover {
  transform: scale(1.08);
}

.whatsapp-chat svg {
  z-index: 2;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 5px;
}

.whatsapp-chat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: 50%;
  z-index: 1;
  /* opacity: 0; */
}

.whatsapp-chat:hover::before {
  animation: whatsappWave 1.5s infinite ease-out;
}

@keyframes whatsappWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.hero-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
}

.whatsapp-chat:active {
  transform: scale(1);
  /* background-color: var(--primary-main); */
}

/* ══ LIGHT THEME OVERRIDES (Applied Globally to Blog) ══ */
.navbar {
  background: var(--bs-gray-900) !important;
  /* background: #003b3c !important; */
  /* border-bottom: 1px solid var(--surface-divider) !important; */
  box-shadow: var(--shadow-sm) !important;
}

.nav-name {
  color: var(--primary-light) !important;
}

.nav-name span {
  color: var(--warning-dark) !important;
}

.navbar-nav .nav-link {
  color: var(--grey-0) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--warning-dark) !important;
}

.navbar-toggler-icon {
  filter: none !important;
}

.hero h1 {
  color: var(--grey-200);
}

.hero p {
  color: var(--grey-200);
}

.cta-strip {
  background: var(--primary-lighter) !important;
  border-top: 1px solid var(--primary-light) !important;
  border-bottom: 1px solid var(--primary-light) !important;
}

.cta-strip h2 {
  color: var(--primary-dark) !important;
}

.cta-strip p {
  color: var(--grey-600) !important;
}

.nl-row button {
  background: var(--primary-dark) !important;
  color: var(--grey-0) !important;
  border: 1px solid var(--primary-dark) !important;
}

.nl-row button:hover {
  background: var(--warning-main) !important;
}

footer {
  background: var(--bs-gray-200) !important;
  border-top: 1px solid var(--surface-divider) !important;
}

.footer-about p,
.footer-col a,
.footer-bottom {
  color: var(--grey-600) !important;
}

.footer-col a:hover {
  color: var(--primary-main) !important;
}

.footer-col h5 {
  color: var(--primary-dark) !important;
}

.footer-bottom {
  border-top: 1px solid var(--grey-300) !important;
}

@media (max-width: 600px) {
  .navbar-collapse {
    background: var(--grey-0) !important;
    border-top: 1px solid var(--surface-divider) !important;
  }
}