﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;500;600;700;800&display=swap");

:root {
  --blue-950: #0f2f52;
  --blue-900: #123b66;
  --blue-800: #174b72;
  --blue-700: #23628d;
  --blue-100: #eaf3f8;
  --blue-050: #f6fafc;
  --page-blue: #f7f9fc;
  --gold-600: #d79a2b;
  --gold-500: #d79a2b;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #dce4ec;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 24px 60px rgba(6, 27, 53, 0.1);
}

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

.service-directory-card {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.08);
  color: #0f2f52;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.42);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.14);
}

.service-directory-card span {
  color: #d79a2b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.service-directory-card small {
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
}

.service-detail-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.service-detail-copy .button {
  width: fit-content;
}

.service-detail-card {
  padding: 34px !important;
}

@media (max-width: 980px) {
  .service-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Premium article archive cards: image on top, text below, consistent crop. */
.articles-list-page .article-list-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) !important;
  align-items: stretch;
  gap: 28px !important;
}

.articles-list-page .article-list-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  align-items: stretch !important;
  padding: 0 !important;
  border-radius: 16px !important;
}

.articles-list-page .article-list-card figure {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 16px 16px 0 0 !important;
  box-shadow: none !important;
}

.articles-list-page .article-list-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.articles-list-page .article-list-card > div {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start;
  gap: 14px;
  padding: 24px !important;
}

.articles-list-page .article-list-card .button {
  justify-self: start;
  align-self: end;
  min-width: 160px;
}

@media (max-width: 640px) {
  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-directory-card {
    min-height: auto;
  }

  .service-detail-copy .button {
    width: 100%;
  }
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.form-status.is-pending {
  background: #f7f9fc;
  color: #123b66;
  border: 1px solid rgba(18, 59, 102, 0.16);
}

.form-status.is-success {
  background: rgba(18, 59, 102, 0.08);
  color: #0f2f52;
  border: 1px solid rgba(18, 59, 102, 0.18);
}

.form-status.is-error {
  background: rgba(215, 154, 43, 0.12);
  color: #0f2f52;
  border: 1px solid rgba(215, 154, 43, 0.34);
}

.form-status a {
  color: #0f2f52;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Home hero final alignment */
.home-page .hero-grid {
  align-items: start !important;
}

.home-page .hero-content,
.home-page .hero-media {
  align-self: start !important;
}

.home-page .hero-media {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-page .hero-image {
  margin-top: 0 !important;
}

@media (min-width: 901px) {
  .home-page .hero-media {
    transform: translateY(-75px);
  }
}

/* Final home hero photo/text alignment override */
@media (min-width: 901px) {
  body.home-page .hero .hero-grid {
    align-items: start !important;
  }

  body.home-page .hero .hero-content,
  body.home-page .hero .hero-media {
    align-self: start !important;
  }

  body.home-page .hero .hero-media {
    transform: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.home-page .hero .hero-image {
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  body.home-page .hero .hero-media {
    transform: none !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .home-page .hero-media {
    transform: none;
  }
}

/* Programme 360 refined hero and solution layout */
.programme-hero .programme-hero-inner {
  align-items: start !important;
}

.programme-hero .programme-logo-hero,
.programme-hero .programme-hero-copy {
  align-self: start !important;
}

.programme-hero .programme-hero-copy {
  padding-top: 0 !important;
}

.programme-hero .programme-hero-copy h1 {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

.programme-hero-lead {
  margin-bottom: 20px !important;
  color: #123b66 !important;
  font-weight: 700;
  line-height: 1.65 !important;
}

.programme-hero-intro {
  display: grid;
  gap: 8px;
  max-width: 760px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.1);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.08);
}

.programme-hero-intro p {
  margin: 0 !important;
  color: #1f2937 !important;
  font-size: 17px;
  line-height: 1.7 !important;
}

.programme-solution-intro {
  padding-top: 38px !important;
}

.programme-solution-copy {
  align-self: stretch;
}

.programme-solution-copy > h2 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.programme-solution-copy > p {
  margin-bottom: 18px !important;
  color: #123b66 !important;
  font-weight: 700;
}

.programme-engines-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.programme-engines-list section {
  padding: 18px;
  border-radius: 14px;
  background: #0f2f52;
  border: 1px solid rgba(215, 154, 43, 0.26);
}

.programme-engines-list h3 {
  margin: 0 0 8px;
  color: #d79a2b;
  font-size: 21px;
  line-height: 1.25;
}

.programme-engines-list p {
  margin: 0;
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.6;
}

.programme-solution-copy .programme-engines-list h3 {
  color: #d79a2b !important;
}

.programme-solution-copy .programme-engines-list p {
  color: #ffffff !important;
  opacity: 1 !important;
}

.programme-client-value {
  padding-top: 0 !important;
}

.programme-client-value-card {
  padding: 34px !important;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.1);
}

.programme-client-value-card h2 {
  margin: 0 0 22px !important;
  color: #0f2f52;
  text-align: center;
}

.programme-client-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.programme-client-value-grid span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #0f2f52;
  color: #ffffff;
  border: 1px solid rgba(215, 154, 43, 0.24);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.programme-client-value-grid span:nth-child(3n + 1) {
  background: #123b66;
}

.programme-client-value-grid span:nth-child(4n) {
  color: #d79a2b;
}

@media (max-width: 980px) {
  .programme-client-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .programme-client-value-card {
    padding: 22px !important;
  }

  .programme-client-value-grid {
    grid-template-columns: 1fr;
  }

  .programme-client-value-grid span {
    min-height: 56px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .programme-hero .programme-hero-copy h1 {
    margin-top: 0 !important;
  }

  .programme-hero-intro {
    padding: 18px;
  }

  .programme-engines-list {
    grid-template-columns: 1fr;
  }
}

/* Programme 360 overview block */
.programme-overview-section-wrap {
  padding-top: 0 !important;
}

.programme-overview-card {
  width: 100%;
  padding: 34px !important;
  border-radius: 18px;
  background: #0f2f52;
  color: #ffffff;
  border: 1px solid rgba(215, 154, 43, 0.22);
  box-shadow: 0 22px 56px rgba(15, 47, 82, 0.18);
}

.programme-overview-card h2,
.programme-overview-card h3,
.programme-overview-card h4,
.programme-overview-card p,
.programme-overview-card li {
  color: #ffffff;
}

.programme-overview-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.25;
}

.programme-overview-section + .programme-overview-section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.programme-challenges-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.programme-challenges-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 44px 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 700;
  line-height: 1.45;
}

.programme-challenges-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 17px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d79a2b;
  transform: translateY(-50%);
}

.programme-solution-section > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.programme-engines-grid section {
  min-height: 170px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(215, 154, 43, 0.24);
}

.programme-engines-grid h3 {
  margin: 0 0 10px;
  color: #d79a2b;
  font-size: 22px;
  line-height: 1.25;
}

.programme-engines-grid p {
  margin: 0;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .programme-engines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .programme-overview-card {
    padding: 22px !important;
    border-radius: 16px;
  }

  .programme-overview-card h2 {
    font-size: 25px;
  }

  .programme-challenges-list,
  .programme-engines-grid {
    grid-template-columns: 1fr;
  }

  .programme-challenges-list li {
    min-height: auto;
    padding-block: 12px;
  }

  .programme-engines-grid section {
    min-height: auto;
  }
}

/* Final alignment pass for the solutions service families */
.solutions-page .service-family-card {
  display: grid !important;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr) !important;
  grid-template-rows: auto 1fr !important;
  align-items: stretch !important;
  gap: 0 !important;
  overflow: hidden !important;
}

.solutions-page .service-family-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr) !important;
}

.solutions-page .service-family-card > figure {
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.solutions-page .service-family-card:nth-child(even) > figure {
  grid-column: 2 !important;
}

.solutions-page .service-family-card > figure img {
  height: 100% !important;
  object-fit: cover !important;
}

.solutions-page .service-family-card > .service-content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px 16px !important;
  padding: 0 28px 14px !important;
  min-height: 0 !important;
}

.solutions-page .service-family-card:nth-child(even) > .service-content {
  grid-column: 1 !important;
}

.solutions-page .service-family-card > .service-content .service-icon {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
  margin: 0 !important;
}

.solutions-page .service-family-card > .service-content .eyebrow {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;
  min-height: 52px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.solutions-page .service-family-card > .service-content h2,
.solutions-page .service-family-card > .service-content > p:not(.eyebrow) {
  grid-column: 1 / -1 !important;
}

.solutions-page .service-family-card > .service-points {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: end !important;
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 28px 28px !important;
  list-style: none !important;
}

.solutions-page .service-family-card:nth-child(even) > .service-points {
  grid-column: 1 !important;
}

.solutions-page .service-family-card > .service-actions {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: end !important;
  display: grid !important;
  gap: 10px !important;
  padding: 0 28px 28px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
}

.solutions-page .service-family-card:nth-child(even) > .service-actions {
  grid-column: 2 !important;
}

.solutions-page .service-family-card > .service-actions .button {
  width: 100% !important;
  min-height: 46px !important;
}

@media (max-width: 900px) {
  .solutions-page .service-family-card,
  .solutions-page .service-family-card:nth-child(even) {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto !important;
  }

  .solutions-page .service-family-card > figure,
  .solutions-page .service-family-card:nth-child(even) > figure,
  .solutions-page .service-family-card > .service-content,
  .solutions-page .service-family-card:nth-child(even) > .service-content,
  .solutions-page .service-family-card > .service-points,
  .solutions-page .service-family-card:nth-child(even) > .service-points,
  .solutions-page .service-family-card > .service-actions,
  .solutions-page .service-family-card:nth-child(even) > .service-actions {
    grid-column: 1 !important;
  }

  .solutions-page .service-family-card > figure {
    grid-row: 1 !important;
    height: 190px !important;
    min-height: 190px !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .solutions-page .service-family-card > .service-content {
    grid-row: 2 !important;
    padding: 20px 20px 8px !important;
  }

  .solutions-page .service-family-card > .service-points {
    grid-row: 3 !important;
    padding: 0 20px 16px !important;
  }

  .solutions-page .service-family-card > .service-actions {
    grid-row: 4 !important;
    padding: 0 20px 20px !important;
  }
}

/* Final design-system harmonization */
:root {
  --nb-navy: #0f2f52;
  --nb-blue: #123b66;
  --nb-gold: #d79a2b;
  --nb-gold-hover: #bf8420;
  --nb-bg: #f7f9fc;
  --nb-card-border: rgba(15, 47, 82, 0.12);
  --nb-card-shadow: 0 16px 40px rgba(15, 47, 82, 0.08);
  --nb-card-shadow-hover: 0 22px 52px rgba(15, 47, 82, 0.13);
  --nb-radius-card: 16px;
  --nb-radius-control: 12px;
}

body {
  background: var(--nb-bg);
}

main h1,
main h2,
main h3,
.page-hero h1,
.section-heading h2,
.service-family-card h2,
.article-list-card h2,
.article-body h2,
.about-text-block h2 {
  color: var(--nb-navy) !important;
}

.section-dark h2,
.section-dark h3,
.page-cta-band h2,
.about-method h2,
.about-final-cta h2,
.final-cta h2 {
  color: #ffffff !important;
}

.section-dark,
.page-cta-band,
.final-cta,
.about-method,
.about-final-cta {
  background: var(--nb-navy) !important;
}

.button,
.nav-cta,
.footer-cta,
button[type="submit"],
.appointment-form button,
.lead-form button,
.article-list-card .button,
.article-feature-card .button,
.page-cta-band .button,
.hero-actions .button,
.service-actions .button {
  min-height: 52px !important;
  height: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px !important;
  border-radius: var(--nb-radius-control) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-gold,
.button-primary,
.nav-cta,
.footer-cta,
button[type="submit"],
.appointment-form button,
.lead-form button,
.page-cta-band .button-gold,
.hero-actions .button:first-child,
.service-actions .button-gold {
  border-color: var(--nb-gold) !important;
  background: var(--nb-gold) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(215, 154, 43, 0.22);
}

.button-gold:hover,
.button-primary:hover,
.nav-cta:hover,
.footer-cta:hover,
button[type="submit"]:hover,
.appointment-form button:hover,
.lead-form button:hover,
.service-actions .button-gold:hover {
  border-color: var(--nb-gold-hover) !important;
  background: var(--nb-gold-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(191, 132, 32, 0.28);
}

.button-ghost,
.button-outline,
.button-light,
.service-actions .button-outline,
.article-list-card .button-outline,
.article-feature-card .button-outline {
  border-color: rgba(15, 47, 82, 0.28) !important;
  background: #ffffff !important;
  color: var(--nb-navy) !important;
  box-shadow: none;
}

.button-ghost:hover,
.button-outline:hover,
.button-light:hover,
.service-actions .button-outline:hover,
.article-list-card .button-outline:hover,
.article-feature-card .button-outline:hover {
  border-color: var(--nb-navy) !important;
  background: rgba(15, 47, 82, 0.05) !important;
  color: var(--nb-navy) !important;
  transform: translateY(-2px);
}

.page-card,
.card,
.article-card,
.article-list-card,
.article-feature-card,
.solution-card,
.service-family-card,
.about-insight-card,
.about-card,
.related-card,
.challenge-card {
  border-radius: var(--nb-radius-card) !important;
  border: 1px solid var(--nb-card-border) !important;
  background: #ffffff !important;
  box-shadow: var(--nb-card-shadow) !important;
}

.page-card:hover,
.card:hover,
.article-card:hover,
.article-list-card:hover,
.article-feature-card:hover,
.solution-card:hover,
.service-family-card:hover,
.about-insight-card:hover,
.about-card:hover,
.related-card:hover,
.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.34) !important;
  box-shadow: var(--nb-card-shadow-hover) !important;
}

.service-family-card,
.article-list-card,
.article-feature-card {
  border-top: 4px solid var(--nb-navy) !important;
}

.service-family-card > div,
.article-list-card > div,
.article-feature-card > div,
.page-card,
.solution-card,
.about-card,
.related-card {
  padding: 28px !important;
}

.service-family-card h2,
.article-list-card h2,
.article-feature-card h2 {
  margin-bottom: 6px !important;
}

.service-family-card > div > p:not(.eyebrow),
.article-list-card p:not(.eyebrow),
.article-feature-card p:not(.eyebrow),
.page-card p,
.solution-card p {
  color: #31536e !important;
  line-height: 1.72;
}

.service-family-card ul {
  gap: 8px;
  margin-top: 6px;
}

.service-family-card li {
  min-height: 46px;
  padding-block: 10px;
  background: var(--nb-navy) !important;
  color: #ffffff !important;
}

.hero-image,
.section-image,
.service-family-card figure,
.article-list-card figure,
.article-feature-card figure,
.article-hero-image,
.about-founder-visual,
.solutions-hero-visual {
  border-radius: var(--nb-radius-card) !important;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 46px rgba(15, 47, 82, 0.12);
  background: #ffffff;
}

.hero-image img,
.section-image img,
.service-family-card img,
.article-list-card img,
.article-feature-card img,
.article-hero-image img,
.about-founder-visual img,
.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.98);
}

.service-family-card figure {
  min-height: 220px;
  aspect-ratio: 16 / 7;
}

.article-list-card figure,
.article-feature-card figure {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.article-hero-image,
.section-image,
.hero-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

@media (max-width: 759px) {
  .section,
  .page-hero,
  .solutions-hero,
  .article-hero,
  .final-cta,
  .page-cta-band {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
  }

  .hero {
    padding-top: 18px !important;
    padding-bottom: 34px !important;
  }

  .service-family-list,
  .article-list-grid,
  .article-feature-grid,
  .solution-cards {
    gap: 18px !important;
  }

  .service-family-card > div,
  .article-list-card > div,
  .article-feature-card > div,
  .page-card,
  .solution-card,
  .about-card,
  .related-card {
    padding: 20px !important;
  }

  .service-family-card figure {
    aspect-ratio: 16 / 8;
  }

  .article-list-card figure,
  .article-feature-card figure {
    aspect-ratio: 16 / 8.5;
  }

  .hero-image,
  .section-image,
  .article-hero-image {
    aspect-ratio: 16 / 10;
  }

  .service-family-card li {
    min-height: 42px;
    padding: 9px 44px 9px 14px;
    line-height: 1.38;
  }

  .service-actions,
  .hero-actions,
  .solutions-hero-actions {
    gap: 10px;
  }

  .button,
  .nav-cta,
  .footer-cta,
  button[type="submit"],
  .appointment-form button,
  .lead-form button,
  .article-list-card .button,
  .article-feature-card .button,
  .page-cta-band .button,
  .hero-actions .button,
  .service-actions .button {
    width: 100%;
    min-height: 50px !important;
    padding: 12px 18px !important;
  }
}

/* Final override: premium article archive cards with stable image-first layout. */
.articles-list-page .article-list-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) !important;
  align-items: stretch !important;
  gap: 28px !important;
}

.articles-list-page .article-list-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  overflow: hidden !important;
  align-items: stretch !important;
  padding: 0 !important;
  border-radius: 16px !important;
}

.articles-list-page .article-list-card figure {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 16px 16px 0 0 !important;
  box-shadow: none !important;
}

.articles-list-page .article-list-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.articles-list-page .article-list-card > div {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 14px !important;
  padding: 24px !important;
}

.articles-list-page .article-list-card .button {
  justify-self: start !important;
  align-self: end !important;
  min-width: 160px !important;
}

/* Articles page layout refinement */
.articles-list-page .page-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.articles-list-page .page-hero h1,
.articles-list-page .page-hero p {
  text-align: center !important;
}

.articles-list-page .page-hero p:not(.eyebrow) {
  max-width: 68ch;
  margin-inline: auto;
}

.articles-list-page .article-list-card {
  grid-template-columns: minmax(200px, 0.36fr) minmax(0, 0.64fr);
  align-items: stretch;
}

.articles-list-page .article-list-card figure {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 230px;
  aspect-ratio: auto;
  border-radius: 0 !important;
}

.articles-list-page .article-list-card > div {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 12px;
  padding-inline: 34px !important;
}

.articles-list-page .article-list-card h2 {
  max-width: none;
  width: 100%;
}

.articles-list-page .article-list-card p:not(.eyebrow) {
  max-width: none !important;
  width: 100%;
  grid-column: 1 / -1;
}

.articles-list-page .article-list-card .button {
  justify-self: start;
  min-width: 180px;
}

@media (max-width: 759px) {
  .articles-list-page .article-list-card {
    grid-template-columns: 1fr;
  }

  .articles-list-page .article-list-card figure,
  .articles-list-page .article-list-card > div {
    grid-column: auto;
    grid-row: auto;
  }

  .articles-list-page .article-list-card figure {
    min-height: 210px;
    aspect-ratio: 16 / 8.5;
    border-radius: 16px 16px 0 0 !important;
  }

  .articles-list-page .article-list-card .button {
    justify-self: stretch;
    min-width: 0;
  }
}

/* Solutions page balance and alignment */
.solutions-page .solutions-hero {
  padding-top: 38px !important;
  padding-bottom: 42px !important;
}

.solutions-page .solutions-hero-grid {
  align-items: stretch !important;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
}

.solutions-page .solutions-hero-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  height: 100%;
}

.solutions-page .solutions-hero-copy h1 {
  align-self: start;
  margin-top: 0 !important;
}

.solutions-page .solutions-hero-copy p {
  margin-top: 8px;
}

.solutions-page .solutions-hero-actions {
  align-self: end;
  margin-top: auto;
}

.solutions-page .solutions-hero-visual {
  height: 100%;
  min-height: 340px;
}

.solutions-page .service-family-card {
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr) !important;
  grid-template-rows: 1fr auto;
  align-items: stretch;
}

.solutions-page .service-family-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr) !important;
}

.solutions-page .service-family-card figure {
  grid-column: 1;
  grid-row: 1;
  min-height: 360px !important;
  height: 100% !important;
}

.solutions-page .service-family-card:nth-child(even) figure {
  grid-column: 2;
  grid-row: 1;
}

.solutions-page .service-family-card > div {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0 !important;
  align-content: center;
}

.solutions-page .service-family-card:nth-child(even) > div {
  grid-column: 1;
  grid-row: 1 / 3;
}

