* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  color: var(--text);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.service-single-hero {
  --ssh-gold: #d6a64a;
  --ssh-gold-soft: #e4b85f;
  --ssh-black: #0a0a0c;
  --ssh-white: #f7f6f3;
  --ssh-body: #c9c8c4;
  --ssh-muted: #9b9b98;

  position: relative;
  width: 100%;
  min-height: 460px;
  background-color: var(--ssh-black);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.service-single-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-single-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.service-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 8, 0.97) 0%,
    rgba(8, 8, 10, 0.92) 30%,
    rgba(8, 8, 10, 0.55) 50%,
    rgba(8, 8, 10, 0.15) 66%,
    rgba(8, 8, 10, 0) 80%
  );
}
.service-single-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 0 56px;
}
.service-single-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 48px;
}
.service-single-hero__breadcrumb a {
  color: var(--ssh-gold);
  text-decoration: none;
}
.service-single-hero__breadcrumb a:hover {
  text-decoration: underline;
}
.service-single-hero__crumb-sep {
  color: var(--ssh-muted);
}
.service-single-hero__crumb-current {
  color: var(--ssh-white);
  font-weight: 500;
}
.service-single-hero__content {
  max-width: 600px;
}
.service-single-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ssh-gold);
  margin-bottom: 20px;
}
.service-single-hero__eyebrow-line {
  width: 22px;
  height: 1px;
  background: var(--ssh-gold);
}
.service-single-hero__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  margin: 0 0 22px;
}
.service-single-hero__title-line {
  display: block;
  color: var(--ssh-white);
}
.service-single-hero__title-line--accent {
  color: var(--ssh-gold-soft);
}
.service-single-hero__divider {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--ssh-gold);
  margin-bottom: 22px;
}
.service-single-hero__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ssh-body);
  max-width: 460px;
  margin: 0 0 36px;
}
.service-single-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.service-single-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 6px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.service-single-hero__btn svg {
  width: 15px;
  height: 9px;
  flex-shrink: 0;
}
.service-single-hero__btn--solid {
  background: linear-gradient(135deg, var(--ssh-gold-soft), var(--ssh-gold));
  color: var(--ssh-black);
}
.service-single-hero__btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(214, 166, 74, 0.28);
}
.service-single-hero__btn--outline {
  background: transparent;
  color: var(--ssh-white);
  border: 1px solid rgba(247, 246, 243, 0.35);
}
.service-single-hero__btn--outline svg {
  width: 16px;
  height: 16px;
}
.service-single-hero__btn--outline:hover {
  background: rgba(247, 246, 243, 0.08);
  border-color: rgba(247, 246, 243, 0.6);
}

@media (max-width: 1200px) {
  .service-single-hero__container {
    padding: 40px 32px 48px;
  }
}

@media (max-width: 992px) {
  .service-single-hero {
    min-height: 420px;
  }
  .service-single-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(6, 6, 8, 0.97) 0%,
      rgba(8, 8, 10, 0.92) 45%,
      rgba(8, 8, 10, 0.6) 65%,
      rgba(8, 8, 10, 0.25) 85%,
      rgba(8, 8, 10, 0.1) 100%
    );
  }
  .service-single-hero__content {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .service-single-hero {
    min-height: 30vh;
  }
  .service-single-hero__img {
    object-position: 68% center;
  }
  .service-single-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 8, 0.6) 0%,
      rgba(6, 6, 8, 0.9) 55%,
      rgba(6, 6, 8, 0.98) 100%
    );
  }
  .service-single-hero__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 30vh;
    padding: 40px 24px 48px;
  }
  .service-single-hero__breadcrumb {
    margin-bottom: 32px;
  }
  .service-single-hero__content {
    max-width: 100%;
  }
  .service-single-hero__title {
    font-size: clamp(30px, 8.5vw, 42px);
  }
  .service-single-hero__desc {
    max-width: 100%;
    font-size: 15px;
  }
  .service-single-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .service-single-hero__btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-single-hero__container {
    padding: 32px 20px 40px;
  }
  .service-single-hero__breadcrumb {
    font-size: 12.5px;
    margin-bottom: 26px;
  }
  .service-single-hero__eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .service-single-hero__divider {
    width: 48px;
    margin-bottom: 18px;
  }
  .service-single-hero__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .service-single-hero__btn {
    font-size: 14px;
    padding: 14px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-single-hero__btn {
    transition: none;
  }
}





