* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background-color: #F4F6F5;
  background-image: radial-gradient(circle, #D0D0D0 1px, transparent 1px);
  background-size: 20px 20px;
  color: #2C2C2C;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.container {
  background: #F4F6F5;
  padding: 45px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
}


.logo-section {
  text-align: left;
  margin-bottom: 38px;
}

.logo {
  max-width: 75px;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.section {
  margin-bottom: 30px;
  text-align: left;
  padding-left: 8px;
}

.section-title {
  font-family: 'Zen Dots', cursive;
  font-size: 14px;
  font-weight: 400;
  color: #2C2C2C;
  margin-bottom: 11px;
}


.service-list,
.requirements-list {
  list-style: none;
  padding-left: 0;
}

.service-list li,
.requirements-list li {
  padding: 1px 0;
  color: #5A5A5A;
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
}


.availability-list {
  margin-top: 11px;
}

.availability-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: #5A5A5A;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
}

.dot {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dot.q3 {
  background-image: url('/images/blue_dot.png');
}

.dot.q4 {
  background-image: url('/images/green_dot.png');
}


.buttons-section {
  display: flex;
  gap: 15px;
  margin-top: 38px;
  margin-bottom: 38px;
  align-items: center;
  justify-content: flex-start;
}

.button {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.button.book-call {
  width: auto;
  height: auto;
  background: url('/images/silver_button.png') no-repeat center;
  background-size: contain;
  
  width: 120px;
  height: 38px;
}

.button.book-call:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

.button.see-pricing {
  padding: 11px 1px;
  background: linear-gradient(90deg, #4EEB23 0%, #91FA07 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.button.hire-now {
  padding: 16px 22px;
  background: linear-gradient(90deg, #4EEB23 0%, #91FA07 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.button.hire-now:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}


.footer-section {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #E0E0E0;
}

.footer-text {
  color: #5A5A5A;
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.footer-logos {
  display: flex;
  gap: 15px;
  align-items: center;
}

.product-capture,
.brand-sonar {
  max-width: 112px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}



.faq {
  list-style: none;
  padding-left: 0;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-question {
  font-size: 18px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  position: relative;
  cursor: pointer;
  padding-right: 20px; 
}


.faq-question::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  font-size: 16px;
  color: #5A5A5A;
  margin-top: 4px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px; 
  opacity: 1;
}


@media (max-width: 600px) {
  .container {
    padding: 30px 22px;
  }
  
  .logo {
    max-width: 56px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .buttons-section {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  
  .button.hire-now {
    width: auto;
  }
  
  .product-capture,
  .brand-sonar {
    max-width: 75px;
    max-height: 26px;
  }
}



.pricing-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pricing-modal-content {
  position: relative;
  background-color: #F4F6F5;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22.5px;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #333;
}



.pricing-card {
  background-color: #000000;
  color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Figtree', sans-serif;
  text-align: left;
  margin: 0 auto;
}

.image-container {
  width: 100%;
  aspect-ratio: 1 / 1; 
}

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

.content {
  padding: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.pause-button {
  border: 1px solid #333333;
  background-color: transparent;
  color: #b0b2b4;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.included-section {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 8px 16px;
  position: relative;
}

.included-label {
  background-color: #000000;
  color: #b0b2b4;
  font-size: 12px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  top: -12px;
  right: 14px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.feature {
  list-style: none;
}

.button-27 {
  position: relative;
  padding: 16px;
  background: linear-gradient(0deg, #fcfcfc 0%, #f5f5f5 100%);
  border: 6px solid transparent;
  border-radius: 16px;
  background-clip: padding-box;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.5), 1px 3px 3px 2px #fff, 0 0 0 6px #ECECEC;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: border 0.1s ease-in-out, padding 0.1s ease-in-out, margin 0.1s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  text-decoration: none;
  color: #333;
}

.button-27:after {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -6px;
  right: -6px;
  background: linear-gradient(#fff, #ededed);
  content: "";
  z-index: -1;
  border-radius: 16px;
}

.button-27:hover {
  border: 2px solid transparent;
  background-image: linear-gradient(180deg, #E6E6E6 0%, #F7F7F7 100%);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.35), 0 0 0 6px #ECECEC;
  padding: 20px;
}

.button-27:active {
  border-top: 1px solid transparent;
}

.smiley-icon {
  background-color: #ff6600;
  font-size: 15px;
}


.button-11 {
  touch-action: manipulation;
  position: relative;
  padding: 0;
  width: 100px;
  height: 100px;
  border: 2px solid #888888;
  outline: none;
  background-color: #f4f5f6;
  border-radius: 20px;
  box-shadow: -3px -10px 17.5px #ffffff, -3px -5px 7.5px #ffffff, -10px 0px 15px #ffffff, 3px 10px 12.5px rgba(0, 0, 0, 0.2);
  transition: 0.13s ease-in-out;
  cursor: pointer;
}
.button-11:active {
  box-shadow: none;
}
.button-11:active .button-11__content {
  box-shadow: none;
}
.button-11:active .button-11__content .button-11__text, .button-11:active .button-11__content .button-11__icon {
  transform: translate3d(0px, 0px, 0px);
}
.button-11__content {
  position: relative;
  display: grid;
  padding: 10px;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  box-shadow: inset 0px -4px 0px #dddddd, 0px -4px 0px #f4f5f6;
  border-radius: 20px;
  transition: 0.13s ease-in-out;
  z-index: 1;
}
.button-11__icon {
  position: relative;
  display: flex;
  transform: translate3d(0px, -2px, 0px);
  grid-column: 4;
  align-self: start;
  justify-self: end;
  width: 16px;
  height: 16px;
  transition: 0.13s ease-in-out;
}
.button-11__icon svg {
  width: 16px;
  height: 16px;
  fill: #aaaaaa;
}
.button-11__text {
  position: relative;
  transform: translate3d(0px, -2px, 0px);
  margin: 0;
  align-self: end;
  grid-column: 1/5;
  grid-row: 2;
  text-align: center;
  font-size: 16px;
  background-color: #888888;
  color: transparent;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.5);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  transition: 0.13s ease-in-out;
}

.features-section {
  text-align: left;
  margin-bottom: 40px;
}

.features-label {
  font-size: 10.5px;
  font-weight: 400;
  color: #999;
  margin-bottom: 20px;
  font-family: 'Figtree', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.feature-item {
  font-size: 12px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.join-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #333;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 12px;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.join-button:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.smile-icon {
  width: 24px;
  height: 24px;
  background-color: #FF6B35;
  border-radius: 4px;
  position: relative;
}

.smile-icon::after {
  content: "☺";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: black;
}

.pause-note {
  font-size: 9px;
  color: #666;
  border: 1px solid #666;
  padding: 6px 12px;
  border-radius: 15px;
  font-family: 'Figtree', sans-serif;
}


.guarantee-section {
  background-color: transparent;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  border: 2px dashed #E0E0E0;
  margin-top: 20px;
}

.guarantee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 50%;
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
}

.guarantee-title {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
}

.guarantee-text {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}


@media (max-width: 600px) {
  .pricing-modal-content {
    margin: 20px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-title {
    font-size: 18px;
  }
  
  .price-tag {
    font-size: 36px;
  }
  
  .price-period {
    font-size: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .feature-item {
    font-size: 10.5px;
  }
  
  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .pause-note {
    margin-top: 0;
  }
  
  .guarantee-section {
    padding: 30px 20px;
    margin-top: 15px;
  }
  
  .guarantee-header {
    gap: 10px;
  }
  
  .guarantee-icon {
    width: 35px;
    height: 35px;
    font-size: 13.5px;
  }
  
  .guarantee-title {
    font-size: 15px;
  }
  
  .guarantee-text {
    font-size: 10.5px;
  }
}