.solutions-page .service-family-card .service-actions {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px 18px 18px;
  margin: 0 !important;
  background: #ffffff;
  border-top: 1px solid rgba(15, 47, 82, 0.08);
}

.solutions-page .service-family-card:nth-child(even) .service-actions {
  grid-column: 2;
}

.solutions-page .service-family-card .service-actions .button {
  width: 100%;
}

.solutions-page .service-family-card ul {
  align-self: end;
  margin-top: 14px !important;
}

@media (max-width: 900px) {
  .solutions-page .solutions-hero-grid,
  .solutions-page .service-family-card,
  .solutions-page .service-family-card:nth-child(even) {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  .solutions-page .solutions-hero-copy {
    min-height: 0;
  }

  .solutions-page .solutions-hero-actions {
    margin-top: 18px;
  }

  .solutions-page .service-family-card figure,
  .solutions-page .service-family-card:nth-child(even) figure,
  .solutions-page .service-family-card > div,
  .solutions-page .service-family-card:nth-child(even) > div,
  .solutions-page .service-family-card .service-actions,
  .solutions-page .service-family-card:nth-child(even) .service-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .solutions-page .service-family-card .service-actions {
    padding: 14px 18px 18px;
  }
}

@media (max-width: 759px) {
  .service-family-card {
    overflow: hidden !important;
  }

  .service-family-card figure {
    width: 100% !important;
    height: 150px !important;
    min-height: 150px !important;
    aspect-ratio: auto !important;
  }

  .service-family-card > div {
    gap: 10px 14px !important;
    padding: 18px !important;
  }

  .service-family-card .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-family-card .eyebrow {
    min-height: 46px;
  }

  .service-family-card h2 {
    margin-bottom: 2px !important;
  }

  .service-family-card > div > p:not(.eyebrow) {
    margin-bottom: 4px !important;
    font-size: 16.5px !important;
    line-height: 1.52 !important;
  }

  .service-family-card ul {
    gap: 7px !important;
    margin-top: 2px !important;
  }

  .service-family-card li {
    min-height: 38px !important;
    padding: 8px 42px 8px 12px !important;
    font-size: 16px !important;
    line-height: 1.34 !important;
  }

  .service-actions {
    margin-top: 2px !important;
  }

  .service-actions .button {
    min-height: 46px !important;
    font-size: 16.5px !important;
    padding: 10px 14px !important;
  }
}

/* Requested page-level refinements */
.challenge-card,
.challenge-card:hover {
  background: #0f2f52 !important;
  color: #ffffff !important;
}

.challenge-card h3,
.challenge-card p,
.challenge-card span,
.challenge-card * {
  color: #ffffff !important;
}

.challenge-card::before {
  background: linear-gradient(180deg, rgba(15, 47, 82, 0.08), rgba(15, 47, 82, 0.72)) !important;
}

.service-family-card {
  display: grid !important;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
}

.service-family-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.service-family-card:nth-child(even) figure {
  grid-column: 2;
  grid-row: 1;
}

.service-family-card:nth-child(even) > div {
  grid-column: 1;
  grid-row: 1;
}

.service-family-card figure {
  width: 100% !important;
  height: 100% !important;
  min-height: 430px !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}

.service-family-card > div {
  align-content: center;
  min-height: 430px;
}

.service-family-card .eyebrow,
.article-list-card .eyebrow,
.page-hero .eyebrow {
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

.programme-hero {
  background: #ffffff !important;
}

.programme-hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.programme-logo-hero {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.1);
  box-shadow: 0 18px 46px rgba(15, 47, 82, 0.1);
}

.programme-logo-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.programme-hero-copy {
  max-width: 720px;
}

.about-hero-grid,
.about-experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 38px;
  align-items: center !important;
}

.about-avraham-portrait,
.about-experience-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px !important;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 20px 52px rgba(15, 47, 82, 0.14);
}

.about-avraham-portrait img,
.about-experience-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-avraham-portrait figcaption,
.about-experience-photo figcaption {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 47, 82, 0.88);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.about-avraham-portrait figcaption strong,
.about-experience-photo figcaption strong {
  color: #ffffff;
  font-size: 20px;
}

.about-avraham-portrait figcaption span,
.about-experience-photo figcaption span {
  color: #d79a2b;
  font-weight: 800;
}

.about-experience-intro {
  margin-bottom: 28px;
}

.about-experience-intro .section-heading {
  margin: 0;
}

.about-experience-photo {
  max-height: 360px;
}

.about-experience-photo img {
  min-height: 360px;
}

.articles-list-page .page-hero {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.articles-list-page .page-hero .container {
  max-width: 760px;
  min-height: auto;
  padding: 20px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.1);
  box-shadow: 0 10px 26px rgba(15, 47, 82, 0.07);
}

.articles-list-page .page-hero h1 {
  margin-bottom: 10px;
}

.articles-list-page .page-hero p:not(.eyebrow) {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .service-family-card,
  .service-family-card:nth-child(even),
  .programme-hero-inner,
  .about-hero-grid,
  .about-experience-intro {
    grid-template-columns: 1fr;
  }

  .service-family-card:nth-child(even) figure,
  .service-family-card:nth-child(even) > div {
    grid-column: auto;
    grid-row: auto;
  }

  .service-family-card figure {
    min-height: 180px !important;
    height: 180px !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .service-family-card > div {
    min-height: 0;
  }

  .programme-logo-hero {
    max-width: 260px;
    margin-inline: auto;
  }

  .about-avraham-portrait img,
  .about-experience-photo img {
    min-height: 320px;
  }

  .articles-list-page .page-hero {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }

  .articles-list-page .page-hero .container {
    padding: 16px 18px;
  }
}

.about-founder-visual.about-avraham-portrait figcaption,
.about-avraham-portrait figcaption,
.about-experience-photo figcaption {
  background: rgba(15, 47, 82, 0.92) !important;
  border: 1px solid rgba(215, 154, 43, 0.38) !important;
  border-top: 4px solid #d79a2b !important;
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.18) !important;
}

.about-founder-visual.about-avraham-portrait figcaption strong,
.about-avraham-portrait figcaption strong,
.about-experience-photo figcaption strong {
  display: block;
  color: #ffffff !important;
}

.about-founder-visual.about-avraham-portrait figcaption span,
.about-avraham-portrait figcaption span,
.about-experience-photo figcaption span {
  display: block;
  color: #d79a2b !important;
}

.hero {
  min-height: auto !important;
  padding-top: 24px !important;
  padding-bottom: 42px !important;
}

.hero-grid {
  align-items: center !important;
  gap: 36px !important;
}

.hero-copy,
.hero-image {
  opacity: 1 !important;
  transform: none !important;
}

.hero-image {
  max-height: 380px;
}

.hero-image img {
  min-height: 0 !important;
}

/* About page refinements */
.about-narrative {
  background: #0f2f52 !important;
  color: #ffffff !important;
}

.about-narrative .about-text-block {
  max-width: 1180px !important;
  width: min(1180px, calc(100% - 40px));
  padding: 42px 48px !important;
  border-radius: 18px;
  background: transparent !important;
  box-shadow: none !important;
}

.about-narrative .eyebrow,
.about-narrative h2 {
  color: #d79a2b !important;
}

.about-narrative .about-prose {
  max-width: none !important;
  width: 100%;
  display: grid;
  gap: 12px;
}

.about-narrative .about-prose p {
  max-width: none !important;
  width: 100%;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.78;
}

.about-experience-intro {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) !important;
  align-items: center;
}

.about-experience-photo {
  width: min(420px, 100%);
  justify-self: start;
  max-height: none !important;
}

.about-experience-photo img {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-experience-photo figcaption {
  inset-inline: 16px !important;
  bottom: 14px !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px !important;
  white-space: nowrap;
}

.about-experience-photo figcaption strong,
.about-experience-photo figcaption span {
  display: inline !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

.about-experience-photo figcaption strong::after {
  content: " |";
  color: rgba(255, 255, 255, 0.7);
  margin-inline-start: 8px;
}

.about-experience-photo figcaption .founder-inline {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.about-narrative.about-narrative .eyebrow,
.about-narrative.about-narrative h2,
.about-narrative.about-narrative #why-title {
  color: #d79a2b !important;
}

.about-narrative.about-narrative p,
.about-narrative.about-narrative .about-prose p {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .about-narrative .about-text-block {
    width: min(100% - 28px, 100%);
    padding: 30px 22px !important;
  }

  .about-experience-intro {
    grid-template-columns: 1fr !important;
  }

  .about-experience-photo {
    justify-self: stretch;
    width: 100%;
  }

  .about-experience-photo figcaption {
    white-space: normal;
  }
}

/* Contact and about final alignment fixes */
.appointment-page .appointment-section {
  padding-top: 34px !important;
}

.about-hero-grid {
  align-items: start !important;
}

.about-hero-copy,
.about-founder-visual {
  align-self: start !important;
}

.about-founder-visual > figcaption {
  display: none !important;
}

.about-experience-photo {
  display: block;
}

.about-experience-photo figcaption {
  inset-inline: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  justify-content: center;
  padding: 9px 12px !important;
  border-radius: 0 0 18px 18px !important;
}

.about-experience-photo figcaption .founder-inline {
  width: 100%;
  text-align: center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font-family: "Noto Sans Hebrew", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.82;
  text-align: right;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 58, 92, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(18, 58, 92, 0.08);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(6, 27, 53, 0.12);
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  direction: ltr;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.brand picture {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 96px;
  border-radius: 0;
  background: #ffffff;
  object-fit: contain;
}

.menu-toggle {
  order: 3;
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  transform-origin: center;
  transition: transform 260ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  order: 4;
  position: fixed;
  inset: 116px 0 auto 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  padding: 22px 24px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  direction: rtl;
}

.primary-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.primary-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--blue-950);
  font-size: 1.18rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.primary-nav a.is-active {
  color: var(--gold-600);
}

.nav-cta {
  margin-top: 8px;
  padding-inline: 16px !important;
  color: var(--gold-500) !important;
  background: var(--blue-900);
  text-align: center;
  justify-content: center;
  font-size: 0.98rem;
}

.header-whatsapp {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid rgba(18, 58, 92, 0.16);
  background: #ffffff;
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.96rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(6, 27, 53, 0.08);
}

.header-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.48);
  transform: translateY(-1px);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.whatsapp-icon::before {
  content: "☎";
  transform: translateY(-0.5px);
}

.mobile-sticky-cta {
  position: fixed;
  inset: auto 14px 14px 14px;
  z-index: 45;
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--gold-600);
  color: var(--blue-950);
  box-shadow: 0 16px 38px rgba(6, 27, 53, 0.18);
  font-weight: 800;
  text-align: center;
}

.home-page .mobile-sticky-cta {
  display: none !important;
}

.section,
.section-band {
  padding: 72px 0;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(231, 244, 249, 0.96), rgba(205, 228, 239, 0.88)),
    var(--page-blue);
  border-bottom: 1px solid rgba(18, 58, 92, 0.08);
  padding-top: 0;
  padding-bottom: 34px;
}

.home-page #positioning,
.home-page #solutions,
.home-page #why,
.home-page #founder,
.home-page #lead-magnet,
.home-page #articles,
.home-page #faq {
  display: none;
}

.hero-grid,
.split,
.founder,
.faq-layout,
.lead-box {
  display: grid;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-600);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-badge {
  width: fit-content;
  margin: 0;
  padding: 8px 30px;
  border: 1px solid rgba(200, 150, 47, 0.42);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-600);
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(6, 27, 53, 0.12);
}

.hero-badge-floating {
  position: relative;
  z-index: 4;
  margin: 0 auto 10px;
  transform: none;
  transform-origin: center;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--blue-900);
  color: var(--gold-500);
  font-weight: 800;
}

.hero-badge-mobile {
  display: none;
}

.hero-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(2.84rem, 3.8vw, 3.38rem);
  line-height: 1.14;
  font-weight: 800;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 26px;
  color: var(--blue-950);
  font-size: clamp(2.05rem, 3vw, 2.45rem);
  line-height: 1.18;
  font-weight: 800;
}

h3 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  line-height: 1.32;
}

.hero-subtitle,
.hero-lede,
.section-heading p,
.text-block,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
  max-width: 760px;
}

.hero-subtitle {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: clamp(1.15rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-lede {
  max-width: 760px;
  color: #183f64;
  font-weight: 500;
}

.hero-copy {
  display: grid;
  gap: 7px;
}

.hero-copy p {
  margin: 0;
  color: #183f64;
}

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

.hero-media {
  display: grid;
  gap: 12px;
}

.hero-photo-cta {
  width: 100%;
}

.cta-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-inline-start: 14px;
  color: var(--blue-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.82em;
  width: 5px;
  height: 5px;
  background: var(--gold-600);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.button-gold {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--gold-500);
}

.button-gold:hover {
  background: #08233d;
  border-color: #08233d;
  color: var(--gold-500);
  box-shadow: 0 12px 26px rgba(6, 27, 53, 0.2);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: var(--blue-900);
  color: var(--blue-900);
  background: transparent;
}

.button-ghost:hover {
  background: rgba(8, 38, 75, 0.04);
  transform: translateY(-2px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.button-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--blue-100);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  margin-top: 0;
}

.hero-image .hero-badge-mobile {
  position: absolute;
  inset: 14px 14px auto auto;
  z-index: 3;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.section-image {
  position: relative;
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(220, 228, 236, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 50px rgba(18, 58, 92, 0.1);
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.image-split {
  align-items: center;
}

.hero-panel img {
  width: 220px;
  margin-bottom: 26px;
}

.hero-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--blue-900);
  font-weight: 700;
}

.section-soft {
  background: rgba(255, 255, 255, 0.54);
}

.page-main {
  padding-top: 0;
}

.page-main .section {
  padding-top: 44px;
}

.page-hero {
  padding: 28px 0 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.86)),
    var(--blue-050);
  border-bottom: 1px solid rgba(18, 58, 92, 0.08);
}

.page-hero .container {
  display: grid;
  gap: 8px;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
}

.page-grid {
  display: grid;
  gap: 24px;
}

.page-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.page-card p {
  color: var(--muted);
}

.page-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.page-card li {
  color: var(--blue-900);
  font-weight: 700;
}

.section-layout,
.card-grid,
.solution-list,
.solution-cards,
.proof-grid {
  display: grid;
  gap: 18px;
}

.challenges-layout {
  grid-template-columns: 1fr !important;
  gap: 30px;
}

.challenges-layout .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.positioning-summary {
  max-width: 980px;
  margin: 10px auto 0;
  padding: 34px 42px;
  border-right: 4px solid var(--gold-600);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(18, 58, 92, 0.06);
}

.positioning-summary h2 {
  margin-bottom: 16px;
}

.positioning-summary p {
  margin-bottom: 10px;
  color: #183f64;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  font-weight: 500;
}

.positioning-summary p:last-child {
  margin-bottom: 0;
}

.narrow {
  max-width: 660px;
}

.card,
.article-card {
  min-height: 206px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 rgba(6, 27, 53, 0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.card:hover,
.article-card:hover,
.solution-card:hover {
  border-color: rgba(22, 65, 111, 0.2);
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.08);
  transform: translateY(-4px);
}

.challenge-card {
  min-height: 292px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: #0d2947;
}

.challenge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 35, 61, 0.02), rgba(8, 35, 61, 0.58));
  pointer-events: none;
}

.challenge-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 208px;
  overflow: hidden;
}

