/* Be Hassan Core v1.0.10 — frontend base */
:root {
  --bh-primary: #2563EB;
  --bh-accent: #F59E0B;
  --bh-dark: #07111F;
  --bh-text: #111827;
  --bh-muted: #5B6472;
  --bh-warm: #F7F4EE;
  --bh-border: #E5E7EB;
  --bh-surface: #FFFFFF;
  --bh-radius: 24px;
  --bh-shadow: 0 22px 60px rgba(7, 17, 31, 0.10);
  --bh-font-heading: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bh-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bh-page,
.bh-page * {
  box-sizing: border-box;
}

.bh-page {
  color: var(--bh-text);
  font-family: var(--bh-font-body);
  background: #fff;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}

/*
  Astra wraps page content in .ast-container by default.
  The plugin pages need full-bleed section backgrounds, while .bh-container
  still keeps actual content readable and aligned. This breakout lets shortcode
  pages span the viewport without changing the global Astra container settings.
*/
.entry-content > .bh-page,
.entry-content.clear > .bh-page {
  margin-top: 0;
  margin-bottom: 0;
}

body:has(.bh-page),
body.bh-core-page {
  overflow-x: clip;
}

body.bh-core-page {
  --wp--custom--ast-container-width: 100% !important;
  --wp--custom--ast-content-width-size: 100% !important;
  --wp--custom--ast-wide-width-size: 100% !important;
  --wp--custom--ast-default-block-top-padding: 0px !important;
  --wp--custom--ast-default-block-right-padding: 0px !important;
  --wp--custom--ast-default-block-bottom-padding: 0px !important;
  --wp--custom--ast-default-block-left-padding: 0px !important;
}


/*
  Full-width Astra page override
  ------------------------------
  Astra can keep shortcode pages inside .ast-container / .content-area / article wrappers.
  When a Be Hassan shortcode page is present, flatten those wrappers so the plugin sections
  can use full-bleed backgrounds while .bh-container still controls readable content width.
*/
body:has(.bh-page) #content,
body:has(.bh-page) .site-content,
body:has(.bh-page) .site-content .ast-container,
body:has(.bh-page) .ast-container,
body:has(.bh-page) #primary,
body:has(.bh-page) .content-area,
body:has(.bh-page) .site-main,
body:has(.bh-page) .ast-article-single,
body:has(.bh-page) .entry-content,
body:has(.bh-page) .entry-content.clear {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body:has(.bh-page) .site-content .ast-container {
  display: block !important;
}

body:has(.bh-page) #primary,
body:has(.bh-page) .content-area {
  float: none !important;
  right: auto !important;
  left: auto !important;
}

body:has(.bh-page).ast-separate-container .ast-article-single,
body:has(.bh-page).ast-separate-container .ast-article-post,
body:has(.bh-page).ast-page-builder-template .site-content > .ast-container,
body:has(.bh-page).ast-page-builder-template .site-content #primary {
  padding: 0 !important;
  margin: 0 !important;
}

body:has(.bh-page) .entry-header,
body:has(.bh-page) .post-thumb-img-content {
  display: none !important;
}

/* v1.0.10 fallback for browsers/themes where :has() or Astra CSS variables still hold the page at 1200px */
html body.bh-core-page #content,
html body.bh-core-page .site-content,
html body.bh-core-page .site-content > .ast-container,
html body.bh-core-page .site-content .ast-container,
html body.bh-core-page .ast-container,
html body.bh-core-page #primary,
html body.bh-core-page .content-area,
html body.bh-core-page .site-main,
html body.bh-core-page .ast-article-single,
html body.bh-core-page .entry-content,
html body.bh-core-page .entry-content.clear {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html body.bh-core-page .site-content > .ast-container,
html body.bh-core-page .site-content .ast-container {
  display: block !important;
}

html body.bh-core-page .bh-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}


.bh-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bh-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 92px;
}

.bh-hero--dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.30), transparent 34%),
    linear-gradient(135deg, #07111F 0%, #0B1830 62%, #111827 100%);
}

.bh-hero--light {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.bh-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 68px;
  align-items: center;
}

.bh-hero__inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.bh-hero__content {
  max-width: 760px;
}

.bh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--bh-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bh-hero--dark .bh-kicker {
  color: #93C5FD;
}

.bh-page h1,
.bh-page h2,
.bh-page h3 {
  margin: 0;
  color: inherit;
  font-family: var(--bh-font-heading);
  letter-spacing: -0.035em;
}

.bh-page h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 6vw, 4.45rem);
  line-height: 1.05;
  font-weight: 760;
}

.bh-page h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
}

.bh-page h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.bh-page p {
  color: var(--bh-muted);
  font-size: 17px;
  line-height: 1.72;
}

.bh-hero--dark p:not(.bh-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.bh-hero__text {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 19px;
}

.bh-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.bh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bh-button:hover {
  transform: translateY(-2px);
}

.bh-button--primary {
  background: var(--bh-primary);
  color: #fff !important;
  box-shadow: 0 18px 40px rgba(37, 99, 235, .24);
}

.bh-button--secondary,
.bh-button--secondary-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #fff !important;
}

.bh-button--secondary-dark {
  background: #fff;
  border-color: var(--bh-border);
  color: var(--bh-text) !important;
}

.bh-button--light {
  background: #fff;
  color: var(--bh-dark) !important;
}

.bh-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bh-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.07);
  font-size: 14px;
  font-weight: 700;
}

.bh-browser-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.bh-browser-card__bar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.bh-browser-card__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.bh-browser-card__content {
  padding: 28px;
}

.bh-score-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  color: var(--bh-dark);
}

.bh-score-card strong {
  color: #16A34A;
  font-size: 64px;
  line-height: .9;
  letter-spacing: -0.06em;
}

.bh-score-card span {
  color: var(--bh-muted);
  font-weight: 800;
}

.bh-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.bh-mini-grid span {
  padding: 14px;
  border-radius: 16px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.10);
  font-size: 14px;
  font-weight: 800;
}

.bh-section {
  padding: 92px 0;
}

.bh-section--warm {
  background: var(--bh-warm);
}

.bh-section__heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.bh-section__heading p:last-child {
  margin-bottom: 0;
}

.bh-section__split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.bh-copy p:first-child {
  margin-top: 0;
}

.bh-card-list {
  display: grid;
  gap: 14px;
}

.bh-card-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--bh-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7,17,31,.05);
}

.bh-card-list__item .bh-icon {
  color: var(--bh-primary);
  margin-top: 2px;
}

.bh-card-list__item span {
  color: var(--bh-text);
  font-weight: 650;
  line-height: 1.55;
}

/* Homepage problem section: image + issue cards */
.bh-problem-layout {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.bh-problem-layout.has-no-problem-image {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: start;
}

.bh-problem-layout.has-no-problem-image .bh-problem-layout__content {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  grid-column: 1 / -1;
}

.bh-problem-heading {
  max-width: 700px;
}

.bh-problem-heading h2 {
  margin-bottom: 16px;
}

.bh-problem-heading p:not(.bh-kicker) {
  margin: 0 0 26px;
  color: var(--bh-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bh-problem-visual {
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7,17,31,.08);
}

.bh-problem-visual__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1.05);
}

.bh-card-list--problem {
  gap: 12px;
}

.bh-card-list--problem .bh-card-list__item {
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(7,17,31,.055);
}

.bh-card-list--problem .bh-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(37,99,235,.10);
  margin-top: 0;
}

.bh-card-list--problem .bh-card-list__item span {
  font-size: 16px;
  line-height: 1.48;
  font-weight: 680;
}

.bh-service-grid,
.bh-work-grid,
.bh-pricing-grid,
.bh-feature-grid {
  display: grid;
  gap: 22px;
}

.bh-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-service-card,
.bh-work-card,
.bh-price-card,
.bh-feature-grid > div,
.bh-contact-card,
.bh-form-card,
.bh-about-card {
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,17,31,.06);
}

.bh-service-card {
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bh-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.30);
  box-shadow: var(--bh-shadow);
}

.bh-service-card__icon,
.bh-service-hero-icon,
.bh-work-card__image span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--bh-primary);
  background: rgba(37,99,235,.10);
}

.bh-service-card h3 {
  margin-top: 20px;
}

