/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #f94d85;
  --orange-light: #ff6b9d;
  --yellow:   #FFD166;
  --green:    #06C980;
  --purple:   #6C63FF;
  --blue:     #48CAE4;
  --dark:     #1C1C2E;
  --mid:      #4A4A6A;
  --muted:    #8888AA;
  --bg:       #FFF9F5;
  --white:    #FFFFFF;
  --border:   #EDE8E3;
  --radius-sm: 8px;
  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  padding: 12px 26px;
  font-size: .95rem;
  box-shadow: 0 4px 14px rgba(255,107,53,.35);
}
.btn--primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,.45);
}

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  font-size: .875rem;
}
.btn--nav:hover { background: var(--orange-light); }

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  padding: 6px 16px;
  font-size: .82rem;
}
.btn--ghost:hover { background: var(--border); color: var(--mid); }

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 6px 16px; font-size: .8rem; }

/* ===========================
   NAV
=========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
}
.nav__logo-icon { font-size: 1.5rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--mid);
}
.nav__links a:hover { color: var(--orange); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3EB 0%, #FFF9F5 50%, #F0F8FF 100%);
  padding: 56px 0 80px;
  text-align: center;
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
}
.shape--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  top: -180px; right: -120px;
}
.shape--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--orange), transparent 70%);
  bottom: -140px; left: -100px;
}
.shape--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  top: 60px; left: 10%;
}

.hero__inner { position: relative; z-index: 1; }

.hero__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   USPs
=========================== */
.usps {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.usps__grid {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.usp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 220px;
  justify-content: center;
}
.usp-card:last-child { border-right: none; }

.usp-card__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.usp-card__body {
  display: flex;
  flex-direction: column;
}
.usp-card__body strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.usp-card__body span {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===========================
   SECTION TITLES
=========================== */
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 32px;
}

/* ===========================
   ACTIVITIES SECTION
=========================== */
.activities {
  padding: 72px 0 80px;
}

/* FILTERS */
.filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-group__label {
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  min-width: 120px;
  padding-top: 8px;
  flex-shrink: 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.chip {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: var(--mid);
  cursor: pointer;
  transition: all .18s ease;
}
.chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFF3EE;
}
.chip--active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(255,107,53,.3);
}
.chip--active:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
}

/* RESULTS BAR */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
#results-count {
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
}

