:root {
  --ink: #1e2761;
  --ink-2: #0f4c81;
  --green: #81b338;
  --green-soft: #e8f0db;
  --blue-soft: #eaf3ff;
  --cream: #f7fbff;
  --sand: #dbe6f7;
  --line: #dbe6f7;
  --text: #25324a;
  --muted: #444;
  --white: #fff;
}

.wrap {
  width: min(1350px, calc(100% - 80px));
  margin: 0 auto;
}

nav .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

nav .btn-primary {
  background: #81b338;
  color: #fff;
  box-shadow: 0 18px 36px rgba(129, 179, 56, 0.25);
  font-family: "Sora", sans-serif;
}
nav .btn-primary:hover {
  background: #6d9a2e;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(129, 179, 56, 0.35);
}

.topbar {
  background: linear-gradient(90deg, #81b338, #1e2761);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-family: "Sora", sans-serif;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  text-decoration: none;
}
.topbar a:hover {
  color: var(--green);
}

.topbar-brochure {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.topbar-brochure:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #1e2761;
  color: #1e2761 !important;
}

.topbar-search input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  width: 180px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.topbar-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.topbar-search input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 39, 97, 0.08);
  box-shadow: 0 10px 30px rgba(30, 39, 97, 0.05);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

nav .btn-primary {
  margin-left: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  text-decoration: none;
}

.logo img {
  height: 100px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1e2761;
  border-radius: 2px;
  transition: 0.2s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0 365px;
  padding: 0;
}

.nav-links a {
  color: #1e2761;
  font-weight: 600;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links > li {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  display: block;
  top: 145%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 3px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 100;
  list-style: none;
}

.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 15px;
  color: #1e2761;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: 0.15s ease;
}

.dropdown-menu a:hover {
  background: rgba(129, 179, 56, 0.08);
  color: #81b338;
}

.submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 5px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: 0.2s ease;
  z-index: 101;
  list-style: none;
}

.has-sub:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.has-sub.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

