@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Core Colors from Dashboard */
  --primary: #1890ff;
  --primary-light: #bae7ff;
  --primary-lighter: #e6f7ff;
  --primary-dark: #096dd9;

  --gold: #faad14;
  --gold-light: #ffd666;
  --gold-dark: #d48806;

  --success: #52c41a;
  --error: #ff4d4f;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-page: #f5f7fa;
  /* Dashboard grey background */
  --bg-divider: #f0f0f0;

  /* Text */
  --text-primary: #262626;
  --text-secondary: #595959;
  --text-muted: #8c8c8c;

  --dark: #001529;
  /* Dashboard sidebar dark */

  --border-light: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

body {
  /* font-family: 'Jost', sans-serif; */
  /* font-family: 'Cormorant Garamond', serif; */
  font-family: 'Nunito', sans-serif;
  /* background: var(--bg-page); */
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.6;
}

/* NAV - Refactored for Dark PawnR Style */
.navbar {
  /* background: var(--dark) !important; */
  background: var(--dark) !important;
  border-bottom: 3px solid var(--primary-dark);
  box-shadow: 0 2px 12px rgba(15, 32, 68, .45);
  padding: 0 !important;
  min-height: 60px;
}

.navbar-brand.nav-logo {
  display: flex;
  /* align-items: center; */
  /* gap: 0.4rem; */
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: -8px;
}

.navbar-brand.nav-logo img {
  height: 30px;
  width: 50px;
  filter: brightness(1.4);
  margin-right: 10px;
}

.navbar-brand.nav-logo span {
  color: var(--bs-gray-100);
  font-weight: 300;
  margin-left: 0.2rem;
}

.nav-link {
  color: var(--bs-gray-400) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease;
  padding: 0.5rem 0 !important;
  margin: 0 .8rem;
  position: relative;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link.active {
  color: #fff !important;
  font-weight: 600 !important;
}

/* .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
} */

.navbar-toggler {
  padding: 0.5rem;
  border: none !important;
  outline: none !important;
  box-shadow: none !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;
  width: 1.5rem;
  height: 1.5rem;
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  transition: transform 0.2s, background 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* PAGE SYSTEM */
.page {
  display: block;
  min-height: 100vh;
  /* padding-top: 60px; */
}

/* ===== HERO SECTIONS - PawnR Inspired Dark Look ===== */
.hero-blog,
.compare-hero,
.post-hero {

  /* background-image: linear-gradient(109.6deg, rgba(204, 228, 247, 1) 11.2%, rgba(237, 246, 250, 1) 100.2%); */
  background: linear-gradient(175deg, var(--dark) 0%, var(--primary) 100%);
  padding: 8rem 3rem 3rem;
  text-align: center;
  position: relative;
  /* overflow: hidden; */
  /* Removing hidden overflow to let absolute chips bleed out */
}

.hero-blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 50% -10%, rgba(24, 144, 255, 0.15) 0%, transparent 70%); */
  pointer-events: none;
}

.hero-blog::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  /* background: linear-gradient(to bottom, transparent, var(--bg-page)); */
}

.hero-ornament {
  display: inline-block;
  background: rgba(250, 173, 20, 0.1);
  color: var(--gold);
  border: 1px solid rgba(250, 173, 20, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.hero-blog h1,
.compare-hero h1,
.post-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 800 !important;
  color: var(--bs-gray-100) !important;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 1100px) {

  .post-hero h1,
  .hero-blog h1,
  .compare-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .post-hero h1,
  .hero-blog h1,
  .compare-hero h1 {
    font-size: 1.8rem;
  }
}

h1 em {
  color: var(--primary);
  /* color: #76bdff; */
  font-style: normal;
}

.hero-blog p,
.compare-hero p,
.post-hero p.lead {
  color: var(--bs-gray-100);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1100px) {

  .post-hero p.lead,
  .hero-blog p,
  .compare-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {

  .post-hero p.lead,
  .hero-blog p,
  .compare-hero p {
    font-size: 1rem;
  }
}

.post-meta {
  color: var(--bs-gray-100);
}

/* STAT CHIPS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  /* position: absolute; */
  bottom: -60px;
  left: 2rem;
  right: 2rem;
  z-index: 10;
  padding-top: 2rem;
}

@media (max-width: 1100px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(1, 1fr);
  }
}

