@charset "utf-8";
/***!  /templates/tpl_bandhadd_j3/assets/css/style.css?v=1777793923  !***/

:root {
  --top-bg: #ffffff;
  --top-ink: #8e6f3b;
  --top-ink-strong: #967744;
  --surface: #f3f0e8;
  --surface-line: rgba(214, 207, 194, 0.2);
  --stroke: #ded4c3;
  --ink: #111d28;
  --gold: #b4965c;
  --gold-soft: #c7ab78;
  --site-font: "IBM Plex Sans Arabic", "Tajawal", "Tahoma", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

#about-us,
#services,
#faq,
#contact-us {
  scroll-margin-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--site-font);
  color: var(--ink);
  background: #ffffff;
}

body,
button,
input,
select,
textarea {
  font-family: var(--site-font);
}

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

img {
  max-width: 100%;
}

.site-top-header {
  background: var(--top-bg);
  border: 0;
}

.top-header-shell {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline-start: 48px;
  padding-inline-end: 40px;
}

.top-social,
.top-contact {
  display: inline-flex;
  align-items: center;
}

.top-social {
  gap: 12px;
}

.top-contact {
  gap: 18px;
}

.top-social-link,
.top-contact-link {
  color: var(--top-ink);
  transition: color 160ms ease;
}

.top-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--top-ink-strong);
  font-family: var(--site-font);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
}

.top-contact-text {
  direction: ltr;
  unicode-bidi: plaintext;
}

.top-contact-icon {
  font-size: 20px;
  line-height: 1;
}

.top-social-link:hover,
.top-contact-link:hover,
.top-social-link:focus-visible,
.top-contact-link:focus-visible {
  color: #705628;
}

.hero-surface {
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 54px,
      var(--surface-line) 54px,
      var(--surface-line) 55px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 54px,
      var(--surface-line) 54px,
      var(--surface-line) 55px
    ),
    var(--surface);
}

