html { scroll-behavior: smooth; scroll-padding-top: 32px; }
body { font-family: 'Inter', sans-serif; background-color: #fefefc; color: #51463f; }

/* Marquee */
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
  gap: 0;
}

/* Carousel: hide scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Form fields */
.field {
  width: 100%;
  padding: 14px 16px;
  border: 0.9px solid rgba(6,6,6,0.12);
  border-radius: 10px;
  background: #fefefc;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #51463f;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field::placeholder { color: rgba(6,6,6,0.4); font-weight: 300; }
.field:focus { border-color: #babf10; box-shadow: 0 0 0 3px rgba(186,191,16,0.1); }

/* ── Base paragraph typography ───────────────────── */
p {
  font-size: 16px;
  line-height: 1.75;
}

/* ── Slick Carousel overrides ─────────────────── */

/* Video reviews: let slides overflow so adjacent cards peek */
#video-reviews-slider .slick-list { overflow: visible; }

/* Dots — segment style */
.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.slick-dots li { margin: 0; width: auto; height: auto; }
.slick-dots li button {
  display: block;
  width: 8px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(186,191,16,0.25);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
  font-size: 0;
}
.slick-dots li button::before { display: none; }
.slick-dots li.slick-active button {
  width: 28px;
  background: #babf10;
}

/* Shared arrow base */
.slick-prev, .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity .2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slick-prev:hover, .slick-next:hover { opacity: 0.6; }
.slick-prev::before, .slick-next::before { display: none; }
.slick-prev svg, .slick-next svg { width: 48px; height: 48px; }
.slick-prev { left: -56px; }
.slick-next { right: -56px; }
.slick-prev svg { transform: rotate(180deg); }

/* Testimonial arrows */
.testimonial-arrow svg { color: #ffffff; }

/* ══════════════════════════════════════════════
   MOBILE — max-width: 767px
   Breakpoint mirrors Tailwind's md: (768px)
   ══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Section vertical rhythm ── */
  section {
    padding-top:    3.5rem !important;   /* 56px vs desktop 96px */
    padding-bottom: 3.5rem !important;
  }

  /* ── Typography scale ── */
  h1 { font-size: 2.25rem !important; line-height: 1.1; }   /* 36px */
  h2 { font-size: 2rem    !important; line-height: 1.1; }   /* 32px */
  h3 { font-size: 1.5rem  !important; line-height: 1.2; }   /* 24px */

  blockquote {
    font-size:   1.625rem !important;   /* 26px vs desktop 46px */
    line-height: 1.2;
  }

  p { font-size: 15px; }

  /* ── Testimonial slider — hide arrows on mobile ── */
  .testimonial-arrow { display: none !important; }

  /* ── Video review cards — reduce card height ── */
  .video-card-inner { height: 420px !important; }

  /* ── Hero logo ── */
  .hero-logo { height: 7rem !important; }       /* 80px vs 144px */

  /* ── Trust bar — centre items ── */
  .trust-bar-inner { justify-content: center; gap: 1.25rem; }
}
