:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --text-primary: #0B1220;
  --text-secondary: #475569;
  --text-tertiary: #64748B;
  --text-heading: #1F2937;
  --border: rgba(15, 23, 42, 0.10);

  --btn-primary: #635BFF;
  --btn-primary-hover: #584DE5;
  --btn-secondary: #4A56E2;
  --link: #4A56E2;

  --success: #10B981;
  --error: #EF4444;
  --info: #3B82F6;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.08);

  --shadow-elev: 0 18px 45px rgba(0,0,0,0.10);
  --shadow-elev-strong: 0 22px 55px rgba(0,0,0,0.13);

  --glass-bg: rgba(255,255,255,0.76);
  --glass-border: rgba(15, 23, 42, 0.10);

  --overlay-bg: rgba(2, 6, 23, 0.38);

  --border-accent: rgba(99, 91, 255, 0.35);
  --shadow-accent: 0 18px 40px rgba(99, 91, 255, 0.10);

  --focus-ring: 0 0 0 6px rgba(99, 91, 255, 0.16);

  --btn-primary-grad: linear-gradient(135deg, rgba(99, 91, 255, 1), rgba(74, 86, 226, 1));
  --btn-primary-grad-hover: linear-gradient(135deg, rgba(88, 77, 229, 1), rgba(67, 56, 202, 1));

  --container: 1120px;

  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-primary);
  background: var(--color-bg);
  line-height: 1.7;
}

.b-gtm-hidden {
  display: none;
  visibility: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--btn-primary-hover); }

.b-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.b-skip:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 9999;
}

.b-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.b-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.b-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.b-brand-logo {
  height: 38px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.b-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #635BFF, #4A56E2);
  box-shadow: 0 12px 30px rgba(99, 91, 255, 0.18);
}

.b-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.b-nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  background-image: linear-gradient(135deg, rgba(99, 91, 255, 0.55), rgba(74, 86, 226, 0.45));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: color 160ms ease, background-size 220ms ease;
}

.b-nav-links a:hover {
  color: var(--text-primary);
  background-size: 100% 2px;
}

.b-nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b-nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1px;
}

.b-nav-link:hover {
  color: var(--text-primary);
}

.b-dropdown {
  position: relative;
}

.b-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.b-dropdown-toggle i {
  font-size: 0.75rem;
  opacity: 0.75;
  transition: transform 170ms ease, opacity 170ms ease;
  transform: rotate(0deg);
}

.b-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  z-index: 2000;
}

.b-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.b-dropdown:hover .b-dropdown-menu,
.b-dropdown:focus-within .b-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
}

.b-dropdown:hover .b-dropdown-toggle i,
.b-dropdown:focus-within .b-dropdown-toggle i {
  opacity: 0.95;
  transform: rotate(180deg);
}

.b-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.93rem;
  line-height: 1.25;
  letter-spacing: 0.15px;
  text-decoration: none;
}

.b-dropdown-item i {
  width: 18px;
  text-align: center;
  color: rgba(47, 44, 230, 0.85);
}

.b-dropdown-item:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
}

.b-phone {
  color: var(--text-tertiary);
  font-weight: 700;
  font-size: 0.92rem;
}

.b-phone:hover {
  color: var(--text-primary);
}

.b-nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-nav-ctas .b-phone,
.b-nav-ctas .b-nav-link {
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
  padding: 8px 0;
}

.b-nav-ctas .b-btn {
  padding: 7px 12px;
  height: 36px;
  box-sizing: border-box;
}

.b-nav-mobile-toggle {
  display: none;
}

.b-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.b-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.70);
  position: relative;
}

.b-hamburger span::before,
.b-hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.70);
}

.b-hamburger span::before { top: -6px; }
.b-hamburger span::after { top: 6px; }

.b-nav-panel {
  display: none;
  padding: 12px 0 18px;
}