.site-main-header {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.main-header-shell {
  width: min(1138px, calc(100% - 18px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 220px minmax(0, 1fr) 180px;
  min-height: 102px;
  border-inline: 0;
}

.brand-cell,
.cta-cell,
.main-nav {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-cell,
.cta-cell,
.main-nav {
  border-inline-end: 0;
}

.brand-cell-right {
  border-inline-end: 0;
}

.brand-cell {
  padding-inline: 10px;
}

.brand-logo-img {
  width: min(160px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-cell-left .brand-logo-img {
  max-width: 90px;
}

.brand-cell-right .brand-logo-img {
  max-width: 90px;
}

.header-cta {
  width: 162px;
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.main-nav {
  direction: rtl;
}

.main-nav-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.main-nav-list li {
  display: flex;
  align-items: stretch;
  border-inline-start: 0;
}

.main-nav-list li:last-child {
  border-inline-end: 0;
}

.main-nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #22272f;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  position: relative;
  transition: color 220ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav-list .is-active a {
  color: #121d28;
  font-weight: 800;
}

.main-nav-list a::after {
  content: "";
  position: absolute;
  inset-inline-start: 20%;
  inset-inline-end: 20%;
  bottom: 29px;
  height: 2px;
  background: #111111;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.main-nav-list a:hover,
.main-nav-list a:focus-visible {
  color: #111111;
}

.main-nav-list a:hover::after,
.main-nav-list a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-law {
  padding: 60px 0 76px;
}

.hero-shell {
  width: min(1138px, calc(100% - 18px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-media {
  display: flex;
  justify-content: flex-start;
}

.hero-media-frame {
  width: 500px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 35px rgba(36, 30, 20, 0.15);
}

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

.hero-logo-overlay {
  position: absolute;
  left: 24px;
  bottom: 18px;
  width: min(74%, 380px);
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.38));
}

.hero-copy {
  direction: rtl;
  text-align: right;
}

.hero-badge {
  margin: 0;
  width: fit-content;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid #d7c39a;
  color: #b2935f;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.hero-title {
  margin: 18px 0 0;
  color: #0f1a24;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  font-weight: 800;
}

.hero-title-accent {
  color: var(--gold);
  /* font-weight: 500; */
}

.hero-description {
  margin: 22px 0 0;
  max-width: 540px;
  color: #1e2731;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.hero-btn {
  min-width: 182px;
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
}

.hero-btn-primary {
  background: var(--gold);
  color: #ffffff;
}

.hero-btn-secondary {
  border: 1px solid #d2b37f;
  color: #b29561;
  background: transparent;
}

.header-cta,
.hero-btn {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    background-color 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
}

.header-cta::after,
.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 33, 20, 0.18);
}

.header-cta:hover::after,
.header-cta:focus-visible::after,
.hero-btn:hover::after,
.hero-btn:focus-visible::after {
  opacity: 1;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: #a98a52;
  color: #ffffff;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .js-scroll-section[data-scroll-ready="true"] {
            opacity: 0;
        transform: translate3d(0, 64px, 0) scale(0.965);
        filter: blur(6px);
    transition:
      opacity 1180ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 1280ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 1080ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  }

  .js-scroll-section[data-scroll-ready="true"].is-scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.metrics-strip {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #b4965c;
}

.metrics-shell {
  width: 100%;
  margin: 0;
  padding-inline: clamp(10px, 2.2vw, 28px);
  background: #b4965c;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  text-align: center;
  direction: ltr;
  column-gap: clamp(4px, 0.8vw, 12px);
}

.metric-card {
  min-width: 0;
  padding: 12px clamp(8px, 1vw, 14px) 10px;
  direction: rtl;
}

.metric-value {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2.9vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric-label {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
}

.about-brand {
  background: #ffffff;
  border-top: 6px solid var(--gold);
  padding: clamp(42px, 5.2vw, 68px) 0;
}

.about-brand-shell {
  width: min(1138px, calc(100% - 28px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(26px, 4.1vw, 56px);
  align-items: center;
}

.about-brand-copy {
  direction: rtl;
  text-align: right;
}

.about-brand-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.about-brand-title {
  margin: 14px 0 0;
  color: #15212d;
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.15;
  font-weight: 800;
}

.about-brand-title-accent {
  color: var(--gold);
}

.about-brand-description {
  margin: 22px 0 0;
  color: #2a3540;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.8;
  font-weight: 500;
}

.about-brand-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  direction: rtl;
  text-align: right !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about-brand-list li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  text-align: right !important;
  color: #37414a;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.8;
  font-weight: 500;
}

.about-brand-list li + li {
  margin-top: 12px;
}

.about-brand-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: #9f814a;
  flex: 0 0 7px;
}

.about-brand-list-text {
  min-width: 0;
}

.about-brand-cta {
  margin-top: 24px;
  min-width: 138px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background-color 220ms ease;
}

.about-brand-cta:hover,
.about-brand-cta:focus-visible {
  transform: translateY(-2px);
  background: #a98a52;
  box-shadow: 0 12px 24px rgba(40, 31, 18, 0.18);
}

.about-brand-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 34px rgba(33, 29, 22, 0.12);
}

.about-brand-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.company-values {
  background: #b4965c;
  padding: clamp(34px, 4.7vw, 62px) 0;
}

.company-values-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(28px, 4.1vw, 64px);
  align-items: center;
  direction: ltr;
}

.company-values-media {
  width: 100%;
  max-width: 350px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(37, 29, 17, 0.18);
  aspect-ratio: 7 / 10;
}

.company-values-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.company-values-content {
  direction: rtl;
  text-align: right;
}

.company-values-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 800;
}

.company-values-grid {
  margin-top: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.8vw, 44px);
  row-gap: clamp(28px, 3.2vw, 46px);
}

.company-value-card {
  min-width: 0;
}

.main-header-shell,
.hero-shell,
.metrics-shell,
.about-brand-shell,
.company-values-shell,
.hero-copy,
.about-brand-copy,
.about-brand-media,
.company-values-content,
.company-values-media {
  min-width: 0;
}

.company-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #a68751;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.company-value-heading {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 35px);
  line-height: 1.25;
  font-weight: 700;
}

.company-value-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
  font-weight: 500;
}

.services-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 246, 239, 0.92) 100%);
  padding: clamp(46px, 5vw, 72px) 0 clamp(52px, 5.4vw, 84px);
}