.bh-service-card p {
  margin: 12px 0 18px;
  font-size: 15.5px;
}

.bh-service-card a,
.bh-work-card a {
  color: var(--bh-primary);
  font-weight: 800;
  text-decoration: none;
}

.bh-feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bh-feature-grid > div {
  padding: 24px;
}

.bh-feature-grid strong,
.bh-feature-grid span {
  display: block;
}

.bh-feature-grid .bh-icon {
  color: var(--bh-primary);
  margin-bottom: 16px;
}

.bh-feature-grid strong {
  margin-bottom: 8px;
  color: var(--bh-text);
  font-size: 17px;
}

.bh-feature-grid span {
  color: var(--bh-muted);
  line-height: 1.55;
}

.bh-work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bh-work-card {
  overflow: hidden;
}

.bh-work-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
  text-decoration: none;
}

.bh-work-card__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.bh-work-card__body {
  padding: 22px;
}

.bh-work-card__meta {
  margin: 0 0 8px;
  color: var(--bh-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bh-work-card h3 {
  margin-bottom: 10px;
}

.bh-work-card p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.bh-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bh-price-card {
  padding: 26px;
}

.bh-price-card .bh-icon {
  color: var(--bh-primary);
  margin-bottom: 18px;
}

.bh-price-card__price {
  margin: 12px 0 18px;
  color: var(--bh-dark) !important;
  font-size: 24px !important;
  font-weight: 800;
}

.bh-price-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--bh-muted);
  line-height: 1.7;
}

.bh-cta-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, .26), transparent 40%),
    linear-gradient(135deg, var(--bh-dark), #10244A);
  box-shadow: 0 24px 70px rgba(7,17,31,.18);
}

.bh-cta-card p,
.bh-cta-card .bh-kicker {
  color: rgba(255,255,255,.78);
}

.bh-cta-card h2 {
  color: #fff;
}

.bh-contact-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.bh-contact-card,
.bh-form-card {
  padding: 28px;
}

.bh-contact-card p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bh-contact-card a {
  color: var(--bh-primary);
  font-weight: 700;
  text-decoration: none;
}

.bh-form-card input,
.bh-form-card textarea,
.bh-form-card select,
.bh-form-card .ff-el-form-control {
  min-height: 48px;
  border: 1px solid var(--bh-border) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  font-family: var(--bh-font-body) !important;
}

.bh-form-card button,
.bh-form-card .ff-btn-submit {
  border-radius: 999px !important;
  background: var(--bh-primary) !important;
  color: #fff !important;
  font-weight: 800 !important;
}

.bh-about-card {
  display: grid;
  gap: 8px;
  padding: 32px;
}

.bh-about-card strong {
  font-size: 26px;
  color: var(--bh-dark);
}

.bh-about-card span {
  color: var(--bh-muted);
}

.bh-service-hero-icon {
  width: 190px;
  height: 190px;
  justify-self: center;
}

.bh-service-hero-icon .bh-icon {
  width: 84px;
  height: 84px;
}

@media (max-width: 1024px) {
  .bh-hero {
    padding: 92px 0 72px;
  }

  .bh-hero__inner,
  .bh-section__split,
  .bh-contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bh-service-grid,
  .bh-work-grid,
  .bh-pricing-grid,
  .bh-feature-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bh-container {
    width: min(100% - 28px, 1180px);
  }

  .bh-hero {
    padding: 72px 0 58px;
  }

  .bh-section {
    padding: 64px 0;
  }

  .bh-service-grid,
  .bh-work-grid,
  .bh-pricing-grid,
  .bh-feature-grid--four,
  .bh-mini-grid {
    grid-template-columns: 1fr;
  }

  .bh-actions,
  .bh-cta-card {
    align-items: stretch;
    flex-direction: column;
  }

  .bh-button {
    width: 100%;
  }

  .bh-cta-card {
    padding: 30px;
  }
}

/* Be Hassan Core v1.0.6 — upgraded homepage sections */
.bh-home-hero {
  padding-bottom: 112px;
}

.bh-hero-showcase {
  position: relative;
  max-width: 470px;
  margin-left: auto;
}

.bh-browser-card--main {
  position: relative;
  z-index: 2;
}

.bh-floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,17,31,.78);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
}

.bh-floating-card .bh-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: #93C5FD;
}

.bh-floating-card--top {
  top: 32px;
  right: -18px;
}

.bh-floating-card--bottom {
  left: -26px;
  bottom: 36px;
}

.bh-home-trust {
  position: relative;
  z-index: 4;
  margin-top: -44px;
  padding-bottom: 40px;
}

.bh-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--bh-border);
  border-radius: 28px;
  background: var(--bh-border);
  box-shadow: var(--bh-shadow);
}

.bh-trust-strip > div {
  padding: 24px;
  background: #fff;
}

.bh-trust-strip strong,
.bh-trust-strip span {
  display: block;
}

.bh-trust-strip strong {
  color: var(--bh-dark);
  font-family: var(--bh-font-heading);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.bh-trust-strip span {
  margin-top: 6px;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.5;
}

.bh-section__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 36px;
}

.bh-section__topline .bh-section__heading {
  margin-bottom: 0;
}

.bh-text-link {
  flex: 0 0 auto;
  color: var(--bh-primary);
  font-weight: 800;
  text-decoration: none;
}

.bh-text-link:hover {
  text-decoration: underline;
}

.bh-text-link--light {
  color: #BFDBFE;
}

.bh-industry-grid,
.bh-process-grid,
.bh-value-grid,
.bh-home-pricing-grid {
  display: grid;
  gap: 22px;
}

.bh-industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: bh-process;
}

.bh-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bh-home-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-industry-card,
.bh-process-card,
.bh-value-card,
.bh-home-price-card,
.bh-faq-item {
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,17,31,.06);
}

.bh-industry-card,
.bh-process-card,
.bh-value-card,
.bh-home-price-card {
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bh-industry-card:hover,
.bh-process-card:hover,
.bh-value-card:hover,
.bh-home-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.30);
  box-shadow: var(--bh-shadow);
}

.bh-industry-card .bh-icon,
.bh-process-card .bh-icon,
.bh-value-card .bh-icon,
.bh-home-price-card .bh-icon {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  color: var(--bh-primary);
}

.bh-industry-card h3,
.bh-process-card h3,
.bh-value-card h3,
.bh-home-price-card h3 {
  margin-top: 18px;
}

.bh-industry-card p,
.bh-process-card p,
.bh-value-card p,
.bh-home-price-card p {
  margin-bottom: 0;
  font-size: 15.5px;
}

.bh-process-card {
  position: relative;
  overflow: hidden;
}

.bh-process-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(37,99,235,.14);
  font-family: var(--bh-font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.bh-section--dark-soft {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 38%),
    linear-gradient(135deg, #07111F, #0B1830);
}

.bh-section--dark-soft .bh-kicker {
  color: #93C5FD;
}

.bh-section--dark-soft h2,
.bh-section--dark-soft h3 {
  color: #fff;
}

.bh-section--dark-soft p {
  color: rgba(255,255,255,.72);
}

.bh-section--dark-soft .bh-work-card {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: none;
}

.bh-section--dark-soft .bh-work-card__body {
  background: #fff;
}

.bh-home-price-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--bh-dark);
  font-family: var(--bh-font-heading);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.bh-section--faq {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.bh-faq-list {
  display: grid;
  gap: 12px;
}

.bh-faq-item {
  padding: 0;
  overflow: hidden;
}

.bh-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--bh-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.bh-faq-item summary::-webkit-details-marker {
  display: none;
}

.bh-faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  color: var(--bh-primary);
  background: rgba(37,99,235,.10);
  font-weight: 900;
}

.bh-faq-item[open] summary::after {
  content: '−';
}

.bh-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15.8px;
}