.service-detail {
    --sd-gold: #C9962F;
    --sd-gold-soft: #E3A93B;
    --sd-black: #111114;
    --sd-black-2: #1B1B1E;
    --sd-heading: #17171A;
    --sd-body: #5B5B60;
    --sd-bg: #FAFAF8;
    --sd-border: #E9E7E1;

    position: relative;
    background: var(--sd-bg);
    padding: 0 40px 20px;
}

.service-detail::before {
    content: "";
    display: block;
    height: 3px;
    margin-bottom: 20px;
}

.service-detail__container {
    max-width: 1320px;
    margin: 0 auto;
}

.service-detail__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sd-gold);
    margin-bottom: 16px;
}

.service-detail__eyebrow-line {
    width: 26px;
    height: 1px;
    background: var(--sd-gold);
}

.service-detail__row--essence {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sd-border);
}

.service-detail__essence-text {
    flex: 1 1 480px;
    max-width: 520px;
    padding-top: 14px;
}

.service-detail__title {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.28;
    color: var(--sd-heading);
    margin: 0 0 18px;
}

.service-detail__desc {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--sd-body);
    max-width: 420px;
    margin: 0 0 24px;
}

.service-detail__divider {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--sd-gold);
}

.service-detail__card {
    flex: 0 0 380px;
    max-width: 380px;
    background: var(--sd-black);
    border-radius: 12px;
    padding: 8px 28px 28px;
    box-shadow: 0 20px 40px rgba(17, 17, 20, 0.18);
}

.service-detail__card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(247, 246, 243, 0.08);
}

.service-detail__card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(214, 166, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-gold-soft);
}

.service-detail__card-icon svg {
    width: 20px;
    height: 20px;
}

.service-detail__card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-detail__card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--sd-gold-soft);
}

.service-detail__card-value {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #F7F6F3;
}

.service-detail__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--sd-gold-soft), var(--sd-gold));
    color: var(--sd-black);
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}

.service-detail__card-btn svg {
    width: 14px;
    height: 9px;
}

.service-detail__card-btn:hover {
    transform: translateY(-2px);
    gap: 14px;
    box-shadow: 0 12px 24px rgba(227, 169, 59, 0.28);
}

.service-detail__row--intent {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.service-detail__intent-label {
    flex: 0 0 auto;
    align-self: flex-start;
    padding-top: 6px;
}

.service-detail__intent-label .service-detail__eyebrow {
    margin-bottom: 0;
    white-space: nowrap;
}

.service-detail__intent-icon {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    color: var(--sd-gold);
}

.service-detail__intent-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail__intent-desc {
    flex: 1 1 auto;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--sd-heading);
    margin: 0;
    max-width: 660px;
}

@media (max-width: 1100px) {
    .service-detail__card { flex: 0 0 340px; max-width: 340px; }
}

@media (max-width: 992px) {
    .service-detail { padding: 0 32px 60px; }
    .service-detail::before { margin-bottom: 48px; }
    .service-detail__row--essence { flex-wrap: wrap; }
    .service-detail__essence-text { flex: 1 1 100%; max-width: 100%; }
    .service-detail__card { flex: 1 1 100%; max-width: 440px; }
    .service-detail__row--intent { flex-wrap: wrap; row-gap: 20px; }
    .service-detail__intent-desc { flex: 1 1 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    .service-detail { padding: 0 24px 48px; }
    .service-detail::before { margin-bottom: 40px; }
    .service-detail__row--essence { gap: 32px; padding-bottom: 40px; }
    .service-detail__title { font-size: 26px; }
    .service-detail__row--intent {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 36px;
        gap: 20px;
    }
    .service-detail__intent-icon { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
    .service-detail { padding: 0 18px 40px; }
    .service-detail__title { font-size: 24px; }
    .service-detail__desc { font-size: 14.5px; }
    .service-detail__card { padding: 6px 20px 22px; }
    .service-detail__card-item { padding: 16px 0; gap: 12px; }
    .service-detail__card-icon { width: 34px; height: 34px; }
    .service-detail__card-icon svg { width: 17px; height: 17px; }
    .service-detail__card-value { font-size: 14px; }
    .service-detail__intent-desc { font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .service-detail__card-btn { transition: none; }
}




.impact-section {
  --imp-gold: #e3a93b;
  --imp-gold-soft: #f0c264;
  --imp-black: #0a0a0c;
  --imp-black-2: #131315;
  --imp-white: #f7f6f3;
  --imp-body: #b9b8b4;
  --imp-border: rgba(227, 169, 59, 0.35);

  position: relative;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(227, 169, 59, 0.08) 0%,
      rgba(227, 169, 59, 0) 45%
    ),
    var(--imp-black);
  padding: 20px 40px;
}
.impact-section__container {
  max-width: 1320px;
  margin: 0 auto;
}
.impact-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.impact-section__eyebrow {
  display: block;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--imp-gold);
  margin-bottom: 14px;
}
.impact-section__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  color: var(--imp-white);
  margin: 0 0 18px;
}
.impact-section__divider {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--imp-gold);
}
.impact-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-card {
  position: relative;
  background: var(--imp-black-2);
  border: 1px solid var(--imp-border);
  border-bottom: 5px solid var(--imp-border);
  border-radius: 20px;
  padding: 40px 24px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-card:last-child {
  border-right: none;
}
.impact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--imp-gold);
  margin-bottom: 18px;
}
.impact-card__icon svg {
  width: 100%;
  height: 100%;
}
.impact-card__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--imp-gold-soft);
  margin: 0 0 14px;
}
.impact-card__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--imp-body);
  margin: 0 0 24px;
  max-width: 240px;
}
.impact-card__bottom-line {
  display: block;
  width: 60%;
  height: 2px;
  background: var(--imp-gold);
  margin-top: auto;
}