.stat-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-lighter);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 !important;
  white-space: nowrap;
}

.gold-rule {
  display: none;
}

/* Hide the old gold rule for modern look */

/* BLOG CONTAINER */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  /* Increased top padding to account for floating stat cards */
}

.compare-wrap,
.compare-container {
  max-width: 80%;
  margin: 2rem auto 5rem;
  background: var(--bg-white);
  padding: 0 4rem;
  border-radius: 12px;
  /* box-shadow: var(--shadow-sm); */
}

@media (max-width: 1100px) {

  .compare-wrap,
  .compare-container {
    max-width: 95%;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {

  .compare-wrap,
  .compare-container {
    max-width: 100%;
    padding: 0 2rem;
  }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

/* FEATURED POST - Dashboard Card Style */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.featured-visual {
  /* background: var(--primary); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 3rem; */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.featured-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.featured-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  backdrop-filter: blur(4px);
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.featured-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.featured-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* POST GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border: 1px solid transparent;
}

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

.post-card-visual {
  height: 180px;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
}

.post-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.post-card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.post-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.post-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== SINGLE POST ===== */
/* .post-hero {
  padding: 8rem 2rem 5rem;
} */

.post-hero-inner {
  max-width: 70vw;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1100px) {
  .post-hero-inner {
    max-width: 90vw;
  }
}

@media (max-width: 768px) {
  .post-hero-inner {
    max-width: 100vw;
    padding: 0;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 2rem;
}

.post-body {
  max-width: 80%;
  margin: 2rem auto 5rem;
  background: var(--bg-white);
  padding: 0 4rem;
  border-radius: 12px;
  /* box-shadow: var(--shadow-sm); */
}

@media (max-width: 1100px) {
  .post-body {
    max-width: 90vw;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .post-body {
    max-width: 100vw;
    padding: 0;
  }
}

.post-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 3rem 0 1.25rem;
  position: relative;
  width: fit-content;
}

/* .post-body h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 3px;
  background: var(--primary);
  left: 0;
  right: 0;
  bottom: -6px;

}

*/
.post-body p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Post List Styling */
.post-body ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.post-body ul li {
  position: relative;
  padding: 1rem 1.5rem 1rem 3.5rem;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.post-body ul li::before {
  content: '✦';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
}

.post-body ul li:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.callout-box {
  background: #f0f7ff;
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 4px;
}

.callout-box p {
  font-weight: 500;
  /* font-style: italic; */
  color: var(--primary);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.fi-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--bg-page);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.feature-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

/* CTAs & BUTTONS */
.cta-strip {
  background: var(--primary);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 4rem 0;
}

.cta-strip h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

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

.btn-gold {
  background: #fff;
  color: var(--primary);
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-gold:hover {
  transform: scale(1.05);
}

/* FOOTER - Premium SaaS Layout */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0 2rem;
  font-family: 'Nunito', sans-serif;
}

.footer-cta {
  background: var(--primary);
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.footer-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff !important;
}

.footer-cta p {
  font-size: 1.43rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--primary) !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: var(--primary-lighter);
}

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

.footer-brand .f-logo {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  /* align-items: center; */
  gap: 0.5rem;
}

.footer-brand .f-logo img {
  width: 40px;
  height: 40px;
  filter: brightness(1.4);
}

.footer-brand .f-logo span {
  opacity: 0.6;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  /* background: rgba(255, 255, 255, 0.05); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.social-link img,
.social-link svg {
  width: 30px;
  height: 30px;
}

.social-link:hover {
  /* background: var(--primary);
  border-color: var(--primary); */
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8rem;
  font-weight: 800;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-cta h2 {
    font-size: 2.2rem;
  }
}

/* TABLE & COMPARISON */
.plan-compare,
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.plan-compare th {
  background: #fafafa;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.table-category td {
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 800;
  text-align: left !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem !important;
  padding: 0.75rem 1.5rem !important;
}

.plan-compare td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  text-align: center;
  /* color: var(--text-secondary); */
}

.plan-compare tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--success);
  font-weight: 700;
}

.cross {
  color: var(--error);
  font-weight: 700;
}

/* (Removed comparison-table styles as requested for restoration) */

/* ===== COMPARE & PLANS PAGES ===== */

/* Compare Grid */
.sw-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .sw-compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .sw-compare-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sw-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s;
}

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

