:root {
  --black: #111111;
  --gray-bg: #f2f2f2;
  --text: #222222;
  --muted: #5c5c5c;
  --white: #ffffff;
}
* {
  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;
}
.services-hero {
  --shero-gold: #d6a64a;
  --shero-gold-soft: #e4b85f;
  --shero-black: #0a0a0c;
  --shero-white: #f7f6f3;
  --shero-body: #c9c8c4;

  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: var(--shero-black);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.services-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 8, 0.97) 0%,
    rgba(8, 8, 10, 0.92) 32%,
    rgba(8, 8, 10, 0.55) 52%,
    rgba(8, 8, 10, 0.15) 68%,
    rgba(8, 8, 10, 0) 82%
  );
}
.services-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px;
}
.services-hero__content {
  max-width: 600px;
}
.services-hero__eyebrow {
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shero-gold);
  margin-bottom: 22px;
}
.services-hero__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.18;
  margin: 0 0 28px;
}
.services-hero__title-line {
  display: block;
  color: var(--shero-white);
}
.services-hero__title-line--accent {
  color: var(--shero-gold-soft);
}
.services-hero__divider {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--shero-gold);
  margin-bottom: 28px;
}
.services-hero__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--shero-body);
  max-width: 480px;
  margin: 0;
}

@media (max-width: 1200px) {
  .services-hero__container {
    padding: 90px 32px;
  }
}

@media (max-width: 992px) {
  .services-hero {
    min-height: 560px;
  }
  .services-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%
    );
  }
  .services-hero__content {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 30vh;
    padding: 0;
  }
  .services-hero__img {
    object-position: 68% center;
  }
  .services-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 8, 0.55) 0%,
      rgba(6, 6, 8, 0.88) 55%,
      rgba(6, 6, 8, 0.98) 100%
    );
  }
  .services-hero__container {
    padding: 60px 24px 56px;
    display: flex;
    align-items: flex-end;
    min-height: 30vh;
  }
  .services-hero__content {
    max-width: 100%;
  }
  .services-hero__title {
    font-size: clamp(28px, 8vw, 38px);
  }
  .services-hero__desc {
    max-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-hero__container {
    padding: 48px 20px 44px;
  }
  .services-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
  }
  .services-hero__title {
    margin-bottom: 20px;
  }
  .services-hero__divider {
    width: 48px;
    margin-bottom: 20px;
  }
  .services-hero__desc {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero * {
    transition: none !important;
  }
}






.core-services {
  --cs-gold: #c9962f;
  --cs-dark: #17171a;
  --cs-heading: #17171a;
  --cs-body: #6d6d72;
  --cs-border: #eceae4;
  --cs-bg: #ffffff;

  background-color: var(--cs-bg);
  padding: 30px 40px;
}
.core-services__container {
  max-width: 1280px;
  margin: 0 auto;
}
.core-services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.core-services__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 18px;
}
.core-services__eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--cs-gold);
}
.core-services__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--cs-heading);
  margin: 0 0 18px;
  line-height: 1.25;
}
.core-services__subtitle {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--cs-body);
  margin: 0 0 26px;
}
.core-services__divider {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--cs-gold);
}
.core-services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.service-card {
  flex: 0 1 340px;
  max-width: 340px;
  background: var(--cs-bg);
  border: 1px solid var(--cs-gold);
  border-bottom: 5px solid var(--cs-gold);
  border-radius: 10px;
  padding: 40px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23, 23, 26, 0.08);
}
.service-card__number {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--cs-gold);
  margin-bottom: 10px;
}
.service-card__number-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--cs-gold);
  margin-bottom: 24px;
}
.service-card__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--cs-dark);
  color: var(--cs-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg {
  width: 42px;
  height: 42px;
}
.service-card__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: var(--cs-heading);
  margin: 0 0 16px;
  min-height: 54px;
  display: flex;
  align-items: center;
}
.service-card__divider {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--cs-gold);
  margin-bottom: 18px;
}
.service-card__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--cs-body);
  margin: 0 0 26px;
  flex-grow: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-gold);
  text-decoration: none;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.service-card__link svg {
  width: 15px;
  height: 9px;
}
.service-card__link:hover {
  gap: 12px;
  color: var(--cs-dark);
}

@media (max-width: 1100px) {
  .service-card {
    flex: 0 1 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
}

@media (max-width: 900px) {
  .core-services {
    padding: 80px 32px;
  }
}

@media (max-width: 768px) {
  .core-services {
    padding: 64px 24px;
  }
  .core-services__header {
    margin-bottom: 48px;
  }
  .core-services__grid {
    gap: 24px;
  }
  .service-card {
    flex: 0 1 100%;
    max-width: 440px;
    padding: 36px 28px 32px;
  }
  .service-card__title {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .core-services {
    padding: 52px 18px;
  }
  .core-services__title {
    font-size: 26px;
  }
  .core-services__subtitle {
    font-size: 14.5px;
  }
  .service-card {
    padding: 32px 22px 28px;
    border: 1px solid var(--cs-gold);
    border-radius: 10px;
  }
  .service-card__icon {
    width: 72px;
    height: 72px;
  }
  .service-card__icon svg {
    width: 36px;
    height: 36px;
  }
  .service-card__title {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }
}





.cta-banner {
  --cta-gold: #e3a93b;
  --cta-gold-soft: #f0c264;
  --cta-black: #0c0c0e;
  --cta-black-2: #1a1a1d;
  --cta-white: #f7f6f3;
  --cta-body: #c7c6c2;

  padding: 20px 40px;
  background: transparent;
}
.cta-banner__container {
  max-width: 1320px;
  margin: 0 auto;
}
.cta-banner__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(227, 169, 59, 0.14) 0%,
      rgba(227, 169, 59, 0) 45%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(227, 169, 59, 0.1) 0%,
      rgba(227, 169, 59, 0) 40%
    ),
    linear-gradient(135deg, var(--cta-black) 0%, var(--cta-black-2) 100%);
  padding: 44px 52px;
}
.cta-banner__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 100% 0%,
    rgba(227, 169, 59, 0.05) 0deg 1deg,
    transparent 1deg 9deg
  );
  opacity: 0.6;
  pointer-events: none;
}
.cta-banner__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--cta-gold), var(--cta-gold-soft));
}
.cta-banner__text {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-banner__title {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--cta-white);
  margin: 0 0 14px;
}
.cta-banner__title-accent {
  color: var(--cta-gold);
}
.cta-banner__desc {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cta-body);
  margin: 0;
}
.cta-banner__btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--cta-gold-soft), var(--cta-gold));
  color: var(--cta-black);
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    gap 0.2s ease;
}
.cta-banner__btn svg {
  width: 15px;
  height: 9px;
}
.cta-banner__btn:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 12px 24px rgba(227, 169, 59, 0.28);
}

@media (max-width: 992px) {
  .cta-banner {
    padding: 48px 32px;
  }
  .cta-banner__card {
    padding: 40px 44px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 24px;
  }
  .cta-banner__card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 36px 32px;
  }
  .cta-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 32px 18px;
  }
  .cta-banner__card {
    padding: 30px 24px;
    border-radius: 14px;
  }
  .cta-banner__title {
    font-size: 22px;
  }
  .cta-banner__desc {
    font-size: 14px;
  }
  .cta-banner__btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner__btn {
    transition: none;
  }
}