.b-nav-panel {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.b-nav-panel a {
  background: rgba(255,255,255,0.78);
}

.b-nav-panel a {
  display: flex;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.b-nav-panel a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
}

.b-section {
  padding: calc(var(--space-2xl) + 8px) 0;
}

.b-section-page-top {
  padding-top: var(--space-xxl);
}

.b-section-page-bottom {
  padding-bottom: var(--space-xxl);
}

.b-mt-0 {
  margin-top: 0;
}

.b-m-0 {
  margin: 0;
}

.b-mt-lg {
  margin-top: var(--space-lg);
}

.b-split-gap-lg {
  gap: var(--space-lg);
}

.b-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.b-actions-end {
  justify-content: flex-end;
}

.b-section.b-section-tight-top {
  padding-top: calc(var(--space-2xl) - 40px);
}

.b-section.b-section-tight-bottom {
  padding-bottom: calc(var(--space-2xl) - 40px);
}

.b-section.b-alt {
  background: var(--color-bg-alt);
}

.b-solution-page > .b-section {
  padding-bottom: 36px;
}

.b-solution-cta {
  margin-top: 0;
  padding-bottom: 40px;
}

.b-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 7px 11px;
  background: rgba(99, 91, 255, 0.10);
  color: #4338CA;
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.b-h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.05rem, 2.9vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

 .b-aurora {
  background: linear-gradient(90deg, #635BFF 0%, #3B82F6 40%, #22C55E 100%);
  background-size: 200% 100%;
  animation: b-aurora-shift 3.2s ease-in-out infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
 }

 @keyframes b-aurora-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
 }

 @media (prefers-reduced-motion: reduce) {
  .b-aurora {
    animation: none;
  }
 }

.b-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.0vw, 2.0rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.b-h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text-heading);
}

.b-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0;
}

.b-muted {
  color: var(--text-secondary);
}

.b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.92rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
  will-change: transform;
  position: relative;
  overflow: visible;
}

.b-btn:focus { outline: none; }

.b-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.b-btn-primary {
  background: var(--btn-primary);
  background-image:
    radial-gradient(600px 160px at 25% 0%, rgba(255,255,255,0.22), transparent 60%),
    var(--btn-primary-grad);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow:
    0 10px 20px rgba(99, 91, 255, 0.18),
    0 0 0 1px rgba(255,255,255,0.12) inset;
}

.b-btn-primary:hover {
  background: var(--btn-primary-hover);
  background-image:
    radial-gradient(600px 160px at 25% 0%, rgba(255,255,255,0.34), transparent 60%),
    var(--btn-primary-grad-hover);
  transform: translateY(-0.5px);
  box-shadow:
    0 14px 26px rgba(99, 91, 255, 0.22),
    0 0 26px rgba(99, 91, 255, 0.20);
}

.b-btn:active {
  transform: translateY(0);
}

.b-btn-secondary {
  background: rgba(255,255,255,0.7);
  background-image: radial-gradient(520px 140px at 25% 0%, rgba(99, 91, 255, 0.10), transparent 62%);
  color: var(--btn-secondary);
  border: 1px solid rgba(74, 86, 226, 0.35);
}

.b-btn-secondary:hover {
  transform: translateY(-0.5px);
  border-color: rgba(74, 86, 226, 0.55);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  background-image: radial-gradient(520px 140px at 25% 0%, rgba(99, 91, 255, 0.14), transparent 62%);
}

.b-btn-tertiary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.b-btn-tertiary:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.b-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.b-field {
  display: grid;
  gap: 8px;
}

.b-label {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 0.92rem;
}

.b-input,
.b-select,
.b-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.92);
  padding: 10px 12px;
  font: inherit;
  color: var(--text-primary);
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.b-input:focus,
.b-select:focus,
.b-textarea:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.45);
  box-shadow: var(--focus-ring);
}

.b-select {
  appearance: none;
}

.b-help {
  margin-top: 12px;
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.b-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  color: var(--text-heading);
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 9999;
}

.b-toast--show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.b-hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 var(--space-2xl);
}

.b-hero::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  background: radial-gradient(ellipse at top left, rgba(99, 91, 255, 0.22), transparent 60%),
              radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.20), transparent 55%),
              radial-gradient(ellipse at 30% 60%, rgba(99, 102, 241, 0.12), transparent 55%);
  pointer-events: none;
}

.b-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.b-hero-copy {
  max-width: 620px;
}

.b-hero .b-h1 {
  font-weight: 700;
  line-height: 1.18;
  margin: 16px 0 14px;
}

.b-hero .b-lead {
  line-height: 1.75;
  margin-top: 6px;
}