@media (max-width: 1024px) {
  .bh-hero-showcase {
    max-width: 560px;
    margin-right: auto;
  }

  .bh-trust-strip,
  .bh-industry-grid,
  .bh-process-grid,
  .bh-value-grid,
  .bh-home-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bh-home-hero {
    padding-bottom: 86px;
  }

  .bh-home-trust {
    margin-top: -30px;
  }

  .bh-trust-strip,
  .bh-industry-grid,
  .bh-process-grid,
  .bh-value-grid,
  .bh-home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .bh-section__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .bh-floating-card {
    position: static;
    width: max-content;
    max-width: 100%;
    margin-top: 12px;
  }

  .bh-floating-card--bottom {
    margin-left: auto;
  }

  .bh-trust-strip > div,
  .bh-industry-card,
  .bh-process-card,
  .bh-value-card,
  .bh-home-price-card {
    padding: 22px;
  }
}

/* Be Hassan Core v1.0.6 — Claude review homepage refinements */
.bh-trust-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.84) !important;
  background: rgba(255,255,255,.07);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.bh-trust-pills a:hover {
  transform: translateY(-1px);
  border-color: rgba(147,197,253,.42);
  background: rgba(147,197,253,.12);
  color: #fff !important;
}

.bh-trust-pills a .bh-icon,
.bh-trust-pills span .bh-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.bh-score-card span {
  max-width: 230px;
}

.bh-service-grid--priority {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.bh-service-grid--priority .bh-service-card {
  position: relative;
  grid-column: span 2;
  min-height: 100%;
}

.bh-service-grid--priority .bh-service-card--featured {
  grid-column: span 2;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 42%),
    #fff;
  border-color: rgba(37,99,235,.22);
}

.bh-service-card__badge,
.bh-plan-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--bh-primary);
  background: rgba(37,99,235,.10);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.bh-service-card__badge {
  margin-bottom: 18px;
}

.bh-service-card__outcome {
  margin: -4px 0 16px !important;
  color: var(--bh-dark) !important;
  font-size: 14.5px !important;
  font-weight: 750;
  line-height: 1.45 !important;
}

.bh-service-card__bullets,
.bh-home-price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.bh-service-card__bullets li,
.bh-home-price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.45;
}

.bh-service-card__bullets li::before,
.bh-home-price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bh-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.bh-section--method-proof .bh-section__heading {
  max-width: 900px;
}

.bh-method-grid {
  margin-bottom: 22px;
}

.bh-proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bh-proof-mini-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(7,17,31,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.74);
}

.bh-proof-mini-grid .bh-icon {
  color: var(--bh-primary);
}

.bh-proof-mini-grid h3 {
  font-size: 17px;
}

.bh-proof-mini-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}

.bh-work-grid--proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.bh-work-card--proof {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff !important;
}

.bh-work-preview {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(37,99,235,.18), transparent 34%),
    linear-gradient(135deg, #EFF6FF, #F8FAFC 58%, #E0F2FE);
}

.bh-work-preview img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.bh-work-preview__browser {
  display: block;
  width: 100%;
  height: 176px;
  padding: 16px;
  border: 1px solid rgba(37,99,235,.20);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(7,17,31,.12);
}

.bh-work-preview__bar,
.bh-work-preview__hero,
.bh-work-preview__lines,
.bh-work-preview__cards {
  display: block;
  border-radius: 12px;
}

.bh-work-preview__bar {
  width: 42%;
  height: 10px;
  background: rgba(37,99,235,.20);
}

.bh-work-preview__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  margin-top: 14px;
  color: var(--bh-primary);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(245,158,11,.10));
}

.bh-work-preview__hero .bh-icon {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.bh-work-preview__lines {
  height: 30px;
  margin-top: 14px;
  background:
    linear-gradient(#CBD5E1, #CBD5E1) 0 0 / 72% 8px no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 0 18px / 54% 8px no-repeat;
}

.bh-work-preview__cards {
  height: 24px;
  margin-top: 12px;
  background:
    linear-gradient(#E2E8F0, #E2E8F0) 0 0 / 31% 100% no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 50% 0 / 31% 100% no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 100% 0 / 31% 100% no-repeat;
}

.bh-work-card__metric {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7,17,31,.82);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(7,17,31,.20);
}

.bh-work-card--proof .bh-work-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.bh-work-card--proof .bh-work-card__body p:not(.bh-work-card__meta) {
  font-size: 15px;
  line-height: 1.58;
}

.bh-work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
  padding-top: 14px;
}

.bh-work-card__tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--bh-dark);
  background: #F1F5F9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.bh-work-card__link {
  margin-top: auto;
}

.bh-section--proof-names {
  padding: 72px 0;
  background: #fff;
}

.bh-proof-names-card {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--bh-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.14), transparent 34%),
    linear-gradient(135deg, #fff, #F8FAFC);
  box-shadow: 0 18px 45px rgba(7,17,31,.06);
}

.bh-proof-names-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.bh-proof-name-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.bh-proof-name-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 999px;
  color: var(--bh-dark);
  background: #fff;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(7,17,31,.05);
}

.bh-section--pricing-preview {
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.bh-home-price-card {
  position: relative;
}

.bh-home-price-card.is-popular {
  border-color: rgba(37,99,235,.32);
  box-shadow: 0 24px 70px rgba(37,99,235,.12);
}

.bh-home-price-card .bh-plan-tag {
  position: absolute;
  top: 20px;
  right: 20px;
}

.bh-home-price-card .bh-icon {
  margin-top: 18px;
}

.bh-card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  color: var(--bh-primary);
  font-weight: 850;
  text-decoration: none;
}

.bh-card-cta:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .bh-service-grid--priority,
  .bh-work-grid--proof,
  .bh-proof-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bh-service-grid--priority .bh-service-card,
  .bh-service-grid--priority .bh-service-card--featured {
    grid-column: span 1;
  }

  .bh-proof-names-card {
    grid-template-columns: 1fr;
  }

  .bh-proof-name-list {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .bh-service-grid--priority,
  .bh-work-grid--proof,
  .bh-proof-mini-grid {
    grid-template-columns: 1fr;
  }

  .bh-service-card__badge,
  .bh-plan-tag {
    font-size: 11px;
  }

  .bh-work-preview {
    min-height: 205px;
  }

  .bh-proof-names-card {
    padding: 24px;
  }

  .bh-proof-name-list span {
    width: 100%;
    justify-content: center;
  }

  .bh-home-price-card .bh-plan-tag {
    position: static;
    margin-bottom: 16px;
  }

  .bh-home-price-card .bh-icon {
    margin-top: 0;
  }
}

/* Be Hassan Core v1.0.6 — customer-facing homepage polish */
.bh-button {
  white-space: nowrap;
  flex: 0 0 auto;
  width: auto;
}

.bh-cta-card .bh-button {
  min-width: 132px;
  padding-left: 24px;
  padding-right: 24px;
  align-self: center;
}

.bh-mini-grid span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.bh-work-card--proof {
  min-height: 0;
}

.bh-work-preview {
  min-height: 168px;
  padding: 18px;
}

.bh-work-preview__browser {
  height: 126px;
  padding: 13px;
  border-radius: 16px;
}

.bh-work-preview__bar {
  width: 48%;
  height: 8px;
}

.bh-work-preview__hero {
  height: 40px;
  margin-top: 10px;
}

.bh-work-preview__hero .bh-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.bh-work-preview__lines {
  height: 24px;
  margin-top: 10px;
  background:
    linear-gradient(#CBD5E1, #CBD5E1) 0 0 / 72% 7px no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 0 16px / 54% 7px no-repeat;
}

.bh-work-preview__cards {
  height: 18px;
  margin-top: 9px;
}

.bh-work-card__metric {
  left: 16px;
  bottom: 14px;
  min-height: 28px;
  padding: 6px 10px;
}

.bh-work-card--proof .bh-work-card__body {
  display: block;
  padding: 22px;
}

.bh-work-card--proof .bh-work-card__body p:not(.bh-work-card__meta) {
  margin: 8px 0 0;
}

.bh-work-card__tags {
  margin: 14px 0 16px;
  padding-top: 0;
}

.bh-work-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
}

@media (max-width: 640px) {
  .bh-cta-card .bh-button {
    align-self: flex-start;
  }

  .bh-work-preview {
    min-height: 160px;
  }
}

/* v1.0.6 — protect case study mockup spans from the generic work-card icon rule */
.bh-work-card__image .bh-work-preview__browser {
  display: block;
  width: 100%;
  max-width: none;
  height: 126px;
  padding: 13px;
  border: 1px solid rgba(37,99,235,.20);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(7,17,31,.12);
}