.challenge-photo img {
  width: 100%;
  height: 100%;
  min-height: 208px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.challenge-card span,
.solution-card span {
  color: var(--gold-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.challenge-card span {
  display: none;
}

.challenge-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 20px 22px 24px;
  background: linear-gradient(180deg, rgba(13, 41, 71, 0.94), rgba(8, 35, 61, 0.98));
  color: var(--white);
  text-align: center;
  max-width: none;
  min-height: 96px;
  display: grid;
  place-items: center;
}

.card p,
.article-card p,
.solution-row p,
.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-block {
  padding-top: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-900);
  font-weight: 800;
  border-bottom: 2px solid var(--gold-600);
}

.mini-proof {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 24px 26px;
  border-right: 3px solid var(--gold-600);
  background: rgba(255, 255, 255, 0.74);
}

.mini-proof strong {
  color: var(--blue-950);
}

.mini-proof span {
  color: var(--muted);
}

.solution-row {
  display: grid;
  gap: 8px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.solution-row:last-child {
  border-bottom: 1px solid var(--line);
}

.solution-row span,
.solution-card span,
.proof-grid strong {
  color: var(--gold-600);
  font-weight: 800;
}

.solution-card {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(238, 244, 249, 0.5), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.94);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.solution-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.1vw, 1.7rem);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card a {
  width: fit-content;
  color: var(--blue-900);
  font-weight: 800;
  border-bottom: 2px solid var(--gold-600);
}

.section-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.section-cta p {
  margin: 0;
  color: var(--blue-900);
  font-weight: 700;
}

.section-cta-inline {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(180deg, #123a5c 0%, #0d2f4f 100%);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark strong {
  color: var(--gold-500);
}

.proof-grid article {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid h3 {
  margin-top: 12px;
}

.dark-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.dark-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.founder-portrait {
  min-height: 380px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: rgba(255, 255, 255, 0.86);
  font-size: 4rem;
  font-weight: 800;
}

.founder .section-heading p {
  max-width: 760px;
}

.founder-fit {
  color: var(--blue-900) !important;
  font-weight: 700;
}

.founder-quote {
  margin: 34px 0 0;
  padding: 34px;
  border-right: 4px solid var(--gold-600);
  background: #0f2f52;
}

.founder-quote p {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  font-weight: 800;
  line-height: 1.45;
}

.founder-quote p:nth-child(-n + 3) {
  color: #ffffff;
}

.founder-quote p:last-child {
  margin-bottom: 0;
  color: var(--gold-500);
}

.lead-box {
  align-items: start;
  padding: 38px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.lead-box-media {
  grid-template-columns: 0.88fr 1.12fr;
}

.lead-content {
  display: grid;
  gap: 28px;
}

.lead-image {
  min-height: 360px;
}

.lead-image img {
  min-height: 360px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-900);
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form select {
  min-height: 56px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 132px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(22, 65, 111, 0.08);
  outline: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.appointment-hero {
  padding-bottom: 22px;
}

.appointment-flow {
  display: grid;
  gap: 28px;
}

.appointment-summary,
.appointment-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 46px rgba(6, 27, 53, 0.08);
}

.appointment-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
}

.appointment-summary h2,
.calendar-next-step h2 {
  margin: 0;
}

.appointment-summary ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.appointment-summary li {
  padding-right: 18px;
  border-right: 3px solid var(--gold-600);
  color: #173d63;
  font-weight: 700;
}

.appointment-source {
  padding: 14px 16px;
  background: #eef7fb;
  color: var(--blue-900);
  font-weight: 700;
}

.appointment-source strong {
  color: var(--gold-700);
}

.appointment-panel {
  padding: 28px;
}

.appointment-form {
  align-items: start;
}

.full-field {
  grid-column: 1 / -1;
}

.calendar-next-step {
  display: grid;
  gap: 18px;
}

.calendar-next-step[hidden] {
  display: none !important;
}

.appointment-form + .calendar-next-step {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.calendar-next-step > div {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #0d2f4f;
  color: var(--white);
}

.calendar-next-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.calendar-next-step h2,
.calendar-next-step p {
  margin: 0;
  color: inherit;
}

.calendar-next-step a {
  width: fit-content;
}

.article-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.articles-service-grid {
  align-items: stretch;
}

.article-service {
  overflow: hidden;
  padding: 0;
  border: 0;
}

.article-service > div {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.article-media {
  margin: 0;
  height: 210px;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-ai {
  background: linear-gradient(180deg, #e8f3f8 0%, #ffffff 100%);
}

.article-leadership {
  background: linear-gradient(180deg, #f7f0df 0%, #ffffff 100%);
}

.article-sales {
  background: linear-gradient(180deg, #dcebf3 0%, #ffffff 100%);
}

.article-card h3 {
  font-size: 1.45rem;
}

.article-card a {
  color: var(--blue-900);
  font-weight: 800;
}

.service-family-list {
  display: grid;
  gap: 24px;
}

.service-family-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.service-family-card figure,
.article-feature-card figure,
.article-hero-image {
  margin: 0;
  overflow: hidden;
}

.service-family-card figure {
  min-height: 260px;
}

.service-family-card img,
.article-feature-card img,
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-family-card > div {
  display: grid;
  gap: 14px;
  padding: 32px;
}

.service-family-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
}

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

.service-family-card li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 48px 12px 16px;
  border: 1px solid rgba(15, 47, 82, 0.88);
  border-radius: 14px;
  background: #0f2f52;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 12px 26px rgba(15, 47, 82, 0.12);
}

.service-family-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: auto;
  inset-inline-end: 16px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(215, 154, 43, 0.26), rgba(215, 154, 43, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 154, 43, 0.5);
}

.service-family-card li::after {
  content: "";
  position: absolute;
  inset-inline-end: 23px;
  width: 8px;
  height: 5px;
  border-inline-start: 2px solid #d79a2b;
  border-bottom: 2px solid #d79a2b;
  transform: rotate(-45deg);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button-outline {
  border: 1px solid rgba(9, 41, 67, 0.18);
  background: var(--white);
  color: var(--blue-900);
}

.button-outline:hover {
  border-color: var(--gold-600);
  color: var(--blue-950);
  transform: translateY(-2px);
}

.page-cta-band {
  padding-block: 44px;
  background: var(--blue-900);
  color: var(--white);
}

.page-cta-band .container {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.page-cta-band h2,
.page-cta-band p {
  color: inherit;
  max-width: 760px;
}

.article-index {
  display: grid;
  gap: 28px;
}

.article-list-grid {
  display: grid;
  gap: 28px;
}

.article-list-card {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.08);
}

.article-list-card figure {
  min-height: 230px;
  margin: 0;
  overflow: hidden;
}

.article-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-list-card > div {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.article-list-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

.article-list-card p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
}

.article-feature-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.08);
}

.article-feature-card figure {
  min-height: 260px;
}

.article-feature-card > div {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.article-feature-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.article-hero {
  padding-bottom: 32px;
}

.article-hero .container {
  display: grid;
  gap: 18px;
}

.article-hero-image {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 48px rgba(6, 27, 53, 0.12);
}

.article-body {
  max-width: 900px;
  display: grid;
  gap: 18px;
  color: #14395d;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.article-full .article-content,
.article-full .article-body {
  max-height: none;
  overflow: visible;
}

.article-body h2 {
  margin-top: 12px;
  color: var(--blue-950);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 1.2rem 0 0;
}

.article-body li {
  padding-right: 4px;
}

.article-meta {
  margin: 0;
  color: var(--gold-700);
  font-weight: 800;
}

.article-public-view-count {
  display: inline;
  margin: 0;
  color: inherit;
}

.article-reading-section {
  padding-top: 38px;
}

.article-cta {
  margin-top: 10px;
}

.related-articles {
  padding-top: 42px;
}

.related-grid {
  display: grid;
  gap: 18px;
}

.related-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(6, 27, 53, 0.06);
}

.related-card p,
.related-card h3 {
  margin: 0;
}

.related-card p {
  color: var(--gold-700);
  font-weight: 800;
}

.related-card a {
  width: fit-content;
  color: var(--blue-900);
  font-weight: 800;
}

.stats-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.08);
}

.stats-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-table-wrap {
  overflow-x: auto;
}

.stats-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

.stats-table th,
.stats-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.stats-table th {
  color: var(--blue-950);
  font-weight: 800;
}

.article-task-grid {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}

.article-task-grid span {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border-right: 4px solid var(--gold-600);
  box-shadow: 0 10px 26px rgba(6, 27, 53, 0.06);
  font-weight: 700;
}

.article-closing {
  color: var(--blue-900);
  font-weight: 800;
}

.story-section {
  padding-top: 30px;
}

.story-grid {
  display: grid;
  gap: 22px;
}

.story-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(6, 27, 53, 0.12);
}

.story-card figure {
  height: 220px;
  margin: 0;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card > div {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.story-card p {
  margin: 0;
  color: var(--gold-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.story-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.story-card a {
  color: var(--blue-900);
  font-weight: 800;
}

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

details {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

details:hover {
  border-color: rgba(22, 65, 111, 0.2);
  box-shadow: 0 12px 30px rgba(6, 27, 53, 0.06);
}

summary {
  color: var(--blue-950);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--blue-900), #0d3152);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.final-outcomes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 0;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  list-style: none;
}

.final-outcomes li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.cta-note-light {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  position: relative;
  direction: rtl;
  padding: 92px 0 24px;
  background: #092943;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
  content: "להפוך חזון לתוצאות";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-500);
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
}

.footer-column p {
  margin: 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer-brand-block strong {
  display: none;
}

.site-footer a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-500);
  transform: translateX(-2px);
}

.footer-contact-block a {
  direction: ltr;
  unicode-bidi: embed;
}

.footer-contact-block h2,
.footer-contact-block .footer-cta {
  direction: rtl;
}

.footer-cta {
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(213, 159, 48, 0.45);
  background: rgba(213, 159, 48, 0.12);
  color: var(--gold-500) !important;
  font-weight: 800 !important;
}

.footer-inspiration {
  margin-top: 38px;
  padding: 24px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-inspiration p {
  margin: 0;
  color: var(--gold-500);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.65;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(213, 159, 48, 0.55);
  text-underline-offset: 4px;
}

.privacy-page {
  background: #f7f8fa;
}

.privacy-hero {
  padding: clamp(64px, 9vw, 112px) 0 clamp(40px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(9, 41, 67, 0.04), rgba(255, 255, 255, 0)),
    #ffffff;
  border-bottom: 1px solid rgba(9, 41, 67, 0.1);
}

.privacy-reading-width {
  width: min(100% - 40px, 820px);
}

.privacy-hero h1 {
  margin: 8px 0 12px;
  color: #092943;
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  line-height: 1.08;
}

.privacy-updated {
  margin: 0 0 28px;
  color: #5c6975;
  font-size: 0.98rem;
  font-weight: 700;
}

.privacy-intro {
  margin: 0;
  color: #263746;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.9;
}

.privacy-content-section {
  padding: clamp(42px, 7vw, 80px) 0 clamp(68px, 9vw, 110px);
}

.privacy-document {
  padding: clamp(28px, 5vw, 58px);
  background: #ffffff;
  border: 1px solid rgba(9, 41, 67, 0.1);
  box-shadow: 0 18px 45px rgba(9, 41, 67, 0.08);
}

.privacy-document section + section {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid rgba(9, 41, 67, 0.1);
}

.privacy-document h2 {
  margin: 0 0 16px;
  color: #092943;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
}

.privacy-document p,
.privacy-document li,
.privacy-document address {
  color: #344656;
  font-size: 1.05rem;
  line-height: 1.9;
}

.privacy-document p {
  margin: 0 0 14px;
}

.privacy-document ul {
  margin: 10px 0 20px;
  padding: 0 1.35rem 0 0;
}

.privacy-document li {
  margin: 5px 0;
  padding-right: 4px;
}

.privacy-document li::marker {
  color: #c59631;
}

.privacy-document a {
  color: #0b5c8f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-contact {
  padding: clamp(24px, 4vw, 36px);
  background: #f3f6f8;
  border-right: 4px solid #c59631;
}

.privacy-document .privacy-contact {
  margin-top: 46px;
}

.privacy-contact address {
  margin: 18px 0;
  font-style: normal;
}

@media (max-width: 640px) {
  .privacy-reading-width {
    width: min(100% - 28px, 820px);
  }

  .privacy-hero {
    padding-top: 48px;
  }

  .privacy-document {
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(9, 41, 67, 0.06);
  }

  .privacy-document section + section {
    margin-top: 32px;
    padding-top: 30px;
  }

  .privacy-document p,
  .privacy-document li,
  .privacy-document address {
    font-size: 1rem;
    line-height: 1.82;
  }

  .privacy-contact {
    padding: 22px 18px;
  }
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.social-link.linkedin span {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.social-link.whatsapp .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.section-dark p,
.section-dark article p,
.section-dark .text-block,
.section-dark .dark-cta p,
.final-cta p,
.final-cta li,
.page-cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

#challenges .section-heading p {
  color: #0f2f52;
  font-weight: 700;
}

.about-page {
  background:
    linear-gradient(180deg, #eff7fb 0%, #d6ebf3 32%, #cce4ee 100%);
}

.about-hero {
  padding: 46px 0 64px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(230, 243, 249, 0.92)),
    var(--blue-050);
  border-bottom: 1px solid rgba(18, 58, 92, 0.12);
}

.about-hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about-hero-copy {
  max-width: 680px;
}

.about-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 4.8vw, 3.55rem);
}

.about-subtitle {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--blue-800);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.55;
}

.about-signature-card {
  position: relative;
  max-width: 640px;
  padding: 28px 30px;
  background: #092943;
  color: var(--white);
  box-shadow: 0 22px 52px rgba(6, 27, 53, 0.14);
}

.about-signature-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold-500);
}

.about-signature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.7vw, 1.26rem);
  font-weight: 700;
  line-height: 1.75;
}

.about-signature-card p:nth-child(-n + 3) {
  color: #ffffff;
}

.about-signature-card p:last-child {
  color: var(--gold-500);
}

.about-founder-visual {
  margin: 0;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 27, 53, 0.14);
  overflow: hidden;
}

.about-founder-visual img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.about-founder-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-top: 4px solid var(--gold-500);
  background: #ffffff;
  color: var(--blue-950);
}

.about-founder-visual strong {
  font-size: 1.28rem;
  font-weight: 800;
}

.about-founder-visual span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.about-text-block {
  max-width: 850px;
}

.about-text-block h2,
.about-method h2,
.about-implementation h2,
.about-experience h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.about-prose {
  display: grid;
  gap: 12px;
}

.about-prose p {
  margin: 0;
  color: #193c5b;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.9;
}

.about-prose.compact {
  gap: 10px;
}

.about-card-grid {
  display: grid;
  gap: 18px;
}

.about-insight-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 58, 92, 0.12);
  box-shadow: 0 18px 46px rgba(6, 27, 53, 0.08);
}

.about-insight-card h3 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: clamp(1.32rem, 2vw, 1.62rem);
}

.about-insight-card p {
  margin: 0;
  color: #31536e;
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-proof-strip {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-proof-strip div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: #0b2f4d;
  color: var(--white);
}

.about-proof-strip strong {
  color: var(--gold-500);
  font-size: clamp(1.38rem, 2.3vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
}

.about-proof-strip span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.55;
}

.about-method {
  background:
    linear-gradient(135deg, rgba(8, 38, 64, 0.96), rgba(18, 58, 92, 0.94)),
    var(--blue-900);
  color: var(--white);
}

.about-method-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-method h2,
.about-method .about-prose p {
  color: var(--white) !important;
}

.about-method .about-prose p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
}

.about-flow {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-flow div {
  width: min(100%, 300px);
  padding: 16px 20px;
  background: #ffffff;
  color: var(--blue-950);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.about-flow span {
  color: var(--gold-500);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.about-panel {
  display: grid;
  gap: 24px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(18, 58, 92, 0.12);
  box-shadow: 0 24px 58px rgba(6, 27, 53, 0.1);
}

.about-implementation h2 {
  font-size: clamp(1.48rem, 2.1vw, 1.9rem) !important;
  line-height: 1.28;
}

.about-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-panel-actions .button {
  min-height: 48px;
}

.about-final-cta {
  padding-top: 64px;
}

.about-final-cta h2,
.about-final-cta p {
  color: #ffffff !important;
}

.about-final-cta h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.28rem);
}

.animations-ready .hero-badge,
.animations-ready #hero-title,
.animations-ready .hero-subtitle,
.animations-ready .hero-lede,
.animations-ready .hero-actions,
.animations-ready .hero-photo-cta,
.animations-ready .hero-image {
  opacity: 0;
  transform: translateY(12px);
  animation: premiumFadeUp 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animations-ready .hero-badge-floating {
  transform: rotateX(72deg) rotateZ(-5deg) translateY(-8px);
  animation: badgeTurnIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animations-ready #hero-title {
  animation-delay: 90ms;
}

.animations-ready .hero-subtitle {
  animation-delay: 170ms;
}

.animations-ready .hero-lede {
  animation-delay: 240ms;
}

.animations-ready .hero-actions,
.animations-ready .hero-photo-cta {
  animation-delay: 310ms;
}

.animations-ready .hero-image {
  animation-delay: 190ms;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--reveal-duration, 560ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration, 560ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premiumFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeTurnIn {
  0% {
    opacity: 0;
    transform: rotateX(72deg) rotateZ(-5deg) translateY(-8px);
  }

  62% {
    opacity: 1;
    transform: rotateX(-6deg) rotateZ(1deg) translateY(0);
  }

  100% {
    opacity: 1;
    transform: rotateX(0) rotateZ(0) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .hero-badge-floating,
  .animations-ready .hero-badge-floating {
    transform: none !important;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 64px));
  }

  .section,
  .section-band {
    padding: 76px 0;
  }

  .hero {
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    align-items: start;
    gap: 48px;
  }

  .hero-image {
    margin-top: 4px;
  }

  .section-layout,
  .split,
  .founder,
  .faq-layout,
  .lead-box {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
  }

  .image-split {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

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

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

  .service-family-card,
  .article-feature-card {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: stretch;
  }

  .service-family-card:nth-child(even),
  .article-feature-card:nth-child(even) {
    grid-template-columns: 1.14fr 0.86fr;
  }

  .service-family-card:nth-child(even) figure,
  .article-feature-card:nth-child(even) figure {
    order: 2;
  }

  .about-hero {
    padding: 54px 0 76px;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 58px;
  }

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

  .about-proof-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-method-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    align-items: center;
    gap: 60px;
  }

  .about-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 44px;
  }

  .about-panel-actions {
    grid-column: 2;
  }

  .article-task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .solution-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .solution-row {
    grid-template-columns: 80px 0.85fr 1.4fr;
    align-items: baseline;
  }

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

  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form button {
    grid-column: 1 / -1;
  }

  .appointment-flow {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }

  .section-cta,
  .dark-cta {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 1.05fr 1.1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .header-inner {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: none;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-left: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    pointer-events: auto;
    transition: none;
  }

  .primary-nav a {
    min-height: 104px;
    padding: 0;
    font-size: 1.05rem;
  }

  .nav-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    min-height: 40px;
    padding: 8px 16px !important;
  }

  .brand {
    order: 1;
    width: 170px;
  }

  .header-whatsapp {
    margin-left: 12px;
  }

  .article-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-list-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

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

@media (max-width: 979px) {
  .header-inner {
    min-height: 86px;
    gap: 10px;
  }

  .brand {
    order: 1;
    width: 86px;
  }

  .header-whatsapp {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .header-whatsapp .phone-number {
    display: none;
  }

  .brand img {
    height: 78px;
  }

  .primary-nav {
    inset: 86px 16px auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
  }

  .primary-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.18rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    position: static;
    transform: none;
    min-height: 56px !important;
    margin-top: 12px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button,
  .lead-form button {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .lead-box-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 759px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section,
  .section-band {
    padding: 52px 0;
  }

  .page-main .section {
    padding-top: 34px;
  }

  .page-hero {
    padding: 24px 0 28px;
  }

  .hero {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .hero-badge-floating {
    display: block;
  }

  .hero-badge {
    padding: 7px 22px;
    font-size: 1rem;
  }

  .hero-badge-wrap {
    margin-bottom: 8px;
  }

  h1 {
    font-size: clamp(1.88rem, 8.2vw, 2.22rem);
    line-height: 1.16;
    margin-bottom: 20px;
  }

  h2 {
    font-size: clamp(1.62rem, 7.2vw, 1.95rem);
    line-height: 1.22;
    margin-bottom: 22px;
  }

  h3 {
    font-size: clamp(1.16rem, 5.2vw, 1.35rem);
    line-height: 1.28;
  }

  .hero-subtitle,
  .hero-lede,
  .section-heading p,
  .text-block,
  .final-cta p {
    font-size: 1rem;
  }

  .eyebrow,
  .hero-badge,
  .cta-note,
  .hero-trust li,
  .form-note {
    font-size: 0.94rem;
  }

  .hero-image,
  .hero-image img {
    min-height: 240px;
  }

  .section-image,
  .section-image img,
  .lead-image,
  .lead-image img {
    min-height: 230px;
  }

  .hero-image::after {
    border-width: 8px;
  }

  .card,
  .article-card,
  .solution-card,
  .lead-box {
    padding: 24px;
  }

  .challenge-card,
  .solution-card {
    min-height: 245px;
  }

  .challenge-card {
    padding: 0;
  }

  .challenge-photo,
  .challenge-photo img {
    min-height: 188px;
  }

  .founder-portrait {
    min-height: 280px;
  }

  .founder-quote {
    padding: 26px;
  }

  .about-hero {
    padding: 28px 0 46px;
  }

  .about-hero-grid {
    gap: 26px;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 9vw, 2.42rem);
    margin-bottom: 14px;
  }

  .about-subtitle {
    margin-bottom: 20px;
    font-size: 1.08rem;
  }

  .about-signature-card {
    padding: 22px 20px;
  }

  .about-signature-card p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-founder-visual img {
    min-height: 260px;
  }

  .about-founder-visual figcaption {
    display: grid;
    gap: 2px;
  }

  .about-insight-card,
  .about-panel,
  .about-flow {
    padding: 22px;
  }

  .about-proof-strip div {
    padding: 20px;
  }

  .about-method-grid {
    gap: 26px;
  }

  .about-flow div {
    width: 100%;
    font-size: 1.08rem;
  }

  .about-panel-actions {
    display: grid;
  }

  .about-panel-actions .button,
  .about-final-cta .button {
    width: 100%;
  }

  .lead-form {
    gap: 12px;
  }

  details {
    padding: 18px;
  }

  .hero-trust,
  .final-outcomes {
    display: grid;
    justify-content: stretch;
  }

  .section-cta,
  .dark-cta {
    text-align: center;
  }

  .section-cta .button,
  .dark-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* Premium refresh */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 47, 82, 0.1);
  box-shadow: 0 10px 30px rgba(15, 47, 82, 0.06);
}

.primary-nav a {
  position: relative;
  color: #0f2f52;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 7px;
  width: 0;
  height: 3px;
  margin-inline: auto;
  border-radius: 99px;
  background: #d79a2b;
  transition: width 220ms ease;
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a.is-active::after {
  width: 60%;
}

.primary-nav a.is-active {
  color: #0f2f52;
}

.nav-cta,
.button-gold,
.hero-photo-cta,
.footer-cta {
  border-color: #d79a2b !important;
  background: #d79a2b !important;
  color: #ffffff !important;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(215, 154, 43, 0.22);
}

.nav-cta:hover,
.button-gold:hover,
.hero-photo-cta:hover,
.footer-cta:hover {
  background: #bf8420 !important;
  border-color: #bf8420 !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(191, 132, 32, 0.28);
}

.section,
.section-band {
  background: #ffffff;
}

.page-main > .section:nth-of-type(even),
main > .section:nth-of-type(even),
main > .section-band:nth-of-type(even) {
  background: #f7f9fc;
}

.page-hero,
.hero,
.about-hero {
  background: #ffffff;
}

.page-hero {
  padding: 42px 0 44px;
}

.page-hero .container {
  min-height: auto;
}

.page-hero h1,
.hero h1,
.section-heading h2,
.positioning-summary h2,
.page-card h2,
.page-cta-band h2,
.article-body h2,
.about-text-block h2,
.about-method h2,
.about-implementation h2,
.about-experience h2 {
  position: relative;
  font-weight: 800;
  line-height: 1.22;
}

.page-hero h1::after,
.hero h1::after,
.section-heading h2::after,
.positioning-summary h2::after,
.page-card h2::after,
.page-cta-band h2::after,
.about-text-block h2::after,
.about-method h2::after,
.about-implementation h2::after,
.about-experience h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 18px;
  border-radius: 99px;
  background: #d79a2b;
}

.page-cta-band h2::after,
.about-method h2::after {
  background: #d79a2b;
}

.section-heading.narrow h2::after {
  margin-inline: auto;
}

p,
.text-block,
.article-body,
.article-body p,
.page-card p,
.hero-lede p,
.about-prose p {
  color: #1f2937;
  line-height: 1.86;
}

.section-heading p,
.page-hero p,
.article-list-card p:not(.eyebrow),
.page-card li,
.service-family-card li {
  color: #6b7280;
}

.page-card,
.card,
.article-card,
.article-list-card,
.article-feature-card,
.solution-card,
.service-family-card,
.about-insight-card,
.related-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.09);
  box-shadow: 0 16px 42px rgba(15, 47, 82, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-card:hover,
.card:hover,
.article-card:hover,
.article-list-card:hover,
.article-feature-card:hover,
.solution-card:hover,
.service-family-card:hover,
.about-insight-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.32);
  box-shadow: 0 24px 58px rgba(15, 47, 82, 0.13);
}

.service-family-card {
  overflow: hidden;
}

.service-family-card figure,
.article-list-card figure,
.article-feature-card figure,
.article-hero-image,
.hero-image,
.section-image,
.about-founder-visual {
  border-radius: 16px;
  overflow: hidden;
}

.service-family-card img,
.article-list-card img,
.article-feature-card img,
.article-hero-image img,
.hero-image img,
.section-image img,
.about-founder-visual img {
  filter: saturate(0.92) contrast(1.03);
}

.service-family-card > div {
  position: relative;
}

.service-icon,
.solution-card span {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(215, 154, 43, 0.12);
  color: #d79a2b;
  border: 1px solid rgba(215, 154, 43, 0.28);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-page .page-main {
  background: #f7f9fc;
}

.solutions-hero {
  position: relative;
  padding: 42px 0 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96)),
    #ffffff;
  border-bottom: 1px solid rgba(15, 47, 82, 0.08);
  overflow: hidden;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: min(34vw, 420px);
  height: 100%;
  background: #0f2f52;
  opacity: 0.04;
  pointer-events: none;
}

