



.bc-demo {
  width: 100%;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(5, 59, 47, 0.10),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(247, 201, 72, 0.12),
      transparent 30%
    ),
    #f7faf9;

  padding: 90px 24px;
}


/* =========================================================
   CONTAINER
========================================================= */

.bc-demo__container {
  width: min(1530px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.08fr .92fr;

  background: #ffffff;

  border: 1px solid #e3ebe7;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 25px 70px rgba(5, 59, 47, 0.10);
}


/* =========================================================
   LEFT SHOWCASE
========================================================= */

.bc-demo__showcase {
  position: relative;

  min-height: 700px;

  background:
    linear-gradient(
      145deg,
      #053b2f 0%,
      #064c3b 55%,
      #02261f 100%
    );

  color: #ffffff;

  overflow: hidden;
}


/* decorative circles */

.bc-demo__showcase::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  right: -180px;
  top: -160px;

  border: 20px solid rgba(255,255,255,.10);
}

.bc-demo__showcase::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  left: -90px;
  bottom: 0px;

  border: 20px solid rgba(247,201,72,.14);
}


.bc-demo__showcase-inner {
  position: relative;
  z-index: 2;

  padding: 55px 55px 42px;
}


/* =========================================================
   EYEBROW
========================================================= */

.bc-demo__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #f7c948;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .16em;

  margin-bottom: 16px;
}

.bc-demo__eyebrow span {
  width: 28px;
  height: 2px;

  background: #f7c948;

  display: block;
}


/* =========================================================
   TITLE
========================================================= */

.bc-demo__title {
  max-width: 550px;

  margin: 0;

  font-size: clamp(30px, 3vw, 46px);

  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -.035em;
}

.bc-demo__title strong {
  display: block;

  color: #ffffff;

  font-weight: 800;
}


/* =========================================================
   INTRO
========================================================= */

.bc-demo__intro {
  max-width: 520px;

  margin: 18px 0 30px;

  color: rgba(255,255,255,.70);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   SLIDER
========================================================= */

.bc-demo__slider {
  position: relative;
}


/* =========================================================
   PRODUCT LOGO
========================================================= */

.bc-demo__product-logo-wrap {
  height: 45px;

  display: flex;
  align-items: center;

  margin-bottom: 16px;
}

.bc-demo__product-logo {
  max-width: 145px;
  max-height: 80px;
  margin-bottom: 20px;

  object-fit: contain;

  transition:
    opacity .22s ease,
    transform .22s ease;
}


/* =========================================================
   DASHBOARD
========================================================= */

.bc-demo__dashboard {
  position: relative;

  width: 100%;

  margin-top: 5px;
}

.bc-demo__dashboard-glow {
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: -25px;

  height: 80px;

  background: rgba(247,201,72,.18);

  filter: blur(45px);

  border-radius: 50%;
}


.bc-demo__dashboard-frame {
  position: relative;
  z-index: 2;

  width: 100%;

  background: #ffffff;

  border-radius: 12px;

  padding: 7px;

  box-shadow:
    0 25px 45px rgba(0,0,0,.25);

  transform:
    perspective(1000px)
    rotateX(2deg);

  transition:
    transform .35s ease;
}

.bc-demo__dashboard-frame:hover {
  transform:
    perspective(1000px)
    rotateX(0deg)
    translateY(-3px);
}


/* browser bar */

.bc-demo__browser-bar {
  height: 20px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding-left: 7px;
}

.bc-demo__browser-bar span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #cfd8d5;
}


.bc-demo__dashboard-image-wrap {
  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 7px;

  background: #f1f5f3;
}

.bc-demo__dashboard-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    opacity .22s ease,
    transform .3s ease;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.bc-demo__product-info {
  margin-top: 25px;

  display: grid;

  grid-template-columns: auto 1fr;

  column-gap: 20px;

  align-items: center;
}

.bc-demo__counter {
  display: flex;
  align-items: center;
  gap: 7px;

  font-size: 11px;

  color: rgba(255,255,255,.55);

  font-weight: 700;
}

.bc-demo__counter #bcDemoCurrent {
  color: #f7c948;

  font-size: 14px;
}