.bh-work-card__image .bh-work-preview__bar,
.bh-work-card__image .bh-work-preview__hero,
.bh-work-card__image .bh-work-preview__lines,
.bh-work-card__image .bh-work-preview__cards {
  display: block;
  border-radius: 12px;
}

.bh-work-card__image .bh-work-preview__bar {
  width: 48%;
  height: 8px;
  background: rgba(37,99,235,.20);
}

.bh-work-card__image .bh-work-preview__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  color: var(--bh-primary);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(245,158,11,.10));
}

.bh-work-card__image .bh-work-preview__lines {
  width: 100%;
  height: 24px;
  margin-top: 10px;
  background:
    linear-gradient(#CBD5E1, #CBD5E1) 0 0 / 72% 7px no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 0 16px / 54% 7px no-repeat;
}

.bh-work-card__image .bh-work-preview__cards {
  width: 100%;
  height: 18px;
  margin-top: 9px;
  background:
    linear-gradient(#E2E8F0, #E2E8F0) 0 0 / 31% 100% no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 50% 0 / 31% 100% no-repeat,
    linear-gradient(#E2E8F0, #E2E8F0) 100% 0 / 31% 100% no-repeat;
}

.bh-work-card__image .bh-work-card__metric {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7,17,31,.82);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(7,17,31,.20);
}

.bh-work-card__image .bh-work-preview__hero .bh-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 0;
  color: var(--bh-primary);
  background-color: currentColor;
}


/* Be Hassan Core v1.0.4 — case study card readability + spacing repair */
.bh-section--dark-soft .bh-work-card__body {
  background: #fff;
  color: var(--bh-text);
}

.bh-section--dark-soft .bh-work-card__body p,
.bh-section--dark-soft .bh-work-card--proof .bh-work-card__body p:not(.bh-work-card__meta) {
  color: var(--bh-muted);
}

.bh-section--dark-soft .bh-work-card__meta {
  color: var(--bh-primary);
}

.bh-section--dark-soft .bh-work-card h3,
.bh-section--dark-soft .bh-work-card h3 a {
  color: var(--bh-primary);
}

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

.bh-work-card--proof {
  min-height: 0 !important;
  height: auto;
  display: flex;
  flex-direction: column;
}

.bh-work-card--proof .bh-work-card__image,
.bh-work-card--proof .bh-work-preview {
  flex: 0 0 auto;
  min-height: 168px !important;
  height: auto;
}

.bh-work-card--proof .bh-work-card__body {
  flex: 1 1 auto;
  display: flex !important;
  flex-direction: column;
  padding: 22px !important;
  background: #fff;
}

.bh-work-card--proof .bh-work-card__meta {
  margin: 0 0 8px;
  color: var(--bh-primary);
}

.bh-work-card--proof h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.18;
}

.bh-work-card--proof .bh-work-card__body p:not(.bh-work-card__meta) {
  display: block;
  margin: 0 0 14px !important;
  color: var(--bh-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.bh-work-card--proof .bh-work-card__tags {
  margin: 2px 0 16px !important;
  padding-top: 0 !important;
}

.bh-work-card--proof .bh-work-card__link {
  margin-top: auto;
}

.bh-section--dark-soft .bh-work-card__tags span {
  color: var(--bh-dark);
  background: #F1F5F9;
}

.bh-section--dark-soft .bh-work-card__link {
  color: var(--bh-primary);
}

@media (max-width: 640px) {
  .bh-work-card--proof .bh-work-card__image,
  .bh-work-card--proof .bh-work-preview {
    min-height: 150px !important;
  }

  .bh-work-card--proof .bh-work-card__body {
    padding: 20px !important;
  }
}

/* Be Hassan Core v1.0.6 — services hub and service page foundations */
.bh-actions--center {
  justify-content: center;
}

.bh-section__heading--center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bh-section__heading--center .bh-kicker {
  justify-content: center;
}

.bh-service-hub-hero .bh-hero__content,
.bh-service-single-hero .bh-hero__content {
  max-width: 900px;
}

.bh-service-hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 42%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: var(--bh-shadow);
}

.bh-service-hero-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.bh-service-hero-panel p {
  margin: 0;
}

.bh-service-hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.bh-service-hero-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--bh-muted);
  font-weight: 700;
}

.bh-service-hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bh-primary);
}

.bh-service-core .bh-service-grid,
.bh-section--service-core .bh-service-grid {
  margin-top: 22px;
}

.bh-choice-grid,
.bh-service-included-grid,
.bh-service-detail-grid,
.bh-service-benefit-grid,
.bh-related-service-grid {
  display: grid;
  gap: 18px;
}

.bh-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.bh-choice-card,
.bh-service-included-grid article,
.bh-service-detail-card,
.bh-service-benefit-grid article,
.bh-related-service-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.06);
}

.bh-choice-card .bh-icon,
.bh-service-included-grid .bh-icon,
.bh-service-benefit-grid .bh-icon,
.bh-related-service-card .bh-icon {
  color: var(--bh-primary);
  margin-bottom: 16px;
}

.bh-choice-card h3,
.bh-service-included-grid h3,
.bh-service-benefit-grid h3,
.bh-related-service-card h3 {
  margin: 0 0 10px;
  color: var(--bh-text);
}

.bh-choice-card p,
.bh-service-included-grid p,
.bh-related-service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.bh-service-included-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.bh-service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.bh-service-detail-card {
  min-height: 142px;
  display: grid;
  align-content: space-between;
}

.bh-service-detail-card span {
  color: rgba(37, 99, 235, 0.22);
  font-family: var(--bh-font-heading);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.bh-service-detail-card h3 {
  margin-top: 20px;
  font-size: 1.08rem;
}

.bh-service-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bh-service-benefit-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bh-service-benefit-grid .bh-icon {
  margin: 0;
  flex: 0 0 22px;
}

.bh-service-benefit-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.bh-service-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.bh-service-timeline article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #fff;
}

.bh-service-timeline span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.10);
  color: var(--bh-primary);
  font-weight: 800;
}

.bh-service-timeline p {
  margin: 0;
  color: var(--bh-text);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.bh-related-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.bh-related-service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--bh-primary);
  font-weight: 800;
  text-decoration: none !important;
}

.bh-page--services .bh-service-grid--priority .bh-service-card,
.bh-page--services .bh-service-grid--priority .bh-service-card--featured {
  grid-column: span 2;
}

.bh-page--services .bh-section--service-all .bh-service-grid--priority .bh-service-card {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .bh-choice-grid,
  .bh-service-included-grid,
  .bh-service-detail-grid,
  .bh-service-timeline,
  .bh-related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bh-service-hero-panel {
    min-height: 0;
  }

  .bh-choice-grid,
  .bh-service-included-grid,
  .bh-service-detail-grid,
  .bh-service-benefit-grid,
  .bh-service-timeline,
  .bh-related-service-grid {
    grid-template-columns: 1fr;
  }

  .bh-service-detail-card {
    min-height: 0;
  }

  .bh-service-detail-card span {
    font-size: 34px;
  }
}


/* Be Hassan Core v1.0.6 — dark hero alignment for Services pages */
.bh-page--services .bh-service-hub-hero,
.bh-page--service-single .bh-service-single-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(37, 99, 235, 0.34), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(245, 158, 11, 0.10), transparent 30%),
    linear-gradient(135deg, #07111F 0%, #0B1830 58%, #111827 100%);
}

.bh-page--services .bh-service-hub-hero {
  padding-top: clamp(118px, 12vw, 160px);
  padding-bottom: clamp(82px, 9vw, 118px);
}

.bh-page--services .bh-service-hub-hero .bh-hero__content {
  max-width: 980px;
}

.bh-page--services .bh-service-hub-hero h1,
.bh-page--service-single .bh-service-single-hero h1 {
  color: #fff;
}

.bh-page--services .bh-service-hub-hero .bh-hero__text,
.bh-page--service-single .bh-service-single-hero .bh-hero__text {
  color: rgba(255, 255, 255, 0.76);
}

.bh-page--services .bh-service-hub-hero .bh-actions,
.bh-page--service-single .bh-service-single-hero .bh-actions {
  position: relative;
  z-index: 2;
}