/* ACTIVITY GRID */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ACTIVITY CARD */
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-card__thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.activity-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tag {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.tag--age      { background: #FFF0F5; color: #c0195e; }
.tag--area     { background: #E8F4FD; color: #1A6DA4; }
.tag--day      { background: #E8FBF2; color: #0F8A52; }
.tag--online   { background: #F0EEFF; color: #5B4FCF; }
.tag--date     { background: #FFF8E1; color: #B8860B; }
.tag--category { background: #FFF3E0; color: #E65100; }

.activity-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.activity-card__desc {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.activity-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(255,209,102,.25);
}

.activity-card__featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
}

.activity-card--editors-choice {
  border-color: var(--yellow);
  box-shadow: 0 6px 28px rgba(255,209,102,.35);
}

.activity-card__editors-choice {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f94d85 0%, #ff8c42 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(249,77,133,.35);
}

.activity-card__time,
.activity-card__address {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.activity-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.activity-card__cost {
  font-size: .85rem;
  font-weight: 800;
  color: var(--dark);
}
.activity-card__cost span { color: var(--muted); font-weight: 600; }

.activity-card__cta {
  font-size: .82rem;
  font-weight: 800;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
  text-decoration: none;
}
.activity-card:hover .activity-card__cta { gap: 8px; }

/* NO RESULTS */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.no-results__icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { font-size: 1.3rem; font-weight: 800; color: var(--mid); margin-bottom: 8px; }
.no-results p { font-size: .95rem; margin-bottom: 24px; }

.hidden { display: none !important; }

/* SHOW MORE */
.show-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
}

/* ===========================
   ABOUT
=========================== */
.about {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.2;
}
.about__text p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about__text .btn--primary { margin-top: 8px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-card__label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #14141F;
  color: rgba(255,255,255,.55);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer__brand strong { color: var(--white); font-size: 1.1rem; }
.footer__brand .nav__logo-icon { font-size: 2rem; }
.footer__brand p { font-size: .85rem; }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}
.footer__links a:hover { color: var(--orange); }

.footer__copy { font-size: .78rem; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .usp-card { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .usp-card:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero — compact */
  .hero { padding: 28px 0 32px; }
  .hero__mascot { width: 80px; }
  .hero__subtitle { font-size: .95rem; margin-bottom: 20px; }
  .hero__badge { font-size: .68rem; padding: 4px 12px; margin-bottom: 10px; }
  .shape { display: none; }

  /* Filters — label stacks above chips, chips scroll horizontally */
  .filter-group { flex-direction: column; gap: 6px; }
  .filter-group__label { min-width: unset; padding-top: 0; font-size: .72rem; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
  .filter-chips::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }

  /* Grid */
  .activity-grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { width: 100%; }
  .reviews__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .trusted__logos { grid-template-columns: repeat(2, 1fr); }
  .founder__inner { flex-direction: column; text-align: center; }
  .founder__photo { width: 100%; max-width: 320px; height: 300px; margin: 0 auto; }
  .founder__mascot { width: 100px; margin: 0 auto; }
}

/* ===========================
   HAMBURGER / MOBILE MENU
=========================== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
}
.nav__hamburger:hover { background: var(--border); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 24px 16px;
  gap: 4px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  padding: 12px 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu .btn--primary {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  border-bottom: none;
  border-radius: 50px;
}

/* ===========================
   NAV LOGO IMAGE
=========================== */
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* ===========================
   HERO MASCOT
=========================== */
.hero__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__title { margin-bottom: 0; }
.hero__mascot {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

/* ===========================
   NEWSLETTER
=========================== */
.newsletter {
  background: linear-gradient(135deg, #ff85a1 0%, #f94d85 45%, #c0195e 100%);
  padding: 56px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  top: -160px;
  right: -100px;
  pointer-events: none;
}
.newsletter::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.newsletter__monster {
  height: 140px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
}
.newsletter__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 6px;
}
.newsletter__text p {
  font-size: 1rem;
  opacity: .9;
  font-weight: 600;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter__input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  width: 280px;
  outline: none;
  color: var(--dark);
}
.newsletter__form .btn--primary {
  background: var(--dark);
  box-shadow: none;
}
.newsletter__form .btn--primary:hover { background: #2d2d44; }

/* ===========================
   REVIEWS
=========================== */
.reviews {
  padding: 80px 0;
  background: var(--bg);
}
.reviews__label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 8px;
  text-align: center;
}
.reviews .section-title { margin-bottom: 40px; text-align: center; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.review-card__label {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
}
.review-card__quote {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--mid);
  flex: 1;
  font-style: italic;
}
.review-card__stars { font-size: 1rem; }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}
.review-card__author div { display: flex; flex-direction: column; }
.review-card__author span { font-weight: 600; color: var(--muted); font-size: .8rem; }
.review-card__photo {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

/* ===========================
   FOUNDER
=========================== */
.founder {
  background: linear-gradient(135deg, #fff0f5 0%, #fff9f5 100%);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.founder__photo {
  width: 320px;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.founder__label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 10px;
}
.founder__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.founder__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 16px;
}
.founder__attribution {
  font-size: .9rem;
  font-weight: 800;
  color: var(--dark);
}

/* ===========================
   WHY SECTION
=========================== */
.why {
  padding: 80px 0;
  background: var(--white);
}
.why .section-title,
.why .section-subtitle {
  text-align: center;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  padding: 28px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: box-shadow .2s;
  text-align: center;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-card__monster {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.why-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===========================
   CATEGORIES
=========================== */
.categories {
  padding: 72px 0;
  background: var(--bg);
}
.categories .section-title,
.categories .section-subtitle {
  text-align: center;
}
.categories__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  justify-content: center;
}
.category-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  transition: all .2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.category-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff0f5;
}

/* ===========================
   TRUSTED SOURCES
=========================== */
.trusted {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.trusted__title {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 40px;
}
.trusted__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.trusted-logo {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.trusted-logo img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}
.trusted-logo:hover { border-color: var(--orange); }

/* ===========================
   FOOTER LOGO
=========================== */
.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .trusted__logos { grid-template-columns: repeat(2, 1fr); }
}