.solutions-hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}

.solutions-hero-copy {
  max-width: 720px;
}

.solutions-hero h1 {
  margin-bottom: 16px;
  color: #0f2f52;
  font-size: clamp(2.25rem, 4.4vw, 3.35rem);
}

.solutions-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
  color: #374151;
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  font-weight: 500;
  line-height: 1.78;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.solutions-hero-actions .button {
  min-height: 50px;
}

.solutions-hero-visual {
  position: relative;
  margin: 0;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(15, 47, 82, 0.16);
  background: #ffffff;
}

.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.solutions-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 47, 82, 0.02), rgba(15, 47, 82, 0.36));
  pointer-events: none;
}

.solutions-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  inset-inline: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.solutions-hero-visual span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(15, 47, 82, 0.78);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.solution-card span {
  color: #0f2f52;
  font-size: 0;
}

.solution-card span::before {
  color: #d79a2b;
  font-size: 1.28rem;
  font-weight: 800;
}

.solution-card:nth-child(1) span::before {
  content: "↗";
}

.solution-card:nth-child(2) span::before {
  content: "◎";
}

.solution-card:nth-child(3) span::before {
  content: "AI";
  font-size: 1rem;
}

.solution-card:nth-child(4) span::before {
  content: "360";
  font-size: 0.9rem;
}

.article-list-card {
  overflow: hidden;
}

.article-list-card h2 {
  color: #0f2f52;
  font-size: clamp(1.42rem, 2.2vw, 1.78rem);
}

.article-body {
  font-size: clamp(1.05rem, 1.5vw, 1.16rem);
}

.page-cta-band {
  background: #0f2f52;
}

.page-cta-band p,
.page-cta-band h2 {
  color: #ffffff;
}

@media (min-width: 760px) {
  .page-hero {
    padding: 50px 0 52px;
  }

  .service-families {
    padding-top: 52px;
  }

  .solutions-hero {
    padding: 44px 0 46px;
  }

  .solutions-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    gap: 56px;
  }
}

@media (min-width: 980px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    min-height: 104px;
  }

  .primary-nav .nav-cta {
    position: static;
    min-height: 44px;
    margin: 0 6px 0 0;
    padding: 10px 18px !important;
    transform: none;
    white-space: nowrap;
  }

  .primary-nav .nav-cta:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 759px) {
  .page-hero {
    padding: 26px 0 30px;
  }

  .primary-nav a:not(.nav-cta)::after {
    bottom: 4px;
  }

  .service-icon,
  .solution-card span {
    width: 46px;
    height: 46px;
  }

  .solutions-hero {
    padding: 24px 0 32px;
  }

  .solutions-hero-grid {
    gap: 22px;
  }

  .solutions-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.42rem);
  }

  .solutions-hero-actions {
    display: grid;
  }

  .solutions-hero-actions .button {
    width: 100%;
  }

  .solutions-hero-visual,
  .solutions-hero-visual img {
    min-height: 240px;
  }

  .solutions-hero-visual figcaption {
    inset-inline: 12px;
    bottom: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Premium category labels */
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #d79a2b;
  font-size: clamp(1.12rem, 1.35vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}

.eyebrow::after {
  content: none;
}

.service-family-card > div {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px 16px;
}

.service-family-card .service-icon {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.service-family-card .eyebrow {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  min-height: 52px;
  color: #d79a2b !important;
  display: inline-flex;
  align-items: center;
}

.page-card .eyebrow,
.article-list-card .eyebrow,
.article-feature-card .eyebrow,
.section-heading .eyebrow,
.lead-content .eyebrow,
.about-page .eyebrow,
.page-hero .eyebrow {
  color: #d79a2b !important;
}

.service-family-card h2,
.service-family-card > div > p:not(.eyebrow),
.service-family-card ul,
.service-family-card .service-actions {
  grid-column: 1 / -1;
}

.service-family-card li {
  color: #1f2937;
}

.service-family-card:nth-of-type(3) li {
  background: #0f2f52;
  color: #ffffff;
  border-color: rgba(15, 47, 82, 0.88);
  box-shadow: 0 12px 26px rgba(15, 47, 82, 0.12);
}

.service-family-card:nth-of-type(3) li::before {
  background: rgba(215, 154, 43, 0.16);
  border-color: rgba(215, 154, 43, 0.48);
}

.solutions-page .page-cta-band {
  padding-block: 34px;
}

.solutions-page .page-cta-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.solutions-page .page-cta-band p {
  max-width: 680px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

@media (max-width: 759px) {
  .eyebrow {
    gap: 10px;
    font-size: 1.08rem;
  }

  .eyebrow::after {
    content: none;
  }

  .service-family-card > div {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.section-dark p,
.section-dark article p,
.final-cta p,
.final-cta li,
.page-cta-band p,
.dark-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
}

#challenges .section-heading p {
  color: #0f2f52 !important;
}

.service-family-card li {
  background: #0f2f52 !important;
  color: #ffffff !important;
  border-color: rgba(15, 47, 82, 0.88) !important;
}

.page-cta-band h2,
.page-cta-band p,
.about-final-cta h2,
.about-final-cta p {
  color: #ffffff !important;
}

.page-cta-band h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}

.section-heading h2,
.page-card h2,
.about-text-block h2,
.about-method h2,
.about-experience h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.about-hero-grid,
.about-method-grid,
.image-split {
  align-items: center !important;
}

.about-hero-copy,
.about-founder-visual,
.about-method-grid > div,
.about-flow,
.image-split > * {
  align-self: center;
}

.page-hero h1::after,
.hero h1::after,
.section-heading h2::after,
.positioning-summary h2::after,
.page-card h2::after,
.page-cta-band h2::after,
.about-text-block h2::after,
.about-method h2::after,
.about-implementation h2::after,
.about-experience h2::after {
  content: none !important;
  display: none !important;
}

.section-heading h2,
.page-card h2,
.about-text-block h2,
.about-method h2,
.about-implementation h2,
.about-experience h2 {
  font-family: "Noto Sans Hebrew", sans-serif;
  font-size: clamp(2.02rem, 3vw, 2.58rem);
  font-weight: 800;
  line-height: 1.22;
}

@media (max-width: 759px) {
  .section-heading h2,
  .page-card h2,
  .about-text-block h2,
  .about-method h2,
  .about-implementation h2,
  .about-experience h2 {
    font-size: clamp(1.78rem, 8vw, 2.12rem);
  }
}

/* Unified premium hierarchy */
main h1,
.hero h1,
.page-hero h1,
.solutions-hero h1,
.about-hero h1 {
  font-size: 32px !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
}

main h2,
.section-heading h2,
.positioning-summary h2,
.page-card h2,
.page-cta-band h2,
.article-body h2,
.article-list-card h2,
.article-feature-card h2,
.service-family-card h2,
.about-text-block h2,
.about-method h2,
.about-implementation h2,
.about-experience h2,
.about-final-cta h2 {
  font-size: 28px !important;
  line-height: 1.24 !important;
  font-weight: 800 !important;
}

main h3,
.solution-card h3,
.related-card h3,
.challenge-card h3 {
  font-size: 24px !important;
  line-height: 1.28 !important;
}

.eyebrow,
.page-card .eyebrow,
.article-list-card .eyebrow,
.article-feature-card .eyebrow,
.section-heading .eyebrow,
.lead-content .eyebrow,
.about-page .eyebrow,
.page-hero .eyebrow {
  min-height: 0;
  color: #d79a2b !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.service-family-card > div {
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px 16px;
}

.service-family-card .service-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.service-family-card .eyebrow {
  grid-column: 2;
  grid-row: 1;
  min-height: 52px;
  margin: 0 !important;
  align-items: center;
}

.solution-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px 16px;
}

.solution-card span {
  grid-column: 1;
  grid-row: 1;
  width: 52px;
  height: 52px;
  margin: 0;
  align-self: center;
}

.solution-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: #d79a2b;
  align-self: center;
}

.solution-card p,
.solution-card a {
  grid-column: 1 / -1;
}

@media (max-width: 759px) {
  main h1,
  .hero h1,
  .page-hero h1,
  .solutions-hero h1,
  .about-hero h1 {
    font-size: 32px !important;
  }

  main h2,
  .section-heading h2,
  .positioning-summary h2,
  .page-card h2,
  .page-cta-band h2,
  .article-body h2,
  .article-list-card h2,
  .article-feature-card h2,
  .service-family-card h2,
  .about-text-block h2,
  .about-method h2,
  .about-implementation h2,
  .about-experience h2,
  .about-final-cta h2 {
    font-size: 28px !important;
  }

  .eyebrow,
  .page-card .eyebrow,
  .article-list-card .eyebrow,
  .article-feature-card .eyebrow,
  .section-heading .eyebrow,
  .lead-content .eyebrow,
  .about-page .eyebrow,
  .page-hero .eyebrow {
    font-size: 18px !important;
  }
}

/* Final design-system authority layer */
body {
  background: var(--nb-bg);
}

main h1,
main h2,
main h3,
.page-hero h1,
.section-heading h2,
.service-family-card h2,
.article-list-card h2,
.article-body h2,
.about-text-block h2 {
  color: var(--nb-navy) !important;
}

.section-dark h2,
.section-dark h3,
.page-cta-band h2,
.about-method h2,
.about-final-cta h2,
.final-cta h2 {
  color: #ffffff !important;
}

.section-dark,
.page-cta-band,
.final-cta,
.about-method,
.about-final-cta {
  background: var(--nb-navy) !important;
}

.button,
.nav-cta,
.footer-cta,
button[type="submit"],
.appointment-form button,
.lead-form button,
.article-list-card .button,
.article-feature-card .button,
.page-cta-band .button,
.hero-actions .button,
.service-actions .button {
  min-height: 52px !important;
  height: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px !important;
  border-radius: var(--nb-radius-control) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-gold,
.button-primary,
.nav-cta,
.footer-cta,
button[type="submit"],
.appointment-form button,
.lead-form button,
.page-cta-band .button-gold,
.hero-actions .button:first-child,
.service-actions .button-gold {
  border-color: var(--nb-gold) !important;
  background: var(--nb-gold) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(215, 154, 43, 0.22);
}

.button-gold:hover,
.button-primary:hover,
.nav-cta:hover,
.footer-cta:hover,
button[type="submit"]:hover,
.appointment-form button:hover,
.lead-form button:hover,
.service-actions .button-gold:hover {
  border-color: var(--nb-gold-hover) !important;
  background: var(--nb-gold-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(191, 132, 32, 0.28);
}

.button-ghost,
.button-outline,
.button-light,
.service-actions .button-outline,
.article-list-card .button-outline,
.article-feature-card .button-outline {
  border-color: rgba(15, 47, 82, 0.28) !important;
  background: #ffffff !important;
  color: var(--nb-navy) !important;
  box-shadow: none;
}

.button-ghost:hover,
.button-outline:hover,
.button-light:hover,
.service-actions .button-outline:hover,
.article-list-card .button-outline:hover,
.article-feature-card .button-outline:hover {
  border-color: var(--nb-navy) !important;
  background: rgba(15, 47, 82, 0.05) !important;
  color: var(--nb-navy) !important;
  transform: translateY(-2px);
}

.page-card,
.card,
.article-card,
.article-list-card,
.article-feature-card,
.solution-card,
.service-family-card,
.about-insight-card,
.about-card,
.related-card,
.challenge-card {
  border-radius: var(--nb-radius-card) !important;
  border: 1px solid var(--nb-card-border) !important;
  background: #ffffff !important;
  box-shadow: var(--nb-card-shadow) !important;
}

.page-card:hover,
.card:hover,
.article-card:hover,
.article-list-card:hover,
.article-feature-card:hover,
.solution-card:hover,
.service-family-card:hover,
.about-insight-card:hover,
.about-card:hover,
.related-card:hover,
.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.34) !important;
  box-shadow: var(--nb-card-shadow-hover) !important;
}

.service-family-card,
.article-list-card,
.article-feature-card {
  border-top: 4px solid var(--nb-navy) !important;
}

.service-family-card > div,
.article-list-card > div,
.article-feature-card > div,
.page-card,
.solution-card,
.about-card,
.related-card {
  padding: 28px !important;
}

.service-family-card h2,
.article-list-card h2,
.article-feature-card h2 {
  margin-bottom: 6px !important;
}

.service-family-card > div > p:not(.eyebrow),
.article-list-card p:not(.eyebrow),
.article-feature-card p:not(.eyebrow),
.page-card p,
.solution-card p {
  color: #31536e !important;
  line-height: 1.72;
}

.service-family-card ul {
  gap: 8px;
  margin-top: 6px;
}

.service-family-card li {
  min-height: 46px;
  padding-block: 10px;
  background: var(--nb-navy) !important;
  color: #ffffff !important;
}

.hero-image,
.section-image,
.service-family-card figure,
.article-list-card figure,
.article-feature-card figure,
.article-hero-image,
.about-founder-visual,
.solutions-hero-visual {
  border-radius: var(--nb-radius-card) !important;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 46px rgba(15, 47, 82, 0.12);
  background: #ffffff;
}

.hero-image img,
.section-image img,
.service-family-card img,
.article-list-card img,
.article-feature-card img,
.article-hero-image img,
.about-founder-visual img,
.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.98);
}

.service-family-card figure {
  min-height: 220px;
  aspect-ratio: 16 / 7;
}

.article-list-card figure,
.article-feature-card figure {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.article-hero-image,
.section-image,
.hero-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

@media (max-width: 759px) {
  .section,
  .page-hero,
  .solutions-hero,
  .article-hero,
  .final-cta,
  .page-cta-band {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
  }

  .hero {
    padding-top: 18px !important;
    padding-bottom: 34px !important;
  }

  .service-family-list,
  .article-list-grid,
  .article-feature-grid,
  .solution-cards {
    gap: 18px !important;
  }

  .service-family-card > div,
  .article-list-card > div,
  .article-feature-card > div,
  .page-card,
  .solution-card,
  .about-card,
  .related-card {
    padding: 20px !important;
  }

  .service-family-card figure {
    aspect-ratio: 16 / 8;
  }

  .article-list-card figure,
  .article-feature-card figure {
    aspect-ratio: 16 / 8.5;
  }

  .hero-image,
  .section-image,
  .article-hero-image {
    aspect-ratio: 16 / 10;
  }

  .service-family-card li {
    min-height: 42px;
    padding: 9px 44px 9px 14px;
    line-height: 1.38;
  }

  .service-actions,
  .hero-actions,
  .solutions-hero-actions {
    gap: 10px;
  }

  .button,
  .nav-cta,
  .footer-cta,
  button[type="submit"],
  .appointment-form button,
  .lead-form button,
  .article-list-card .button,
  .article-feature-card .button,
  .page-cta-band .button,
  .hero-actions .button,
  .service-actions .button {
    width: 100%;
    min-height: 50px !important;
    padding: 12px 18px !important;
  }
}

/* Final override: premium article archive cards with stable image-first layout. */
.articles-list-page .article-list-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)) !important;
  align-items: stretch !important;
  gap: 28px !important;
}

.articles-list-page .article-list-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  overflow: hidden !important;
  align-items: stretch !important;
  padding: 0 !important;
  border-radius: 16px !important;
}

.articles-list-page .article-list-card figure {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 16px 16px 0 0 !important;
  box-shadow: none !important;
}

.articles-list-page .article-list-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.articles-list-page .article-list-card > div {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 14px !important;
  padding: 24px !important;
}

.articles-list-page .article-list-card .button {
  justify-self: start !important;
  align-self: end !important;
  min-width: 160px !important;
}
/* Article detail hero images: keep every article cover premium, readable, and not over-zoomed. */
.article-detail .article-hero .container {
  max-width: 1100px;
}

.article-detail .article-hero-image {
  width: 100%;
  max-width: 1100px;
  max-height: 420px;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
}

.article-detail .article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

@media (max-width: 720px) {
  .article-detail .article-hero-image {
    max-height: 280px;
  }

  .article-detail .article-hero-image img {
    max-height: 280px;
  }
}

/* Article reading rhythm: more compact vertical spacing without changing width or type scale. */
.article-detail .article-reading-section,
.article-detail .article-section {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.article-detail .article-body,
.article-detail .article-content {
  gap: 0 !important;
  padding-top: 28px;
  padding-bottom: 28px;
}

.article-detail .article-body p,
.article-detail .article-content p {
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.65;
}

.article-detail .article-body h2,
.article-detail .article-content h2 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.article-detail .article-body h3,
.article-detail .article-content h3 {
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

/* Home brochure strip */
.brochure-strip-section {
  padding-top: 42px;
  padding-bottom: 42px;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 52%, #edf3f8 100%);
}

.brochure-strip-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(15, 47, 82, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(6, 27, 53, 0.09);
  overflow: hidden;
}

.brochure-strip-content {
  display: grid;
  gap: 14px;
  align-content: center;
}

.brochure-strip-content h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.22;
}

.brochure-strip-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #1f2937;
  font-size: 1.05rem;
  line-height: 1.7;
}

.brochure-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.brochure-strip-cover {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.12);
}

.brochure-strip-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.brochure-marquee {
  grid-column: 1 / -1;
  width: 100%;
  overflow: hidden;
  padding-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brochure-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: brochureSlide 34s linear infinite;
}

.brochure-marquee:hover .brochure-marquee-track {
  animation-play-state: paused;
}

.brochure-mini-card {
  flex: 0 0 275px;
  min-height: 128px;
  display: block;
  padding: 20px;
  border-radius: 16px;
  background: var(--blue-950);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(215, 154, 43, 0.34);
  box-shadow: 0 14px 32px rgba(6, 27, 53, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brochure-mini-card:hover,
.brochure-mini-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215, 154, 43, 0.78);
  box-shadow: 0 18px 40px rgba(6, 27, 53, 0.18);
  outline: none;
}

.brochure-mini-card h3 {
  margin: 0 0 8px;
  color: var(--gold-600);
  font-size: 1.12rem;
  line-height: 1.25;
}

.brochure-mini-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
}

@keyframes brochureSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