@media (max-width: 1100px) {
  .impact-section {
    padding: 56px 32px;
  }
}

@media (max-width: 900px) {
  .impact-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-card {
    border-bottom: 1px solid var(--imp-border);
  }
  .impact-card:nth-child(2),
  .impact-card:nth-child(4) {
    border-right: none;
  }
  .impact-card:nth-child(3),
  .impact-card:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .impact-section {
    padding: 48px 24px;
  }
  .impact-section__header {
    margin-bottom: 32px;
  }
  .impact-card {
    padding: 32px 20px 28px;
  }
}

@media (max-width: 560px) {
  .impact-section__grid {
    grid-template-columns: 1fr;
  }
  .impact-card {
    border-right: none !important;
    border-bottom: 1px solid var(--imp-border);
  }
  .impact-card:last-child {
    border-bottom: none;
  }
  .impact-card__desc {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 40px 18px;
  }
  .impact-section__title {
    font-size: 22px;
  }
  .impact-card__icon {
    width: 48px;
    height: 48px;
  }
  .impact-card__title {
    font-size: 15.5px;
  }
  .impact-card__desc {
    font-size: 13px;
  }
}



.why-us {
  --wu-gold: #c9962f;
  --wu-heading: #17171a;
  --wu-body: #6d6d72;
  --wu-border: #e9e7e1;
  --wu-bg: #ffffff;

  background: var(--wu-bg);
  padding: 20px 40px;
}
.why-us__container {
  max-width: 1320px;
  margin: 0 auto;
}
.why-us__header {
  text-align: center;
  margin-bottom: 40px;
}
.why-us__eyebrow {
  display: block;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wu-gold);
  margin-bottom: 14px;
}
.why-us__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--wu-heading);
  margin: 0;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--wu-bg);
  border: 1px solid var(--wu-border);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(23, 23, 26, 0.07);
  border-color: rgba(201, 150, 47, 0.35);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  color: var(--wu-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card__icon svg {
  width: 100%;
  height: 100%;
}
.why-card__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--wu-heading);
  margin: 0 0 10px;
  line-height: 1.35;
}
.why-card__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--wu-body);
  margin: 0;
}

@media (max-width: 1200px) {
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .why-us {
    padding: 60px 32px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 52px 24px;
  }
  .why-us__header {
    margin-bottom: 32px;
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-card {
    padding: 28px 16px;
  }
}

@media (max-width: 480px) {
  .why-us {
    padding: 44px 18px;
  }
  .why-us__title {
    font-size: 22px;
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }
  .why-card__title {
    font-size: 14.5px;
  }
  .why-card__desc {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card {
    transition: none;
  }
}




.services-section {
  --gold: #c8891a;
  --gold-dark: #b87a12;
  --card-bg: #ffffff;
  --text-dark: #1e2a38;
  --border: #e7e5e0;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  padding: 20px 40px;
}
.services-section * {
  box-sizing: border-box;
}
.services-section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.services-section .eyebrow {
  text-align: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.services-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.services-section .card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.services-section .card:hover {
  box-shadow: 0 8px 24px rgba(20, 30, 45, 0.08);
  transform: translateY(-2px);
}
.services-section .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}
.services-section .content h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.services-section a.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.services-section a.learn-more svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.services-section a.learn-more:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .services-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-section {
    padding: 32px 16px;
  }
  .services-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .services-section .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 12px;
  }
  .services-section .icon {
    width: 36px;
    height: 36px;
  }
  .services-section .content h3 {
    font-size: 14px;
  }
  .services-section a.learn-more {
    font-size: 13px;
  }
}
