:root {
  --asd-navy: #212121;
  --asd-navy-soft: #212121;
  --asd-gold: #957A56;
  --asd-gold-dark: #957A56;
  --asd-text: #212121;
  --asd-bg: #FCFCFC;
  --asd-line: rgba(16, 40, 63, 0.1);
}

.asd-page {
  overflow: hidden;
  background: #FCFCFC;
  color: var(--asd-text);
}

.asd-page .container {
  width: calc(100% - 40px);
  max-width: 1380px;
  margin-inline: auto;
}

/* Hero */

.asd-hero {
  position: relative;
  overflow: hidden;
  padding: 43px 0 55px;
  background:
    radial-gradient(
      circle at 14% 16%,
      rgba(199, 155, 82, 0.21),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      var(--asd-navy),
      var(--asd-navy-soft)
    );
  color: #FCFCFC;
}

.asd-hero::before,
.asd-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.asd-hero::before {
  width: 370px;
  height: 370px;
  top: -220px;
  left: -120px;
}

.asd-hero::after {
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: -150px;
}

.asd-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.asd-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.asd-breadcrumb strong {
  color: #FCFCFC;
}

.asd-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(260px, 0.65fr);
  gap: 36px;
  align-items: center;
}

.asd-eyebrow,
.asd-heading > span,
.asd-title-center > span,
.asd-value-copy > span,
.asd-cta-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--asd-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.asd-hero h1 {
  max-width: 850px;
  margin: 0 0 13px;
  color: #FCFCFC;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.25;
}

.asd-hero-content > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.95;
}

.asd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.asd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 9px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.asd-btn-gold {
  border-color: var(--asd-gold);
  background: var(--asd-gold);
  color: #FCFCFC;
}

.asd-btn-outline {
  border-color: rgba(255, 255, 255, 0.33);
  background: rgba(255, 255, 255, 0.05);
  color: #FCFCFC;
}

.asd-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.asd-hero-panel > span {
  display: block;
  margin-bottom: 8px;
  color: var(--asd-gold);
  font-size: 10px;
  font-weight: 900;
}

.asd-hero-panel > strong {
  display: block;
  color: #FCFCFC;
  font-size: 19px;
  line-height: 1.55;
}

.asd-hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 11px;
  line-height: 1.85;
}

/* General sections */

.asd-intro,
.asd-scope,
.asd-process,
.asd-value,
.asd-cta {
  padding: 47px 0;
}

.asd-intro-layout {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.9fr)
    minmax(0, 1.1fr);
  gap: 55px;
  align-items: start;
}

.asd-heading h2,
.asd-title-center h2,
.asd-value-copy h2,
.asd-cta-copy h2 {
  margin: 0;
  color: var(--asd-navy);
  font-size: clamp(25px, 4vw, 37px);
  font-weight: 900;
  line-height: 1.45;
}

.asd-intro-copy p {
  margin: 0 0 14px;
  color: #212121;
  font-size: 14px;
  line-height: 2;
}

/* Scope cards */

.asd-scope {
  background: var(--asd-bg);
}

.asd-title-center {
  max-width: 750px;
  margin: 0 auto 28px;
  text-align: center;
}

.asd-title-center p,
.asd-process-heading p {
  margin: 9px 0 0;
  color: #73818c;
  font-size: 13px;
  line-height: 1.85;
}

.asd-scope-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.asd-scope-card {
  min-height: 205px;
  padding: 20px;
  border: 1px solid var(--asd-line);
  border-radius: 15px;
  background: #FCFCFC;
}

.asd-card-number {
  display: block;
  margin-bottom: 23px;
  color: var(--asd-gold);
  font-size: 11px;
  font-weight: 900;
}

.asd-scope-card h3,
.asd-process-step h3 {
  margin: 0 0 8px;
  color: var(--asd-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.asd-scope-card p,
.asd-process-step p {
  margin: 0;
  color: #212121;
  font-size: 11px;
  line-height: 1.85;
}

/* Process */

.asd-process-heading {
  max-width: 700px;
  margin-bottom: 25px;
}

.asd-process-list {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.asd-process-step {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 13px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--asd-line);
  border-radius: 13px;
  background: #FCFCFC;
}

.asd-process-step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 11px;
  background: rgba(199, 155, 82, 0.13);
  color: var(--asd-gold-dark);
  font-size: 11px;
  font-weight: 900;
}

/* Value section */

.asd-value {
  background: var(--asd-navy);
}

.asd-value-layout {
  display: grid;
  grid-template-columns:
    minmax(270px, 0.85fr)
    minmax(0, 1.15fr);
  gap: 45px;
  align-items: center;
}

.asd-value-copy h2 {
  color: #FCFCFC;
}

.asd-value-copy p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  line-height: 1.9;
}

.asd-value-points {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.asd-value-point {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
}

.asd-value-point strong {
  color: var(--asd-gold);
  font-size: 10px;
}

.asd-value-point span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.65;
}

/* CTA */

.asd-cta {
  padding-top: 32px;
}

.asd-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 31px;
  border-radius: 19px;
  background:
    linear-gradient(
      135deg,
      var(--asd-navy),
      var(--asd-navy-soft)
    );
}

.asd-cta-copy h2 {
  color: #FCFCFC;
  font-size: 27px;
}

.asd-cta-copy p {
  max-width: 690px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 12px;
  line-height: 1.8;
}

.asd-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 9px;
}

@media (max-width: 950px) {
  .asd-hero-layout,
  .asd-intro-layout,
  .asd-value-layout {
    grid-template-columns: 1fr;
  }

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

  .asd-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .asd-page .container {
    width: calc(100% - 18px);
  }

  .asd-hero {
    padding: 28px 0 34px;
  }

  .asd-breadcrumb {
    margin-bottom: 20px;
  }

  .asd-hero-layout {
    gap: 19px;
  }

  .asd-hero h1 {
    font-size: 34px;
  }

  .asd-hero-content > p {
    font-size: 13px;
  }

  .asd-actions,
  .asd-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .asd-btn {
    width: 100%;
  }

  .asd-intro,
  .asd-scope,
  .asd-process,
  .asd-value,
  .asd-cta {
    padding: 29px 0;
  }

  .asd-intro-layout,
  .asd-value-layout {
    gap: 22px;
  }

  .asd-scope-grid,
  .asd-process-list,
  .asd-value-points {
    grid-template-columns: 1fr;
  }

  .asd-scope-card {
    min-height: auto;
    padding: 16px;
  }

  .asd-card-number {
    margin-bottom: 14px;
  }

  .asd-cta-card {
    padding: 20px;
    border-radius: 14px;
  }

  .asd-cta-copy h2 {
    font-size: 22px;
  }
}