.b-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.b-pillrow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.b-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.b-hero-art {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,249,250,0.86));
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.b-hero-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

 .b-hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: 100%;
 }

 .b-hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 520ms ease;
 }

 .b-hero-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
 }

 .b-hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 }

 .b-hero-carousel-testimonial {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(135%);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
 }

 .b-hero-carousel-testimonial p {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-size: 0.95rem;
  line-height: 1.45;
 }

 .b-hero-carousel-company {
  font-weight: 700;
  color: var(--text-primary);
 }

 .b-hero-slide--active .b-hero-carousel-testimonial {
  opacity: 1;
  transform: translateY(0);
 }

 @media (max-width: 640px) {
  .b-hero-carousel-testimonial {
   left: 10px;
   right: 10px;
   bottom: 10px;
   padding: 10px 12px;
  }

  .b-hero-carousel-testimonial p {
   font-size: 0.9rem;
  }
 }



.b-hero-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.b-hero-visual {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--glass-bg), rgba(248,249,250,0.72));
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.b-visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.b-dots {
  display: inline-flex;
  gap: 6px;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
}

.b-visual-body {
  padding: 14px;
}

.b-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.b-mini-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.b-mini-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(520px 160px at 18% 0%, rgba(99, 91, 255, 0.10), transparent 62%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.b-mini-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
  border-color: rgba(15, 23, 42, 0.16);
}

.b-mini-card:hover::before {
  opacity: 1;
}

.b-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.b-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(59, 130, 246, 0.06));
  color: #067A57;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.b-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.b-kpi-item {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248,249,250,0.8);
  padding: 10px;
}

.b-kpi-item strong { display: block; font-size: 0.95rem; }
.b-kpi-item span { display: block; font-size: 0.85rem; color: var(--text-secondary); }

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

.b-segments {
  margin-top: 18px;
}

.b-client-logos {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.b-client-logos img {
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
}

.b-client-logos img:hover {
  opacity: 0.95;
}

.b-client-logos-wrap {
  margin-top: 18px;
}

.b-client-logos-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.15;
  padding: 2px 12px;
  overflow: visible;
}

.b-lovedby-heart {
  width: 22px;
  height: 22px;
  display: inline-block;
  object-fit: contain;
  margin-right: 2px;
  transform-origin: center;
  filter: drop-shadow(0 10px 18px rgba(224, 0, 45, 0.22));
  animation: b-heart-pulse 1.6s ease-in-out infinite;
}

@keyframes b-heart-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 14px rgba(224, 0, 45, 0.18));
  }
  50% {
    transform: scale(1.14);
    filter: drop-shadow(0 14px 24px rgba(224, 0, 45, 0.30));
  }
}

@media (prefers-reduced-motion: reduce) {
  .b-lovedby-heart {
    animation: none;
  }
}

.b-client-logos-wrap.b-client-logos-wrap--hero {
  margin-top: 44px;
}

.b-client-logos-wrap.b-client-logos-wrap--hero .b-client-logos-label {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.b-client-logos.b-client-logos--hero {
  margin-top: 0;
}

.b-client-logos.b-client-logos--hero img {
  height: 38px;
  max-width: 170px;
  filter: grayscale(35%) contrast(1.12);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .b-client-logos {
    justify-content: center;
  }

  .b-client-logos img {
    height: 28px;
    max-width: 140px;
  }

  .b-client-logos.b-client-logos--hero img {
    height: 34px;
    max-width: 160px;
  }
}

.b-seg-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.b-seg-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.b-seg-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  position: relative;
  overflow: hidden;
}

.b-seg-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 140px at 25% 0%, rgba(255,255,255,0.55), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.b-seg-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.18);
  color: var(--text-primary);
  background: rgba(255,255,255,0.92);
}

.b-seg-tab:hover::before {
  opacity: 1;
}

.b-seg-panels {
  margin-top: 18px;
}

.b-seg-panel {
  display: none;
}

.b-seg-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.b-seg-grid > .b-card {
  height: 100%;
}

.b-seg-side {
  display: flex;
  flex-direction: column;
}

.b-cost {
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.b-seg-rec {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.60), rgba(248, 249, 250, 0.70));
  backdrop-filter: blur(10px);
}

.b-seg-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.b-seg-label {
  font-weight: 700;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.b-seg-value {
  color: var(--text-secondary);
  font-weight: 600;
}

.b-seg-rec strong {
  display: block;
  font-size: 0.95rem;
}

.b-seg-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.b-seg-side .b-seg-cta {
  margin-top: auto;
  padding-top: 16px;
}

/* Active tab state */
#seg-bfsi:checked ~ .b-seg-tabs label[for="seg-bfsi"],
#seg-smbstartups:checked ~ .b-seg-tabs label[for="seg-smbstartups"],
#seg-staffingblue:checked ~ .b-seg-tabs label[for="seg-staffingblue"],
#seg-itcorp:checked ~ .b-seg-tabs label[for="seg-itcorp"] {
  background: rgba(99, 91, 255, 0.10);
  border-color: rgba(99, 91, 255, 0.22);
  color: #4338CA;
}