.bh-page--services .bh-service-hub-hero .bh-button--secondary,
.bh-page--service-single .bh-service-single-hero .bh-button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff !important;
}

.bh-page--service-single .bh-service-hero-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

@media (max-width: 640px) {
  .bh-page--services .bh-service-hub-hero {
    padding-top: 96px;
    padding-bottom: 70px;
  }
}

/* Be Hassan Core v1.0.7 — Website Design Ireland service page upgrade */
.bh-service-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding: 0 0 clamp(34px, 5vw, 58px);
}

.bh-service-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bh-service-trust-card,
.bh-service-audience-card,
.bh-service-pricing-card,
.bh-service-proof-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.08);
}

.bh-service-trust-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
}

.bh-service-trust-card .bh-icon {
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--bh-primary);
}

.bh-service-trust-card strong {
  display: block;
  margin: 0 0 5px;
  color: var(--bh-text);
  font-weight: 850;
}

.bh-service-trust-card span {
  display: block;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.55;
}

.bh-service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.bh-service-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.bh-service-intro > p {
  margin: 0;
  color: var(--bh-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.bh-service-audience-grid,
.bh-service-pricing-grid,
.bh-service-proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.bh-service-audience-grid,
.bh-service-pricing-grid,
.bh-service-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-service-audience-card {
  padding: 28px;
  border-radius: 24px;
}

.bh-service-audience-card .bh-icon {
  color: var(--bh-primary);
  margin-bottom: 20px;
}

.bh-service-audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.bh-service-audience-card p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bh-service-detail-card--rich {
  min-height: 238px;
  align-content: start;
}

.bh-service-detail-card--rich p {
  margin: 14px 0 0;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.65;
}

.bh-section--service-pricing {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.bh-service-pricing-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 26px;
}

.bh-service-pricing-card span {
  color: var(--bh-primary);
  font-family: var(--bh-font-heading);
  font-size: 1.8rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.bh-service-pricing-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.bh-service-pricing-card p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bh-service-pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.bh-service-pricing-card li {
  position: relative;
  padding-left: 22px;
  color: var(--bh-text);
  font-size: 14px;
  font-weight: 750;
}

.bh-service-pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bh-primary);
}

.bh-service-proof-card {
  overflow: hidden;
  border-radius: 26px;
}

.bh-service-proof-card__mock {
  position: relative;
  height: 156px;
  padding: 18px;
  background:
    radial-gradient(circle at 72% 24%, rgba(37, 99, 235, 0.20), transparent 30%),
    linear-gradient(135deg, #EEF5FF 0%, #F8FAFC 62%, #E0F2FE 100%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.bh-service-proof-card__mock span,
.bh-service-proof-card__mock i {
  display: block;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
}

.bh-service-proof-card__mock span:nth-child(1),
.bh-service-proof-card__mock span:nth-child(2),
.bh-service-proof-card__mock span:nth-child(3) {
  float: left;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  background: rgba(15, 23, 42, 0.20);
}

.bh-service-proof-card__mock i:nth-of-type(1) {
  clear: both;
  width: 64%;
  height: 16px;
  margin-top: 44px;
}

.bh-service-proof-card__mock i:nth-of-type(2) {
  width: 88%;
  height: 10px;
  margin-top: 14px;
  background: rgba(15, 23, 42, 0.10);
}

.bh-service-proof-card__mock i:nth-of-type(3) {
  width: 48%;
  height: 32px;
  margin-top: 16px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.20);
}

.bh-service-proof-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.bh-service-proof-card__body p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bh-service-proof-card__body h3 {
  margin: 0;
  color: var(--bh-text);
  font-size: 1.2rem;
}

.bh-service-proof-card__body > span {
  display: block;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.65;
}

.bh-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bh-mini-tags em {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--bh-primary);
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.bh-service-proof-card__body a {
  display: inline-flex;
  margin-top: 2px;
  color: var(--bh-primary);
  font-weight: 850;
  text-decoration: none !important;
}

@media (max-width: 1100px) {
  .bh-service-trust-grid,
  .bh-service-audience-grid,
  .bh-service-pricing-grid,
  .bh-service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bh-service-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bh-service-trust-strip {
    margin-top: -24px;
  }

  .bh-service-trust-grid,
  .bh-service-audience-grid,
  .bh-service-pricing-grid,
  .bh-service-proof-grid {
    grid-template-columns: 1fr;
  }

  .bh-service-detail-card--rich {
    min-height: 0;
  }

  .bh-service-proof-card__mock {
    height: 136px;
  }
}


/* Be Hassan Core v1.0.11 — services polish and key service page upgrades */
.bh-services-path-strip {
  position: relative;
  z-index: 4;
  margin-top: -44px;
  padding: 0 0 clamp(38px, 5vw, 62px);
}

.bh-services-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bh-service-path-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 17, 31, 0.10);
}

.bh-service-path-card .bh-icon {
  width: 24px;
  height: 24px;
  color: var(--bh-primary);
}

.bh-service-path-card > span {
  color: var(--bh-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bh-service-path-card h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.bh-service-path-card p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.62;
}

.bh-service-path-card a,
.bh-service-bundle-card a {
  color: var(--bh-primary);
  font-weight: 850;
  text-decoration: none !important;
}

.bh-section--service-bundles {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.bh-service-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.bh-service-bundle-card {
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
}

.bh-service-bundle-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.bh-service-bundle-card p {
  margin: 0 0 18px;
  color: var(--bh-muted);
  line-height: 1.7;
}

.bh-service-bundle-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bh-service-bundle-card li {
  position: relative;
  padding-left: 24px;
  color: var(--bh-text);
  font-size: 14px;
  font-weight: 800;
}

.bh-service-bundle-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bh-primary);
}

.bh-service-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.bh-service-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  max-width: 100%;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.bh-service-jump-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

body.admin-bar .bh-service-jump-nav {
  top: 32px;
}

.bh-service-jump-nav .bh-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.bh-service-jump-nav .bh-container::-webkit-scrollbar {
  display: none;
}

.bh-service-jump-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--bh-muted);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none !important;
}

.bh-service-jump-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--bh-primary);
}

.bh-page--service-single .bh-service-single-hero {
  padding-bottom: clamp(88px, 9vw, 130px);
}

.bh-page--service-single .bh-service-hero-panel {
  transform: translateY(8px);
}

.bh-service-detail-card--rich,
.bh-service-detail-card,
.bh-service-pricing-card,
.bh-service-proof-card,
.bh-related-service-card,
.bh-service-audience-card,
.bh-service-trust-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bh-service-detail-card--rich:hover,
.bh-service-pricing-card:hover,
.bh-service-proof-card:hover,
.bh-related-service-card:hover,
.bh-service-audience-card:hover,
.bh-service-trust-card:hover,
.bh-service-path-card:hover,
.bh-service-bundle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.20);
  box-shadow: 0 22px 60px rgba(7, 17, 31, 0.10);
}

.bh-page--service-single .bh-section--service-intro {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
}

.bh-page--service-single .bh-section--service-problem .bh-card-list__item {
  align-items: center;
}

.bh-page--service-single .bh-section--service-problem .bh-card-list__item .bh-icon {
  color: var(--bh-primary);
}

@media (max-width: 1100px) {
  .bh-services-path-grid,
  .bh-service-bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .bh-service-jump-nav {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .bh-services-path-strip {
    margin-top: -26px;
  }

  .bh-services-path-grid,
  .bh-service-bundle-grid {
    grid-template-columns: 1fr;
  }

  .bh-service-hero-badges span {
    font-size: 12px;
  }

  .bh-service-jump-nav {
    position: relative;
    top: auto;
  }
}

/* Be Hassan Core v1.0.12 — Pricing, Work and Case Study page polish */
.bh-inner-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(120px, 12vw, 170px) 0 clamp(82px, 9vw, 120px);
}

.bh-inner-hero .bh-hero__content {
  max-width: 820px;
}

.bh-inner-hero .bh-hero__text {
  max-width: 720px;
}