.sw-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(24, 144, 255, 0.15);
}

.sw-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sw-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.sw-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
}

.sw-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.sw-card li {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* VS Elements */
.vs-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 4rem 0;
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.vs-pill {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.15rem;
}

.vs-pill.jewel {
  background: var(--primary-lighter);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.vs-pill.other {
  background: var(--bg-page);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.vs-dot {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Verdict Strip */
.verdict-strip {
  display: flex;
  justify-content: space-around;
  background: var(--dark);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

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

.verdict-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.verdict-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.verdict-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

/* Plan Summaries Grid */
.vs-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 1rem;
}

/* Comparison Details (Software Verdicts) */
.comparison-details {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.compare-wrap>p,
.comparison-details p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.compare-wrap>.callout-box.intro-callout {
  margin-bottom: 3.5rem;
}

.comparison-details h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
}

.comparison-details h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  /* color: var(--primary); */
}

.comparison-details .post-body.transparent-list {
  padding: 0;
  box-shadow: none;
  background: transparent;
  max-width: 100%;
  margin: 0;
}

.vs-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 3rem 2rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.vs-card.best {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(250, 173, 20, 0.15);
  transform: scale(1.03);
  z-index: 1;
}

.vs-card.best:hover {
  transform: scale(1.03) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.vs-card-tag {
  align-self: center;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-page);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.vs-card.best .vs-card-tag {
  color: var(--gold-dark);
  background: #fffbe6;
}

.vs-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.vs-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  min-height: 4rem;
}

.vs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  flex-grow: 1;
}

.vs-card li {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Highlight Column */
.highlight-col {
  background: #fafafa;
  font-weight: 700;
  color: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .posts-grid,
  .sw-compare-grid,
  .vs-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem !important;
  }

  .nav-link {
    margin: 0.5rem 0;
    padding-left: 0 !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .posts-grid,
  .sw-compare-grid,
  .vs-summary {
    grid-template-columns: 1fr;
  }

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

  .post-body {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-brand .f-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .verdict-strip {
    flex-direction: column;
    gap: 2rem;
  }

  .vs-card.best {
    transform: none;
  }

  .vs-card.best:hover {
    transform: translateY(-5px);
  }
}

/* CUSTOM MOBILE MENU CARD (Reference Style) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  /* Deep slate with transparency */
  backdrop-filter: blur(12px);
  z-index: 999999;
  /* Over anything Bootstrap has */
  display: flex;
  align-items: flex-start;
  /* Place card at top part of screen */
  justify-content: center;
  padding: 5rem 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

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

.mobile-menu-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow-y: auto;
  max-height: 85dvh;
}

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

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

.mobile-menu-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  /* dark text for branding */
  letter-spacing: -0.5px;
  display: flex;
  /* align-items: center; */
  gap: 0.5rem;
}

.mobile-menu-title img {
  width: 30px;
  height: 30px;
}

.mobile-menu-title span {
  color: #64748b;
  /* grey for Solutions part */
  font-weight: 400;
  margin-left: 4px;
}

.mobile-menu-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: #e2e8f0;
  color: var(--error);
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: #334155;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-menu-list a.active {
  color: var(--primary);
  background: rgba(24, 144, 255, 0.05);
}

.mobile-menu-list a svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: color 0.2s;
}

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

.mobile-menu-list a:hover {
  background: #f8fafc;
  color: var(--primary);
}

.mobile-menu-list a:hover svg {
  color: var(--primary);
}

.mobile-cta-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff !important;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(24, 144, 255, 0.3);
}

.align-left {
  text-align: left !important;
  color: var(--text-secondary);
}

.partial {
  color: var(--gold-dark);
}

.origin-link {
  color: var(--primary-dark);
  text-decoration: none;
}

.origin-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.whatsapp-chat {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 31px;
  right: 22px;
  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: #38b09c;
  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); */
}