/* Show selected panel */
#seg-bfsi:checked ~ .b-seg-panels #panel-bfsi,
#seg-smbstartups:checked ~ .b-seg-panels #panel-smbstartups,
#seg-staffingblue:checked ~ .b-seg-panels #panel-staffingblue,
#seg-itcorp:checked ~ .b-seg-panels #panel-itcorp {
  display: block;
}

.b-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.b-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.b-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

details.b-card {
  cursor: pointer;
}

details.b-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

details.b-card summary::-webkit-details-marker {
  display: none;
}

details.b-card summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

details[open].b-card summary::after {
  transform: rotate(180deg);
}

details.b-card p {
  margin-top: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.b-steps {
  display: grid;
  gap: var(--space-lg);
}

.b-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: flex-start;
}

.b-step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--color-bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  flex-shrink: 0;
  margin-top: 4px;
}

.b-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
  overflow: visible;
}

 a.b-card {
  display: block;
  color: inherit;
  text-decoration: none;
 }

 a.b-card:visited {
  color: inherit;
 }

 a.b-card:focus {
  outline: none;
 }

 a.b-card:focus-visible {
  box-shadow: var(--focus-ring);
 }

 .b-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
 }

 .b-table thead th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(99, 91, 255, 0.06);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  padding: 12px 12px;
 }

 .b-table thead th:first-child {
  border-top-left-radius: 12px;
 }

 .b-table thead th:last-child {
  border-top-right-radius: 12px;
 }

 .b-table tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: top;
 }

 .b-table tbody tr:nth-child(odd) td {
  background: rgba(15, 23, 42, 0.02);
 }

 .b-table tbody tr:hover td {
  background: rgba(99, 91, 255, 0.05);
 }

 .b-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
 }

 .b-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
 }

 .b-table th:last-child,
 .b-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
 }

.b-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(700px 220px at 20% 0%, rgba(99, 91, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.b-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elev-strong);
  border-color: rgba(15, 23, 42, 0.18);
}

.b-card:hover::before {
  opacity: 1;
}

.b-login-head {
  margin-bottom: var(--space-lg);
}

.b-login-grid {
  margin-top: var(--space-md);
}

.b-login-card {
  text-align: left;
}

.b-login-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.b-login-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.b-login-chevron {
  color: var(--text-tertiary);
}

.b-login-card-button {
  width: 100%;
  font: inherit;
  cursor: pointer;
}

.b-login-footer {
  margin-top: var(--space-lg);
}

.b-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--space-lg);
  background: var(--overlay-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 3000;
}

.b-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.b-modal-dialog {
  width: 100%;
  max-width: calc(var(--space-2xl) * 6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(135%);
  box-shadow: var(--shadow-elev);
  padding: var(--space-lg);
}

.b-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.b-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.b-modal-close:hover {
  color: var(--text-primary);
}

.b-modal-close:focus {
  outline: none;
}

.b-modal-close:focus-visible {
  box-shadow: var(--focus-ring);
}

.b-modal-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-md);
}

@media (prefers-reduced-motion: reduce) {
  .b-btn,
  .b-card,
  .b-mini-card,
  .b-seg-tab,
  .b-nav-links a {
    transition: none;
  }

  .b-btn:hover,
  .b-btn:active,
  .b-card:hover,
  .b-mini-card:hover,
  .b-seg-tab:hover {
    transform: none;
  }

  .b-btn-primary::before,
  .b-btn-secondary::before,
  .b-card::before,
  .b-mini-card::before,
  .b-seg-tab::before {
    transition: none;
  }
}

.b-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 91, 255, 0.10);
  border: 1px solid rgba(99, 91, 255, 0.18);
  color: #2F2CE6;
  margin-bottom: 12px;
}

.b-logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
  opacity: 0.9;
}

.b-cert-strip {
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
}

