/* =========================================================
   Luchtontvochtigerwinkel — Homepage
   Built to match the Figma at 1440px width
   ========================================================= */

:root {
  --navy: #01273f;
  --navy-2: #052e4a;
  --navy-darker: #001a2b;
  --orange: #e77935;
  --orange-hover: #d96b27;
  --cream: #f1ede5;
  --cream-soft: #f6f1e7;
  --beige-bg: #efeae0;
  --light-blue: #cfdae6;
  --light-blue-2: #dfe6ef;
  --table-head: #0b3854;
  --text: #0e2a3f;
  --muted: #5e6f7c;
  --muted-2: #6f7e8c;
  --border: #e7eaee;
  --border-soft: #eef1f4;
  --star: #f5b400;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Onest", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; }

.page {
  width: 1440px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}
.wrap { width: 1280px; margin: 0 auto; }

h1, h2, h3, h4 { margin: 0; color: var(--text); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  height: 88px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.header__logo img { height: 32px; width: auto; }
.header__nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: #4a5764;
  flex: 1;
  justify-content: center;
}
.header__nav a { padding: 6px 2px; transition: color .15s; }
.header__nav a:hover { color: var(--text); }
.header__nav a.is-active { color: var(--text); font-weight: 600; }
.header__icons { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--text);
  transition: background .15s;
}
.icon-btn:hover { background: #f5f7fa; }

/* =========================================================
   ORANGE PILL BUTTON
   ========================================================= */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 4px 28px 4px 4px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  box-shadow: 0 8px 18px -8px rgba(231,121,53,0.55);
  transition: background .15s, transform .15s;
}
.btn-pill:hover { background: var(--orange-hover); }
.btn-pill__arrow {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: #fff;
  display: grid; place-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.btn-pill__arrow svg { display: block; }
.btn-pill--lg { height: 60px; padding: 4px 32px 4px 4px; font-size: 15px; }
.btn-pill--lg .btn-pill__arrow { width: 52px; height: 52px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 56px 0 36px;
}
.hero__head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}
.hero__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text);
  max-width: 720px;
}
.hero__sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}
.hero__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* USP row */
.usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 28px 8px 36px;
}
.usp__item { display: flex; gap: 14px; align-items: flex-start; }
.usp__icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  color: var(--text);
  display: grid; place-items: center;
}
.usp__title { font-size: 16px; font-weight: 600; color: var(--text); margin: 2px 0 4px; }
.usp__copy { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* =========================================================
   SECTION 2 — Dé specialist (room grid)
   ========================================================= */
.specialist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 0 28px;
  align-items: end;
  margin-bottom: 8px;
}
.specialist__title {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 480px;
}
.specialist__right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 540px;
}
.specialist__copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 24px 0 16px;
}
.room-card {
  position: relative;
}
.room-card__img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3f0ea;
}
.room-card__img img { width: 100%; height: 100%; object-fit: cover; }
.room-card__bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-top: 14px; gap: 12px;
}
.room-card__label {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.25;
}
.arrow-circle {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* =========================================================
   PRODUCTCATEGORIEËN — cream card with bubble title
   ========================================================= */
.product-cats {
  margin-top: 60px;
  position: relative;
  background: var(--light-blue-2);
  border-radius: 28px;
  padding: 78px 38px 44px;
}
.product-cats__bubble {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 18px 56px 22px;
  border-radius: 0 0 28px 28px;
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.product-cats__bubble::before,
.product-cats__bubble::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px; height: 28px;
  background: radial-gradient(circle at 0 100%, transparent 28px, #fff 28px);
}
.product-cats__bubble::before { left: -28px; background: radial-gradient(circle at 0 100%, transparent 28px, #fff 28px); }
.product-cats__bubble::after { right: -28px; background: radial-gradient(circle at 100% 100%, transparent 28px, #fff 28px); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 0 22px;
}
.cat-card__visual {
  background: linear-gradient(135deg, #0e3a5b 0%, #052438 100%);
  height: 240px;
  display: grid; place-items: end center;
  padding: 22px;
  position: relative;
}
.cat-card__visual img { max-height: 100%; width: auto; max-width: 70%; }
.cat-card__bottom {
  padding: 18px 22px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.cat-card__label { font-size: 16px; font-weight: 600; line-height: 1.3; }

/* =========================================================
   POPULAIRE LUCHTONTVOCHTIGERS
   ========================================================= */
.popular {
  margin-top: 64px;
}
.popular__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 32px;
}
.popular__title {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 460px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  padding: 18px 18px 22px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.product-card--featured {
  box-shadow: 0 24px 40px -28px rgba(8, 38, 65, 0.18);
  border-color: #e0e6ed;
}
.product-card__img {
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 14px;
}
.product-card__img img { max-height: 100%; max-width: 80%; }
.product-card__stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-top: 8px; }
.product-card__name { font-size: 14px; color: var(--text); line-height: 1.35; font-weight: 500; }
.product-card__price { font-size: 22px; font-weight: 600; color: var(--text); margin-top: 4px; letter-spacing: -0.01em; }

/* =========================================================
   VOORKOM SCHADE — dark navy section with 3 cards
   ========================================================= */
.voorkom {
  margin-top: 72px;
  background: var(--navy);
  border-radius: 28px;
  padding: 48px 44px 48px;
  color: #fff;
}
.voorkom__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
.voorkom__title {
  font-size: 38px;
  color: #fff;
  line-height: 1.1;
  max-width: 460px;
}
.voorkom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voorkom-card {
  border-radius: 18px;
  padding: 24px 24px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.voorkom-card--1 { background: #ecf1f5; color: var(--text); }
.voorkom-card--2 { background: #c9d3df; color: var(--text); }
.voorkom-card--3 { background: #f6e8da; color: var(--text); }
.voorkom-card__title { font-size: 20px; font-weight: 600; margin-bottom: 10px; line-height: 1.2; }
.voorkom-card__body { font-size: 13px; line-height: 1.55; color: rgba(14, 42, 63, 0.74); }
.voorkom-card--2 .voorkom-card__title { margin-top: auto; padding-top: 60%; }

.voorkom-card__deco {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* SVG decorations live in HTML */

/* =========================================================
   KLEIN GEMAK — centered intro + 2 image cards
   ========================================================= */
.klein-gemak {
  margin-top: 72px;
  text-align: center;
  padding: 28px 0 24px;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(207, 218, 230, 0.15) 0%, transparent 70%);
}
.klein-gemak__badge {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--light-blue);
  display: grid; place-items: center;
  overflow: hidden;
}
.klein-gemak__badge img { width: 100%; height: 100%; object-fit: cover; }
.klein-gemak__title { font-size: 38px; line-height: 1.1; margin-bottom: 14px; }
.klein-gemak__sub { color: var(--muted); font-size: 15px; max-width: 540px; margin: 0 auto 26px; line-height: 1.6; }
.klein-gemak__cta { display: inline-flex; }

.kg-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 44px;
}
.kg-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: #f3f0ea;
}
.kg-card img { width: 100%; height: 100%; object-fit: cover; }
.kg-card__overlay {
  position: absolute;
  left: 22px; bottom: 22px; right: 22px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px 16px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 32px -22px rgba(0,0,0,0.25);
  max-width: 320px;
}
.kg-card__title { font-size: 15px; font-weight: 600; line-height: 1.3; }
.kg-card__body { font-size: 13px; color: var(--muted); line-height: 1.5; }
.kg-card__cta { align-self: flex-start; }
.btn-pill--sm { height: 42px; padding: 4px 22px 4px 4px; font-size: 13px; }
.btn-pill--sm .btn-pill__arrow { width: 36px; height: 36px; }

/* =========================================================
   ADEM VRIJ — light blue card with checks
   ========================================================= */
.adem-vrij {
  margin-top: 72px;
  background: var(--light-blue);
  border-radius: 28px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.adem-vrij__title {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.adem-vrij__list { display: flex; flex-direction: column; gap: 24px; }
.adem-vrij__item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: flex-start; }
.check-dot {
  width: 24px; height: 24px;
  background: var(--navy);
  border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.adem-vrij__h { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.adem-vrij__t { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  margin-top: 72px;
  text-align: center;
}
.reviews__title {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.reviews__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 4px 14px -10px rgba(8,38,65,0.12);
}
.review-card--featured {
  box-shadow: 0 24px 36px -22px rgba(8,38,65,0.18);
}
.review-card__head { display: flex; gap: 12px; align-items: center; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 999px; background: #f3f0ea; overflow: hidden; flex-shrink: 0; }
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-size: 14px; font-weight: 600; }
.review-card__loc { font-size: 12px; color: var(--muted); margin-top: 1px; }
.review-card__body { font-size: 13px; color: var(--muted); line-height: 1.5; }
.review-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border-soft); }
.review-card__stars { color: var(--star); font-size: 16px; letter-spacing: 1px; }
.review-card__src {
  width: 28px; height: 28px;
  border-radius: 5px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--border);
}
.review-card__src--trust { background: #00b67a; color: #fff; border-color: #00b67a; }

.review-side { opacity: 0.55; }
.reviews__nav {
  display: flex; justify-content: center; gap: 10px; margin-top: 26px;
}
.reviews__nav button {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  background: #fff;
  color: var(--text);
}
.reviews__nav button.is-next {
  box-shadow: 0 14px 22px -14px rgba(8,38,65,0.25);
}

/* =========================================================
   WAAROM — navy box with table
   ========================================================= */
.waarom {
  margin-top: 72px;
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 44px 44px 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: flex-start;
}
.waarom__title { color: #fff; font-size: 30px; line-height: 1.15; margin-bottom: 16px; max-width: 360px; }
.waarom__lead { color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.55; margin-bottom: 14px; }
.waarom__list { color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.65; }
.waarom__list b { color: #fff; }

.waarom-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; font-variant-numeric: tabular-nums; }
.waarom-table th, .waarom-table td {
  text-align: left; padding: 14px 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}
.waarom-table th { color: rgba(255,255,255,0.65); font-weight: 500; font-size: 13px; padding-bottom: 14px; }
.waarom-table tr td:first-child { color: #fff; font-weight: 500; }
.waarom-table tbody tr:nth-child(odd) td { background: var(--table-head); }
.waarom-table tbody tr:nth-child(odd) td:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.waarom-table tbody tr:nth-child(odd) td:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  margin-top: 72px;
  padding: 0 16px;
}
.faq__title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.faq__group { padding: 18px 0 22px; border-bottom: 1px solid var(--border-soft); }
.faq__h {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.faq__p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.faq__ul { margin: 8px 0 8px; padding-left: 20px; }
.faq__ul li { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 4px; }
.faq__check { font-size: 14px; color: var(--text); line-height: 1.8; }
.faq__check::before { content: "✓ "; color: var(--text); font-weight: 700; margin-right: 4px; }
.faq__cta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

/* mini table inside FAQ */
.faq-table {
  width: 540px; max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 14px 0 18px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.faq-table th, .faq-table td { padding: 12px 16px; text-align: left; color: var(--text); }
.faq-table thead th { color: var(--muted); font-weight: 500; padding-bottom: 10px; }
.faq-table tbody tr:nth-child(odd) td {
  background: var(--navy);
  color: #fff;
}
.faq-table tbody tr:nth-child(odd) td:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.faq-table tbody tr:nth-child(odd) td:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
.faq-table tbody tr:nth-child(even) td { background: transparent; }
.faq-table tbody tr:nth-child(even) td:first-child { color: var(--text); }

/* =========================================================
   WE HELPEN JE GRAAG
   ========================================================= */
.helpen-section {
  background: var(--cream);
  padding: 80px 0 0;
  margin-top: 80px;
}
.helpen { text-align: center; padding: 0 16px 56px; }
.helpen__title { font-size: 38px; margin-bottom: 16px; letter-spacing: -0.02em; }
.helpen__sub { color: var(--muted); font-size: 14.5px; max-width: 580px; margin: 0 auto 36px; line-height: 1.6; }
.helpen__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.helpen-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  text-align: left;
  position: relative;
  border-left: 4px solid #44c0e0;
  box-shadow: 0 6px 20px -16px rgba(0,0,0,0.18);
}
.helpen-card__label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.helpen-card__val { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.005em; }

/* =========================================================
   BLIJF OP DE HOOGTE — dark card with bubble pointer
   ========================================================= */
.blijf-wrap {
  position: relative;
  padding: 40px 16px 90px;
  background: var(--cream);
}
.blijf {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.blijf::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--navy);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.blijf__title { color: #fff; font-size: 44px; line-height: 1.05; margin-bottom: 16px; }
.blijf__copy { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.6; max-width: 380px; }
.blijf__form {
  position: relative;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px;
}
.blijf__form input {
  flex: 1;
  background: transparent;
  border: 0;
  font: inherit;
  color: #fff;
  font-size: 15px;
  padding: 0 18px;
  outline: none;
  height: 56px;
}
.blijf__form input::placeholder { color: rgba(255,255,255,0.5); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--cream);
  padding: 32px 0 28px;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(14,42,63,0.08);
}
.footer__logo img { height: 32px; margin-bottom: 24px; }
.footer__tag { color: var(--text); font-size: 14px; line-height: 1.55; margin-bottom: 22px; max-width: 240px; }
.footer__h { color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.footer__hours { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
}
.footer__socials a:nth-child(n+2) {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.footer__col h4 { color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text); font-size: 14px; opacity: 0.85; }
.footer__col a:hover { opacity: 1; }
.footer__bizname { font-weight: 600; color: var(--text); font-size: 14px; margin: 18px 0 6px; }
.footer__bizmeta { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.footer__bizmeta--label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; margin-top: 6px; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 12px; color: var(--muted);
}
.footer__bottom a { color: var(--muted); margin-left: 28px; }