.services-showcase-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.services-showcase-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.services-showcase-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.services-showcase-title {
  margin: 14px 0 0;
  color: #16222d;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.12;
  font-weight: 800;
}

.services-showcase-title-accent {
  color: var(--gold);
}

.services-showcase-description {
  margin: 18px auto 0;
  max-width: 660px;
  color: #2f3944;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  font-weight: 500;
}

.services-grid {
  margin-top: clamp(34px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  direction: rtl;
}

.service-card {
  min-width: 0;
  min-height: 286px;
  padding: 34px 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(233, 224, 208, 0.75);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 34px rgba(61, 48, 24, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(61, 48, 24, 0.1);
  border-color: rgba(200, 174, 118, 0.85);
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}

.service-card-title {
  margin: 18px 0 0;
  color: #111b26;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.25;
  font-weight: 800;
}

.service-card-text {
  margin: 14px 0 0;
  color: #343d46;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.75;
  font-weight: 500;
}

.service-card-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: #9b7b43;
  transform: translateX(-3px);
}

.service-card-link i {
  font-size: 16px;
}

.company-goals {
  background: #b99a5e;
  padding: clamp(42px, 5vw, 68px) 0 clamp(34px, 4.5vw, 52px);
}

.company-goals-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
  position: relative;
}

.company-goals-corner-logo {
  position: absolute;
  top: 0;
  right: -22px;
  width: min(184px, 26vw);
  height: auto;
  opacity: 0.5;
}

.company-goals-heading {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.company-goals-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.12;
  font-weight: 800;
}

.company-goals-description {
  margin: 18px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.85;
  font-weight: 500;
}