.b-cert-pill {
  padding: 10px 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.b-logo-pill {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  padding: 10px 12px;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.b-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.b-split-stretch {
  align-items: stretch;
}

.b-split-stretch > * {
  height: 100%;
}

.b-codebox {
  background: #0B1020;
  color: #E6EAF2;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
  overflow: hidden;
}

.b-codebox .b-visual-topbar {
  border-bottom-color: rgba(255,255,255,0.12);
}

.b-code {
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre;
  overflow: auto;
}

.b-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.b-pricing-card {
  position: relative;
  padding-top: 18px;
}

.b-pricing-card.b-has-badge {
  padding-top: 32px;
}

.b-pricing-card {
  display: flex;
  flex-direction: column;
}

.b-pricing-head {
  min-height: 128px;
}

.b-pricing-features {
  margin-top: 14px;
}

.b-pricing-cta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.b-pricing-head .b-price {
  margin-top: 10px;
}

.b-pricing-head .b-price-note {
  margin-top: 10px;
}

.b-pricing-card .b-popular,
.b-pricing-card .b-enterprise {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: none;
}

.b-pricing-card.b-has-badge {
  overflow: visible;
}

.b-pricing-card--popular {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.b-pricing-page .b-section-head {
  margin-bottom: 28px;
}

.b-popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 249, 250, 1);
  border: 1px solid rgba(99, 91, 255, 0.22);
  color: #4338CA;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0;
}

.b-enterprise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 249, 250, 1);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0;
}

.b-enterprise-card {
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.90), rgba(248, 250, 252, 0.96));
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.b-price-note {
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.b-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.b-price-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
}

.b-price-amount {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.b-price-period {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-tertiary);
}

.b-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
}

.b-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.b-roles {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.b-roles-label {
  font-weight: 700;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.b-roles-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.b-role-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(248, 249, 250, 0.75);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.1;
}

.b-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.18);
  color: #067A57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.b-cta-band {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(59, 130, 246, 0.10));
  padding: 28px;
}

.b-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}

.b-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.b-footer a { text-decoration: none; color: var(--text-secondary); }
.b-footer a:hover { color: var(--text-primary); }

.b-footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.b-footer-logo {
  height: 48px;
  width: auto;
  display: block;
}

.b-footer-note {
  margin: var(--space-sm) 0 0;
}

.b-footer-regulatory {
  margin-top: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.b-footer-regulatory a {
  color: var(--text-tertiary);
}

.b-footer-regulatory a:hover {
  color: var(--text-secondary);
}

.b-footer-title {
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
}

.b-footer-links {
  display: grid;
  gap: var(--space-sm);
}

.b-footer-legal {
  margin-top: var(--space-lg);
}

.b-floating-login {
  position: fixed;
  left: 50%;
  top: calc(var(--space-2xl) + var(--space-sm));
  transform: translateX(-50%);
  z-index: 1200;

  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-sm);

  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--shadow-md);
}

.b-floating-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-sm);
  color: var(--text-secondary);
  font-weight: 700;
  line-height: 1.1;
}

.b-floating-login-link:hover {
  color: var(--text-primary);
}

.b-floating-login-close {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.b-floating-login-close i {
  font-size: 12px;
  line-height: 1;
}

.b-floating-login-close:hover {
  color: var(--text-primary);
}

.b-floating-login-close:focus {
  outline: none;
}

.b-floating-login-close:focus-visible {
  box-shadow: var(--focus-ring);
}



.b-prose {
  margin-top: var(--space-md);
}

.b-prose p {
  margin: 0 0 var(--space-md);
  color: var(--text-secondary);
}

.b-prose p strong {
  color: var(--text-heading);
}

.b-policy-title {
  text-align: center;
}

.b-policy-content .policy-intro {
  margin-bottom: var(--space-lg);
}

.b-policy-content .policy-section {
  margin-top: var(--space-xl);
}

.b-policy-content .policy-section:first-of-type {
  margin-top: var(--space-lg);
}

.b-policy-content .grievance-officer {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--color-bg-alt);
}

.b-policy-content .data-table,
.b-policy-content .cookies-table {
  margin-top: var(--space-md);
  overflow-x: auto;
}

.b-policy-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  background: var(--color-bg);
}

.b-policy-content th,
.b-policy-content td {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border);
  vertical-align: top;
}

.b-policy-content thead th {
  color: var(--text-heading);
  background: var(--color-bg-alt);
}

.b-policy-content tbody tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.b-about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: start;
}

.b-about-hero-aside {
  width: 100%;
}

