.shop__hero {
  position: relative;
  padding: 3em 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.shop__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, #000 100%);
  opacity: 0.8;
  z-index: 0;
}

.shop__hero>.wrap {
  position: relative;
  z-index: 2;
}

.shop__hero-content {
  color: white;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  padding: 2em 0;
  flex: 1;
}

.shop__hero-content * {
  color: white;
}

.shop__pill {
  display: inline-block;
  width: fit-content;
  color: #94bf58;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
  position: relative;
}

.shop__pill::after {
  content: '';
  display: block;
  width: 100%;
  height: 11px;
  background-color: #5DEB3C;
}

.shop__hero-content h1 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: clamp(33px, 2.5vw + 0.5rem, 46px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 0.5em;
}

.shop__hero-content h1 .hero__text-light {
  font-weight: 300;
}

.shop__hero-content h1 .hero__text-bold {
  color: #5DEB3C;
  font-weight: 700;
}

.shop__hero-content p {
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 2em;
  max-width: 600px;
  font-weight: 400;
}

.shop__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.shop__buttons .button {
  background: #43B02A;
  color: white;
  border: none;
  padding: 0.875em 0em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-radius: 11px;
}

.shop__buttons .button.left_column_buttons {
  width: 175px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.shop__buttons .button:hover {
  background: white;
  color: #1a1a2e;
}

@media screen and (min-width: 960px) {
  .shop__hero {
    padding: 7.5em 0 2.5em;
  }

  .shop__hero-content h1 {
    font-size: 46px;
  }
}

@media screen and (max-width: 1118px) {
  .shop__hero-content p br {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .shop__hero {
    padding: 5em 0 2em;
  }

  .shop__hero-content h1 {
    font-size: 2.2em;
  }

  .shop__hero-content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .shop__hero {
    padding: 4em 0 2em;
  }

  .shop__hero-content {
    width: 100%;
    min-height: auto;
    padding: 1em 0;
    text-align: center;
    align-items: center;
  }

  .shop__pill {
    margin: 0 auto;
  }

  .shop__hero-content h1 {
    font-size: 2em;
  }

  .shop__hero-content p {
    font-size: 17px;
    max-width: none;
    margin: 0 auto;
  }

  .shop__buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .shop__hero {
    padding: 3em 0 2em;
  }

  .shop__hero-content {
    padding: 1em 1em;
  }

  .shop__pill {
    font-size: 22px;
    margin: 0 auto;
  }

  .shop__hero-content h1 {
    font-size: 1.8em;
  }

  .shop__hero-content h1 br {
    display: none;
  }

  .shop__hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
  }

  .shop__buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .shop__buttons .button {
    width: 200px;
    height: 45px;
    font-size: 16px;
  }

  .br-hide {
    display: none;
  }
}

/* Take a Tour */
.take_a_tour {
  background: #1A1A2D;
  padding: 89px 5px 98px;
  text-align: center;
  font-family: 'Work Sans', Arial, sans-serif;
}

.take_a_tour .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.take_a_tour__subtitle {
  color: #ffffff;
  font-size: 37px;
  font-weight: 700;
  margin: 0 0 20px;
}

.take_a_tour__text {
  color: #ffffff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 0 30px;
}

.take_a_tour__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 347px;
  height: 51px;
  background: #43B02A;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 11px;
  transition: all 0.3s ease;
}

.take_a_tour__btn:hover {
  background: #ffffff;
  color: #1a1a2d;
}

@media screen and (max-width: 767px) {
  .take_a_tour {
    padding: 60px 5px 70px;
  }

  .take_a_tour__subtitle {
    font-size: 28px;
  }

  .take_a_tour__text {
    font-size: 17px;
    max-width: 100%;
    padding: 0 20px;
  }

  .take_a_tour__btn {
    width: 280px;
    height: 45px;
    font-size: 16px;
  }
}

/* Shop Strengths Section */
.shop__strengths {
  background-color: #1A1A2D;
  padding: 54px 5% 37.5px;
  font-family: 'Work Sans', Arial, sans-serif;
  text-align: center;
}

.shop__strengths .wrap {
  max-width: 1259px;
  margin: 0 auto;
}

.shop__strengths-header {
  margin-bottom: 72px;
}

.shop__strengths-eyebrow {
  display: inline-block;
  color: #94BF58;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.1em;
}