.bc-demo__counter i {
  display: block;

  width: 22px;
  height: 1px;

  background: rgba(255,255,255,.25);
}


.bc-demo__product-info h3 {
  margin: 0 0 4px;

  font-size: 22px;

  line-height: 1.2;

  font-weight: 800;
}

.bc-demo__product-info p {
  grid-column: 2;

  margin: 0;

  color: rgba(255,255,255,.68);

  font-size: 12px;

  line-height: 1.5;
}


/* =========================================================
   CONTROLS
========================================================= */

.bc-demo__slider-controls {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 22px;
}


.bc-demo__arrow {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.18);

  background: rgba(255,255,255,.07);

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background .2s ease,
    transform .2s ease,
    border-color .2s ease;
}

.bc-demo__arrow:hover {
  background: #f7c948;

  border-color: #f7c948;

  color: #053b2f;

  transform: translateY(-2px);
}

.bc-demo__arrow svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* dots */

.bc-demo__dots {
  display: flex;

  align-items: center;

  gap: 6px;

  flex: 1;

  justify-content: center;
}

.bc-demo__dot {
  width: 6px;
  height: 6px;

  border: 0;

  padding: 0;

  border-radius: 20px;

  background: rgba(255,255,255,.25);

  cursor: pointer;

  transition:
    width .25s ease,
    background .25s ease;
}

.bc-demo__dot.active {
  width: 24px;

  background: #f7c948;
}


/* =========================================================
   RIGHT FORM
========================================================= */

.bc-demo__form-area {
  background: #ffffff;

  display: flex;

  /* align-items: center; */
}


.bc-demo__form-card {
  width: 100%;

  padding: 55px 50px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.bc-demo__form-badge {
  display: inline-flex;

  align-items: center;

  padding: 7px 11px;

  border-radius: 30px;

  background: #edf8f4;

  color: #053b2f;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .12em;

  margin-bottom: 15px;
}


.bc-demo__form-heading h2 {
  margin: 0;

  color: #111827;

  font-size: clamp(28px, 2.5vw, 36px);

  line-height: 1.12;

  letter-spacing: -.035em;

  font-weight: 500;
}

.bc-demo__form-heading h2 span {
  /* display: block; */

  color: #053b2f;

  font-weight: 800;
}


.bc-demo__form-heading p {
  margin: 13px 0 28px;

  color: #6b7280;

  font-size: 13px;

  line-height: 1.65;

  max-width: 440px;
}


/* =========================================================
   FORM
========================================================= */

.bc-demo__form {
  display: flex;

  flex-direction: column;

  gap: 15px;
}


.bc-demo__field {
  width: 100%;
}

.bc-demo__field label {
  display: flex;
  align-items: center;

  gap: 4px;

  margin-bottom: 6px;

  color: #1f2937;

  font-size: 14px;

  font-weight: 500;
}

.bc-demo__field label span {
  color: #d34b4b;
}

.bc-demo__field label small {
  margin-left: 4px;

  color: #9ca3af;

  font-weight: 500;

  font-size: 9px;
}


/* =========================================================
   INPUT
========================================================= */

.bc-demo__input-wrap {
  position: relative;
}

.bc-demo__input-wrap svg {
  position: absolute;

  left: 13px;
  top: 50%;

  width: 16px;
  height: 16px;

  transform: translateY(-50%);

  fill: none;

  stroke: #8a9993;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;

  pointer-events: none;
}


.bc-demo__input-wrap input,
.bc-demo__field textarea {
  width: 100%;

  border: 1px solid #e1e8e5;

  background: #fbfcfc;

  color: #1f2937;

  border-radius: 9px;

  outline: none;

  font-family: inherit;

  font-size: 12px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.bc-demo__input-wrap input {
  height: 43px;

  padding: 0 13px 0 39px;
}


.bc-demo__field textarea {
  min-height: 72px;

  resize: vertical;

  padding: 12px 13px;
}


.bc-demo__input-wrap input::placeholder,
.bc-demo__field textarea::placeholder {
  color: #a4afab;
}


.bc-demo__input-wrap input:focus,
.bc-demo__field textarea:focus {
  border-color: #0b5d47;

  background: #ffffff;

  box-shadow:
    0 0 0 3px rgba(5,59,47,.07);
}


/* =========================================================
   SUBMIT
========================================================= */

.bc-demo__submit {
  width: 100%;

  height: 48px;

  margin-top: 3px;

  border: 0;

  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      #053b2f,
      #0b5d47
    );

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-family: inherit;

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 10px 25px rgba(5,59,47,.18);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.bc-demo__submit:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 30px rgba(5,59,47,.25);
}

.bc-demo__submit svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.bc-demo__privacy {
  margin: 0;

  text-align: center;

  color: #9ca3af;

  font-size: 14px;

  line-height: 1.5;
}


/* =========================================================
   SUCCESS
========================================================= */

.bc-demo__success {
  display: none;

  text-align: center;

  padding: 45px 20px;
}

.bc-demo__success.show {
  display: block;
}

.bc-demo__success-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e9f8f2;

  color: #053b2f;

  font-size: 28px;

  font-weight: 800;
}

