/* Source: widgets/16.html — keep CSS identical to the HTML. */
.edge-bd5 {
  --edge-bd5-primary: #094a3c;
  --edge-bd5-secondary: #daa630;
  --edge-bd5-tertiary: #000000;
  --edge-bd5-bg: #f8f9f8;
  --edge-bd5-card: #ffffff;
  --edge-bd5-text: #1a1a1a;
  --edge-bd5-muted: #5a5a5a;
  --edge-bd5-border: rgba(9, 74, 60, 0.1);
  --edge-bd5-heading-font: "Plus Jakarta Sans", sans-serif;
  --edge-bd5-body-font: "Poppins", sans-serif;

  width: 100%;
  background:
    radial-gradient(ellipse 65% 45% at 100% 0%, rgba(218, 166, 48, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(9, 74, 60, 0.04) 0%, transparent 50%),
    var(--edge-bd5-bg);
  color: var(--edge-bd5-text);
  font-family: var(--edge-bd5-body-font);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.edge-bd5 *,
.edge-bd5 *::before,
.edge-bd5 *::after {
  box-sizing: border-box;
}

.edge-bd5__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.edge-bd5__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.edge-bd5__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.edge-bd5__label {
  display: inline-block;
  font-family: var(--edge-bd5-heading-font);
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--edge-bd5-secondary);
  margin-bottom: 0.75rem;
}

.edge-bd5__headline {
  font-family: var(--edge-bd5-heading-font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--edge-bd5-primary) !important;
  margin: 0;
}

.edge-bd5__header::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) auto 0;
  background: var(--edge-bd5-secondary);
  opacity: 0.55;
}

.edge-bd5__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
  counter-reset: edge-bd5-step;
}

.edge-bd5__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 2.8vw, 2rem) clamp(1rem, 2vw, 1.25rem);
  background: var(--edge-bd5-card);
  border: 1px solid var(--edge-bd5-border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(9, 74, 60, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.edge-bd5__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.edge-bd5__step:nth-child(1) { transition-delay: 0ms; }
.edge-bd5__step:nth-child(2) { transition-delay: 100ms; }
.edge-bd5__step:nth-child(3) { transition-delay: 200ms; }

.edge-bd5__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-0.5 * clamp(1.25rem, 2.5vw, 2rem));
  width: clamp(1.25rem, 2.5vw, 2rem);
  height: 2px;
  transform: translate(50%, -50%);
  background: linear-gradient(
    90deg,
    rgba(9, 74, 60, 0.15) 0%,
    var(--edge-bd5-secondary) 100%
  );
  pointer-events: none;
}

.edge-bd5__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  font-family: var(--edge-bd5-heading-font);
  font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--edge-bd5-primary);
  background: rgba(218, 166, 48, 0.14);
  border-radius: 50%;
  flex-shrink: 0;
}

.edge-bd5__step-title {
  font-family: var(--edge-bd5-heading-font);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--edge-bd5-primary) !important;
  margin: 0 0 0.625rem;
}

.edge-bd5__step-desc {
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--edge-bd5-muted);
  margin: 0;
}

.edge-bd5__action {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 250ms;
}

.edge-bd5__action.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#edge-bd5 a.edge-bd5__btn,
.edge-bd5 a.edge-bd5__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.385rem 1.375rem !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 24px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background-color: #daa630 !important;
  background-image: none !important;
  border: 2px solid #daa630 !important;
  border-radius: 50px !important;
  box-shadow: none !important;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

#edge-bd5 a.edge-bd5__btn:visited,
.edge-bd5 a.edge-bd5__btn:visited {
  color: #ffffff !important;
}

#edge-bd5 a.edge-bd5__btn:hover,
#edge-bd5 a.edge-bd5__btn:focus,
.edge-bd5 a.edge-bd5__btn:hover,
.edge-bd5 a.edge-bd5__btn:focus {
  color: #ffffff !important;
  background-color: #094a3c !important;
  border-color: #094a3c !important;
  text-decoration: none !important;
  gap: 0.55rem;
  box-shadow: 0 6px 18px rgba(9, 74, 60, 0.35) !important;
  transform: translateY(-1px);
}

#edge-bd5 a.edge-bd5__btn:focus-visible,
.edge-bd5 a.edge-bd5__btn:focus-visible {
  outline: 2px solid #094a3c !important;
  outline-offset: 3px;
}

#edge-bd5 a.edge-bd5__btn:active,
.edge-bd5 a.edge-bd5__btn:active {
  color: #ffffff !important;
  background-color: #073d32 !important;
  border-color: #073d32 !important;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(9, 74, 60, 0.25) !important;
}

.edge-bd5__fine-print {
  max-width: 32rem;
  margin: clamp(1rem, 2vw, 1.25rem) auto 0;
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--edge-bd5-muted);
}

@media (max-width: 768px) {
  .edge-bd5__steps {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .edge-bd5__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }

  .edge-bd5__step:not(:last-child)::after {
    top: auto;
    bottom: calc(-0.5 * clamp(1rem, 2vw, 1.25rem));
    left: 1.5rem;
    right: auto;
    width: 2px;
    height: clamp(1rem, 2vw, 1.25rem);
    transform: translateY(50%);
    background: linear-gradient(
      180deg,
      rgba(9, 74, 60, 0.15) 0%,
      var(--edge-bd5-secondary) 100%
    );
  }

  .edge-bd5__step-num {
    margin-bottom: 0;
  }

  .edge-bd5__step-body {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  #edge-bd5 a.edge-bd5__btn,
  .edge-bd5 a.edge-bd5__btn {
    width: 100%;
    padding: 0.42rem 1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-bd5__header,
  .edge-bd5__step,
  .edge-bd5__action {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #edge-bd5 a.edge-bd5__btn,
  .edge-bd5 a.edge-bd5__btn {
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

  #edge-bd5 a.edge-bd5__btn:hover,
  #edge-bd5 a.edge-bd5__btn:focus,
  .edge-bd5 a.edge-bd5__btn:hover,
  .edge-bd5 a.edge-bd5__btn:focus {
    transform: none;
  }
}
