@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

body {
  min-height: max(884px, 100dvh);
  font-family: "Inter", sans-serif;
}

.layout {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.layout-sm {
  width: 90%;
  max-width: 780px;
  margin: auto;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

h1, h2, h3, h4, .section-title, .heading-h3, .heading-h4 {
  font-family: "Manrope", sans-serif;
}

.section-title {
  font-size: 1.875rem;
  line-height: 1.1;
}

.heading-h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.heading-h4 {
  font-size: 1rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }

  .heading-h3 {
    font-size: 1.5rem;
  }

  .heading-h4 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .section-title {
    font-size: 3rem;
  }

  .heading-h3 {
    font-size: 1.875rem;
  }

  .heading-h4 {
    font-size: 1.25rem;
  }
}

.cta-main {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.type-label {
  font-size: 0.625rem;
  line-height: 1;
}

.type-meta {
  font-size: 0.625rem;
  line-height: 1.1;
}

.type-body-sm {
  font-size: 0.875rem;
  line-height: 1.45;
}

.type-body {
  font-size: 1rem;
  line-height: 1.55;
}

.type-body-lg {
  font-size: 1.125rem;
  line-height: 1.5;
}

.type-quote {
  font-size: 0.875rem;
  line-height: 1.5;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Review card: show 3 at once on desktop */
@media (min-width: 768px) {
  .review-card {
    flex-shrink: 0;
    min-width: calc((100% - 2.5rem) / 3) !important;
    max-width: calc((100% - 2.5rem) / 3) !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: #ff5f00;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 95, 0, 0.22);
}

.btn-primary:hover {
  background: #e55400;
  box-shadow: 0 14px 28px rgba(229, 84, 0, 0.28);
}

.btn-outline-primary {
  border: 2px solid #ff5f00;
  color: #ff5f00;
  background: #ffffff;
}

.btn-outline-primary:hover {
  background: #ff5f00;
  color: #ffffff;
}

.btn-outline-dark {
  border: 2px solid #0f172a;
  color: #0f172a;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #f8fafc;
}

.btn-pad-tight {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.btn-pad-inline {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 640px) {
  .cta-main {
    font-size: 0.95rem;
    line-height: 1.35rem;
  }

  .type-label,
  .type-meta {
    font-size: 0.75rem;
  }

  .type-body-sm,
  .type-quote {
    font-size: 1rem;
  }

  .type-body {
    font-size: 1.125rem;
  }

  .type-body-lg {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .cta-main {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  .type-body-sm,
  .type-quote {
    font-size: 1.125rem;
  }

  .type-body {
    font-size: 1.25rem;
  }

  .type-body-lg {
    font-size: 1.5rem;
  }
}