.bc-demo__success h3 {
  margin: 0 0 8px;

  font-size: 24px;

  color: #111827;
}

.bc-demo__success p {
  margin: 0;

  color: #6b7280;

  font-size: 13px;

  line-height: 1.6;
}


/* =========================================================
   SLIDE CHANGE ANIMATION
========================================================= */

.bc-demo__product-logo.is-changing,
.bc-demo__dashboard-image.is-changing,
.bc-demo__product-info.is-changing {
  opacity: 0;

  transform: translateY(7px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .bc-demo {
    padding: 60px 18px;
  }

  .bc-demo__container {
    grid-template-columns: 1fr;
  }

  .bc-demo__showcase {
    min-height: auto;
  }

  .bc-demo__showcase-inner {
    padding: 45px;
  }

  .bc-demo__form-card {
    padding: 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .bc-demo {
    padding: 35px 12px;
  }

  .bc-demo__container {
    border-radius: 20px;
  }

  .bc-demo__showcase-inner {
    padding: 32px 22px;
  }

  .bc-demo__form-card {
    padding: 32px 22px;
  }

  .bc-demo__title {
    font-size: 31px;
  }

  .bc-demo__intro {
    font-size: 12px;
  }

  .bc-demo__product-info {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .bc-demo__product-info p {
    grid-column: 1;
  }

  .bc-demo__product-info h3 {
    font-size: 19px;
  }

  .bc-demo__form-heading h2 {
    font-size: 29px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .bc-demo__showcase-inner,
  .bc-demo__form-card {
    padding-left: 17px;
    padding-right: 17px;
  }

  .bc-demo__title {
    font-size: 27px;
  }

}

/* =========================================================
   PRODUCT SELECT
========================================================= */

.bc-demo__select-wrap {
  position: relative;
}

.bc-demo__select-wrap > svg {
  position: absolute;

  left: 13px;
  top: 50%;

  width: 16px;
  height: 16px;

  transform: translateY(-50%);

  fill: none;

  stroke: #8a9993;

  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;

  z-index: 2;
}


.bc-demo__select-wrap select {
  width: 100%;

  height: 43px;

  padding: 0 42px 0 39px;

  border: 1px solid #e1e8e5;

  border-radius: 9px;

  background: #fbfcfc;

  color: #1f2937;

  font-family: inherit;

  font-size: 12px;

  outline: none;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.bc-demo__select-wrap select:focus {
  border-color: #0b5d47;

  background: #ffffff;

  box-shadow:
    0 0 0 3px rgba(5,59,47,.07);
}


/* Placeholder */

.bc-demo__select-wrap select:invalid {
  color: #a4afab;
}


/* Dropdown arrow */

.bc-demo__select-arrow {
  position: absolute;

  right: 13px;
  top: 50%;

  transform: translateY(-50%);

  width: 17px;
  height: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}


.bc-demo__select-arrow svg {
  width: 15px;
  height: 15px;

  fill: none;

  stroke: #6b7280;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Dropdown options */

.bc-demo__select-wrap option {
  color: #1f2937;

  background: #ffffff;

  font-size: 12px;
}







