body.hlg-landing-body {
  margin: 0;
  background: #f7f3eb;
}

.hlg-landing {
  --navy: #071c2c;
  --navy-2: #0a2e3c;
  --teal: #0b6670;
  --teal-dark: #073f46;
  --gold: #c5a46d;
  --gold-deep: #a77d36;
  --ivory: #f7f3eb;
  --paper: #fffdf8;
  --ink: #081e30;
  --muted: #66727a;
  --line: #ddd6ca;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
  direction: rtl;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hlg-landing,
.hlg-landing * {
  box-sizing: border-box;
}

.hlg-landing a {
  color: inherit;
  text-decoration: none;
}

.hlg-landing p,
.hlg-landing h1,
.hlg-landing h2,
.hlg-landing h3,
.hlg-landing address {
  font-family: inherit;
}

.hlg-container {
  width: min(calc(100% - 64px), 1380px);
  margin-inline: auto;
}

.hlg-skip-link {
  position: fixed;
  inset-inline-start: 24px;
  top: -80px;
  z-index: 99999;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.hlg-skip-link:focus {
  top: 0;
}

.hlg-hero {
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 44% 56%;
  direction: ltr;
  background:
    radial-gradient(circle at 75% 12%, rgba(197, 164, 109, 0.16), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--ivory));
}

.hlg-hero-visual {
  min-height: 760px;
  overflow: hidden;
  border-start-end-radius: 210px;
  background:
    linear-gradient(180deg, rgba(6, 24, 38, 0.05), rgba(6, 24, 38, 0.28)),
    url("./hero-architecture.webp") center / cover no-repeat,
    #153846;
  box-shadow: 18px 0 45px rgba(7, 28, 44, 0.14);
}

.hlg-hero-content {
  direction: rtl;
  display: flex;
  align-items: center;
  padding: 60px clamp(36px, 5vw, 88px) 46px;
}

.hlg-hero-copy {
  width: min(100%, 770px);
  margin-inline: auto;
}

.hlg-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-deep);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 700;
}

.hlg-eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hlg-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4.4vw, 28px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.hlg-hero-description {
  margin: 24px 0 0;
  color: #4d5960;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.95;
}

.hlg-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hlg-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hlg-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 28, 44, 0.18);
}

.hlg-button-primary {
  min-width: 250px;
  background: linear-gradient(180deg, #d4b679, #b98c3f);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(167, 125, 54, 0.28);
}

.hlg-button-secondary {
  min-width: 220px;
  border-color: var(--teal);
  background: rgba(255, 253, 248, 0.78);
  color: var(--teal-dark);
}

.hlg-seo-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.hlg-seo-chips a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #d8d3cb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.hlg-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hlg-trust-grid article {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #ded7cc;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 9px 24px rgba(7, 28, 44, 0.08);
}

.hlg-trust-grid article > span {
  color: var(--gold-deep);
  font-size: 32px;
}

.hlg-trust-grid strong,
.hlg-trust-grid small {
  display: block;
}

.hlg-trust-grid strong {
  color: var(--navy);
  font-size: 14px;
}

.hlg-trust-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.hlg-promise-strip {
  border-block: 1px solid rgba(197, 164, 109, 0.35);
  background: var(--navy);
  color: var(--ivory);
}

.hlg-promise-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.hlg-promise-grid > div {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px;
  border-inline-end: 1px solid rgba(197, 164, 109, 0.3);
}

.hlg-promise-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
}

.hlg-section {
  padding: 112px 0;
}

.hlg-section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.hlg-kicker {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 15px;
  font-weight: 800;
}

.hlg-section-heading h2,
.hlg-why-intro h2,
.hlg-center-heading h2,
.hlg-faq-intro h2,
.hlg-contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 4vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.hlg-section-heading > p,
.hlg-why-intro > p,
.hlg-center-heading > p,
.hlg-faq-intro > p,
.hlg-contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.hlg-services-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(197, 164, 109, 0.13), transparent 22%),
    var(--paper);
}

.hlg-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.hlg-service-card {
  min-height: 300px;
  padding: 34px 28px 30px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hlg-service-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 28, 44, 0.1);
}