footer {
  background: var(--cream);
  color: var(--text);
  padding: 58px 0 22px;
  font-family: "DM Sans", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 28px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-anim {
  opacity: 0;
}
.scroll-anim.visible {
  animation: fadeUp 0.6s ease both;
}

.page-banner {
  background: linear-gradient(
    135deg,
    var(--ink) 0%,
    #13204a 50%,
    var(--ink-2) 100%
  );
  padding: 90px 0 70px;
  color: #fff;
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(129, 179, 56, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.page-banner .banner-content {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: clamp(34px, 4vw, 36px);
  color: #fff;
  margin: 14px 0 10px;
  line-height: 1.1;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 700px;
  line-height: 1.7;
}
.page-banner .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.page-banner .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.page-banner .breadcrumb-nav a:hover {
  color: var(--green);
}
.page-banner .breadcrumb-nav span {
  color: var(--green);
}

.wa-float {
  position: fixed;
  bottom: 16px;
  right: 80px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(129, 179, 56, 0.3);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.scroll-top a:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 1499px) and (min-width: 1300px) {
  .wrap {
    width: min(1350px, calc(100% - 110px));
  }
  .nav-links {
    margin-left: 394px;
    gap: 18px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo img {
    height: 72px;
  }
}

@media (max-width: 1299px) and (min-width: 1150px) {
  .wrap {
    width: min(1350px, calc(100% - 115px));
  }
  .nav-links {
    margin-left: 363px;
    gap: 14px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .logo img {
    height: 64px;
  }
  .dropdown-menu a {
    font-size: 13px;
  }
}

@media (max-width: 1149px) {
  .wrap {
    width: min(1350px, calc(100% - 40px));
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .wrap {
    width: min(1350px, calc(100% - 32px));
  }
  .logo img {
    height: 56px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .wrap {
    width: min(1350px, calc(100% - 40px));
  }
  nav .wrap,
  .topbar .wrap {
    padding: 10px 0;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 99;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
  }
  .nav-links.open {
    max-height: 2500px;
    opacity: 1;
    visibility: visible;
  }
  .nav-links > li {
    width: 100%;
  }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 39, 97, 0.06);
  }
  .dropdown-menu,
  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    padding: 0 0 0 16px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown:hover > .dropdown-menu,
  .has-sub:hover > .submenu {
    transform: none;
  }
  .dropdown-menu.open {
    max-height: 1500px;
  }
  .submenu.open {
    max-height: 1000px;
  }
  .dropdown-menu a {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(30, 39, 97, 0.04);
  }
  .has-sub > a svg,
  .nav-dropdown > a svg {
    transition: transform 0.2s ease;
  }
  .has-sub > a.open svg,
  .nav-dropdown > a.open svg {
    transform: rotate(180deg);
  }
  nav > .wrap > .btn-primary {
    display: none;
  }
  .logo img {
    height: 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand img {
    height: 60px;
  }
  .topbar-links {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .wrap {
    width: min(1350px, calc(100% - 32px));
  }
  nav .wrap,
  .topbar .wrap {
    padding: 10px 0;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 99;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
  }
  .nav-links.open {
    max-height: 2500px;
    opacity: 1;
    visibility: visible;
  }
  .nav-links > li {
    width: 100%;
  }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 39, 97, 0.06);
  }
  .dropdown-menu,
  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    padding: 0 0 0 16px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown:hover > .dropdown-menu,
  .has-sub:hover > .submenu {
    transform: none;
  }
  .dropdown-menu.open {
    max-height: 1500px;
  }
  .submenu.open {
    max-height: 1000px;
  }
  .dropdown-menu a {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(30, 39, 97, 0.04);
  }
  .has-sub > a svg,
  .nav-dropdown > a svg {
    transition: transform 0.2s ease;
  }
  .has-sub > a.open svg,
  .nav-dropdown > a.open svg {
    transform: rotate(180deg);
  }
  nav > .wrap > .btn-primary {
    display: none;
  }
  .logo img {
    height: 70px;
  }
  .topbar-links {
    width: 100%;
  }
  .topbar-search input {
    width: 120px;
    font-size: 11px;
  }
  .topbar-brochure {
    font-size: 11px;
    padding: 4px 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 0 18px;
  }
  .footer-brand img {
    height: 80px;
  }
  .page-banner {
    padding: 50px 0 36px;
  }
  .page-banner h1 {
    font-size: clamp(26px, 6vw, 32px);
  }
}

.desktop {
  display: block !important;
}
.mobile {
  display: none !important;
}

@media (max-width: 992px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}

.mobile .breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.mobile .breadcrumb-nav a {
  color: #1e2761;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile .breadcrumb-nav a:hover {
  color: #81b338;
}

.mobile .breadcrumb-nav svg {
  color: #9aa4b8;
  flex-shrink: 0;
}

.mobile .breadcrumb-nav span {
  color: #81b338;
  font-weight: 600;
}

.home-faq .text-center {
  margin-bottom: 4rem !important;
}

.home-faq .text-center .eyebrow {
  margin-bottom: 16px;
}

.home-faq .text-center h2 {
  margin-top: 16px;
  margin-bottom: 12px;
}

.home-faq .text-center p {
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .home-faq .text-center {
    margin-bottom: 3rem !important;
  }
  .home-faq .text-center h2 {
    margin-top: 14px;
    margin-bottom: 10px;
  }
}

.topbar a {
  letter-spacing: normal;
}

@media (max-width: 575px) {
  .topbar-links:nth-child(2) {
    gap: 8px;
  }
  .topbar-links:nth-child(2) a {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 340px) {
  .topbar-links:nth-child(2) a {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  body h2 {
    line-height: 1.3;
    letter-spacing: normal;
  }
  body h3,
  body h4 {
    line-height: 1.35;
    letter-spacing: normal;
  }
  body h5,
  body h6 {
    line-height: 1.35;
    letter-spacing: normal;
  }
}

.btn-theme {
  background: #1e2761;
  color: #fff;
  border: none;
}

.btn-theme:hover,
.btn-theme:focus {
  background: #13204a;
  color: #fff;
}

.trend-box a:not(.btn),
.blog-content a:not(.btn),
.info-card a:not(.btn),
.glass-box a:not(.btn) {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.trend-box a:not(.btn):hover,
.blog-content a:not(.btn):hover,
.info-card a:not(.btn):hover,
.glass-box a:not(.btn):hover {
  color: #6d9a2e;
}

.blog-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.anti-inflammatory-banner {
  background:
    linear-gradient(
      135deg,
      rgb(30 39 97) 0%,
      rgb(19 32 74 / 27%) 50%,
      rgb(15 76 129 / 0%) 100%
    ),
    url(../images/blog/blog-bg.webp) center / cover no-repeat;
}

.mobile-breadcrumb {
  padding: 15px 20px;
  background: #fff;
}

.innovative-tech-section {
  background: url(../images/blog/bg.webp) center / cover no-repeat;
}

.benefits-visual {
  position: relative;
  padding-top: 48px;
}

.benefits-badge {
  width: min(300px, 38%);
  z-index: 2;
}

.faq-answer-open {
  max-height: none;
}

.legacy-regulation-content {
  display: none;
}

.legacy-disintegration-content {
  display: none;
}

.commitment-section {
  background: #fff;
}

.commitment-heading {
  display: inline-block;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: #202967;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.innovative-heading {
  margin-bottom: 40px;
}

.commitment-copy {
  margin: 0 0 18px;
}

.commitment-link {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
}

.commitment-link a {
  color: var(--green);
  text-decoration: none;
}

.commitment-link a:hover {
  color: #6d9a2e;
  text-decoration: underline;
}

.api-resource-image {
  height: 100%;
  object-fit: cover;
}

.page-content .section-title {
  font-weight: 500;
}

.blog-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.blog-nav-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.blog-nav-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* FAQ Enhancements */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(30, 39, 97, 0.08);
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--blue-soft);
}

.faq-question span {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 39, 97, 0.06);
}

.comparison-table thead {
  background: var(--ink);
  color: var(--white);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  color: var(--text);
  vertical-align: middle;
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: var(--blue-soft);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  min-width: 180px;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(5) {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  color: var(--ink-2);
}

@media (max-width: 767px) {
  .faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

/* Enhanced Q&A Content Section */
.disintegration-exact-content .trend-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 39, 97, 0.06);
  border: 1px solid var(--line);
}

.disintegration-exact-content h2 {
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green-soft);
}

.disintegration-exact-content h4 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
}

.disintegration-exact-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.disintegration-exact-content strong {
  color: var(--ink);
}

.disintegration-exact-content ul {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1rem;
}

.disintegration-exact-content li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  position: relative;
}

.disintegration-exact-content li::marker {
  color: var(--green);
}

.disintegration-exact-content li strong {
  color: var(--ink); 
  display: inline-block;
}

@media (max-width: 767px) {
  .disintegration-exact-content .trend-box {
    padding: 1.5rem !important;
  }

  .disintegration-exact-content h4 {
    font-size: 1rem;
  }
}

.benefittt {
  position: absolute;
  top: 48px;
  right: 500px;
}

.benefittt img {
  width: 20vw;
}

/* ===== Single-Card Blog Enhancements ===== */
.blog-single-card {
  padding: 0;
  overflow: hidden;
}

.blog-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 38px;
  background: linear-gradient(135deg, #1e2761 0%, #17327a 55%, #0f4c81 100%);
  color: #fff;
  position: relative;
  flex-wrap: wrap;
}
.blog-card-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(129, 179, 56, 0.28), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-card-head .head-icon {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: rgba(129, 179, 56, 0.15);
  border: 1px solid rgba(129, 179, 56, 0.4);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-head .eyebrow {
  background: rgba(129, 179, 56, 0.2);
  color: #e8f0db;
}
.blog-card-head h2 {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 8px 0 0;
  font-family: "Sora", sans-serif;
}
.blog-card-head p {
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.sahpra-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.sahpra-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--ink);
  border: 1px solid rgba(129, 179, 56, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}
.sahpra-chips i {
  color: var(--green);
  font-size: 11px;
}

.sahpra-subhead {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  margin: 2.25rem 0 1rem;
  font-family: "Sora", sans-serif;
}
.sahpra-subhead:first-of-type {
  margin-top: 0;
}
.sahpra-subhead i {
  color: var(--green);
}

.req-card {
  height: 100%;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: all 0.25s ease;
}
.req-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 39, 97, 0.1);
  border-color: var(--green);
}
.req-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}
.req-card:nth-child(even) .req-num,
.req-card:nth-child(2n) .req-num {
  background: var(--green);
}
.req-card strong {
  display: block;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
}
.req-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.sahpra-process {
  margin: 0;
}
.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  transition: all 0.25s ease;
}
.process-step:hover {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(30, 39, 97, 0.07);
  transform: translateX(4px);
}
.step-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.step-body h5 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}
.step-body p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.7;
}