.b-about-aside-card {
  position: sticky;
  top: calc(var(--space-2xl) + var(--space-md));
}

.b-about-stats {
  margin-top: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.b-about-stat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
}

.b-about-stat-number {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  line-height: 1.2;
}

.b-about-stat-label {
  margin-top: var(--space-xs);
  color: var(--text-tertiary);
  font-weight: 700;
}

.b-timeline {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.b-timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.b-timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  box-shadow: var(--shadow-sm);
}

.b-timeline-date {
  color: var(--text-tertiary);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.b-about-person {
  padding: var(--space-md);
}

.b-about-person-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.b-about-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.b-about-person-body {
  margin-top: var(--space-sm);
}

.b-about-person .b-badge {
  margin-top: var(--space-sm);
}

@media (max-width: 1024px) {
  .b-about-hero-grid { grid-template-columns: 1fr; }
  .b-about-aside-card { position: static; top: auto; }
  .b-about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .b-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .b-logo-cloud { grid-template-columns: repeat(3, 1fr); }
  .b-grid-3 { grid-template-columns: 1fr; }
  .b-grid-2 { grid-template-columns: 1fr; }
  .b-split { grid-template-columns: 1fr; }
  .b-pricing-grid { grid-template-columns: 1fr; }
  .b-footer-grid { grid-template-columns: 1fr; }
  .b-nav-links { display: none; }
  .b-nav-menu { display: none; }
  .b-nav-ctas { display: none; }
  .b-hamburger { display: inline-flex; }
  .b-nav-panel { display: none; }
  .b-nav-mobile-toggle:checked ~ .b-nav-panel { display: block; }
  .b-seg-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .b-seg-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .b-seg-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Blog Styles - Added for blog posts
   ============================================ */

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.blog-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.blog-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-meta i {
  color: #059669;
  margin-right: 0.25rem;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}

/* Blog content typography */
.blog-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}

.blog-content p {
  margin: 0 0 1.5rem;
  line-height: 1.8;
}

.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 0.75rem;
  line-height: 1.4;
}

.blog-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 1.5rem 0 0.5rem;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.blog-content a {
  color: #059669;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content a:hover {
  color: #047857;
}

.blog-content strong {
  font-weight: 600;
  color: #111827;
}

/* Highlight box */
.highlight-box {
  background: #ecfdf5;
  border-left: 4px solid #059669;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
  margin-top: 0;
  color: #065f46;
}

/* Process box */
.process-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.process-box h4 {
  margin-top: 0;
  color: #059669;
}

/* Table styles */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.blog-content th {
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

.blog-content td {
  color: #374151;
}

/* FAQ section */
.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #111827;
  margin-bottom: 0.5rem;
}

/* Related articles */
.related-articles {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.related-articles h3 {
  margin-top: 0;
}

.related-articles ul {
  padding-left: 1.25rem;
}

/* ============================================
   Mobile Responsiveness for Blog
   ============================================ */

@media (max-width: 768px) {
  .blog-container {
    padding: 1.25rem 1rem;
  }

  .blog-title {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .blog-content {
    font-size: 1rem;
    line-height: 1.7;
  }

  .blog-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
  }

  .blog-content h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.5rem;
  }

  .blog-content table {
    font-size: 0.875rem;
  }

  .blog-content th,
  .blog-content td {
    padding: 0.5rem;
  }

  .highlight-box,
  .process-box {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .blog-container {
    padding: 1rem 0.75rem;
  }

  .blog-title {
    font-size: 1.35rem;
  }

  .blog-meta {
    font-size: 0.8125rem;
  }

  .blog-content {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .blog-content h2 {
    font-size: 1.125rem;
  }

  .blog-content h3 {
    font-size: 1rem;
  }
}

/* Blog Listing Page Styles */
.blog-listing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image i {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.blog-card-meta i {
  color: #059669;
  margin-right: 0.25rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card-link:hover {
  color: #047857;
}

.blog-card-link i {
  transition: transform 0.2s;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

/* Category filter cards */
.b-card {
  display: block;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.b-card:hover {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

/* Blog listing responsive */
@media (max-width: 768px) {
  .blog-listing-container {
    padding: 1.25rem 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .blog-listing-container {
    padding: 1rem 0.75rem;
  }
  
  .blog-card-content {
    padding: 1rem;
  }
  
  .blog-card-title {
    font-size: 1.1rem;
  }
}