.hlg-service-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 18px;
}

.hlg-service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.hlg-service-card p {
  margin: 14px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.hlg-service-card > a,
.hlg-why-intro > a {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.hlg-offices-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7, 28, 44, 0.96), rgba(7, 63, 70, 0.9)),
    url("./hero-architecture.webp") center 65% / cover no-repeat;
}

.hlg-section-heading-light h2,
.hlg-section-heading-light > p {
  color: var(--ivory);
}

.hlg-section-heading-light > p {
  color: #c8d0d1;
}

.hlg-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hlg-office-card {
  min-height: 445px;
  display: grid;
  grid-template-columns: 32% 68%;
  overflow: hidden;
  border: 1px solid rgba(197, 164, 109, 0.45);
  border-radius: 16px;
  background: rgba(5, 27, 38, 0.82);
  color: var(--ivory);
}

.hlg-office-card.featured {
  background: rgba(255, 253, 248, 0.97);
  color: var(--navy);
}

.hlg-office-city {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 24px;
  border-inline-end: 1px solid rgba(197, 164, 109, 0.35);
  background: rgba(197, 164, 109, 0.1);
}

.hlg-office-city span,
.hlg-office-tag {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.hlg-office-card.featured .hlg-office-city span,
.hlg-office-card.featured .hlg-office-tag {
  color: var(--gold-deep);
}

.hlg-office-city strong {
  color: rgba(197, 164, 109, 0.4);
  font-family: Georgia, serif;
  font-size: clamp(27px, 3vw, 42px);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}

.hlg-office-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 36px;
}

.hlg-office-tag {
  margin: 0 0 16px;
}

.hlg-office-copy h3 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 20px);
  line-height: 1.55;
}

.hlg-office-copy > p:not(.hlg-office-tag) {
  margin: 18px 0 0;
  color: #c4ced0;
  font-size: 15px;
  line-height: 1.9;
}

.hlg-office-card.featured .hlg-office-copy > p:not(.hlg-office-tag) {
  color: var(--muted);
}

.hlg-office-copy address {
  margin: auto 0 12px;
  color: inherit;
  font-size: 13px;
  font-style: normal;
  opacity: 0.8;
}

.hlg-office-copy > a {
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.hlg-office-card.featured .hlg-office-copy > a {
  color: var(--teal-dark);
}

.hlg-why-section {
  background: var(--ivory);
}

.hlg-why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 8vw, 120px);
}

.hlg-why-intro > p,
.hlg-faq-intro > p {
  margin-top: 24px;
}

.hlg-why-intro > a {
  display: inline-block;
  margin-top: 28px;
}

.hlg-why-list {
  border-top: 1px solid var(--line);
}

.hlg-why-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.hlg-why-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
}

.hlg-why-list h3,
.hlg-process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.hlg-why-list p,
.hlg-process-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hlg-process-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.hlg-center-heading {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.hlg-center-heading > p {
  margin-top: 15px;
}

.hlg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hlg-process-grid article {
  padding: 0 24px;
  text-align: center;
}

.hlg-process-grid article > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: Georgia, serif;
}

.hlg-faq-section {
  background: #ede8df;
}

.hlg-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
}

.hlg-faq-list {
  border-top: 1px solid #cbc2b4;
}

.hlg-faq-list details {
  border-bottom: 1px solid #cbc2b4;
}

.hlg-faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.hlg-faq-list summary::-webkit-details-marker {
  display: none;
}

.hlg-faq-list summary b {
  color: var(--gold-deep);
  font-size: 28px;
  font-weight: 300;
}

.hlg-faq-list details[open] summary b {
  transform: rotate(45deg);
}