.bh-pricing-hero-card,
.bh-work-hero-stack,
.bh-case-hero-preview {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.bh-pricing-hero-card {
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
}

.bh-pricing-hero-card__label,
.bh-work-hero-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.14);
  color: #BFDBFE;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bh-pricing-hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bh-pricing-hero-card__price {
  display: block;
  margin-bottom: 14px;
  color: #22C55E;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
}

.bh-pricing-hero-card p {
  color: rgba(255, 255, 255, 0.74) !important;
}

.bh-pricing-hero-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bh-pricing-hero-card div span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.bh-pricing-grid--enhanced {
  margin-top: 44px;
}

.bh-price-card .bh-plan-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
}

.bh-price-card p:not(.bh-price-card__price) {
  margin: 0 0 18px;
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.62;
}

.bh-price-card .bh-card-cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--bh-primary);
  font-weight: 850;
  text-decoration: none;
}

.bh-work-hero-stack {
  min-height: 420px;
  padding: 28px;
}

.bh-work-hero-card {
  position: absolute;
  width: 72%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.20);
}

.bh-work-hero-card strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.bh-work-hero-card--one {
  top: 34px;
  left: 28px;
}

.bh-work-hero-card--two {
  top: 150px;
  right: 28px;
}

.bh-work-hero-card--three {
  bottom: 34px;
  left: 58px;
}

.bh-case-hero-preview {
  padding: 28px;
}

.bh-case-hero-preview .bh-work-preview__browser {
  min-height: 320px;
  background: linear-gradient(180deg, #F8FAFC 0%, #E0F2FE 100%);
}

.bh-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.bh-case-main {
  display: grid;
  gap: 18px;
}

.bh-case-main h2 {
  margin-bottom: 2px;
}

.bh-case-main p:not(.bh-kicker) {
  margin: 0 0 22px;
  font-size: 18px;
}

.bh-case-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.bh-case-panel {
  padding: 24px;
  border: 1px solid var(--bh-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.bh-case-panel h3 {
  margin-bottom: 16px;
}

.bh-case-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--bh-muted);
}

.bh-case-panel li + li {
  margin-top: 8px;
}

.bh-related-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.bh-related-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  background: #fff;
  color: var(--bh-dark);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

.bh-related-services a:hover {
  transform: translateY(-2px);
  color: var(--bh-primary);
}

@media (max-width: 980px) {
  .bh-inner-hero {
    min-height: auto;
  }

  .bh-inner-hero .bh-hero__inner {
    grid-template-columns: 1fr;
  }

  .bh-work-hero-stack {
    min-height: 360px;
  }

  .bh-case-layout,
  .bh-related-services {
    grid-template-columns: 1fr;
  }

  .bh-case-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .bh-inner-hero {
    padding: 104px 0 74px;
  }

  .bh-work-hero-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .bh-work-hero-card {
    position: static;
    width: 100%;
  }

  .bh-pricing-hero-card,
  .bh-work-hero-stack,
  .bh-case-hero-preview {
    border-radius: 24px;
  }
}

/* Be Hassan Core v1.0.13 — calm inner-page typography and pricing polish */
.bh-page {
  --bh-inner-h1-size: clamp(2rem, 4vw, 3.25rem);
  --bh-inner-h1-weight: 680;
  --bh-inner-h1-line: 1.12;
  --bh-inner-h2-size: clamp(1.55rem, 2.7vw, 2.4rem);
  --bh-inner-h2-weight: 680;
}

.bh-page:not(.bh-page--home) .bh-hero h1,
.bh-inner-hero h1 {
  font-size: var(--bh-inner-h1-size) !important;
  line-height: var(--bh-inner-h1-line) !important;
  font-weight: var(--bh-inner-h1-weight) !important;
  letter-spacing: -0.045em;
}

.bh-page:not(.bh-page--home) .bh-section h2 {
  font-size: var(--bh-inner-h2-size) !important;
  line-height: 1.18;
  font-weight: var(--bh-inner-h2-weight);
  letter-spacing: -0.035em;
}

.bh-page--pricing {
  --bh-inner-h1-size: clamp(1.95rem, 3.5vw, 3rem);
  --bh-inner-h1-weight: 660;
  --bh-inner-h1-line: 1.14;
}

.bh-inner-hero {
  min-height: clamp(500px, 62vh, 650px) !important;
  padding: clamp(96px, 10vw, 138px) 0 clamp(72px, 8vw, 100px) !important;
}

.bh-page--pricing .bh-hero__content {
  max-width: 700px;
}

.bh-page--pricing .bh-hero__text {
  max-width: 640px;
}

.bh-pricing-hero-card {
  border-radius: 28px;
}

.bh-pricing-hero-card strong {
  font-size: clamp(1.4rem, 2.4vw, 2rem) !important;
}

.bh-pricing-hero-card__price {
  font-size: clamp(2.05rem, 4vw, 3.15rem) !important;
  font-variant-numeric: tabular-nums;
}

.bh-pricing-grid--enhanced {
  align-items: stretch;
  gap: 26px;
}

.bh-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bh-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.20);
  box-shadow: 0 24px 58px rgba(7,17,31,.10);
}

.bh-price-card.is-popular {
  border-top: 4px solid var(--bh-primary);
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 28px 70px rgba(37,99,235,.12);
}

.bh-price-card.is-custom {
  border-style: dashed;
  background: linear-gradient(135deg, #fff, #f8fafc);
}

.bh-price-card h3 {
  margin: 0 0 10px;
  color: var(--bh-text);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.bh-price-card__price {
  margin: 16px 0 18px !important;
  padding-top: 16px;
  border-top: 1px solid var(--bh-border);
  color: var(--bh-dark) !important;
  font-size: 25px !important;
  font-weight: 850 !important;
  font-variant-numeric: tabular-nums;
}

.bh-price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px !important;
  padding: 18px 0 0 !important;
  border-top: 1px solid var(--bh-border);
  list-style: none;
}

.bh-price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--bh-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.bh-price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

.bh-price-card .bh-card-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto !important;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--bh-primary);
  text-decoration: none;
}

.bh-pricing-note {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 16px 18px;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 18px;
  color: var(--bh-muted);
  background: #f8fafc;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.bh-pricing-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bh-pricing-proof div {
  padding: 18px;
  border: 1px solid var(--bh-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,17,31,.05);
}

.bh-pricing-proof strong,
.bh-pricing-proof span {
  display: block;
}

.bh-pricing-proof strong {
  color: var(--bh-text);
  font-size: 16px;
}

.bh-pricing-proof span {
  margin-top: 6px;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.5;
}

.bh-work-preview__browser::before {
  content: '';
  display: block;
  width: calc(100% + 32px);
  height: 24px;
  margin: -16px -16px 14px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--bh-primary), #93c5fd);
  opacity: .82;
}