.sahpra-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, #6d9a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sahpra-cta::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.sahpra-cta h4 {
  margin: 0 0 4px;
  color: #fff;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  position: relative;
  z-index: 1;
}
.sahpra-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.sahpra-cta .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border: none;
  font-family: "DM Sans", sans-serif;
}
.sahpra-cta .btn:hover {
  background: var(--ink);
  color: #fff;
}

.related-card {
  overflow: hidden;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-card .related-thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.related-card .related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.related-card:hover .related-thumb img {
  transform: scale(1.06);
}
.related-card .related-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-card h5 {
  color: var(--ink);
  font-weight: 700;
  font-family: "Sora", sans-serif;
  line-height: 1.4;
}
.related-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.related-card .btn {
  align-self: flex-start;
}

@media (max-width: 767px) {
  .blog-card-head {
    padding: 24px 22px;
  }
  .blog-card-head .head-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
    border-radius: 14px;
  }
  .process-step {
    padding: 14px 16px;
  }
  .sahpra-cta {
    padding: 22px 20px;
  }
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 1.5rem;
}
.stat-cell {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.25s ease;
}
.stat-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 39, 97, 0.1);
  border-color: var(--green);
}
.stat-cell .stat-value {
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  line-height: 1.1;
}
.stat-cell .stat-label {
  font-size: 12.5px;
  color: var(--text);
  margin-top: 6px;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

.outlook-box {
  margin-top: 2rem;
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, #17327a 55%, var(--ink-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.outlook-box::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(129, 179, 56, 0.16);
}
.outlook-box .outlook-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(129, 179, 56, 0.18);
  border: 1px solid rgba(129, 179, 56, 0.35);
  color: #81b338;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.outlook-box h4 {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.outlook-box p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .outlook-box {
    padding: 22px 20px;
  }
}