.company-goals-brand {
  margin-top: clamp(22px, 2.8vw, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-goals-brand-image {
  width: min(430px, 88vw);
  height: auto;
  display: block;
}

.company-goals-grid {
  margin-top: clamp(28px, 3.6vw, 42px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  direction: ltr;
}

.company-goal-card {
  min-width: 0;
  min-height: 196px;
  padding: 28px 30px 26px;
  border-radius: 14px;
  border: 1px solid rgba(233, 224, 208, 0.45);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(77, 55, 20, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: rtl;
  text-align: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.company-goal-card:hover,
.company-goal-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(61, 48, 24, 0.14);
  border-color: rgba(200, 174, 118, 0.82);
}

.company-goal-card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.company-goal-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  flex: 0 0 40px;
}

.company-goal-card-title {
  margin: 0;
  color: #1a2330;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.15;
  font-weight: 800;
}

.company-goal-card-text {
  width: 100%;
  margin: 16px auto 0;
  color: #313a44;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.95;
  font-weight: 500;
}

.client-journey {
  background: #ffffff;
  padding: clamp(46px, 5vw, 74px) 0 clamp(52px, 5.6vw, 82px);
}

.client-journey-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.client-journey-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.client-journey-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.client-journey-title {
  margin: 16px 0 0;
  color: #141f2b;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.18;
  font-weight: 800;
}

.client-journey-title-accent {
  color: var(--gold);
}

.client-journey-grid {
  margin-top: clamp(34px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  direction: rtl;
}

.journey-step-card {
  min-width: 0;
  min-height: 112px;
  padding: 22px 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(239, 231, 218, 0.85);
  background: #fbf7f0;
  box-shadow: 0 12px 24px rgba(84, 64, 28, 0.05);
  direction: rtl;
  text-align: center;
  position: relative;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.journey-step-card:hover,
.journey-step-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(61, 48, 24, 0.1);
  border-color: rgba(200, 174, 118, 0.78);
}

.journey-step-head {
  width: 100%;
  position: relative;
  min-height: 42px;
  padding-inline: 58px;
}

.journey-step-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.journey-step-title {
  margin: 0;
  color: #151f2a;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.journey-step-text {
  margin: 14px 0 0;
  color: #6d6d6b;
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.85;
  font-weight: 500;
}

.faq-section {
  background: #ffffff;
  padding: clamp(44px, 5vw, 76px) 0 clamp(52px, 5.8vw, 86px);
}

.faq-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.faq-title {
  margin: 0;
  color: #151f2a;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.18;
  font-weight: 800;
}

.faq-title-accent {
  color: var(--gold);
}

.faq-list {
  margin-top: clamp(34px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(229, 215, 189, 0.9);
  background: #fbf7f0;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(200, 174, 118, 0.82);
  box-shadow: 0 16px 30px rgba(74, 56, 25, 0.07);
}

.faq-item.is-open {
  background: #f9f4eb;
  box-shadow: 0 18px 32px rgba(74, 56, 25, 0.06);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #151f2a;
  font: inherit;
  text-align: right;
  cursor: pointer;
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c2631;
  font-size: 14px;
  line-height: 1;
  transition: transform 220ms ease;
  flex: 0 0 28px;
}

.faq-item.is-open .faq-question-icon {
  transform: rotate(180deg);
}

.faq-question-text {
  flex: 1 1 auto;
  color: #161f29;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-item:not(.is-open) .faq-answer {
  display: none;
}

.faq-answer p {
  margin: 0;
  color: #5f615f;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.95;
  font-weight: 500;
}

.contact-section {
  background: #ffffff;
  padding: clamp(48px, 5vw, 86px) 0 clamp(58px, 6vw, 94px);
}

.contact-section-shell {
  width: min(1138px, calc(100% - 26px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: start;
  direction: ltr;
}

.contact-form-card,
.contact-sidebar {
  direction: rtl;
}

.contact-form-card {
  min-width: 0;
  padding: clamp(24px, 2.3vw, 32px) clamp(18px, 1.9vw, 24px);
  border: 1px solid rgba(226, 214, 192, 0.92);
  border-radius: 18px;
  background: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  color: #202833;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.contact-label-required {
  color: #c84e48;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #dddbc5;
  border-radius: 14px;
  background: #ffffff;
  color: #1c2530;
  font: inherit;
  padding: 14px 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-input {
  min-height: 50px;
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #a5a29a;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(180, 150, 92, 0.92);
  box-shadow: 0 0 0 4px rgba(180, 150, 92, 0.14);
  background: #ffffff;
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #a8884b;
  box-shadow: 0 14px 28px rgba(94, 73, 33, 0.18);
  transform: translateY(-1px);
}

.contact-sidebar {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.contact-title {
  margin: 10px 0 0;
  color: #161f29;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.14;
  font-weight: 800;
  text-align: center;
}

.contact-title-accent {
  color: var(--gold);
}

.contact-description {
  margin: 14px auto 0;
  max-width: 440px;
  color: #5d615f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.95;
  font-weight: 500;
  text-align: center;
}

.contact-details {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  direction: ltr;
  text-decoration: none;
  transition: opacity 180ms ease;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  opacity: 0.88;
}

.contact-detail-copy {
  min-width: 0;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  direction: rtl;
  text-align: center;
}

.contact-detail-label {
  color: #202833;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.contact-detail-value {
  color: #1c2530;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.55;
  font-weight: 600;
  word-break: break-word;
}

.contact-detail-value-email {
  font-size: clamp(17px, 1.22vw, 21px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail-static {
}

.contact-detail-static .contact-detail-copy {
  max-width: 386px;
}

.contact-detail-value-location {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.6;
  font-weight: 500;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(180, 150, 92, 0.16);
}

.contact-note {
  margin-top: 4px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(215, 200, 173, 0.86);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}

.contact-note-title {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
}

.contact-note-text {
  margin: 0;
  color: #5e615f;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  font-weight: 500;
}

.site-footer {
  background: #b89b60;
  color: #ffffff;
  padding: clamp(42px, 4.6vw, 58px) 0;
}

.site-footer-shell {
  width: min(1138px, calc(100% - 28px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(180px, 0.75fr) minmax(250px, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  direction: rtl;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand-lockup {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
}

.footer-brand-mark {
  width: min(380px, 100%);
  height: auto;
  display: block;
  margin-inline: auto;
}

.footer-brand-description {
  margin: 22px auto 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-social-link {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-heading {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

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

.footer-links {
  text-align: center;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  transition: opacity 180ms ease;
}

.footer-links-list a:hover,
.footer-links-list a:focus-visible {
  opacity: 0.82;
}

.footer-contact {
  text-align: center;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.footer-contact-link-email {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-link-static {
  max-width: 320px;
  margin-inline: auto;
}

.footer-contact-text {
  display: inline-block;
}

.component-slot {
  display: none;
}

@media (max-width: 1180px) {
  .main-header-shell {
    grid-template-columns: 150px 180px minmax(0, 1fr) 150px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .metrics-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 4px;
  }

  .metric-value,
  .metric-label {
    white-space: normal;
  }

  .about-brand-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-brand-media {
    max-width: 780px;
    margin-inline: auto;
  }

  .about-brand-copy {
    max-width: 780px;
    margin-inline: auto;
  }

  .company-values-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-values-media {
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  .company-values-content {
    max-width: 780px;
    margin-inline: auto;
  }

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

  .company-goals-corner-logo {
    position: static;
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 20px;
    width: min(176px, 28vw);
  }

  .client-journey-grid {
    gap: 16px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 20px));
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: 26px;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 22px));
    grid-template-columns: minmax(280px, 1.2fr) minmax(170px, 0.7fr) minmax(220px, 0.9fr);
    gap: 28px;
  }

  .footer-heading {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .top-header-shell {
    min-height: 40px;
    height: auto;
    flex-wrap: wrap;
    row-gap: 6px;
    padding-inline-start: 14px;
    padding-inline-end: 14px;
  }

  .top-social {
    gap: 8px;
  }

  .top-contact {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .top-social-link {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .top-contact-link {
    font-size: 14px;
  }

  .top-contact-icon {
    font-size: 14px;
  }

  .main-header-shell {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    border-inline: 0;
  }

  .brand-cell,
  .cta-cell,
  .main-nav {
    min-height: 76px;
    border-inline-end: 0;
  }

  .brand-cell-left {
    order: 1;
    flex: 1 1 33.333%;
  }

  .cta-cell {
    order: 2;
    flex: 1 1 33.333%;
    justify-content: center;
    padding-inline-end: 0;
  }

  .brand-cell-right {
    order: 3;
    flex: 1 1 33.333%;
  }

  .brand-logo-img {
    width: min(122px, 100%);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #d7c8ad;
    background: rgba(255, 255, 255, 0.42);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #876c3b;
  }

  .mobile-menu-toggle {
    order: 4;
  }

  .main-nav {
    order: 5;
    display: none;
    flex: 1 1 100%;
    min-height: 0;
    border-top: 1px solid var(--stroke);
  }

  .mobile-menu-toggle:checked + .main-nav {
    display: block;
  }

  .main-nav-list {
    height: auto;
    padding: 8px 0;
    overflow-x: visible;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.18);
  }

  .main-nav-list li {
    border-inline: 0;
    border-top: 1px solid var(--stroke);
  }

  .main-nav-list li:first-child {
    border-top: 0;
  }

  .main-nav-list a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    font-size: 17px;
    white-space: normal;
    line-height: 1.35;
  }

  .main-nav-list a::after {
    inset-inline-start: auto;
    inset-inline-end: 18px;
    bottom: 11px;
    width: 44px;
    transform-origin: right;
  }

  .hero-law {
    padding: 36px 0 52px;
  }

  .hero-media-frame {
    width: min(500px, 100%);
    height: auto;
    aspect-ratio: 500 / 420;
  }

  .hero-logo-overlay {
    left: 14px;
    bottom: 12px;
    width: min(78%, 350px);
  }

  .hero-title {
    font-size: clamp(38px, 8.5vw, 58px);
  }

  .hero-badge {
    font-size: clamp(14px, 3.5vw, 20px);
  }

  .hero-description {
    font-size: clamp(15px, 3.4vw, 18px);
  }

  .hero-btn {
    min-width: 152px;
    min-height: 42px;
    font-size: clamp(14px, 3vw, 17px);
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .metrics-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 12px;
    column-gap: 8px;
  }

  .metric-card {
    padding: 12px 8px;
  }

  .metric-value {
    font-size: clamp(24px, 5.8vw, 32px);
  }

  .metric-label {
    font-size: clamp(12px, 2.6vw, 14px);
  }

  .about-brand {
    padding: 40px 0 52px;
  }

  .about-brand-shell {
    width: min(100%, calc(100% - 20px));
    gap: 24px;
  }

  .about-brand-copy,
  .company-values-content,
  .company-value-card {
    text-align: center;
  }

  .about-brand-kicker {
    font-size: clamp(16px, 3.2vw, 20px);
  }

  .about-brand-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .about-brand-description {
    font-size: clamp(16px, 3.9vw, 20px);
  }

  .about-brand-list li {
    font-size: clamp(15px, 3.5vw, 18px);
    justify-content: center;
    text-align: center !important;
  }

  .about-brand-list {
    align-items: center;
    text-align: center !important;
  }

  .about-brand-cta {
    min-height: 48px;
    font-size: clamp(16px, 3.7vw, 19px);
  }

  .company-values {
    padding: 38px 0 44px;
  }

  .company-values-shell {
    width: min(100%, calc(100% - 20px));
  }

  .company-values-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .company-values-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .company-value-heading {
    font-size: clamp(25px, 6.4vw, 32px);
  }

  .company-value-text {
    font-size: clamp(15px, 3.6vw, 18px);
  }

  .services-showcase {
    padding: 40px 0 46px;
  }

  .services-showcase-shell {
    width: min(100%, calc(100% - 20px));
  }

  .services-showcase-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .services-showcase-description {
    font-size: clamp(15px, 3.6vw, 18px);
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    min-height: 270px;
    padding: 28px 20px 24px;
  }

  .service-card-title {
    font-size: clamp(23px, 5.6vw, 30px);
  }

  .service-card-text {
    font-size: clamp(14px, 3.1vw, 16px);
  }

  .service-card-link {
    font-size: clamp(16px, 3.4vw, 18px);
  }

  .company-goals {
    padding: 38px 0 40px;
  }

  .company-goals-shell {
    width: min(100%, calc(100% - 20px));
  }

  .company-goals-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .company-goals-description {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .company-goals-grid {
    grid-template-columns: 1fr;
  }

  .company-goal-card {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .company-goal-card-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .company-goal-card-text {
    font-size: clamp(14px, 3.2vw, 16px);
  }

  .client-journey {
    padding: 40px 0 46px;
  }

  .client-journey-shell {
    width: min(100%, calc(100% - 20px));
  }

  .client-journey-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

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

  .journey-step-card {
    min-height: 0;
    padding: 20px 22px 18px;
  }

  .journey-step-head {
    min-height: 40px;
    padding-inline: 52px;
  }

  .journey-step-badge {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .journey-step-title {
    font-size: clamp(22px, 5.3vw, 30px);
  }

  .journey-step-text {
    font-size: clamp(14px, 3vw, 16px);
  }

  .faq-section {
    padding: 40px 0 46px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 20px));
  }

  .faq-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-question-text {
    font-size: clamp(17px, 4.1vw, 22px);
  }

  .faq-answer p {
    font-size: clamp(14px, 3vw, 16px);
  }

  .contact-section {
    padding: 40px 0 46px;
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-sidebar {
    order: -1;
    padding-top: 0;
  }

  .contact-description {
    max-width: 460px;
  }

  .contact-detail {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 14px;
  }

  .contact-detail-copy {
    max-width: 330px;
  }

  .contact-detail-static .contact-detail-copy {
    max-width: 320px;
  }

  .site-footer {
    padding: 38px 0 42px;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand-lockup,
  .footer-social {
    justify-content: center;
  }

  .footer-brand-description {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .top-header-shell {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
  }

  .metrics-shell {
    grid-template-columns: 1fr;
    padding-inline: 10px;
    row-gap: 0;
  }

  .metric-card {
    padding: 13px 8px 11px;
  }

  .about-brand {
    border-top-width: 4px;
    padding: 34px 0 42px;
  }

  .about-brand-shell {
    width: min(100%, calc(100% - 18px));
    gap: 20px;
  }

  .about-brand-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .about-brand-description {
    line-height: 1.7;
  }

  .about-brand-list {
    padding-inline-end: 0;
    align-items: center;
  }

  .about-brand-list li {
    margin-top: 0;
    line-height: 1.7;
  }

  .about-brand-list li + li {
    margin-top: 10px;
  }

  .company-values {
    padding: 32px 0 38px;
  }

  .company-values-shell {
    width: min(100%, calc(100% - 18px));
    gap: 20px;
  }

  .company-values-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .services-showcase {
    padding: 34px 0 40px;
  }

  .services-showcase-shell {
    width: min(100%, calc(100% - 18px));
  }

  .services-showcase-kicker {
    font-size: 16px;
  }

  .services-showcase-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .service-card {
    min-height: 0;
    border-radius: 24px;
  }

  .company-goals {
    padding: 32px 0 34px;
  }

  .company-goals-shell {
    width: min(100%, calc(100% - 18px));
  }

  .company-goals-corner-logo {
    width: min(160px, 56vw);
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .company-goals-title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .company-goals-brand-image {
    width: min(360px, 92vw);
  }

  .company-goal-card {
    padding: 22px 18px 20px;
  }

  .company-goal-card-head {
    gap: 10px;
  }

  .company-goal-card-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .client-journey {
    padding: 34px 0 40px;
  }

  .client-journey-shell {
    width: min(100%, calc(100% - 18px));
  }

  .client-journey-kicker {
    font-size: 16px;
  }

  .client-journey-title {
    font-size: clamp(28px, 9.1vw, 36px);
  }

  .client-journey-grid {
    margin-top: 26px;
  }

  .journey-step-card {
    padding: 18px 18px 16px;
  }

  .journey-step-badge {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .journey-step-head {
    min-height: 38px;
    padding-inline: 46px;
  }

  .journey-step-title {
    font-size: clamp(21px, 6vw, 28px);
  }

  .faq-section {
    padding: 34px 0 40px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 18px));
  }

  .faq-title {
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .faq-list {
    margin-top: 26px;
    gap: 10px;
  }

  .faq-question {
    padding: 15px 14px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .contact-section {
    padding: 36px 0 42px;
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 18px));
    gap: 24px;
  }

  .contact-form-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .contact-label {
    font-size: 16px;
  }

  .contact-input,
  .contact-textarea {
    padding: 13px 14px;
    font-size: 15px;
  }

  .contact-input {
    min-height: 48px;
  }

  .contact-textarea {
    min-height: 120px;
  }

  .contact-submit {
    min-height: 50px;
    font-size: 18px;
  }

  .contact-kicker {
    font-size: 16px;
  }

  .contact-title {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .contact-description {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-detail {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 12px;
  }

  .contact-detail-copy {
    max-width: 272px;
  }

  .contact-detail-static .contact-detail-copy {
    max-width: 258px;
  }

  .contact-detail-label {
    font-size: 16px;
  }

  .contact-detail-value {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .contact-detail-value-location {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-detail-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
    font-size: 18px;
  }

  .contact-note {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .contact-note-title {
    font-size: 20px;
  }

  .contact-note-text {
    font-size: 14px;
    line-height: 1.85;
  }

  .site-footer {
    padding: 34px 0 38px;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 18px));
    gap: 26px;
  }

  .footer-brand-lockup {
    justify-content: center;
  }

  .footer-brand-mark {
    width: min(300px, 100%);
  }

  .footer-brand-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .footer-heading {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .footer-links-list {
    gap: 12px;
  }

  .footer-links-list a,
  .footer-contact-link {
    font-size: 15px;
  }

  .footer-contact-link-static {
    max-width: 290px;
  }

  .footer-social {
    margin-top: 18px;
    gap: 16px;
  }

  .footer-social-link {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .main-header-shell {
    width: calc(100% - 12px);
  }

  .brand-cell,
  .cta-cell,
  .brand-cell-right {
    min-height: 64px;
  }

  .brand-logo-img {
    width: min(108px, 100%);
  }

  .hero-shell,
  .about-brand-shell,
  .company-values-shell,
  .services-showcase-shell,
  .company-goals-shell,
  .client-journey-shell,
  .faq-shell,
  .contact-section-shell,
  .site-footer-shell {
    width: calc(100% - 12px);
  }

  .hero-title {
    line-height: 1.2;
  }

  .top-contact {
    justify-content: center;
  }

  .top-contact-link {
    font-size: 13px;
  }
}
html,
body {
  direction: ltr;
  text-align: left;
}