@media (max-width: 860px) {
  .brochure-strip-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .brochure-strip-cover {
    max-width: 520px;
    justify-self: center;
  }

  .brochure-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .brochure-marquee-track {
    animation: none;
    width: auto;
    padding-bottom: 8px;
  }

  .brochure-mini-card[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brochure-marquee-track {
    animation: none;
  }
}

/* Home brochure strip final balance */
.home-page .brochure-strip-section {
  padding-top: 32px !important;
  padding-bottom: 34px !important;
}

.home-page .brochure-strip-panel {
  grid-template-columns: minmax(420px, 1.28fr) minmax(260px, 0.72fr) !important;
  gap: 34px !important;
  align-items: center !important;
  padding: 28px !important;
  overflow: visible !important;
}

.home-page .brochure-strip-content {
  max-width: 680px;
  gap: 12px !important;
  justify-self: stretch;
}

.home-page .brochure-strip-content .eyebrow {
  margin-bottom: 0 !important;
}

.home-page .brochure-strip-content h2 {
  font-size: clamp(1.85rem, 2.45vw, 2.25rem) !important;
  line-height: 1.25 !important;
}

.home-page .brochure-strip-content > p:not(.eyebrow) {
  max-width: 650px !important;
  font-size: 1.12rem !important;
  line-height: 1.68 !important;
}

.home-page .brochure-strip-actions {
  margin-top: 4px !important;
  gap: 10px !important;
}

.home-page .brochure-strip-cover {
  justify-self: center;
  width: 100%;
  max-width: 430px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden !important;
}

.home-page .brochure-strip-cover img {
  width: 100% !important;
  height: auto !important;
  max-height: 500px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

.home-page .brochure-marquee {
  padding-top: 2px !important;
  overflow: hidden !important;
}

.home-page .brochure-marquee-track {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  animation: none !important;
}

.home-page .brochure-mini-card {
  flex-basis: auto !important;
  min-height: 118px !important;
  padding: 18px 20px !important;
  overflow: visible !important;
}

.home-page .brochure-mini-card h3 {
  font-size: 1.16rem !important;
  margin-bottom: 7px !important;
}

.home-page .brochure-mini-card p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .home-page .brochure-strip-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 24px !important;
  }

  .home-page .brochure-strip-content {
    max-width: none;
  }

  .home-page .brochure-strip-cover {
    max-width: 480px;
    max-height: 420px;
  }

  .home-page .brochure-strip-cover img {
    max-height: 420px !important;
  }
}

@media (max-width: 640px) {
  .home-page .brochure-strip-section {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  .home-page .brochure-strip-panel {
    padding: 18px !important;
    gap: 18px !important;
  }

  .home-page .brochure-strip-content h2 {
    font-size: 1.7rem !important;
  }

  .home-page .brochure-strip-content > p:not(.eyebrow) {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .home-page .brochure-strip-cover {
    max-width: 100%;
    max-height: 320px;
  }

  .home-page .brochure-strip-cover img {
    max-height: 320px !important;
  }

  .home-page .brochure-mini-card {
    flex-basis: auto !important;
    min-height: auto !important;
    padding: 16px !important;
  }
}

@media (max-width: 760px) {
  .home-page .brochure-marquee-track {
    grid-template-columns: 1fr !important;
  }
}

/* About page image reorganization */
.about-page .about-hero-grid {
  align-items: center !important;
}

.about-page .about-founder-visual {
  max-width: 460px;
  justify-self: start;
  aspect-ratio: 4 / 5;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.about-page .about-founder-visual img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block;
  object-fit: cover !important;
  object-position: center top !important;
}

.about-page .about-experience-photo {
  width: min(500px, 100%) !important;
  aspect-ratio: 16 / 10;
  justify-self: start;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.about-page .about-experience-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  .about-page .about-founder-visual,
  .about-page .about-experience-photo {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .about-page .about-founder-visual {
    max-width: 360px;
  }

  .about-page .about-experience-photo {
    width: 100% !important;
  }
}

/* Article magazine layout refinement */
.article-detail .article-hero-image {
  height: 400px !important;
  max-height: 400px !important;
}

.article-detail .article-hero-image img {
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 720px) {
  .article-detail .article-hero-image {
    height: 260px !important;
    max-height: 260px !important;
  }
}

/* Final service navigation and density pass */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  width: 100%;
}

.nav-submenu {
  display: grid;
  gap: 4px;
}

@media (min-width: 980px) {
  .nav-dropdown {
    min-height: auto;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% - 14px);
    right: 0;
    width: min(360px, 90vw);
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 47, 82, 0.12);
    box-shadow: 0 18px 44px rgba(15, 47, 82, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    z-index: 80;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav .nav-submenu a {
    min-height: auto;
    padding: 12px 14px;
    border-radius: 10px;
    color: #0f2f52;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    white-space: normal;
  }

  .primary-nav .nav-submenu a:hover {
    background: rgba(215, 154, 43, 0.1);
    color: #0f2f52;
  }
}

@media (max-width: 979px) {
  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .primary-nav .nav-dropdown > a {
    border-bottom: 1px solid var(--line);
  }

  .nav-submenu {
    padding: 8px 14px 12px;
    background: #f7f9fc;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-submenu a {
    min-height: 42px;
    padding: 8px 12px;
    border: 0;
    border-radius: 10px;
    color: #123b66;
    font-size: 1rem;
    font-weight: 800;
  }

  .primary-nav .nav-submenu a:hover {
    background: #ffffff;
    color: #d79a2b;
  }
}

.solutions-page .solutions-hero {
  padding-top: 30px !important;
  padding-bottom: 34px !important;
}

.solutions-page .solutions-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr) !important;
  gap: 28px !important;
  align-items: center !important;
}

.solutions-page .solutions-hero-copy {
  padding: 28px !important;
}

.solutions-page .solutions-hero-copy h1 {
  margin-bottom: 12px !important;
}

.solutions-page .solutions-hero-copy p {
  margin-bottom: 14px !important;
}

.solutions-page .solutions-hero-visual {
  min-height: 0 !important;
  max-height: 360px !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
}

.solutions-page .solutions-hero-visual img {
  width: 100% !important;
  height: 100% !important;
  max-height: 360px !important;
  object-fit: cover !important;
  object-position: center !important;
}

.solutions-page .solutions-hero-visual figcaption,
.solutions-page .solutions-hero-visual::after {
  display: none !important;
}

.solutions-service-access {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.solutions-service-access a {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 20px;
  border-radius: 16px;
  background: #0f2f52;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(215, 154, 43, 0.28);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solutions-service-access a:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.72);
  box-shadow: 0 20px 44px rgba(15, 47, 82, 0.18);
}

.solutions-service-access span {
  color: #d79a2b;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.solutions-service-access small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.solutions-page .section {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.solutions-page .service-families {
  padding-top: 34px !important;
}

.solutions-page .page-cta-band {
  padding-top: 32px !important;
  padding-bottom: 34px !important;
}

.solutions-page .service-family-list {
  gap: 24px !important;
}

.solutions-page .service-family-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.solutions-page .service-family-link:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.46) !important;
  box-shadow: 0 22px 52px rgba(15, 47, 82, 0.14) !important;
}

.solutions-page .service-family-link .button {
  pointer-events: none;
}

.solutions-page .service-family-card > figure {
  min-height: 300px !important;
}

.service-detail-page .page-main > .section,
.service-detail-page .service-problem-section,
.service-detail-page .service-work-section,
.service-detail-page .service-pillars-section,
.service-detail-page .service-method-section,
.service-detail-page .service-deliverables-section,
.service-detail-page .service-faq-section {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.service-detail-page .service-detail-hero {
  padding-top: 24px !important;
  padding-bottom: 36px !important;
}

.service-detail-page .breadcrumbs {
  padding-top: 16px !important;
}

.service-detail-page .service-detail-hero-grid {
  max-width: 1180px;
  gap: 28px !important;
}

.service-detail-page .service-detail-copy {
  padding: 28px !important;
}

.service-detail-page .service-detail-visual {
  min-height: 340px !important;
  max-height: 390px !important;
}

.service-detail-page .section-heading {
  margin-bottom: 24px !important;
}

.service-detail-page .service-split-card,
.service-detail-page .service-method-card,
.service-detail-page .page-card {
  padding: 28px !important;
}

.service-detail-page .service-action-grid,
.service-detail-page .service-pillar-grid,
.service-detail-page .service-two-columns {
  gap: 16px !important;
}

.service-detail-page .service-pillar-grid article {
  min-height: 210px !important;
  padding: 22px !important;
}

.service-detail-page .check-list {
  gap: 8px !important;
}

.service-detail-page .faq-accordion {
  gap: 10px !important;
}

@media (max-width: 979px) {
  .solutions-page .solutions-hero-grid,
  .solutions-service-access {
    grid-template-columns: 1fr !important;
  }

  .solutions-page .solutions-hero-visual {
    max-height: 280px !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 720px) {
  .solutions-page .section,
  .service-detail-page .page-main > .section,
  .service-detail-page .service-problem-section,
  .service-detail-page .service-work-section,
  .service-detail-page .service-pillars-section,
  .service-detail-page .service-method-section,
  .service-detail-page .service-deliverables-section,
  .service-detail-page .service-faq-section {
    padding-top: 32px !important;
    padding-bottom: 34px !important;
  }

  .solutions-page .solutions-hero,
  .service-detail-page .service-detail-hero {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
  }

  .solutions-service-access a {
    min-height: auto;
    padding: 17px;
  }

  .service-detail-page .service-detail-copy,
  .service-detail-page .service-split-card,
  .service-detail-page .service-method-card,
  .service-detail-page .page-card {
    padding: 20px !important;
  }

  .service-detail-page .service-detail-visual {
    min-height: 230px !important;
    max-height: 270px !important;
  }
}

/* Programme 360 final alignment and compact spacing */
.programme-360-page .programme-hero {
  padding-top: 34px !important;
  padding-bottom: 38px !important;
}

.programme-360-page .programme-hero-inner {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr) !important;
  gap: 30px !important;
  align-items: stretch !important;
  max-width: 1180px;
}

.programme-360-page .programme-logo-hero,
.programme-360-page .programme-hero-copy {
  align-self: stretch !important;
}

.programme-360-page .programme-logo-hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 430px !important;
  margin: 0 !important;
  padding: 24px !important;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.1);
}

.programme-360-page .programme-logo-hero img {
  width: 100% !important;
  max-width: 390px !important;
  max-height: 390px !important;
  height: auto !important;
  object-fit: contain !important;
}

.programme-360-page .programme-hero-copy {
  display: grid !important;
  align-content: center !important;
  gap: 14px !important;
  padding: 28px !important;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.08);
}

.programme-360-page .programme-hero-copy h1 {
  margin: 0 !important;
}

.programme-360-page .programme-hero-lead {
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.programme-360-page .programme-hero-intro {
  max-width: none !important;
  padding: 18px !important;
  gap: 7px !important;
  box-shadow: none !important;
}

.programme-360-page .programme-hero-intro p {
  font-size: 16.5px !important;
  line-height: 1.62 !important;
}

.programme-360-page .section {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.programme-360-page .programme-solution-intro {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

.programme-360-page .programme-solution-intro .image-split {
  display: grid !important;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.programme-360-page .programme-solution-intro .section-image,
.programme-360-page .programme-solution-copy {
  min-height: 430px !important;
  align-self: stretch !important;
}

.programme-360-page .programme-solution-intro .section-image {
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

.programme-360-page .programme-solution-intro .section-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.programme-360-page .programme-solution-copy {
  display: grid !important;
  align-content: center !important;
  padding: 28px !important;
}

.programme-360-page .programme-solution-copy > h2 {
  margin-bottom: 10px !important;
}

.programme-360-page .programme-solution-copy > p {
  margin-bottom: 14px !important;
}

.programme-360-page .programme-engines-list {
  gap: 10px !important;
}

.programme-360-page .programme-engines-list section {
  padding: 16px !important;
}

.programme-360-page .programme-client-value {
  padding-top: 36px !important;
  padding-bottom: 38px !important;
}

.programme-360-page .programme-client-value-card {
  padding: 28px !important;
}

.programme-360-page .programme-client-value-card h2 {
  margin-bottom: 18px !important;
}

.programme-360-page .programme-client-value-grid {
  gap: 10px !important;
}

.programme-360-page .programme-client-value-grid span {
  min-height: 58px !important;
  padding: 12px 14px !important;
}

.programme-360-page .page-grid.four {
  gap: 16px !important;
}

.programme-360-page .page-grid.four .page-card {
  padding: 24px !important;
}

.programme-360-page .page-cta-band {
  padding-top: 34px !important;
  padding-bottom: 36px !important;
}

@media (max-width: 980px) {
  .programme-360-page .programme-hero-inner,
  .programme-360-page .programme-solution-intro .image-split {
    grid-template-columns: 1fr !important;
  }

  .programme-360-page .programme-logo-hero {
    min-height: 300px !important;
  }

  .programme-360-page .programme-logo-hero img {
    max-height: 290px !important;
  }

  .programme-360-page .programme-solution-intro .section-image,
  .programme-360-page .programme-solution-copy {
    min-height: auto !important;
  }

  .programme-360-page .programme-solution-intro .section-image {
    height: 300px !important;
  }
}

@media (max-width: 640px) {
  .programme-360-page .programme-hero,
  .programme-360-page .section,
  .programme-360-page .programme-solution-intro,
  .programme-360-page .programme-client-value,
  .programme-360-page .page-cta-band {
    padding-top: 30px !important;
    padding-bottom: 32px !important;
  }

  .programme-360-page .programme-hero-inner {
    gap: 18px !important;
  }

  .programme-360-page .programme-logo-hero,
  .programme-360-page .programme-hero-copy,
  .programme-360-page .programme-solution-copy,
  .programme-360-page .programme-client-value-card {
    padding: 20px !important;
  }

  .programme-360-page .programme-logo-hero {
    min-height: 240px !important;
  }

  .programme-360-page .programme-logo-hero img {
    max-height: 220px !important;
  }

  .programme-360-page .programme-solution-intro .section-image {
    height: 230px !important;
  }
}

/* Programme 360 - final compact layout for the engines section */
.programme-360-page {
  overflow-x: clip;
}

.programme-360-page .programme-hero {
  padding-top: 28px !important;
  padding-bottom: 30px !important;
}

.programme-360-page .section,
.programme-360-page .programme-client-value {
  padding-top: 34px !important;
  padding-bottom: 36px !important;
}

.programme-360-page .programme-solution-intro {
  padding-top: 30px !important;
  padding-bottom: 34px !important;
}

.programme-360-page .programme-hero-inner {
  gap: 24px !important;
}

.programme-360-page .programme-logo-hero {
  min-height: 380px !important;
  padding: 20px !important;
}

.programme-360-page .programme-logo-hero img {
  max-width: 350px !important;
  max-height: 350px !important;
}

.programme-360-page .programme-hero-copy,
.programme-360-page .programme-client-value-card,
.programme-360-page .page-grid.four .page-card {
  padding: 24px !important;
}

.programme-360-page .programme-hero-intro {
  padding: 14px 16px !important;
  gap: 5px !important;
}

.programme-360-page .programme-solution-intro .image-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
  overflow: visible !important;
  isolation: isolate;
}

.programme-360-page .programme-solution-copy {
  position: relative;
  z-index: 2;
  min-height: 0 !important;
  height: auto !important;
  align-content: start !important;
  padding: 24px !important;
  overflow: visible !important;
}

.programme-360-page .programme-solution-copy > h2 {
  margin: 0 0 8px !important;
}

.programme-360-page .programme-solution-copy > p {
  margin: 0 0 14px !important;
}

.programme-360-page .programme-engines-list {
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
}

.programme-360-page .programme-engines-list section {
  min-height: 0 !important;
  height: auto !important;
  padding: 17px !important;
  overflow: visible !important;
  transform: none;
}

.programme-360-page .programme-engines-list section:hover {
  transform: translateY(-3px);
}

.programme-360-page .programme-engines-list h3 {
  margin-bottom: 7px !important;
}

.programme-360-page .programme-engines-list p {
  line-height: 1.52 !important;
}

.programme-360-page .programme-solution-intro .section-image {
  position: relative;
  z-index: 1;
  min-height: 0 !important;
  height: auto !important;
  max-width: 100% !important;
  overflow: hidden !important;
  align-self: stretch !important;
}

.programme-360-page .programme-solution-intro .section-image picture,
.programme-360-page .programme-solution-intro .section-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
}

.programme-360-page .programme-solution-intro .section-image img {
  object-fit: cover !important;
  object-position: center right !important;
}

.programme-360-page .programme-client-value-card h2 {
  margin-bottom: 14px !important;
}

.programme-360-page .programme-client-value-grid,
.programme-360-page .page-grid.four {
  gap: 12px !important;
}

.programme-360-page .page-cta-band {
  padding-top: 30px !important;
  padding-bottom: 32px !important;
}

@media (max-width: 980px) {
  .programme-360-page .programme-solution-intro .image-split {
    grid-template-columns: 1fr !important;
  }

  .programme-360-page .programme-solution-copy {
    order: 1;
  }

  .programme-360-page .programme-solution-intro .section-image {
    order: 2;
    height: 280px !important;
  }
}

@media (max-width: 640px) {
  .programme-360-page .programme-hero,
  .programme-360-page .section,
  .programme-360-page .programme-solution-intro,
  .programme-360-page .programme-client-value,
  .programme-360-page .page-cta-band {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  .programme-360-page .programme-hero-copy,
  .programme-360-page .programme-solution-copy,
  .programme-360-page .programme-client-value-card,
  .programme-360-page .page-grid.four .page-card {
    padding: 18px !important;
  }

  .programme-360-page .programme-logo-hero {
    min-height: 220px !important;
  }

  .programme-360-page .programme-engines-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .programme-360-page .programme-solution-intro .section-image {
    height: 220px !important;
  }
}

/* Programme 360 - anti clipping refinement */
.programme-360-page .programme-solution-intro .container.image-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr) !important;
  align-items: stretch !important;
  gap: 20px !important;
  max-width: 1120px !important;
  overflow: visible !important;
}

.programme-360-page .programme-solution-intro .page-card.programme-solution-copy {
  box-sizing: border-box;
  min-width: 0 !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  padding: 22px !important;
  overflow: visible !important;
}

.programme-360-page .programme-solution-intro .page-card.programme-solution-copy:hover {
  transform: none !important;
}

.programme-360-page .programme-solution-copy .programme-engines-list {
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.programme-360-page .programme-solution-copy .programme-engines-list section {
  box-sizing: border-box;
  min-height: 118px !important;
  max-height: none !important;
  display: grid !important;
  align-content: start !important;
  padding: 16px 17px !important;
  overflow: visible !important;
}

.programme-360-page .programme-solution-copy .programme-engines-list section:hover {
  transform: translateY(-2px) !important;
}

.programme-360-page .programme-solution-copy .programme-engines-list h3,
.programme-360-page .programme-solution-copy .programme-engines-list p {
  overflow: visible !important;
}

.programme-360-page .programme-solution-intro .section-image {
  box-sizing: border-box;
  min-width: 0 !important;
  min-height: 360px !important;
  height: 100% !important;
  max-height: 430px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
}

.programme-360-page .programme-solution-intro .section-image img {
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center right !important;
}

.programme-360-page .programme-client-value {
  padding-top: 28px !important;
  padding-bottom: 30px !important;
}

.programme-360-page .page-grid.four .page-card {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

@media (max-width: 980px) {
  .programme-360-page .programme-solution-intro .container.image-split {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .programme-360-page .programme-solution-intro .section-image {
    min-height: 260px !important;
    height: 280px !important;
    max-height: 300px !important;
  }
}

@media (max-width: 640px) {
  .programme-360-page .programme-solution-intro .page-card.programme-solution-copy {
    padding: 18px !important;
  }

  .programme-360-page .programme-solution-copy .programme-engines-list section {
    min-height: auto !important;
    padding: 15px !important;
  }

  .programme-360-page .programme-solution-intro .section-image {
    min-height: 210px !important;
    height: 220px !important;
    max-height: 240px !important;
  }
}

/* Premium service detail pages */
.service-detail-page .breadcrumbs,
.service-growth-page .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
}

.service-detail-page .breadcrumbs a,
.service-growth-page .breadcrumbs a {
  color: #123b66;
  font-weight: 800;
  text-decoration: none;
}

.service-detail-page .breadcrumbs a:hover,
.service-growth-page .breadcrumbs a:hover {
  color: #d79a2b;
}

.service-detail-hero {
  padding-top: 30px;
  padding-bottom: 48px;
  background: #f7f9fc;
}

.service-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.service-detail-copy {
  align-content: center;
  gap: 16px;
  padding: 34px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.08);
}

.service-detail-copy h1 {
  margin: 0;
}

.service-detail-copy p {
  margin: 0;
  color: #31536e;
  font-size: 18px;
  line-height: 1.75;
}

.service-detail-copy .service-hero-lead {
  color: #0f2f52;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.55;
}

.service-detail-copy .button {
  width: fit-content;
  margin-top: 6px;
}

.service-detail-visual {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 22px 52px rgba(15, 47, 82, 0.13);
  background: #ffffff;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-split-card,
.service-method-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 18px 44px rgba(15, 47, 82, 0.08);
}

.service-split-card h2,
.service-method-card h2 {
  margin: 0;
}

.service-rich-text {
  display: grid;
  gap: 12px;
}

.service-rich-text p,
.service-method-card p {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.78;
}

.service-action-grid,
.service-pillar-grid,
.service-two-columns {
  display: grid;
  gap: 18px;
}

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

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

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

.service-pillar-grid article {
  min-height: 245px;
  padding: 24px;
  border-radius: 16px;
  background: #0f2f52;
  border: 1px solid rgba(215, 154, 43, 0.24);
  box-shadow: 0 16px 36px rgba(15, 47, 82, 0.12);
}

.service-pillar-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d79a2b;
  font-size: 18px;
  font-weight: 800;
}

.service-pillar-grid h3 {
  margin: 0 0 10px;
  color: #ffffff !important;
}

.service-pillar-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}

.service-method-card {
  grid-template-columns: 1fr;
  background: #0f2f52;
  color: #ffffff;
}

.service-method-card h2,
.service-method-card p {
  color: #ffffff !important;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.method-steps span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(215, 154, 43, 0.32);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 42px 12px 16px;
  border-radius: 12px;
  background: #0f2f52;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d79a2b;
  transform: translateY(-50%);
}

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

.faq-accordion details {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.06);
  overflow: hidden;
}