.shop__strengths-title {
  color: #ffffff;
  font-size: 37px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.shop__strengths-delivered {
  color: #5DEB3C;
  font-weight: 600;
}

.shop__strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.shop__strengths-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop__strengths-col-pill {
  display: inline-block;
  color: #94BF58;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.shop__strengths-col>p {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.shop__strengths-col p strong {
  color: white;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .shop__strengths-header {
    margin-bottom: 40px;
  }

  .shop__strengths-col-pill {
    font-size: 16px;
  }

  .shop__strengths-col>p {
    font-size: 17px;
  }
}

@media screen and (max-width: 959px) {
  .shop__strengths {
    padding: 60px 5%;
  }

  .shop__strengths-title {
    font-size: 28px;
  }

  .shop__strengths-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Shop Performance Section */
.shop__performance {
  background: #1A1A2D;
  padding: 50px 5% 30px;
  font-family: 'Work Sans', Arial, sans-serif;
  text-align: center;
}

.shop__performance .wrap {
  max-width: 1259px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop__performance-header {
  margin-bottom: 50px;
}

.shop__performance-eyebrow {
  display: inline-block;
  color: #94BF58;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.1em;
}

.shop__performance-title {
  color: #ffffff;
  font-size: 37px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.shop__performance-delivered {
  color: #5DEB3C;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.shop__performance-delivered::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
  background-color: #5DEB3C;
  border-radius: 2px;
}

.shop__performance-text {
  color: #ffffff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 587px;
  margin: 0 auto 20px;
}

.shop__performance-text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .shop__performance {
    padding: 60px 5%;
  }

  .shop__performance-title {
    font-size: 28px;
  }

  .shop__performance-text {
    font-size: 17px;
  }
}

/* Shop Features */
.shop__features {
  background: #1A1A2D;
  padding: 60px 0;
  font-family: 'Work Sans', Arial, sans-serif;
}

.shop__features .wrap {
  max-width: 1153px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop__features-row {
  display: flex;
  align-items: stretch;
  gap: 26px;
  justify-content: center;
}

.shop__features-row + .shop__features-row {
  margin-top: 30px;
}

.shop__features-image {
  flex: 0 0 calc(100% - 312px);
  max-width: 796px;
}

.shop__features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop__features-card {
  flex: 0 0 286px;
  padding: 60px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 11px 11px 22px 0 rgba(0, 0, 0, 0.1608);
}

.shop__features-card--blue {
  background-color: #37579E;
}

.shop__features-card--green {
  background-color: #43B02A;
}

.shop__features-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.shop__features-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.shop__features-row--reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .shop__features-row {
    flex-wrap: wrap;
  }

  .shop__features-image,
  .shop__features-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .shop__features {
    padding: 40px 0;
  }

  .shop__features-card {
    padding: 30px 20px;
  }

  .shop__features-title {
    font-size: 20px;
  }

  .shop__features-text {
    font-size: 14px;
  }

  .shop__features-row + .shop__features-row {
    margin-top: 20px;
  }
}

/* Process Grid */
.shop__process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1109px;
  margin: 50px auto 0;
  width: 100%;
}

.shop__process-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.shop__process-subtitle {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 15px;
  width: 191px;
}

.shop__process-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  width: 191px;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .shop__process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .shop__process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shop__process-col {
    text-align: center;
  }

  .shop__process-subtitle {
    font-size: 14px;
    width: auto;
  }

  .shop__process-text {
    font-size: 14px;
    width: auto;
  }
}

@keyframes lb-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lb-scalein {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Shop Video */
.shop__video {
  background: #1A1A2D;
  padding: 44px 10% 150px;
  font-family: 'Work Sans', Arial, sans-serif;
  text-align: center;
}

.shop__video .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.shop__video-row {
  margin-top: 0;
}

.shop__video-thumb {
  max-width: 1266px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  padding: 0 20px;
}

.shop__video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.shop__video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-fadein 0.25s ease;
}

.shop__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shop__video-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  animation: lb-scalein 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop__video-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 999999;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shop__video-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.shop__video-container video {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1024px) {
  .shop__video-thumb {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .shop__video {
    padding: 30px 5% 80px;
  }

  .shop__video-thumb {
    padding: 0 10px;
  }

  .shop__video-container {
    width: 95%;
  }

  .shop__video-close {
    top: -40px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* Testimonial */
.commercial__testimonial {
  background-color: #43B02A;
  padding: 100px 15%;
  font-family: 'Work Sans', Arial, sans-serif;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.commercial__testimonial .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.commercial__testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.commercial__testimonial-quote {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.commercial__testimonial-attribution {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 30px;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .commercial__testimonial {
    padding: 60px 5%;
  }

  .commercial__testimonial-quote {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .commercial__testimonial-quote {
    font-size: 24px;
  }

  .commercial__testimonial-attribution {
    font-size: 16px;
  }
}

/* FAQ Section */
.faq__section {
  background: white;
  padding: 3.6875em 1.5em 4.75em;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .faq__section {
    padding: 3.6875em 12.25em 4.75em;
  }
}

.faq__section h2 {
  font-family: 'Work Sans', Arial, sans-serif;
  color: #94BF58;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}

.faq__section h3 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 1.71875em;
  font-weight: bold;
  line-height: 1.11em;
  color: #1A1A2D;
  margin-bottom: 2.5em;
  margin-right: -20px;
}

.faq__section h3 .br-hide {
  display: none;
}

@media screen and (min-width: 960px) {
  .faq__section h3 {
    font-size: 2.3125em;
  }

  .faq__section h3 .br-hide {
    display: inline;
  }
}

.faq__container {
  text-align: left;
  max-width: 749px;
  margin: 0;
}

.faq__item {
  margin-bottom: 1.25em;
}

.faq__question {
  color: #37579E;
  font-family: 'Work Sans', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.4583em;
  margin-bottom: 0.625em;
  cursor: pointer;
}

@media screen and (min-width: 960px) {
  .faq__question {
    font-size: 1.5em;
  }
}

.faq__answer {
  color: #4D4D4D;
  font-size: 1.125em;
  font-family: 'Work Sans', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6667em;
  margin-bottom: 0.625em;
}

.faq__separator {
  background: #41B9C0;
  height: 1px;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}
