/*
 * project.html — See Pricing CTA injected beside the hero's Book a free call
 * pill by js/project-see-pricing.js.
 *
 * The button mirrors the homepage hero's secondary CTA visual: pill shape,
 * cream/off-white surface, dark green text, £ icon. The dimensions are picked
 * to match the Book a free call pill's height (40px) so the two sit on the
 * same horizontal axis inside Framer's "Buttons" flex/grid container.
 */

.gs-see-pricing-btn {
  /* match the Framer pill height so the two CTAs align */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  margin-left: 10px;

  background: #f4eee2;
  color: #0a1f12;
  border: 1px solid rgba(10, 31, 18, 0.08);
  border-radius: 10px;

  font-family: "DM Sans", "DM Sans Placeholder", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  transition: background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.gs-see-pricing-btn:hover,
.gs-see-pricing-btn:focus-visible {
  background: #ece4d2;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(10, 31, 18, 0.25);
  outline: none;
}

.gs-see-pricing-btn:focus-visible {
  box-shadow:
    0 6px 14px -8px rgba(10, 31, 18, 0.25),
    0 0 0 3px rgba(10, 31, 18, 0.18);
}

.gs-see-pricing-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-weight: 700;
  font-size: 14px;
  color: #0a1f12;
}

.gs-see-pricing-btn__label {
  display: inline-block;
}

/* Framer stacks the hero "Buttons" container vertically (flex-direction:
   column) at viewport widths up to 809px and stretches the Book a Free
   Call pill to full container width with 16px text and 8px vertical
   padding. Above 810px the container switches to a side-by-side row and
   the pill shrinks to its content width — at which point our 14px /
   content-width secondary CTA reads fine.

   The original 520px breakpoint missed the 521-809px range (tablet +
   narrow desktop) entirely, where the primary went full-width but our
   button stayed small. Widen the rule to match Framer's exact 810px
   stack-to-row threshold so the two stacked CTAs always read as a
   balanced pair. */
@media (max-width: 809px) {
  .gs-see-pricing-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    min-height: 40px;
    height: auto;
    padding: 8px 16px;
    font-size: 16px;
  }
  .gs-see-pricing-btn__icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gs-see-pricing-btn {
    transition: none;
  }
  .gs-see-pricing-btn:hover {
    transform: none;
  }
}