.faq-accordion summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #0f2f52;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.faq-accordion details[open] summary {
  color: #d79a2b;
}

.faq-accordion p {
  margin: 0;
  padding: 0 22px 20px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1020px) {
  .service-detail-hero-grid,
  .service-split-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .service-detail-copy,
  .service-split-card,
  .service-method-card {
    padding: 22px;
  }

  .service-detail-copy .button {
    width: 100%;
  }

  .service-detail-visual {
    min-height: 260px;
  }

  .service-action-grid,
  .service-pillar-grid,
  .service-two-columns,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .service-pillar-grid article {
    min-height: auto;
  }
}

/* Global Hebrew typography */
html,
body,
*,
*::before,
*::after,
button,
input,
select,
textarea,
option,
optgroup,
::placeholder {
  font-family: "Noto Sans Hebrew", sans-serif !important;
}

body {
  font-weight: 400;
}

p,
li,
small,
label,
input,
select,
textarea,
summary {
  font-weight: 400;
}

.article-body p,
.article-content p,
.about-prose p,
.service-detail-page p {
  font-weight: 400;
}

.primary-nav a,
.nav-submenu a,
.button,
.nav-cta,
.footer-cta,
.mobile-sticky-cta,
.challenge-link {
  font-weight: 600 !important;
}

h1,
h2,
h3 {
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.about-hero h1,
.service-detail-copy h1 {
  font-weight: 800;
}

/* Home challenge cards as service entry points */
.home-page .challenge-card {
  text-decoration: none;
  cursor: pointer;
}

.home-page .challenge-card-copy {
  position: relative;
  z-index: 2;
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(13, 41, 71, 0.96), rgba(8, 35, 61, 0.99));
  color: #ffffff;
}

.home-page .challenge-card-copy h3 {
  min-height: auto;
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #ffffff !important;
  font-size: clamp(1.22rem, 1.65vw, 1.42rem);
  line-height: 1.25;
  text-align: right;
  place-items: initial;
}

.home-page .challenge-card-copy p {
  margin: 0;
  color: #ffffff !important;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.48;
}

.home-page .challenge-card-copy .challenge-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 3px;
  color: #d79a2b !important;
  font-size: 0.96rem;
  line-height: 1.25;
}

.home-page .challenge-card:hover .challenge-link,
.home-page .challenge-card:focus-visible .challenge-link {
  color: #ffffff !important;
}

/* Absolute final lock: keep the hero badge blue and the about method cards readable */
.home-page .hero-badge {
  background: #123b66 !important;
  color: #ffffff !important;
  border-color: rgba(215, 154, 43, 0.72) !important;
  font-size: clamp(1.01rem, 1.34vw, 1.16rem) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.18) !important;
}

.about-page .about-method .about-flow {
  background: rgba(255, 255, 255, 0.94) !important;
}

.about-page .about-method .about-flow div {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.about-page .about-method .about-flow div strong {
  color: #d79a2b !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow div small {
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow > span,
.about-page .about-method .about-flow::before {
  color: #d79a2b !important;
}

.appointment-source,
#source-label {
  display: none !important;
}

/* Final color choice for the four cards in about / work philosophy */
.about-page .about-method .about-flow div strong {
  color: #d79a2b !important;
}

.about-page .about-method .about-flow div small {
  color: #0f2f52 !important;
}

/* About page compact premium text-image composition */
.about-page .about-hero,
.about-page .about-narrative,
.about-page .about-experience,
.about-page .about-implementation,
.about-page .about-final-cta {
  padding-block: clamp(28px, 4vw, 48px) !important;
}

.about-page .about-hero-grid,
.about-page .about-experience-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
  align-items: stretch !important;
  gap: clamp(24px, 4vw, 42px) !important;
}

.about-page .about-hero-copy,
.about-page .about-experience-intro .section-heading {
  display: grid !important;
  align-content: center !important;
  max-width: none !important;
  min-height: 100% !important;
  padding: clamp(22px, 3vw, 36px) !important;
  border: 1px solid rgba(15, 47, 82, 0.1) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.08) !important;
}

.about-page .about-founder-visual,
.about-page .about-experience-photo {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  max-height: 460px !important;
  margin: 0 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.12) !important;
}

.about-page .about-founder-visual picture,
.about-page .about-experience-photo picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.about-page .about-founder-visual img,
.about-page .about-experience-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
}

.about-page .about-founder-visual img {
  object-position: center top !important;
}

.about-page .about-experience-photo img {
  object-position: center !important;
}

.about-page .about-text-block,
.about-page .about-panel {
  padding: clamp(22px, 3vw, 36px) !important;
  border-radius: 20px !important;
}

.about-page .about-text-block {
  max-width: 980px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(15, 47, 82, 0.1) !important;
  box-shadow: 0 16px 34px rgba(6, 27, 53, 0.07) !important;
}

.about-page .about-method {
  padding-block: clamp(34px, 4.5vw, 52px) !important;
}

.about-page .about-method-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
  align-items: stretch !important;
  gap: clamp(24px, 4vw, 42px) !important;
}

.about-page .about-method-copy,
.about-page .about-flow {
  align-self: stretch !important;
}

.about-page .about-method-copy {
  display: grid !important;
  align-content: center !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.about-page .about-flow {
  width: 100% !important;
  max-width: 460px !important;
  padding: clamp(18px, 2.6vw, 26px) !important;
}

.about-page .about-flow div {
  min-height: 88px !important;
  padding-block: 14px !important;
}

.about-page .about-signature-card {
  padding: clamp(20px, 2.8vw, 28px) !important;
}

.about-page .about-card-grid {
  margin-top: clamp(22px, 3vw, 32px) !important;
}

.about-page .about-proof-strip {
  margin-top: clamp(22px, 3vw, 32px) !important;
}

@media (max-width: 980px) {
  .about-page .about-hero-grid,
  .about-page .about-experience-intro,
  .about-page .about-method-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .about-page .about-founder-visual,
  .about-page .about-experience-photo {
    min-height: 280px !important;
    max-height: 340px !important;
  }

  .about-page .about-flow {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero,
  .about-page .about-narrative,
  .about-page .about-experience,
  .about-page .about-method,
  .about-page .about-implementation,
  .about-page .about-final-cta {
    padding-block: 28px !important;
  }

  .about-page .about-hero-copy,
  .about-page .about-experience-intro .section-heading,
  .about-page .about-text-block,
  .about-page .about-panel,
  .about-page .about-method-copy {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .about-page .about-founder-visual,
  .about-page .about-experience-photo {
    min-height: 220px !important;
    max-height: 300px !important;
    border-radius: 18px !important;
  }

  .about-page .about-flow {
    padding: 18px !important;
  }
}

/* Final fixes: hero badge and visible method cards */
.home-page .hero-badge {
  background: #123b66 !important;
  color: #ffffff !important;
  border-color: rgba(215, 154, 43, 0.72) !important;
  font-size: clamp(1.01rem, 1.34vw, 1.16rem) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.18) !important;
}

.about-page .about-method .about-flow {
  background: rgba(255, 255, 255, 0.94) !important;
}

.about-page .about-method .about-flow div {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.about-page .about-method .about-flow div strong {
  color: #d79a2b !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow div small {
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow > span,
.about-page .about-method .about-flow::before {
  color: #d79a2b !important;
}

.appointment-source,
#source-label {
  display: none !important;
}

/* Final visibility lock for the about method cards */
.about-page .about-method .about-flow div {
  display: grid !important;
  place-items: center !important;
  gap: 5px !important;
  min-height: 102px !important;
  overflow: visible !important;
  background: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow div strong,
.about-page .about-method .about-flow div small {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-align: center !important;
  line-height: 1.3 !important;
  transform: none !important;
}

.about-page .about-method .about-flow div strong {
  color: #0f2f52 !important;
  font-size: 1.42rem !important;
  font-weight: 800 !important;
}

.about-page .about-method .about-flow div small {
  color: #0f2f52 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.about-page .about-method .about-flow > span {
  color: #d79a2b !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Home hero badge refinement */
.home-page .hero-badge {
  background: #123b66 !important;
  color: #ffffff !important;
  border-color: rgba(215, 154, 43, 0.72) !important;
  font-size: clamp(1.03rem, 1.32vw, 1.16rem) !important;
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.16) !important;
}

.home-page .hero-badge::before,
.home-page .hero-badge::after {
  background: rgba(215, 154, 43, 0.72) !important;
}

/* Premium consulting method composition */
.about-page .about-method {
  position: relative;
  padding-top: 56px !important;
  padding-bottom: 58px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 154, 43, 0.16), transparent 30%),
    linear-gradient(135deg, #0f2f52 0%, #123b66 52%, #08233d 100%) !important;
  overflow: hidden;
}

.about-page .about-method::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.about-page .about-method-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) !important;
  gap: clamp(34px, 5vw, 64px) !important;
  align-items: center !important;
}

.about-page .about-method-copy {
  max-width: 620px;
  padding: 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 62px rgba(6, 27, 53, 0.22);
}

.about-page .about-method-copy .eyebrow {
  margin-bottom: 12px;
  color: #d79a2b !important;
  font-weight: 800;
}

.about-page .about-method-copy h2 {
  margin-bottom: 18px !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 3vw, 2.55rem) !important;
  line-height: 1.18 !important;
}

.about-page .about-method-copy .about-prose {
  display: grid;
  gap: 10px;
}

.about-page .about-method-copy .about-prose p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.72;
}

.about-page .about-flow {
  position: relative;
  width: min(100%, 430px);
  justify-self: center;
  gap: 12px !important;
  padding: 26px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.36) !important;
  box-shadow: 0 30px 72px rgba(6, 27, 53, 0.24);
}

.about-page .about-flow::before {
  content: "שיטת נתיבי בינה";
  display: block;
  width: 100%;
  margin-bottom: 6px;
  color: #d79a2b;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.about-page .about-flow div {
  position: relative;
  width: 100% !important;
  min-height: 102px !important;
  padding: 18px 22px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(15, 47, 82, 0.12) !important;
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.1) !important;
}

.about-page .about-flow div::before {
  position: absolute;
  inset-inline-start: 18px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0f2f52;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-page .about-flow div:nth-of-type(1)::before {
  content: "01";
}

.about-page .about-flow div:nth-of-type(2)::before {
  content: "02";
}

.about-page .about-flow div:nth-of-type(3)::before {
  content: "03";
}

.about-page .about-flow div:nth-of-type(4)::before {
  content: "04";
}

.about-page .about-flow div:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 44px rgba(15, 47, 82, 0.18) !important;
}

.about-page .about-flow strong {
  color: #0f2f52 !important;
  font-size: 1.42rem !important;
  font-weight: 800 !important;
}

.about-page .about-flow small {
  color: #123b66 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.about-page .about-flow > span {
  height: 18px;
  color: #d79a2b !important;
  font-size: 1.2rem !important;
}

@media (max-width: 980px) {
  .about-page .about-method-grid {
    grid-template-columns: 1fr !important;
  }

  .about-page .about-method-copy,
  .about-page .about-flow {
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .about-page .about-method {
    padding-top: 38px !important;
    padding-bottom: 42px !important;
  }

  .about-page .about-method::before {
    inset: 12px;
  }

  .about-page .about-method-copy,
  .about-page .about-flow {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .about-page .about-flow div {
    min-height: 96px !important;
  }
}

.about-page .about-flow div,
.about-page .about-flow div strong,
.about-page .about-flow div small {
  color: #0f2f52 !important;
}

.about-page .about-flow div small {
  color: #123b66 !important;
}

.about-page .about-flow > span {
  color: #d79a2b !important;
}

/* Home commercial refinement */
.home-page .hero-badge {
  max-width: min(1120px, calc(100vw - 36px));
  padding: 8px 24px !important;
  color: #d79a2b;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

.home-page .hero {
  padding-bottom: 26px !important;
}

.home-page .page-main .section,
.home-page .section {
  padding-top: 38px !important;
  padding-bottom: 40px !important;
}

.home-page .hero + .home-credibility-section {
  padding-top: 30px !important;
}

.home-credibility-section {
  background: #ffffff;
}

.home-credibility-section .section-heading {
  margin-bottom: 18px !important;
}

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

.home-credibility-card {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #0f2f52;
  border: 1px solid rgba(215, 154, 43, 0.28);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.1);
  color: #ffffff;
  text-align: center;
}

.home-credibility-card strong {
  color: #d79a2b;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.home-credibility-card p {
  margin: 0;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-page .challenges-layout {
  gap: 24px !important;
}

.home-page .section-heading {
  margin-bottom: 18px !important;
}

.home-page .challenge-card {
  min-height: 0;
}

.home-page .challenge-photo,
.home-page .challenge-photo img {
  min-height: 178px !important;
}

.home-page .challenge-card-copy {
  min-height: 148px;
  padding: 14px 18px 16px;
  gap: 6px;
  align-content: center;
}

.home-page .challenge-card-copy h3 {
  font-size: clamp(1.16rem, 1.45vw, 1.32rem);
}

.home-page .challenge-card-copy p {
  font-size: 0.93rem;
  line-height: 1.42;
}

.home-page .section-cta {
  margin-top: 18px !important;
  padding: 18px !important;
}

.home-page .brochure-strip-section {
  padding-top: 30px !important;
  padding-bottom: 32px !important;
}

.home-page .brochure-strip-panel {
  padding: 24px !important;
}

@media (max-width: 980px) {
  .home-credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-badge {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .home-page .hero-badge {
    max-width: calc(100vw - 28px);
    padding: 8px 14px !important;
    font-size: 0.92rem !important;
  }

  .home-page .page-main .section,
  .home-page .section {
    padding-top: 28px !important;
    padding-bottom: 30px !important;
  }

  .home-credibility-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-credibility-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .home-page .challenge-photo,
  .home-page .challenge-photo img {
    min-height: 160px !important;
  }

  .home-page .challenge-card-copy {
    min-height: auto;
    padding: 14px 16px;
  }
}

.home-page .challenge-card:focus-visible {
  outline: 3px solid rgba(215, 154, 43, 0.72);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .home-page .challenge-card-copy {
    min-height: auto;
    padding: 16px;
  }

  .home-page .challenge-card-copy p {
    font-size: 0.94rem;
  }
}

/* Premium credibility cards on home */
.home-page .home-credibility-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
  padding-top: 32px !important;
  padding-bottom: 34px !important;
}

.home-page .home-credibility-section .container {
  max-width: var(--max);
}

.home-page .home-credibility-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 22px !important;
  text-align: center;
}

.home-page .home-credibility-section .section-heading h2 {
  color: #0f2f52;
}

.home-page .home-credibility-section .section-heading p {
  max-width: 720px;
  margin: 10px auto 0;
  color: #123b66;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

.home-page .home-credibility-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-page .home-credibility-card {
  min-height: 150px;
  padding: 24px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 16px 38px rgba(15, 47, 82, 0.08);
  color: #0f2f52 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-page .home-credibility-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.45);
  box-shadow: 0 22px 48px rgba(15, 47, 82, 0.14);
}

.home-page .home-credibility-card strong {
  color: #d79a2b !important;
  font-size: clamp(1.65rem, 2.5vw, 2.08rem);
  font-weight: 800;
}

.home-page .home-credibility-card p {
  color: #0f2f52 !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.58;
}

/* About work philosophy method cards */
.about-page .about-method-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 36px;
  align-items: center;
}

.about-page .about-flow {
  gap: 10px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-page .about-flow div {
  width: min(100%, 320px);
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.1);
  box-shadow: 0 14px 30px rgba(6, 27, 53, 0.14);
  color: #0f2f52 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-page .about-flow div:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 154, 43, 0.42);
  box-shadow: 0 18px 40px rgba(6, 27, 53, 0.2);
}

.about-page .about-flow strong,
.about-page .about-flow small {
  display: block;
  margin: 0;
  text-align: center;
}

.about-page .about-flow strong {
  color: #0f2f52 !important;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-page .about-flow small {
  color: #123b66 !important;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.about-page .about-flow span {
  width: 100%;
  display: grid;
  place-items: center;
  color: #d79a2b !important;
  line-height: 1;
}

@media (max-width: 980px) {
  .home-page .home-credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .home-credibility-section {
    padding-top: 26px !important;
    padding-bottom: 28px !important;
  }

  .home-page .home-credibility-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-credibility-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .about-page .about-flow {
    padding: 18px;
  }

  .about-page .about-flow div {
    width: 100%;
    min-height: 88px;
  }
}

/* Global readability pass for navy / dark blue blocks */
:where(
  .section-dark,
  .dark-cta,
  .final-cta,
  .site-footer,
  .challenge-card,
  .challenge-card h3,
  .founder-portrait,
  .founder-quote,
  .about-signature-card,
  .about-flow,
  .about-panel,
  .about-proof-strip div,
  .brochure-mini-card,
  .programme-engines-list section,
  .programme-client-value-grid span,
  .service-pillar-grid article,
  .service-method-card,
  .method-steps span,
  .check-list li,
  .service-action-card,
  .solutions-service-access a,
  .footer-cta,
  .social-link
) {
  color: #ffffff !important;
}

:where(
  .section-dark,
  .dark-cta,
  .final-cta,
  .site-footer,
  .challenge-card,
  .challenge-card h3,
  .founder-portrait,
  .founder-quote,
  .about-signature-card,
  .about-flow,
  .about-panel,
  .about-proof-strip div,
  .brochure-mini-card,
  .programme-engines-list section,
  .programme-client-value-grid span,
  .service-pillar-grid article,
  .service-method-card,
  .method-steps span,
  .check-list li,
  .service-action-card,
  .solutions-service-access a,
  .footer-cta,
  .social-link
) :where(h1, h2, h3, h4, h5, h6, p, li, span, small, strong, em, label, summary, div, a) {
  color: #ffffff !important;
}

:where(
  .section-dark,
  .final-cta,
  .site-footer,
  .challenge-card,
  .founder-quote,
  .about-signature-card,
  .about-flow,
  .about-panel,
  .brochure-mini-card,
  .programme-engines-list section,
  .programme-client-value-grid span,
  .service-pillar-grid article,
  .service-method-card,
  .method-steps span,
  .check-list li,
  .service-action-card,
  .solutions-service-access a
) .button-gold {
  color: #ffffff !important;
}

:where(
  .section-dark,
  .final-cta,
  .site-footer,
  .about-panel
) :where(.button-light, .button-white) {
  color: #0f2f52 !important;
}

:where(
  .section-dark,
  .final-cta,
  .site-footer,
  .about-panel
) .button-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
}

.home-page .challenge-card .challenge-link {
  color: #d79a2b !important;
}

.home-page .challenge-card:hover .challenge-link,
.home-page .challenge-card:focus-visible .challenge-link {
  color: #ffffff !important;
}

/* Absolute final lock: keep the hero badge blue and the about method cards readable */
.home-page .hero-badge {
  background: #123b66 !important;
  color: #ffffff !important;
  border-color: rgba(215, 154, 43, 0.72) !important;
  font-size: clamp(1.01rem, 1.34vw, 1.16rem) !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.18) !important;
}