.hlg-faq-list details p {
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.hlg-contact-section {
  padding: 86px 0;
  background: var(--navy);
}

.hlg-contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.hlg-contact-copy h2 {
  color: var(--ivory);
}

.hlg-contact-copy > p {
  margin-top: 18px;
  color: #bac5c7;
}

.hlg-contact-actions {
  min-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.hlg-contact-primary {
  background: var(--gold);
  color: var(--navy);
}

.hlg-contact-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 13px 18px 15px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hlg-contact-phone-block > span {
  color: #d6dddf;
  font-size: 13px;
  font-weight: 700;
}

.hlg-contact-phone-block .hlg-contact-phone {
  color: #fff;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.hlg-contact-phone-block .hlg-contact-phone:hover,
.hlg-contact-phone-block .hlg-contact-phone:focus-visible {
  color: var(--gold);
}

.hlg-contact-actions > a:last-of-type {
  color: #c6d0d2;
  font-size: 14px;
}

.hlg-floating-whatsapp {
  position: fixed;
  z-index: 9999;
  inset-inline-start: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #16865a;
  color: #fff;
  box-shadow: 0 10px 28px rgba(7, 28, 44, 0.28);
  font-size: 24px;
}

@media (max-width: 1180px) {
  .hlg-container { width: min(calc(100% - 40px), 1180px); }
  .hlg-hero { grid-template-columns: 40% 60%; }
  .hlg-hero-content { padding-inline: 34px; }
  .hlg-seo-chips, .hlg-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hlg-hero { display: block; min-height: 0; padding-top: 290px; position: relative; }
  .hlg-hero-visual { position: absolute; inset: 0 0 auto; width: 100%; min-height: 380px; height: 380px; border-radius: 0; }
  .hlg-hero-content { position: relative; display: block; padding: 0 20px 56px; }
  .hlg-hero-copy { padding: 34px 28px; border: 1px solid rgba(197,164,109,.3); border-radius: 22px; background: rgba(255,253,248,.97); box-shadow: 0 18px 50px rgba(7,28,44,.12); }
  .hlg-promise-grid { grid-template-columns: repeat(2, 1fr); }
  .hlg-section { padding: 82px 0; }
  .hlg-section-heading, .hlg-why-grid, .hlg-faq-grid, .hlg-contact-panel { grid-template-columns: 1fr; gap: 34px; }
  .hlg-office-grid { grid-template-columns: 1fr; }
  .hlg-process-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 0; }
  .hlg-contact-actions { min-width: 0; width: min(100%, 420px); }
}

@media (max-width: 640px) {
  .hlg-container { width: min(calc(100% - 30px), 600px); }
  .hlg-hero { padding-top: 230px; }
  .hlg-hero-visual { height: 300px; min-height: 300px; }
  .hlg-hero-copy { padding: 28px 20px; }
  .hlg-eyebrow { font-size: 13px; }
  .hlg-hero h1 { font-size: clamp(28px, 10.5vw, 28px); }
  .hlg-hero-description { font-size: 16px; }
  .hlg-hero-actions { flex-direction: column; gap: 11px; }
  .hlg-button, .hlg-button-primary, .hlg-button-secondary { width: 100%; min-width: 0; min-height: 56px; font-size: 15px; }
  .hlg-seo-chips { grid-template-columns: 1fr 1fr; }
  .hlg-seo-chips a { font-size: 11px; }
  .hlg-trust-grid, .hlg-services-grid, .hlg-process-grid { grid-template-columns: 1fr; }
  .hlg-promise-grid strong { font-size: 12px; }
  .hlg-section { padding: 66px 0; }
  .hlg-section-heading h2, .hlg-why-intro h2, .hlg-center-heading h2, .hlg-faq-intro h2, .hlg-contact-copy h2 { font-size: 24px; }
  .hlg-section-heading > p, .hlg-why-intro > p, .hlg-center-heading > p, .hlg-faq-intro > p, .hlg-contact-copy > p { font-size: 16px; }
  .hlg-service-card { min-height: 0; padding: 27px 23px; }
  .hlg-office-card { min-height: 0; grid-template-columns: 1fr; }
  .hlg-office-city { min-height: 82px; flex-direction: row; align-items: center; padding: 20px 24px; border-inline-end: 0; border-bottom: 1px solid rgba(197,164,109,.35); }
  .hlg-office-city strong { font-size: 22px; writing-mode: horizontal-tb; transform: none; }
  .hlg-office-copy { padding: 30px 24px; }
  .hlg-office-copy address { margin-top: 28px; }
  .hlg-contact-section { padding: 66px 0; }
  .hlg-floating-whatsapp { inset-inline-start: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .hlg-landing * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
