/* Custom classes that Tailwind utilities can't replicate */

/* Diagonal pill CTA button (border-radius: 100px 0 100px 0) */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #B7FF6E;
  color: #0c1a00;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 100px 0 100px 0;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
}
.btn-contact:hover { opacity: 0.87; }

/* Product card image background — Figma 64×166 rotated -90deg → visual 221×85, scaled ×1.33
   border-radius: 0 20px 0 0 after rotation = top-left 27px visually */
.product-img-bg {
  width: 100%;
  height: 85px;
  border-radius: 27px 0 0 0;
  background: linear-gradient(90deg, #F5F5F6 0%, #F4F5F9 100%);
  box-shadow: 1px 3px 21.3px 3px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(7.15px);
  flex-shrink: 0;
}

/* Product card component — Figma values scaled ×1.33
   Layout: text left, image right. Use with Tailwind for sizing/spacing. */
.product-card {
  border-radius: 20px 0 0 0;
  background: linear-gradient(0deg, #F5F5F6 0%, #F4F5F9 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.product-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d2d2d;
}
@media (min-width: 768px) {
  .product-card-title { font-size: 17px; }
}
@media (min-width: 1024px) {
  .product-card-title { font-size: 20px; }
}
.product-badge-bio {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  background: #A4D43A;
  color: #0c1a00;
  padding: 7px 14px;
  border-radius: 100px 0 100px 0;
  white-space: nowrap;
}
.product-action-btn {
  display: inline-flex;
  align-items: center;
  background: #0D0D0D;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px 0 100px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.product-action-btn:hover { opacity: 0.85; }

/* Gradient border modifier for deco-shape (border-color doesn't support gradients natively) */
.border-gradient-surface {
  border-color: transparent;
  background:
    transparent padding-box,
    linear-gradient(to bottom, #F5F5FB, #F6F6FD) border-box;
}

/* Reusable decorative shape — Figma 30×60px scaled ×1.33
   Color via Tailwind: border-lime-soft / border-blue / ...
   Rotation via Tailwind: rotate-90 / rotate-180 / -rotate-90 / ... */
.deco-shape {
  display: block;
  width: 40px;
  height: 80px;
  border-radius: 0 197px;
  border: 4px solid;
  pointer-events: none;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .deco-shape {
    width: 26px;
    height: 52px;
    border-width: 3px;
  }
}

/* Eco section card — frosted glass, circle hole top-left, rounded top-right only */
.eco-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(7.15px);
  border-radius: 0 40px 0 0;
  -webkit-mask: radial-gradient(circle at 28px 28px, transparent 9px, white 11px);
  mask: radial-gradient(circle at 28px 28px, transparent 9px, white 11px);
  box-shadow: 1px 3px 21.3px 3px rgba(0, 0, 0, 0.06);
  padding: 24px 18px 32px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .eco-card {
    min-height: 360px;
    padding: 36px 24px 44px;
  }
}
@media (min-width: 1024px) {
  .eco-card {
    min-height: 440px;
    padding: 44px 28px 52px;
  }
}

/* Frosted glass badge — Figma 177×34 scaled ×1.33 */
.stat-badge-pill {
  width: 235px;
  height: 45px;
  border-radius: 197px 0 197px 0;
  border: 1px solid rgba(248, 245, 245, 0.88);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 1px 3px 21.3px 3px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(7.2px);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
  color: #2d2d2d;
}

/* Hero stats card: starts at left edge, rounded top-right */
.hero-stats-card {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 592px;
  height: 96px;
  border-radius: 0 75px 0 0;
  background: linear-gradient(0deg, rgba(245, 245, 251, 0.65) 0%, rgba(246, 246, 253, 0.65) 100%);
  padding: 0 28px;
}

/* Form inputs — border-bottom only style */
.form-row { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.form-row label { font-size: 11.5px; font-weight: 600; color: #6a6a6a; }
.form-row input,
.form-row textarea {
  border: none;
  border-bottom: 1.5px solid #ddd;
  padding: 8px 0;
  font-size: 14px;
  color: #2d2d2d;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  width: 100%;
}
.form-row textarea { min-height: 80px; resize: none; }
.form-divider { border: none; border-top: 1px solid #e5e5e5; margin: 20px 0; }

/* Submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D0D0D;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
}
.btn-submit:hover { opacity: 0.85; }

/* Footer CTA button */
.footer-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #fff;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
}
.footer-cta-btn:hover { opacity: 0.85; }

/* Footer blue variant of the diagonal-pill button */
.btn-contact-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #599DF5;
  color: #0d1a33;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 100px 0 100px 0;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
  text-decoration: none;
}
.btn-contact-blue:hover { opacity: 0.87; }

/* Responsive overrides for hero stats card */
@media (max-width: 1023px) {
  .hero-stats-card { width: 100%; }
}
@media (max-width: 767px) {
  .hero-stats-card { width: 100%; height: auto; min-height: 72px; padding: 12px 20px; gap: 0; }
  .stat-badge { display: none !important; }
}