.about-page .about-method .about-flow {
  background: rgba(255, 255, 255, 0.94) !important;
}

.about-page .about-method .about-flow div {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

.about-page .about-method .about-flow div strong {
  color: #d79a2b !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow div small {
  color: #0f2f52 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-page .about-method .about-flow > span,
.about-page .about-method .about-flow::before {
  color: #d79a2b !important;
}

.appointment-source,
#source-label {
  display: none !important;
}


/* Final about page text-image layout lock */
.about-page .about-hero,
.about-page .about-narrative,
.about-page .about-experience,
.about-page .about-implementation,
.about-page .about-final-cta {
  padding-block: clamp(28px, 4vw, 48px) !important;
}

.about-page .about-hero-grid,
.about-page .about-experience-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
  align-items: stretch !important;
  gap: clamp(24px, 4vw, 42px) !important;
}

.about-page .about-hero-copy,
.about-page .about-experience-intro .section-heading {
  display: grid !important;
  align-content: center !important;
  max-width: none !important;
  min-height: 100% !important;
  padding: clamp(22px, 3vw, 36px) !important;
  border: 1px solid rgba(15, 47, 82, 0.1) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.08) !important;
}

.about-page .about-founder-visual,
.about-page .about-experience-photo {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  max-height: 460px !important;
  margin: 0 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 42px rgba(6, 27, 53, 0.12) !important;
}

.about-page .about-founder-visual picture,
.about-page .about-experience-photo picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.about-page .about-founder-visual img,
.about-page .about-experience-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
}

.about-page .about-founder-visual img {
  object-position: center top !important;
}

.about-page .about-experience-photo img {
  object-position: center !important;
}

.about-page .about-text-block,
.about-page .about-panel {
  padding: clamp(22px, 3vw, 36px) !important;
  border-radius: 20px !important;
}

.about-page .about-text-block {
  max-width: 980px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(15, 47, 82, 0.1) !important;
  box-shadow: 0 16px 34px rgba(6, 27, 53, 0.07) !important;
}

.about-page .about-method {
  padding-block: clamp(34px, 4.5vw, 52px) !important;
}

.about-page .about-method-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
  align-items: stretch !important;
  gap: clamp(24px, 4vw, 42px) !important;
}

.about-page .about-method-copy,
.about-page .about-flow {
  align-self: stretch !important;
}

.about-page .about-method-copy {
  display: grid !important;
  align-content: center !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

.about-page .about-flow {
  width: 100% !important;
  max-width: 460px !important;
  padding: clamp(18px, 2.6vw, 26px) !important;
}

.about-page .about-flow div {
  min-height: 88px !important;
  padding-block: 14px !important;
}

.about-page .about-flow div strong {
  color: #d79a2b !important;
}

.about-page .about-flow div small {
  color: #0f2f52 !important;
}

.about-page .about-signature-card {
  padding: clamp(20px, 2.8vw, 28px) !important;
}

.about-page .about-card-grid,
.about-page .about-proof-strip {
  margin-top: clamp(22px, 3vw, 32px) !important;
}

@media (max-width: 980px) {
  .about-page .about-hero-grid,
  .about-page .about-experience-intro,
  .about-page .about-method-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .about-page .about-founder-visual,
  .about-page .about-experience-photo {
    min-height: 280px !important;
    max-height: 340px !important;
  }

  .about-page .about-flow {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero,
  .about-page .about-narrative,
  .about-page .about-experience,
  .about-page .about-method,
  .about-page .about-implementation,
  .about-page .about-final-cta {
    padding-block: 28px !important;
  }

  .about-page .about-hero-copy,
  .about-page .about-experience-intro .section-heading,
  .about-page .about-text-block,
  .about-page .about-panel,
  .about-page .about-method-copy {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .about-page .about-founder-visual,
  .about-page .about-experience-photo {
    min-height: 220px !important;
    max-height: 300px !important;
    border-radius: 18px !important;
  }

  .about-page .about-flow {
    padding: 18px !important;
  }
}

/* Final about reason and continuous improvement method update */
.about-page .about-narrative .about-text-block {
  background: #071b3a !important;
  color: #ffffff !important;
  border-color: rgba(212, 175, 55, 0.28) !important;
  box-shadow: 0 20px 48px rgba(7, 27, 58, 0.18) !important;
}

.about-page .about-narrative .eyebrow,
.about-page .about-narrative h2 {
  color: #d4af37 !important;
}

.about-page .about-narrative .about-prose p {
  color: #ffffff !important;
}

.about-page .about-evaluation-block {
  margin-top: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 38px rgba(6, 27, 53, 0.14);
}

.about-page .about-evaluation-block h3 {
  margin: 0 0 12px;
  color: #d4af37 !important;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.28;
}

.about-page .about-evaluation-block p {
  margin: 0 0 0.72em !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.62 !important;
}

.about-page .about-evaluation-block p:last-child {
  margin-bottom: 0 !important;
}

.about-page .about-flow div:nth-of-type(5)::before {
  content: "05";
}

.about-page .about-flow div strong {
  color: #d79a2b !important;
}

.about-page .about-flow div small {
  color: #0f2f52 !important;
}

.about-page .about-flow div:nth-of-type(4) small {
  font-size: 0.93rem !important;
  line-height: 1.38 !important;
}

.about-page .about-flow div:nth-of-type(4) strong {
  font-size: 1.28rem !important;
}

@media (min-width: 1180px) {
  .about-page .about-method-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr) !important;
  }
}

@media (max-width: 640px) {
  .about-page .about-evaluation-block {
    margin-top: 14px;
    padding: 18px;
  }

  .about-page .about-evaluation-block p {
    font-size: 0.96rem !important;
  }
}

/* Six growth engines architecture */
.growth-solutions-hero {
  background: linear-gradient(135deg, #071b3a 0%, #0f2f52 58%, #123b66 100%) !important;
  color: #ffffff !important;
  padding-block: clamp(44px, 6vw, 78px) !important;
}

.growth-solutions-hero .growth-hero-content {
  max-width: 920px;
}

.growth-solutions-hero .eyebrow,
.growth-solutions-hero h1 {
  color: #d79a2b !important;
}

.growth-solutions-hero p {
  color: #ffffff !important;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.growth-intro-section,
.six-growth-engines,
.growth-choice-section,
.growth-360-section,
.service-growth-section,
.service-growth-results {
  padding-block: clamp(34px, 4.5vw, 58px) !important;
}

.growth-intro-panel,
.growth-choice-panel,
.growth-360-panel,
.service-growth-hero-inner {
  border-radius: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 47, 82, 0.11);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(6, 27, 53, 0.08);
}

.growth-choice-section {
  background: #f7f9fc;
}

.growth-choice-panel {
  max-width: 920px;
}

.growth-360-panel {
  background: #071b3a;
  color: #ffffff;
}

.growth-360-panel h2,
.growth-360-panel .eyebrow {
  color: #d79a2b !important;
}

.growth-360-panel p {
  color: #ffffff !important;
}

.growth-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
}

.growth-engine-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  box-shadow: 0 16px 38px rgba(6, 27, 53, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.growth-engine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.48);
  box-shadow: 0 22px 52px rgba(6, 27, 53, 0.14);
}

.growth-engine-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.growth-engine-number,
.growth-engine-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 800;
}

.growth-engine-number {
  background: #071b3a;
  color: #ffffff;
}

.growth-engine-icon {
  background: rgba(215, 154, 43, 0.14);
  color: #d79a2b;
}

.growth-engine-card h2 {
  margin: 0;
  color: #0f2f52;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.25;
}

.growth-engine-promise {
  margin: 0;
  color: #d79a2b !important;
  font-weight: 800;
  line-height: 1.45;
}

.growth-engine-card p:not(.growth-engine-promise) {
  margin: 0;
  color: #1f2937;
  line-height: 1.65;
}

.growth-engine-card ul,
.service-growth-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-engine-card li,
.service-growth-list li {
  position: relative;
  padding-inline-start: 20px;
  color: #0f2f52;
  font-weight: 600;
  line-height: 1.45;
}

.growth-engine-card li::before,
.service-growth-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d79a2b;
}

.growth-engine-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 4px;
}

.nav-submenu {
  max-height: min(72vh, 520px);
  overflow-y: auto;
}

.nav-submenu .nav-submenu-all {
  border-top: 1px solid rgba(15, 47, 82, 0.12);
  color: #d79a2b !important;
  font-weight: 800;
}

.service-growth-hero {
  background: #f7f9fc;
}

.service-growth-hero-inner {
  max-width: 960px;
}

.service-growth-hero h1 {
  color: #0f2f52;
}

.service-growth-promise {
  color: #d79a2b !important;
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  font-weight: 800;
}

.service-growth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.service-growth-grid .page-card,
.service-growth-results .page-card {
  padding: clamp(24px, 3vw, 36px) !important;
}

@media (max-width: 1020px) {
  .growth-engine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .growth-engine-grid,
  .service-growth-grid {
    grid-template-columns: 1fr;
  }

  .growth-engine-card {
    padding: 22px;
  }

  .growth-engine-card .button {
    width: 100%;
    justify-self: stretch;
  }
}

/* Programme 360 six-motor redesign */
.programme-360-redesign .section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.programme360-hero {
  background: linear-gradient(135deg, #071b3a 0%, #0f2f52 58%, #123b66 100%);
  color: #ffffff;
  padding: clamp(38px, 5vw, 66px) 0;
}

.programme360-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.programme360-hero h1,
.programme360-hero p,
.programme360-hero .eyebrow {
  color: #ffffff;
}

.programme360-hero .eyebrow {
  color: #d79a2b;
}

.programme360-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
}

.programme360-hero-copy > p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.programme360-markers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 26px;
}

.programme360-markers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.programme360-logo-card {
  margin: 0;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.programme360-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.programme360-problem .narrow strong,
.programme360-priority .page-card > strong {
  display: block;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #0b1f3a;
  color: #ffffff;
  font-size: 1.08rem;
}

.programme360-motors,
.programme360-included,
.programme360-results,
.programme360-faq {
  background: #f7f9fc;
}

.programme-motor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.programme-motor-card,
.programme-step,
.programme360-mini-grid article {
  background: #ffffff;
  border: 1px solid rgba(15, 47, 82, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 47, 82, 0.08);
}

.programme-motor-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.programme-motor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.programme-motor-head span {
  color: #d79a2b;
  font-size: 1.05rem;
  font-weight: 800;
}

.programme-motor-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b1f3a;
  color: #ffffff;
  font-size: 1rem;
}

.programme-motor-card h3,
.programme-step h3,
.programme360-mini-grid h3 {
  margin: 0 0 10px;
  color: #0b1f3a;
}

.programme-motor-card p,
.programme-step p,
.programme360-mini-grid p {
  color: #1f2937;
  line-height: 1.65;
}

.programme-motor-card ul,
.programme360-check-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.programme-motor-card li,
.programme360-check-list li {
  position: relative;
  padding-inline-start: 18px;
  color: #1f2937;
}

.programme-motor-card li::before,
.programme360-check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d79a2b;
}

.programme-motor-card a {
  margin-top: auto;
  padding-top: 18px;
  color: #0b1f3a;
  font-weight: 800;
  text-decoration: none;
}

.programme-motor-card a:hover {
  color: #d79a2b;
}

.programme-note {
  margin-top: 14px;
  color: #6b7280 !important;
  font-size: 0.96rem;
}

.programme360-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.programme360-mini-grid article {
  padding: 18px;
}

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

.programme-step {
  padding: 22px;
}

.programme-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #d79a2b;
  color: #ffffff;
  font-weight: 800;
}

.programme360-method-note {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: #0b1f3a;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
}

.programme360-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.programme360-check-list.muted li::before {
  background: #6b7280;
}

.programme360-results .programme-note {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
}

.programme360-final-cta {
  background: #071b3a;
  color: #ffffff;
  text-align: center;
}

.programme360-final-cta h2,
.programme360-final-cta p,
.programme360-final-cta small {
  color: #ffffff;
}

.programme360-final-cta .eyebrow {
  color: #d79a2b;
}

.programme360-final-cta small {
  display: block;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .programme360-hero-grid {
    grid-template-columns: 1fr;
  }

  .programme360-logo-card {
    max-width: 420px;
  }

  .programme-motor-grid,
  .programme-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programme360-mini-grid,
  .programme360-markers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .programme-360-redesign .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .programme360-hero {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .programme360-markers,
  .programme-motor-grid,
  .programme-step-grid,
  .programme360-mini-grid,
  .programme360-check-list {
    grid-template-columns: 1fr;
  }

  .programme-motor-card,
  .programme-step,
  .programme360-mini-grid article {
    padding: 18px;
  }
}

/* Header quick contact actions */
.header-contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0b1f3a;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-contact-button:hover,
.header-contact-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 154, 43, 0.45);
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.14);
}

.header-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-store-icon {
  background: #0b1f3a;
}

.whatsapp-store-icon {
  background: #25d366;
  font-size: 0.75rem;
}

.linkedin-store-icon {
  background: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0;
}

/* Service navigation cards */
.service-topics-section {
  padding-top: 42px;
  padding-bottom: 44px;
  background: #f7f9fc;
}

.service-topic-grid,
.solutions-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-topic-card,
.solutions-directory-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: #0b1f3a;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-topic-card:hover,
.service-topic-card:focus-visible,
.solutions-directory-card:hover,
.solutions-directory-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 154, 43, 0.38);
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.14);
}

.service-topic-kicker,
.solutions-directory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 42px;
  height: 34px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #0b1f3a;
  color: #d79a2b;
  font-size: 0.88rem;
  font-weight: 800;
}

.service-topic-card h3,
.solutions-directory-card h3 {
  margin: 0 0 10px;
  color: #0b1f3a;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.35;
}

.service-topic-card p,
.solutions-directory-card p {
  margin: 0 0 18px;
  color: #1f2937;
  line-height: 1.65;
}

.service-topic-card strong,
.solutions-directory-card strong {
  margin-top: auto;
  color: #d79a2b;
  font-weight: 800;
}

.service-topic-note {
  margin: 22px auto 0;
  max-width: 820px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #0b1f3a;
  text-align: center;
}

.service-topic-note a {
  color: #ffffff;
  font-weight: 700;
  text-decoration-color: rgba(215, 154, 43, 0.7);
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .header-contact-button {
    padding-inline: 9px;
  }

  .header-contact-text {
    font-size: 0.82rem;
  }

  .service-topic-grid,
  .solutions-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-contact-actions {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
  }

  .header-contact-button {
    min-height: 38px;
  }
}

@media (max-width: 640px) {
  .header-contact-actions {
    gap: 6px;
  }

  .header-contact-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 7px;
    font-size: 0.78rem;
  }

  .header-contact-icon {
    width: 22px;
    height: 22px;
  }

  .service-topics-section {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .service-topic-grid,
  .solutions-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-topic-card,
  .solutions-directory-card {
    padding: 18px;
  }
}

/* Historical service pages - restored visual treatment */
.service-detail-page .service-detail-hero-grid {
  align-items: stretch;
}

.service-detail-page .service-detail-visual {
  display: block;
  width: 100%;
  min-height: clamp(300px, 34vw, 420px) !important;
  max-height: 430px !important;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: 0 22px 48px rgba(11, 31, 58, 0.12);
}

.service-detail-page .service-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.service-detail-page .service-detail-hero .service-detail-copy {
  align-self: stretch;
}

@media (max-width: 980px) {
  .service-detail-page .service-detail-visual {
    min-height: 260px !important;
    max-height: 340px !important;
  }
}

@media (max-width: 640px) {
  .service-detail-page .service-detail-visual {
    min-height: 220px !important;
    max-height: 280px !important;
  }

  .service-detail-page .service-detail-visual img {
    min-height: 220px;
  }
}

/* Header organization - RTL desktop order: logo, menu, CTA, contact */
@media (min-width: 981px) {
  .site-header .header-inner {
    direction: rtl;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: clamp(12px, 1.4vw, 22px) !important;
    min-height: 86px !important;
    flex-wrap: nowrap;
  }

  .site-header .brand {
    order: 1 !important;
    width: 116px !important;
    flex: 0 0 116px !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  .site-header .brand picture,
  .site-header .brand img {
    display: block;
  }

  .site-header .brand img {
    width: 116px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
  }

  .site-header .primary-nav {
    order: 2 !important;
    direction: rtl;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(11px, 1.05vw, 18px) !important;
    flex: 1 1 auto;
    min-width: 0;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    min-height: 86px !important;
    padding: 0 !important;
    font-size: clamp(0.88rem, 0.85vw, 1rem) !important;
    white-space: nowrap;
  }

  .site-header .primary-nav .nav-cta {
    position: static !important;
    order: 20;
    transform: none !important;
    margin: 0 !important;
    min-height: 42px !important;
    padding: 9px 15px !important;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-header .header-contact-actions {
    order: 3 !important;
    width: auto !important;
    flex: 0 0 auto;
    justify-content: flex-start !important;
    padding-top: 0 !important;
    gap: 7px !important;
    direction: rtl;
  }

  .site-header .header-contact-button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .site-header .header-inner {
    gap: 10px !important;
  }

  .site-header .brand {
    width: 106px !important;
    flex-basis: 106px !important;
  }

  .site-header .brand img {
    width: 106px !important;
    max-height: 64px !important;
  }

  .site-header .primary-nav {
    gap: 10px !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    font-size: 0.86rem !important;
  }

  .site-header .primary-nav .nav-cta {
    min-height: 38px !important;
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }

  .site-header .header-contact-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
  }

  .site-header .header-contact-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    direction: rtl;
  }

  .site-header .brand {
    order: 1 !important;
    margin-inline-end: 0;
    margin-inline-start: auto;
  }

  .site-header .menu-toggle {
    order: 2 !important;
    margin-left: 0;
    margin-right: auto;
  }

  .site-header .header-contact-actions {
    order: 3 !important;
  }
}

/* Header organization - final layout: menu right, CTA/contact center-left, logo far left */
@media (min-width: 981px) {
  .site-header .header-inner {
    direction: rtl;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: clamp(12px, 1.35vw, 22px) !important;
    min-height: 86px !important;
    flex-wrap: nowrap;
  }

  .site-header .primary-nav {
    order: 1 !important;
    direction: rtl;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(12px, 1vw, 18px) !important;
    flex: 1 1 auto;
    min-width: 0;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    min-height: 86px !important;
    padding: 0 !important;
    font-size: clamp(0.88rem, 0.85vw, 1rem) !important;
    white-space: nowrap;
  }

  .site-header .primary-nav .nav-cta {
    position: static !important;
    order: 20;
    transform: none !important;
    margin: 0 !important;
    min-height: 42px !important;
    padding: 9px 15px !important;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-header .header-contact-actions {
    order: 2 !important;
    width: auto !important;
    flex: 0 0 auto;
    justify-content: flex-start !important;
    padding-top: 0 !important;
    gap: 7px !important;
    direction: rtl;
  }

  .site-header .brand {
    order: 3 !important;
    width: 116px !important;
    flex: 0 0 116px !important;
    justify-content: flex-end !important;
    margin: 0 !important;
  }

  .site-header .brand picture,
  .site-header .brand img {
    display: block;
  }

  .site-header .brand img {
    width: 116px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
  }

  .site-header .header-contact-button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .site-header .header-inner {
    gap: 10px !important;
  }

  .site-header .primary-nav {
    gap: 10px !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    font-size: 0.86rem !important;
  }

  .site-header .primary-nav .nav-cta {
    min-height: 38px !important;
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }

  .site-header .brand {
    width: 106px !important;
    flex-basis: 106px !important;
  }

  .site-header .brand img {
    width: 106px !important;
    max-height: 64px !important;
  }

  .site-header .header-contact-button {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
  }

  .site-header .header-contact-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    direction: ltr;
  }

  .site-header .brand {
    order: 1 !important;
    margin: 0 auto 0 0 !important;
  }

  .site-header .menu-toggle {
    order: 2 !important;
    margin: 0 0 0 auto !important;
  }

  .site-header .primary-nav {
    direction: rtl;
  }

  .site-header .header-contact-actions {
    order: 3 !important;
  }
}