.bh-work-card--proof:nth-child(1) .bh-work-preview__browser::before { background: linear-gradient(90deg, #092f27, #d99b25); }
.bh-work-card--proof:nth-child(2) .bh-work-preview__browser::before { background: linear-gradient(90deg, #07111f, #d92827); }
.bh-work-card--proof:nth-child(3) .bh-work-preview__browser::before { background: linear-gradient(90deg, #0f172a, #2563eb); }
.bh-work-card--proof:nth-child(4) .bh-work-preview__browser::before { background: linear-gradient(90deg, #111827, #ff7a1a); }

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

@media (max-width: 640px) {
  .bh-page:not(.bh-page--home) .bh-hero h1,
  .bh-inner-hero h1 {
    font-size: clamp(2rem, 11vw, 2.65rem) !important;
  }

  .bh-price-card {
    padding: 24px;
  }
}


/* Be Hassan Core v1.0.14 — universal typography system
   -----------------------------------------------------
   All current and future Be Hassan shortcode pages should inherit headings,
   body text, size, weight, colour and line-height from these shared variables.
   The admin Typography tab writes these variables inline after this file loads.
*/
.bh-page {
  color: var(--bh-body-color, var(--bh-text));
  font-family: var(--bh-font-body) !important;
  font-size: var(--bh-body-size, 17px);
  font-weight: var(--bh-body-weight, 400);
  line-height: var(--bh-body-line, 1.72);
}

.bh-page h1,
.bh-page h2,
.bh-page h3,
.bh-page h4,
.bh-page h5,
.bh-page h6,
.bh-page .bh-price-card h3,
.bh-page .bh-home-price-card h3,
.bh-page .bh-service-card h3,
.bh-page .bh-work-card h3,
.bh-page .bh-process-card h3,
.bh-page .bh-industry-card h3,
.bh-page .bh-feature-grid strong {
  font-family: var(--bh-font-heading) !important;
  color: var(--bh-heading-color, var(--bh-text)) !important;
  letter-spacing: -0.035em;
}

.bh-page h1 {
  font-size: var(--bh-home-h1-size, clamp(2.35rem, 6vw, 4.45rem)) !important;
  font-weight: var(--bh-home-h1-weight, 760) !important;
  line-height: var(--bh-home-h1-line, 1.05) !important;
}

.bh-page:not(.bh-page--home) h1,
.bh-page .bh-inner-hero h1 {
  font-size: var(--bh-inner-h1-size, clamp(1.95rem, 3.5vw, 3rem)) !important;
  font-weight: var(--bh-h1-weight, 680) !important;
  line-height: var(--bh-h1-line, 1.12) !important;
}

.bh-page h2,
.bh-page:not(.bh-page--home) .bh-section h2,
.bh-page .bh-section__heading h2 {
  font-size: var(--bh-h2-size, clamp(1.55rem, 2.7vw, 2.4rem)) !important;
  font-weight: var(--bh-h2-weight, 680) !important;
  line-height: var(--bh-h2-line, 1.18) !important;
}

.bh-page h3,
.bh-page .bh-price-card h3,
.bh-page .bh-home-price-card h3,
.bh-page .bh-service-card h3,
.bh-page .bh-work-card h3,
.bh-page .bh-process-card h3,
.bh-page .bh-industry-card h3 {
  font-size: var(--bh-h3-size, 1.25rem) !important;
  font-weight: var(--bh-h3-weight, 700) !important;
  line-height: var(--bh-h3-line, 1.25) !important;
}

.bh-page p,
.bh-page li,
.bh-page .bh-faq-item p,
.bh-page .bh-card-list__item,
.bh-page .bh-service-card__outcome,
.bh-page .bh-work-card__meta {
  font-family: var(--bh-font-body) !important;
  font-size: var(--bh-body-size, 17px);
  font-weight: var(--bh-body-weight, 400);
  line-height: var(--bh-body-line, 1.72);
}

.bh-page .bh-kicker,
.bh-page .bh-plan-tag,
.bh-page .bh-service-card__badge,
.bh-page .bh-work-card__metric {
  font-size: var(--bh-kicker-size, 13px) !important;
  font-weight: var(--bh-kicker-weight, 800) !important;
  line-height: 1.2;
}

.bh-page .bh-hero--dark h1,
.bh-page .bh-hero--dark h2,
.bh-page .bh-hero--dark h3,
.bh-page .bh-section--dark-soft h1,
.bh-page .bh-section--dark-soft h2,
.bh-page .bh-section--dark-soft h3,
.bh-page .bh-section--dark-soft .bh-feature-grid strong,
.bh-page .bh-cta-card h2 {
  color: var(--bh-heading-light-color, #FFFFFF) !important;
}

.bh-page .bh-hero--dark .bh-kicker,
.bh-page .bh-section--dark-soft .bh-kicker {
  color: #93C5FD !important;
}

@media (max-width: 640px) {
  .bh-page:not(.bh-page--home) h1,
  .bh-page .bh-inner-hero h1 {
    font-size: var(--bh-inner-h1-size, clamp(1.95rem, 10vw, 2.65rem)) !important;
  }
}

/* Be Hassan Core v1.0.15 — frontend image wiring
   ------------------------------------------------
   Images selected in Be Hassan → Images are now rendered in page hero visuals.
   If a page image is missing, templates keep the existing premium mockup/card.
*/
.bh-hero-image-card {
  position: relative;
  width: min(100%, 540px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.30);
  isolation: isolate;
}

.bh-hero-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.03) 0%, rgba(7, 17, 31, 0.12) 42%, rgba(7, 17, 31, 0.72) 100%);
  pointer-events: none;
}

.bh-hero-image-card__media {
  display: block;
  margin: 0;
  aspect-ratio: 16 / 11;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.08);
}

.bh-hero-image-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.bh-hero-image-card__content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.bh-hero-image-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.15);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bh-hero-image-card__content strong {
  display: block;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.bh-hero-image-card__content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  line-height: 1.55;
}

.bh-hero-image-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.bh-hero-image-card__badges span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.bh-hero--light .bh-hero-image-card {
  border-color: rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.bh-hero--light .bh-hero-image-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(7, 17, 31, 0.68) 100%);
}

.bh-work-preview__image,
.bh-work-preview > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: inherit;
}

.bh-work-card__image:has(.bh-work-preview__image),
.bh-work-card__image:has(> img) {
  background: #0f172a;
}

.bh-work-card__image .bh-work-preview__image + .bh-work-card__metric,
.bh-work-card__image > img + .bh-work-card__metric {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 980px) {
  .bh-hero-image-card {
    margin: 0 auto;
  }

  .bh-hero-image-card__media {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .bh-hero-image-card {
    border-radius: 24px;
  }

  .bh-hero-image-card__media {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .bh-hero-image-card__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .bh-hero-image-card__badges {
    gap: 6px;
  }

  .bh-hero-image-card__badges span {
    font-size: 11px;
  }
}

/* Be Hassan Core v1.0.16 — homepage proof, testimonials and resources
   --------------------------------------------------------------------
   Adds the final homepage structure requested by Hassan:
   trusted-by logos, client feedback/testimonials, and helpful guides.
*/
.bh-section--trusted {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.bh-logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.bh-logo-cloud__item {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 20px 18px;
  border: 1px solid var(--bh-border);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  color: var(--bh-dark);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(7,17,31,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bh-logo-cloud__item:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 20px 52px rgba(37,99,235,.10);
}

.bh-logo-cloud__item strong {
  display: block;
  font-family: var(--bh-font-heading);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.bh-logo-cloud__item span {
  display: block;
  color: var(--bh-muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.bh-section--testimonials {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

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

.bh-testimonial-card,
.bh-resource-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--bh-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7,17,31,.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bh-testimonial-card:hover,
.bh-resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.28);
  box-shadow: var(--bh-shadow);
}

.bh-testimonial-card__stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.bh-testimonial-card blockquote {
  margin: 0;
  color: var(--bh-dark);
  font-size: 16px;
  line-height: 1.72;
}

.bh-testimonial-card blockquote p {
  margin: 0;
}

.bh-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--bh-border);
}

.bh-testimonial-card__author strong {
  color: var(--bh-dark);
  font-family: var(--bh-font-heading);
  font-size: 16px;
  font-weight: 800;
}

.bh-testimonial-card__author span {
  color: var(--bh-muted);
  font-size: 13px;
  font-weight: 700;
}

.bh-testimonial-card--placeholder {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.bh-testimonial-card--placeholder .bh-plan-tag {
  position: static;
  margin-bottom: 18px;
}

.bh-testimonial-card h3,
.bh-resource-card h3 {
  margin: 14px 0 10px;
}

.bh-testimonial-card p,
.bh-resource-card p {
  margin: 0 0 18px;
  color: var(--bh-muted);
}

.bh-section--resources {
  background: #fff;
}

.bh-resource-card .bh-icon {
  width: 30px;
  height: 30px;
  color: var(--bh-primary);
}

.bh-resource-card .bh-plan-tag {
  position: static;
  margin-bottom: 18px;
}

.bh-resource-card .bh-card-cta {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .bh-logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bh-testimonial-grid,
  .bh-resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bh-logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bh-logo-cloud__item {
    min-height: 94px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .bh-testimonial-card,
  .bh-resource-card {
    padding: 22px;
    border-radius: 22px;
  }
}


/* Be Hassan Core v1.0.17 — real client logo cloud support */
.bh-logo-cloud__item.has-logo {
  gap: 12px;
  background: rgba(255,255,255,.94);
}

.bh-logo-cloud__logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
}

.bh-logo-cloud__img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 48px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.05);
}

.bh-logo-cloud__item.has-logo span:not(.bh-logo-cloud__logo) {
  margin-top: 2px;
}

.bh-logo-cloud__item.is-text-only strong {
  color: var(--bh-dark);
}

@media (max-width: 640px) {
  .bh-logo-cloud__img {
    max-width: 120px;
    max-height: 38px;
  }

  .bh-logo-cloud__logo {
    min-height: 40px;
  }
}

@media (max-width: 921px) {
  .bh-problem-layout,
  .bh-problem-layout.has-no-problem-image .bh-problem-layout__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bh-problem-layout__content {
    order: 1;
  }

  .bh-problem-layout__visual {
    order: 2;
  }

  .bh-card-list--problem {
    order: 3;
  }

  .bh-problem-visual {
    max-width: 680px;
  }
}


/* Site Footer Shortcode */
.bh-site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  text-align: left;
  background: radial-gradient(circle at 15% 0%, rgba(37, 99, 235, .22), transparent 34%), linear-gradient(135deg, #06111f 0%, #071a33 58%, #06111f 100%);
  color: rgba(255,255,255,.82);
  font-family: var(--bh-font-body);
  padding: 72px 24px 30px;
  border-top: 1px solid rgba(255,255,255,.10);
}


.bh-site-footer *,
.bh-site-footer *::before,
.bh-site-footer *::after { box-sizing: border-box; }
.bh-site-footer ul,
.bh-site-footer li { margin-left: 0; }
.bh-site-footer .bh-icon { width: 20px; height: 20px; display: inline-block; }
.ast-footer-html .bh-site-footer,
.ast-builder-html-element .bh-site-footer,
.site-footer .bh-site-footer { font-size: 16px; line-height: 1.6; }
.ast-footer-html .bh-site-footer p,
.ast-builder-html-element .bh-site-footer p { margin-bottom: 0; }

.bh-site-footer a { color: rgba(255,255,255,.86); text-decoration: none; transition: color .2s ease, transform .2s ease, background .2s ease; }
.bh-site-footer a:hover { color: #60a5fa; }

.bh-site-footer__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .92fr .78fr 1.05fr 1fr;
  gap: 44px;
  align-items: start;
}

.bh-site-footer__logo { display: inline-flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.bh-site-footer__logo-img { max-width: 220px; height: auto; display: block; }
.bh-site-footer__logo strong { color: #fff; font-size: 24px; letter-spacing: .02em; }
.bh-site-footer__logo span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.bh-site-footer__brand p { max-width: 330px; margin: 0 0 22px; color: rgba(255,255,255,.72); line-height: 1.8; }
.bh-site-footer__brand .bh-button { margin-top: 18px; min-width: 180px; }

.bh-site-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.bh-site-footer__socials a { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); font-weight: 800; }
.bh-site-footer__socials a:hover { transform: translateY(-2px); background: rgba(37,99,235,.24); }

.bh-site-footer__col h3 { margin: 0 0 22px; color: #38bdf8; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.bh-site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.bh-site-footer__col li a { display: inline-flex; gap: 9px; align-items: center; line-height: 1.45; }
.bh-site-footer__col li a::before { content: '›'; color: #38bdf8; font-weight: 900; }

.bh-site-footer__guides { display: grid; gap: 14px; }
.bh-site-footer__guide { display: grid; grid-template-columns: 66px 1fr; gap: 14px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.10); }
.bh-site-footer__guide-img { width: 66px; height: 54px; border-radius: 10px; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.10); color: #60a5fa; }
.bh-site-footer__guide-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.bh-site-footer__guide strong { display: block; color: #fff; font-size: 14px; line-height: 1.35; }
.bh-site-footer__guide small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); }
.bh-site-footer__view-all { color: #38bdf8 !important; font-weight: 800; margin-top: 4px; }

.bh-site-footer__contact { display: grid; gap: 15px; }
.bh-site-footer__contact a, .bh-site-footer__contact > span { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.78); line-height: 1.45; }
.bh-site-footer__contact .bh-icon { color: #38bdf8; flex: 0 0 auto; margin-top: 2px; }

.bh-site-footer__bottom {
  width: min(100%, 1240px);
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  color: rgba(255,255,255,.62);
}
.bh-site-footer__bottom p { margin: 0; color: rgba(255,255,255,.62); }
.bh-site-footer__bottom p:last-child { text-align: right; }
.bh-site-footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.bh-site-footer__bottom nav a { color: rgba(255,255,255,.62); }

@media (max-width: 1100px) {
  .bh-site-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .bh-site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .bh-site-footer { padding: 52px 20px 26px; }
  .bh-site-footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .bh-site-footer__bottom { grid-template-columns: 1fr; text-align: left; }
  .bh-site-footer__bottom nav { justify-content: flex-start; }
  .bh-site-footer__bottom p:last-child { text-align: left; }
}

/* v1.0.22 — standardised dark inner-page heroes */
.bh-inner-hero,
.bh-inner-hero--about,
.bh-inner-hero--contact,
.bh-inner-hero--quote,
.bh-inner-hero--faq {
  background:
    radial-gradient(circle at 76% 18%, rgba(37,99,235,.28), transparent 32%),
    linear-gradient(135deg, #050b16 0%, #07111f 52%, #102a5c 100%);
  color: #fff;
}

.bh-inner-hero .bh-hero__text,
.bh-inner-hero--about .bh-hero__text,
.bh-inner-hero--contact .bh-hero__text,
.bh-inner-hero--quote .bh-hero__text,
.bh-inner-hero--faq .bh-hero__text {
  color: rgba(255,255,255,.78);
}

.bh-faq-contact-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--bh-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,17,31,.06);
}

.bh-faq-contact-card a {
  color: var(--bh-primary);
  font-weight: 800;
  text-decoration: none;
}


/* Site Header Shortcode */
.bh-site-header {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 50;
  font-family: var(--bh-font-body);
  background:
    radial-gradient(circle at 80% 0%, rgba(37,99,235,.20), transparent 30%),
    linear-gradient(135deg, #050b16 0%, #07111f 56%, #102a5c 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: #fff;
}

.bh-site-header.is-sticky {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
}

.bh-site-header *,
.bh-site-header *::before,
.bh-site-header *::after { box-sizing: border-box; }

.bh-site-header__inner {
  width: min(100%, 1240px);
  min-height: 88px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.bh-site-header__brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 170px;
  color: #fff !important;
  text-decoration: none !important;
}

.bh-site-header__logo-img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 54px;
  object-fit: contain;
}

.bh-site-header__brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
}

.bh-site-header__brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.bh-site-header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.bh-site-header__nav a {
  color: rgba(255,255,255,.84) !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: color .2s ease, transform .2s ease;
}

.bh-site-header__nav a:hover,
.bh-site-header__nav a:focus-visible {
  color: #fff !important;
  transform: translateY(-1px);
}

.bh-site-header__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.bh-site-header__cta:hover {
  transform: translateY(-2px);
  background: var(--bh-primary);
  border-color: var(--bh-primary);
}

.bh-site-header__toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.bh-site-header__toggle i,
.bh-site-header__toggle i::before,
.bh-site-header__toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: '';
}

.bh-site-header__toggle i { position: relative; }
.bh-site-header__toggle i::before { position: absolute; top: -6px; left: 0; }
.bh-site-header__toggle i::after { position: absolute; top: 6px; left: 0; }

@media (max-width: 1024px) {
  .bh-site-header__inner { flex-wrap: wrap; gap: 16px; }
  .bh-site-header__toggle { display: inline-flex; }
  .bh-site-header__cta { margin-left: auto; }
  .bh-site-header__nav {
    display: none;
    order: 5;
    flex-basis: 100%;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
  }
  .bh-site-header.is-open .bh-site-header__nav { display: flex; }
  .bh-site-header__nav a { padding: 12px 10px; border-radius: 10px; }
  .bh-site-header__nav a:hover { background: rgba(255,255,255,.08); transform: none; }
}

@media (max-width: 640px) {
  .bh-site-header__inner { min-height: 76px; padding: 14px 18px; }
  .bh-site-header__logo-img { max-width: 150px; max-height: 46px; }
  .bh-site-header__brand { min-width: 140px; }
  .bh-site-header__cta { width: 100%; order: 6; min-height: 44px; }
  .bh-site-header__toggle { margin-left: auto; }
}