/* Final size harmonization: keep the shared header/page scale consistent with internal pages. */
@media (min-width: 981px) {
  .site-header .header-inner {
    width: min(1600px, calc(100% - 64px)) !important;
    max-width: 1600px !important;
    min-height: 120px !important;
    padding-block: 14px !important;
    gap: clamp(16px, 1.7vw, 28px) !important;
  }

  .site-header .brand {
    width: 122px !important;
    flex: 0 0 122px !important;
    justify-content: flex-end !important;
  }

  .site-header .brand img {
    width: 122px !important;
    max-height: 92px !important;
  }

  .site-header .primary-nav {
    gap: clamp(16px, 1.35vw, 24px) !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    min-height: 92px !important;
    font-size: clamp(1.08rem, 1vw, 1.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }

  .site-header .primary-nav .nav-cta {
    min-height: 56px !important;
    padding: 14px 30px !important;
    border-radius: 12px !important;
    font-size: clamp(1.08rem, 1vw, 1.2rem) !important;
    font-weight: 800 !important;
  }

  .site-header .header-contact-actions {
    gap: 10px !important;
  }

  .site-header .header-contact-button {
    min-height: 50px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    font-size: clamp(1rem, 0.9vw, 1.08rem) !important;
    font-weight: 800 !important;
  }

  .site-header .header-contact-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 0.95rem !important;
  }

  .site-header .header-contact-text {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .site-header .header-inner {
    width: min(1600px, calc(100% - 36px)) !important;
    min-height: 112px !important;
    gap: 12px !important;
  }

  .site-header .brand {
    width: 108px !important;
    flex-basis: 108px !important;
  }

  .site-header .brand img {
    width: 108px !important;
    max-height: 82px !important;
  }

  .site-header .primary-nav {
    gap: 11px !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    min-height: 82px !important;
    font-size: 1rem !important;
  }

  .site-header .primary-nav .nav-cta {
    min-height: 50px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .site-header .header-contact-button {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .site-header .header-contact-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    width: min(100% - 28px, var(--max)) !important;
    min-height: 86px !important;
  }

  .site-header .brand {
    width: 112px !important;
    flex: 0 0 112px !important;
  }

  .site-header .brand img {
    width: 112px !important;
    height: auto !important;
    max-height: 74px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    width: 98px !important;
    flex-basis: 98px !important;
  }

  .site-header .brand img {
    width: 98px !important;
    max-height: 66px !important;
  }
}

/* Home page scale correction: match the visual weight of the inner pages without zoom/scale. */
.home-page .hero {
  padding-bottom: 42px !important;
}

.home-page .hero-grid {
  width: min(1500px, calc(100% - 64px)) !important;
  max-width: 1500px !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr) !important;
  gap: clamp(34px, 4vw, 72px) !important;
}

.home-page .hero-badge {
  padding: 11px 30px !important;
  font-size: clamp(1.18rem, 1.25vw, 1.38rem) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}

.home-page .hero h1 {
  font-size: clamp(42px, 3.2vw, 58px) !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}

.home-page .hero-subtitle {
  font-size: clamp(23px, 1.8vw, 30px) !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}

.home-page .hero-lede,
.home-page .hero-copy,
.home-page .hero-copy p {
  font-size: clamp(19px, 1.25vw, 23px) !important;
  line-height: 1.78 !important;
}

.home-page .hero-photo-cta,
.home-page .hero-actions .button,
.home-page .section-cta .button {
  min-height: 56px !important;
  padding: 14px 32px !important;
  font-size: clamp(1.08rem, 1vw, 1.18rem) !important;
  font-weight: 800 !important;
}

.home-page .section-heading h2,
.home-page main h2 {
  font-size: clamp(34px, 2.5vw, 46px) !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.home-page main h3,
.home-page .challenge-card-copy h3,
.home-page .brochure-mini-card h3,
.home-page .home-credibility-card strong {
  font-size: clamp(23px, 1.7vw, 30px) !important;
  line-height: 1.25 !important;
}

.home-page .section-heading p,
.home-page .text-block,
.home-page .positioning-summary p,
.home-page .section-cta p,
.home-page .brochure-strip-content > p:not(.eyebrow) {
  font-size: clamp(18px, 1.2vw, 21px) !important;
  line-height: 1.75 !important;
}

.home-page .challenge-card-copy p,
.home-page .brochure-mini-card p,
.home-page .home-credibility-card p {
  font-size: clamp(17px, 1.05vw, 19px) !important;
  line-height: 1.58 !important;
}

.home-page .challenge-card-copy .challenge-link {
  font-size: clamp(17px, 1vw, 18px) !important;
}

@media (max-width: 980px) {
  .home-page .hero-grid {
    width: min(100% - 32px, var(--max)) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .home-page .hero h1 {
    font-size: clamp(34px, 8vw, 40px) !important;
  }

  .home-page .hero-subtitle {
    font-size: clamp(21px, 5.5vw, 24px) !important;
  }

  .home-page .hero-lede,
  .home-page .hero-copy,
  .home-page .hero-copy p {
    font-size: clamp(17px, 4vw, 19px) !important;
    line-height: 1.72 !important;
  }
}

@media (max-width: 640px) {
  .home-page .hero-badge {
    font-size: 1.02rem !important;
    padding: 10px 14px !important;
  }

  .home-page .hero-photo-cta,
  .home-page .hero-actions .button,
  .home-page .section-cta .button {
    width: 100% !important;
  }
}

/* Header collision fix and service hero image system */
.header-contact-whatsapp .whatsapp-store-icon {
  background: #25d366 !important;
  font-size: 0 !important;
}

.header-contact-whatsapp .whatsapp-store-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

@media (min-width: 981px) {
  .site-header .header-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(14px, 1.45vw, 28px) !important;
    overflow: visible !important;
  }

  .site-header .brand,
  .site-header .header-contact-actions,
  .site-header .primary-nav .nav-cta {
    flex-shrink: 0 !important;
  }

  .site-header .primary-nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
  }

  .site-header .primary-nav .nav-cta {
    min-width: max-content !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .site-header .header-contact-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    z-index: 1 !important;
  }

  .site-header .header-contact-button {
    position: relative !important;
    flex: 0 0 auto !important;
    overflow: visible !important;
  }
}

@media (min-width: 1181px) and (max-width: 1350px) {
  .site-header .header-inner {
    width: min(1600px, calc(100% - 40px)) !important;
    gap: 14px !important;
  }

  .site-header .primary-nav {
    gap: 12px !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown > a {
    font-size: 1rem !important;
  }

  .site-header .primary-nav .nav-cta {
    padding-inline: 22px !important;
    font-size: 1rem !important;
  }

  .site-header .header-contact-linkedin .header-contact-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
  }

  .site-header .header-contact-linkedin {
    width: 50px !important;
    min-width: 50px !important;
    padding-inline: 0 !important;
  }
}

.service-growth-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}

.service-growth-hero-grid > :not(.service-growth-visual) {
  align-self: center;
}

.service-growth-visual {
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 47, 82, 0.12);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(15, 47, 82, 0.13);
}

.service-growth-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-visual img,
.service-growth-visual img {
  max-width: 100%;
}

@media (max-width: 1020px) {
  .service-growth-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-growth-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .service-growth-visual {
    min-height: 220px;
  }
}

/* Market development hero: keep all text in one RTL column and image alone opposite */
.service-5 .service-growth-hero {
  padding-block: clamp(40px, 5vw, 64px);
}

.service-5 .service-growth-hero-inner {
  max-width: min(1420px, calc(100% - 48px));
  padding: clamp(28px, 4vw, 64px);
}

.service-5 .service-growth-hero-grid {
  display: flex;
  flex-direction: row;
  gap: clamp(42px, 4.5vw, 64px);
  align-items: flex-start;
}

.service-5 .service-growth-copy {
  flex: 1.08 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
  text-align: right;
  padding-top: 0;
  margin-top: 0;
}

.service-5 .service-growth-copy .eyebrow {
  margin: 0 0 14px;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem);
  font-weight: 800;
  color: #d79a2b;
}

.service-5 .service-growth-copy h1 {
  margin: 0 0 20px;
  max-width: 13ch;
  color: #0f2f52;
  font-size: clamp(3rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
}

.service-5 .service-growth-copy h1::after {
  margin-top: 18px;
}

.service-5 .service-growth-promise {
  margin: 0 0 18px;
  color: #d79a2b !important;
  font-size: clamp(1.48rem, 2vw, 1.88rem);
  font-weight: 800;
  line-height: 1.38;
}

.service-5 .service-growth-copy p:not(.eyebrow):not(.service-growth-promise) {
  margin: 0;
  max-width: 48ch;
  color: #334155;
  font-size: clamp(1.22rem, 1.55vw, 1.43rem);
  line-height: 1.75;
}

.service-5 .service-growth-copy .solutions-hero-actions {
  margin-top: clamp(28px, 3vw, 36px);
}

.service-5 .service-growth-visual {
  flex: 0.95 1 0;
  width: 100%;
  min-height: clamp(430px, 34vw, 560px);
  max-height: 560px;
  align-self: flex-start;
  margin: 0;
}

.service-5 .service-growth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1120px) {
  .service-5 .service-growth-hero-inner {
    max-width: min(1180px, calc(100% - 36px));
    padding: clamp(24px, 3vw, 42px);
  }

  .service-5 .service-growth-hero-grid {
    gap: clamp(28px, 3vw, 42px);
  }

  .service-5 .service-growth-copy h1 {
    font-size: clamp(2.55rem, 4.4vw, 3rem);
  }
}

@media (max-width: 900px) {
  .service-5 .service-growth-hero-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .service-5 .service-growth-copy {
    order: 1;
  }

  .service-5 .service-growth-visual {
    order: 2;
    min-height: 320px;
    max-height: 420px;
    align-self: auto;
  }
}

@media (max-width: 640px) {
  .service-5 .service-growth-hero {
    padding-block: 26px 32px;
  }

  .service-5 .service-growth-hero-inner {
    max-width: calc(100% - 24px);
    padding: 22px 18px;
  }

  .service-5 .service-growth-hero-grid {
    gap: 24px;
  }

  .service-5 .service-growth-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 2.65rem);
  }

  .service-5 .service-growth-promise {
    font-size: clamp(1.3rem, 6vw, 1.55rem);
  }

  .service-5 .service-growth-copy p:not(.eyebrow):not(.service-growth-promise) {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .service-5 .service-growth-copy .solutions-hero-actions {
    width: 100%;
  }

  .service-5 .service-growth-visual {
    min-height: 250px;
    max-height: 320px;
  }
}

/* Unified image + text editorial alignment across the production site */
.media-content-grid,
.hero-grid,
.solutions-hero-grid,
.programme360-hero-grid,
.programme-hero-inner,
.programme-360-page .programme-solution-intro .image-split,
.about-page .about-hero-grid,
.about-page .about-experience-intro,
.service-detail-page .service-detail-hero-grid,
.service-growth-hero-grid {
  align-items: flex-start !important;
}

.media-content-text,
.hero-content,
.solutions-hero-copy,
.programme360-hero-copy,
.programme-hero-copy,
.programme-360-page .programme-solution-copy,
.about-page .about-hero-copy,
.about-page .about-experience-intro .section-heading,
.service-detail-page .service-detail-copy,
.service-growth-hero-grid > :not(.service-growth-visual) {
  align-self: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  align-content: flex-start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  text-align: right;
}

.media-content-image,
.hero-media,
.solutions-hero-visual,
.programme360-logo-card,
.programme-logo-hero,
.programme-360-page .programme-solution-intro .section-image,
.about-page .about-founder-visual,
.about-page .about-experience-photo,
.service-detail-page .service-detail-visual,
.service-growth-visual {
  align-self: flex-start !important;
  margin-top: 0 !important;
}

.service-detail-page .service-detail-copy {
  gap: 16px;
}

.service-detail-page .service-detail-copy .button,
.service-growth-hero-grid .solutions-hero-actions,
.programme360-hero-copy .solutions-hero-actions,
.solutions-hero-copy .solutions-hero-actions {
  margin-top: clamp(28px, 3vw, 36px) !important;
}

@media (max-width: 980px) {
  .media-content-grid,
  .hero-grid,
  .solutions-hero-grid,
  .programme360-hero-grid,
  .programme-hero-inner,
  .programme-360-page .programme-solution-intro .image-split,
  .about-page .about-hero-grid,
  .about-page .about-experience-intro,
  .service-detail-page .service-detail-hero-grid,
  .service-growth-hero-grid {
    gap: clamp(24px, 5vw, 36px) !important;
  }
}

/* Final approved split hero structure: solutions and three autonomous service pages */
.solutions-page .growth-solutions-hero,
.service-3 .service-growth-hero,
.service-4 .service-growth-hero,
.service-5 .service-growth-hero {
  background: #f7f9fc !important;
  color: #0b1f3a !important;
  padding-block: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px) !important;
}

.solutions-page .growth-solutions-hero-grid,
.service-3 .service-growth-hero-inner,
.service-4 .service-growth-hero-inner,
.service-5 .service-growth-hero-inner {
  width: min(1420px, calc(100% - 48px)) !important;
  max-width: 1420px !important;
  margin-inline: auto !important;
  padding: clamp(18px, 2.1vw, 24px) !important;
  border: 1px solid rgba(11, 31, 58, 0.1) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 56px rgba(11, 31, 58, 0.1) !important;
}

.solutions-page .growth-solutions-hero-grid,
.service-3 .service-growth-hero-grid,
.service-4 .service-growth-hero-grid,
.service-5 .service-growth-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr) !important;
  gap: clamp(24px, 3vw, 36px) !important;
  align-items: start !important;
}

.solutions-page .growth-solutions-copy,
.service-3 .service-growth-copy,
.service-4 .service-growth-copy,
.service-5 .service-growth-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  align-self: start !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: right !important;
}

.solutions-page .growth-solutions-copy .eyebrow,
.service-3 .service-growth-copy .eyebrow,
.service-4 .service-growth-copy .eyebrow,
.service-5 .service-growth-copy .eyebrow {
  margin: 0 0 clamp(12px, 1.2vw, 16px) !important;
  color: #d79a2b !important;
  font-size: clamp(1.18rem, 1.45vw, 1.38rem) !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.solutions-page .growth-solutions-copy h1,
.service-3 .service-growth-copy h1,
.service-4 .service-growth-copy h1,
.service-5 .service-growth-copy h1 {
  max-width: 14ch !important;
  margin: 0 0 clamp(20px, 2vw, 24px) !important;
  color: #0f2f52 !important;
  font-size: clamp(44px, 3.2vw, 58px) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

.solutions-page .growth-solutions-copy h1::after,
.service-3 .service-growth-copy h1::after,
.service-4 .service-growth-copy h1::after,
.service-5 .service-growth-copy h1::after {
  margin-top: 18px !important;
}

.solutions-page .growth-solutions-copy > p:not(.eyebrow),
.service-3 .service-growth-promise,
.service-4 .service-growth-promise,
.service-5 .service-growth-promise {
  margin: 0 0 clamp(20px, 2.4vw, 28px) !important;
  color: #d79a2b !important;
  font-size: clamp(24px, 2vw, 30px) !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

.solutions-page .growth-solutions-copy > p:not(.eyebrow) {
  color: #334155 !important;
  font-size: clamp(20px, 1.55vw, 23px) !important;
  font-weight: 500 !important;
  line-height: 1.78 !important;
}

.service-3 .service-growth-copy p:not(.eyebrow):not(.service-growth-promise),
.service-4 .service-growth-copy p:not(.eyebrow):not(.service-growth-promise),
.service-5 .service-growth-copy p:not(.eyebrow):not(.service-growth-promise) {
  max-width: 48ch !important;
  margin: 0 !important;
  color: #334155 !important;
  font-size: clamp(20px, 1.55vw, 23px) !important;
  font-weight: 500 !important;
  line-height: 1.78 !important;
}

.solutions-page .growth-solutions-copy .solutions-hero-actions,
.service-3 .service-growth-copy .solutions-hero-actions,
.service-4 .service-growth-copy .solutions-hero-actions,
.service-5 .service-growth-copy .solutions-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
  margin-top: clamp(18px, 2vw, 24px) !important;
}

.solutions-page .growth-solutions-visual,
.service-3 .service-growth-visual,
.service-4 .service-growth-visual,
.service-5 .service-growth-visual {
  align-self: start !important;
  justify-self: stretch !important;
  width: 100% !important;
  height: clamp(420px, 35vw, 560px) !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(11, 31, 58, 0.1) !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 20px 50px rgba(11, 31, 58, 0.12) !important;
}

.solutions-page .growth-solutions-visual img,
.service-3 .service-growth-visual img,
.service-4 .service-growth-visual img,
.service-5 .service-growth-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
}

.service-5 .service-growth-visual img {
  object-position: center top !important;
}

.solutions-page .growth-intro-section,
.service-3 .service-growth-section,
.service-4 .service-growth-section,
.service-5 .service-growth-section {
  padding-top: clamp(14px, 2vw, 20px) !important;
  padding-bottom: clamp(22px, 3vw, 34px) !important;
}

@media (max-width: 1024px) {
  .solutions-page .growth-solutions-hero-grid,
  .service-3 .service-growth-hero-grid,
  .service-4 .service-growth-hero-grid,
  .service-5 .service-growth-hero-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 4vw, 40px) !important;
  }

  .solutions-page .growth-solutions-visual,
  .service-3 .service-growth-visual,
  .service-4 .service-growth-visual,
  .service-5 .service-growth-visual {
    height: clamp(300px, 48vw, 430px) !important;
  }
}

@media (max-width: 640px) {
  .solutions-page .growth-solutions-hero,
  .service-3 .service-growth-hero,
  .service-4 .service-growth-hero,
  .service-5 .service-growth-hero {
    padding-block: 16px 20px !important;
  }

  .solutions-page .growth-solutions-hero-grid,
  .service-3 .service-growth-hero-inner,
  .service-4 .service-growth-hero-inner,
  .service-5 .service-growth-hero-inner {
    width: calc(100% - 24px) !important;
    padding: 22px 18px !important;
    border-radius: 20px !important;
  }

  .solutions-page .growth-solutions-copy h1,
  .service-3 .service-growth-copy h1,
  .service-4 .service-growth-copy h1,
  .service-5 .service-growth-copy h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 10vw, 42px) !important;
  }

  .solutions-page .growth-solutions-copy .solutions-hero-actions,
  .service-3 .service-growth-copy .solutions-hero-actions,
  .service-4 .service-growth-copy .solutions-hero-actions,
  .service-5 .service-growth-copy .solutions-hero-actions {
    display: grid !important;
    width: 100% !important;
  }

  .solutions-page .growth-solutions-copy .button,
  .service-3 .service-growth-copy .button,
  .service-4 .service-growth-copy .button,
  .service-5 .service-growth-copy .button {
    width: 100% !important;
  }

  .solutions-page .growth-solutions-visual,
  .service-3 .service-growth-visual,
  .service-4 .service-growth-visual,
  .service-5 .service-growth-visual {
    height: clamp(240px, 68vw, 320px) !important;
    border-radius: 18px !important;
  }
}

