:root {
  --rq-green-950: #064c3f;
  --rq-green-900: #075f4e;
  --rq-green-800: #087259;
  --rq-green-700: #0a8768;
  --rq-green-600: #14a17d;
  --rq-green-200: #bde8d7;
  --rq-green-100: #def4ea;
  --rq-green-050: #f2faf6;

  --rq-yellow: #f5c65c;
  --rq-yellow-soft: #fff4cf;

  --rq-purple: #9b78d0;
  --rq-purple-soft: #f2eafa;

  --rq-blue: #71b6cf;
  --rq-blue-soft: #e8f5f8;

  --rq-pink: #e991ad;
  --rq-pink-soft: #fcecf2;

  --rq-text: #18231f;
  --rq-muted: #63716b;
  --rq-line: #dbe9e2;
  --rq-page: #fbfdfc;
  --rq-surface: #ffffff;

  --rq-shell: 1180px;

  --rq-shadow:
    0 20px 55px rgba(25, 74, 57, 0.10);

  --rq-shadow-soft:
    0 8px 26px rgba(25, 74, 57, 0.07);

  --rq-radius-xl: 30px;
  --rq-radius-lg: 23px;
  --rq-radius-md: 16px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body.rq-home {
  margin: 0;
  padding: 0;
  overflow-x: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0,
      #fbfdfc 36%,
      #f7fbf8 100%
    );

  color: var(--rq-text);

  font-family:
    'Noto Sans JP',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;

  line-height: 1.7;
}


.rq-home a {
  color: inherit;
}


.rq-home img,
.rq-home svg {
  max-width: 100%;
}


.rq-home button,
.rq-home input {
  font: inherit;
}


.rq-home button,
.rq-home a {
  -webkit-tap-highlight-color: transparent;
}


.lang-en {
  display: none;
}


.rq-shell {
  width: min(
    calc(100% - 48px),
    var(--rq-shell)
  );

  margin-inline: auto;
}


.rq-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* =========================
   Header
   ========================= */

.rq-header {
  position: sticky;
  top: 0;
  z-index: 100;

  border-bottom:
    1px solid rgba(219, 233, 226, 0.78);

  background:
    rgba(255, 255, 255, 0.90);

  backdrop-filter: blur(18px);
}


.rq-header__inner {
  width: min(
    calc(100% - 48px),
    var(--rq-shell)
  );

  min-height: 72px;
  margin-inline: auto;

  display: grid;
  grid-template-columns:
    auto 1fr auto;

  align-items: center;
  gap: 34px;
}


.rq-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  text-decoration: none;
}


.rq-brand__name {
  color: var(--rq-green-800);

  font-size: 1.65rem;
  font-weight: 800;

  letter-spacing: -0.055em;
}


.rq-brand__spark {
  position: relative;
  top: -9px;

  color: var(--rq-yellow);

  font-size: 0.8rem;
}


.rq-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(
    18px,
    2.4vw,
    36px
  );
}


.rq-nav a {
  position: relative;

  text-decoration: none;

  color: #35413b;

  font-size: 0.84rem;
  font-weight: 600;

  white-space: nowrap;
}


.rq-nav a::after {
  content: '';

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -9px;

  height: 2px;

  border-radius: 999px;

  background:
    var(--rq-green-600);

  transition:
    right 160ms ease;
}


.rq-nav a:hover::after {
  right: 0;
}


.rq-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}


.rq-language {
  min-width: 46px;
  height: 40px;

  padding-inline: 11px;

  border:
    1px solid var(--rq-line);

  border-radius: 999px;

  background: #fff;
  color: var(--rq-green-800);

  font-size: 0.76rem;
  font-weight: 800;

  cursor: pointer;
}


.rq-menu-button {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 0;
  background: transparent;

  cursor: pointer;
}


.rq-menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  border-radius: 99px;

  background:
    var(--rq-green-800);

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


.rq-menu-button.is-open span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}


.rq-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}


.rq-menu-button.is-open span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


.rq-mobile-menu {
  display: none;
}


/* =========================
   Hero
   ========================= */

.rq-hero {
  position: relative;

  padding:
    clamp(64px, 7vw, 105px)
    0
    clamp(52px, 6vw, 86px);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 68% 42%,
      rgba(222, 244, 234, 0.94),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 14%,
      rgba(255, 244, 207, 0.72),
      transparent 23%
    ),
    #fff;
}


.rq-hero::after {
  content: '';

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(189, 232, 215, 0.9),
      transparent
    );
}


.rq-hero__grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 0.93fr)
    minmax(480px, 1.07fr);

  align-items: center;

  gap: clamp(
    48px,
    7vw,
    90px
  );
}


.rq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 22px;

  color: var(--rq-green-800);

  font-size: 0.74rem;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.rq-kicker span {
  color: var(--rq-yellow);
}


.rq-hero h1 {
  margin: 0;

  max-width: 650px;

  font-size:
    clamp(
      2.9rem,
      5vw,
      5.3rem
    );

  line-height: 1.11;

  letter-spacing: -0.065em;

  font-weight: 800;
}


.rq-hero h1 > span > span {
  color: var(--rq-green-800);
}


.rq-hero__lead {
  max-width: 590px;

  margin:
    27px
    0
    28px;

  color: #53605a;

  font-size:
    clamp(
      0.96rem,
      1.25vw,
      1.08rem
    );
}


.rq-search {
  position: relative;

  max-width: 650px;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  padding: 7px;

  border:
    1px solid #d9e7e0;

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 13px 34px
    rgba(38, 81, 66, 0.10);
}


.rq-search:focus-within {
  border-color:
    rgba(20, 161, 125, 0.62);

  box-shadow:
    0 0 0 4px
    rgba(20, 161, 125, 0.10),
    0 15px 36px
    rgba(38, 81, 66, 0.10);
}


.rq-search__icon {
  width: 43px;

  display: grid;
  place-items: center;

  color: var(--rq-green-700);

  font-size: 1.45rem;
}


.rq-search input {
  min-width: 0;
  height: 46px;

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--rq-text);

  font-size: 0.92rem;
}


.rq-search button {
  height: 43px;

  padding: 0 18px;

  border: 0;
  border-radius: 13px;

  background:
    var(--rq-green-800);

  color: #fff;

  font-size: 0.82rem;
  font-weight: 800;

  cursor: pointer;
}


.rq-search-status {
  min-height: 24px;

  margin:
    7px 0 0;

  color: var(--rq-green-800);

  font-size: 0.78rem;
  font-weight: 700;
}


.rq-quick {
  margin-top: 18px;
}


.rq-quick__label {
  display: block;

  margin-bottom: 9px;

  color: var(--rq-muted);

  font-size: 0.74rem;
  font-weight: 700;
}


.rq-quick__items {
  display: flex;
  align-items: flex-start;

  gap: 15px;
}


.rq-quick-item {
  min-width: 68px;

  display: grid;

  justify-items: center;

  gap: 7px;

  text-align: center;
  text-decoration: none;

  color: #34423b;

  font-size: 0.7rem;
  font-weight: 700;
}


.rq-quick-item__icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border:
    1px solid var(--rq-line);

  border-radius: 17px;

  background:
    rgba(255, 255, 255, 0.92);

  color: var(--rq-green-800);

  box-shadow:
    var(--rq-shadow-soft);

  font-size: 0.98rem;
  font-weight: 800;

  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}


.rq-quick-item:hover
.rq-quick-item__icon {
  transform:
    translateY(-3px);

  box-shadow:
    0 14px 28px
    rgba(28, 79, 60, 0.13);
}


/* =========================
   Discovery visual
   ========================= */

.rq-discovery {
  position: relative;

  width: 100%;
  min-height: 460px;

  border-radius:
    var(--rq-radius-xl);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 52% 48%,
      rgba(255,255,255,0.96),
      rgba(241,250,245,0.72) 42%,
      rgba(221,241,231,0.58) 72%,
      rgba(238,248,243,0.64)
    );

  border:
    1px solid rgba(205, 228, 216, 0.9);

  box-shadow:
    inset 0 0 80px
    rgba(255, 255, 255, 0.92),
    var(--rq-shadow-soft);
}


.rq-discovery::before {
  content: '';

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(245, 198, 92, 0.20)
      0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 82% 21%,
      rgba(20, 161, 125, 0.16)
      0 4px,
      transparent 5px
    ),
    radial-gradient(
      circle at 74% 78%,
      rgba(155, 120, 208, 0.12)
      0 5px,
      transparent 6px
    );

  background-size:
    130px 130px,
    170px 170px,
    220px 220px;
}


.rq-orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border:
    1px dashed
    rgba(20, 161, 125, 0.23);

  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    rotate(-11deg);
}


.rq-orbit--one {
  width: 72%;
  height: 54%;
}


.rq-orbit--two {
  width: 92%;
  height: 77%;

  transform:
    translate(-50%, -50%)
    rotate(18deg);
}


.rq-float-card {
  position: absolute;

  min-width: 116px;

  padding:
    13px
    16px;

  display: flex;
  align-items: center;

  gap: 10px;

  border:
    1px solid rgba(213, 231, 221, 0.95);

  border-radius: 18px;

  background:
    rgba(255,255,255,0.90);

  backdrop-filter:
    blur(12px);

  box-shadow:
    0 15px 35px
    rgba(31, 75, 59, 0.10);

  color: #34423b;

  font-size: 0.78rem;
}


.rq-float-card__icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background:
    var(--rq-green-100);

  color: var(--rq-green-800);

  font-weight: 800;
}


.rq-float-card--language {
  left: 10%;
  top: 14%;

  transform:
    rotate(-4deg);
}


.rq-float-card--measure {
  right: 7%;
  top: 23%;

  transform:
    rotate(4deg);
}


.rq-float-card--review {
  right: 13%;
  bottom: 12%;

  transform:
    rotate(-3deg);
}


.rq-character-slot {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 142px;
  height: 142px;

  display: grid;
  place-items: center;

  padding: 20px;

  border:
    2px dashed
    rgba(20, 161, 125, 0.35);

  border-radius: 46% 54% 52% 48%;

  transform:
    translate(-50%, -50%);

  background:
    rgba(255, 255, 255, 0.62);

  color: var(--rq-green-700);

  text-align: center;

  font-size: 0.7rem;
  font-weight: 700;

  line-height: 1.55;
}


.rq-character-slot__spark {
  position: absolute;

  top: 15px;
  right: 21px;

  color: var(--rq-yellow);

  font-size: 1rem;
}


.rq-discovery__path {
  position: absolute;

  left: 11%;
  right: 13%;
  bottom: 25%;

  height: 56px;

  border-top:
    6px solid
    rgba(182, 218, 197, 0.32);

  border-radius: 50%;
}


.rq-discovery__dot {
  position: absolute;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    var(--rq-yellow);

  box-shadow:
    0 0 0 7px
    rgba(245, 198, 92, 0.14);
}


.rq-discovery__dot--1 {
  left: 19%;
  bottom: 25%;
}


.rq-discovery__dot--2 {
  right: 32%;
  top: 17%;

  background:
    var(--rq-green-600);

  box-shadow:
    0 0 0 7px
    rgba(20, 161, 125, 0.12);
}


.rq-discovery__dot--3 {
  right: 14%;
  bottom: 30%;

  background:
    var(--rq-purple);

  box-shadow:
    0 0 0 7px
    rgba(155, 120, 208, 0.11);
}


/* =========================
   Section base
   ========================= */

.rq-section {
  padding:
    clamp(66px, 7vw, 94px)
    0;
}


.rq-section--compact {
  padding-top: 24px;
}


.rq-section-heading,
.rq-panel-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 27px;
}


.rq-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: var(--rq-green-700);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.rq-section-heading h2,
.rq-panel-heading h2,
.rq-philosophy__heading h2 {
  margin: 0;

  font-size:
    clamp(
      1.75rem,
      2.7vw,
      2.55rem
    );

  line-height: 1.25;

  letter-spacing: -0.045em;
}


.rq-section-heading__link,
.rq-panel-heading a {
  color: var(--rq-green-800);

  text-decoration: none;

  font-size: 0.81rem;
  font-weight: 800;

  white-space: nowrap;
}


/* =========================
   Services
   ========================= */

.rq-section--services {
  padding-bottom: 48px;
}


.rq-service-track {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(230px, 1fr)
    );

  gap: 15px;
}


.rq-service-card {
  min-width: 0;

  border-radius: 23px;

  overflow: hidden;

  transition:
    transform 170ms ease,
    opacity 170ms ease,
    filter 170ms ease,
    box-shadow 170ms ease;
}


.rq-service-card__link {
  height: 100%;

  display: flex;
  flex-direction: column;

  text-decoration: none;

  border:
    1px solid rgba(216, 229, 222, 0.92);

  border-radius: 23px;

  overflow: hidden;

  background: #fff;

  box-shadow:
    var(--rq-shadow-soft);
}


.rq-service-card:hover {
  transform:
    translateY(-5px);
}


.rq-service-card__visual {
  position: relative;

  height: 130px;

  display: grid;
  place-items: center;

  overflow: hidden;
}


.rq-service-card--french
.rq-service-card__visual {
  background:
    linear-gradient(
      135deg,
      #f6e9fb,
      #eadff7
    );
}


.rq-service-card--measure
.rq-service-card__visual {
  background:
    linear-gradient(
      135deg,
      #e3f5ea,
      #d2eddf
    );
}


.rq-service-card--vocab
.rq-service-card__visual {
  background:
    linear-gradient(
      135deg,
      #fff3cf,
      #fbe9ae
    );
}


.rq-service-card--more
.rq-service-card__visual {
  background:
    linear-gradient(
      135deg,
      #f1f5f3,
      #e8f0ec
    );
}


.rq-service-card__visual::after {
  content: '';

  position: absolute;

  width: 116px;
  height: 116px;

  right: -30px;
  bottom: -48px;

  border:
    17px solid
    rgba(255,255,255,0.42);

  border-radius: 50%;
}


.rq-service-card__symbol {
  position: relative;
  z-index: 1;

  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 22px;

  background:
    rgba(255,255,255,0.82);

  color: var(--rq-green-800);

  box-shadow:
    0 12px 28px
    rgba(45, 73, 61, 0.10);

  font-size: 1.25rem;
  font-weight: 800;
}


.rq-service-card__decoration {
  position: absolute;

  right: 23px;
  top: 17px;

  color:
    rgba(71, 89, 80, 0.30);

  font-size: 1.25rem;
}


.rq-service-card__body {
  flex: 1;

  padding:
    19px
    20px
    20px;

  display: flex;
  flex-direction: column;
}


.rq-service-card__tag {
  align-self: flex-start;

  padding:
    4px
    8px;

  border-radius: 999px;

  background:
    var(--rq-green-050);

  color: var(--rq-green-700);

  font-size: 0.65rem;
  font-weight: 800;
}


.rq-service-card h3 {
  margin:
    12px 0 7px;

  font-size: 1.24rem;

  letter-spacing: -0.035em;
}


.rq-service-card p {
  flex: 1;

  margin: 0;

  color: #607069;

  font-size: 0.79rem;

  line-height: 1.65;
}


.rq-service-card__cta {
  margin-top: 16px;

  color: var(--rq-green-800);

  font-size: 0.75rem;
  font-weight: 800;
}


.rq-service-card.is-search-muted,
.rq-service-card.is-category-muted {
  opacity: 0.28;

  filter:
    grayscale(0.5);
}


.rq-service-card.is-search-match,
.rq-service-card.is-category-match {
  box-shadow:
    0 0 0 3px
    rgba(20, 161, 125, 0.16);

  border-radius: 23px;
}


.rq-track-hint {
  display: none;
}


/* =========================
   Experience + updates
   ========================= */

.rq-two-column {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 18px;
}


.rq-mini-experience,
.rq-update-panel {
  border:
    1px solid rgba(214, 231, 221, 0.9);

  border-radius:
    var(--rq-radius-lg);

  background:
    rgba(255,255,255,0.92);

  box-shadow:
    var(--rq-shadow-soft);
}


.rq-mini-experience {
  padding:
    27px;

  background:
    linear-gradient(
      135deg,
      #f0faf5,
      #e3f4eb
    );
}


.rq-update-panel {
  padding:
    27px;
}


.rq-panel-heading {
  align-items: flex-start;

  margin-bottom: 19px;
}


.rq-panel-heading h2 {
  font-size: 1.35rem;
}


.rq-panel-badge {
  padding:
    5px
    9px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.82);

  color: var(--rq-green-700);

  font-size: 0.65rem;
  font-weight: 800;
}


.rq-quiz {
  padding:
    21px;

  border:
    1px solid rgba(196, 222, 207, 0.92);

  border-radius: 18px;

  background:
    rgba(255,255,255,0.88);
}


.rq-quiz__question {
  margin:
    0
    0
    15px;

  font-size: 0.93rem;
  font-weight: 700;
}


.rq-quiz__answers {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
}


.rq-quiz__answers button {
  min-height: 42px;

  padding:
    8px
    15px;

  border:
    1px solid
    var(--rq-line);

  border-radius: 12px;

  background: #fff;

  color: #405049;

  cursor: pointer;

  transition:
    transform 130ms ease,
    border-color 130ms ease,
    background 130ms ease;
}


.rq-quiz__answers button:hover {
  transform:
    translateY(-2px);
}


.rq-quiz__answers button.is-correct {
  border-color:
    var(--rq-green-600);

  background:
    var(--rq-green-100);

  color:
    var(--rq-green-900);
}


.rq-quiz__answers button.is-wrong {
  border-color:
    #e6adbb;

  background:
    #fff0f3;

  color:
    #9c4358;
}


.rq-quiz__result {
  min-height: 26px;

  margin-top: 10px;

  color: var(--rq-green-800);

  font-size: 0.77rem;
  font-weight: 700;
}


.rq-update-list {
  display: grid;
}


.rq-update-row {
  display: grid;

  grid-template-columns:
    auto minmax(0, 1fr) auto;

  align-items: center;

  gap: 10px;

  padding:
    12px 0;

  border-bottom:
    1px solid #edf3f0;
}


.rq-update-row:last-child {
  border-bottom: 0;
}


.rq-update-badge {
  padding:
    2px
    7px;

  border-radius: 999px;

  background:
    var(--rq-purple-soft);

  color:
    #7852aa;

  font-size: 0.58rem;
  font-weight: 800;
}


.rq-update-row a,
.rq-update-row > div {
  min-width: 0;

  color: #37443e;

  text-decoration: none;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  font-size: 0.78rem;
  font-weight: 600;
}


.rq-update-row time {
  color: #7b8882;

  font-size: 0.67rem;

  white-space: nowrap;
}


/* =========================
   Categories
   ========================= */

.rq-section--categories {
  padding-top: 58px;
}


.rq-category-list {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 12px;
}


.rq-category {
  min-height: 104px;

  padding:
    14px;

  display: grid;
  place-items: center;

  gap: 8px;

  border:
    1px solid var(--rq-line);

  border-radius: 19px;

  background: #fff;

  color: #45534d;

  cursor: pointer;

  font-size: 0.76rem;
  font-weight: 700;

  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}


.rq-category:hover {
  transform:
    translateY(-3px);
}


.rq-category.is-active {
  border-color:
    rgba(20, 161, 125, 0.52);

  background:
    var(--rq-green-050);

  color:
    var(--rq-green-800);
}


.rq-category__icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background:
    var(--rq-green-100);

  color:
    var(--rq-green-800);

  font-size: 0.95rem;
  font-weight: 800;
}


.rq-category-status {
  min-height: 25px;

  margin:
    11px
    0 0;

  color:
    var(--rq-green-800);

  font-size: 0.75rem;
  font-weight: 700;
}


/* =========================
   Philosophy
   ========================= */

.rq-philosophy {
  padding:
    62px
    0
    76px;

  border-top:
    1px solid
    rgba(218, 232, 224, 0.75);

  background:
    linear-gradient(
      180deg,
      rgba(244,250,247,0.72),
      #fff
    );
}


.rq-philosophy__heading {
  text-align: center;

  margin-bottom: 35px;
}


.rq-philosophy__steps {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 17px;
}


.rq-philosophy__steps::before {
  content: '';

  position: absolute;

  left: 10%;
  right: 10%;
  top: 31px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(20,161,125,0.35),
      transparent
    );
}


.rq-philosophy__steps article {
  position: relative;

  padding:
    18px
    17px;

  text-align: center;
}


.rq-philosophy__steps article > span {
  position: relative;
  z-index: 1;

  width: 38px;
  height: 38px;

  margin:
    0 auto
    13px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    var(--rq-green-100);

  color:
    var(--rq-green-800);

  font-size: 0.62rem;
  font-weight: 800;
}


.rq-philosophy__steps strong {
  display: block;

  font-size: 1rem;
}


.rq-philosophy__steps p {
  margin:
    6px 0 0;

  color: var(--rq-muted);

  font-size: 0.75rem;
}


/* =========================
   Footer
   ========================= */

.rq-footer {
  padding:
    31px 0;

  background:
    var(--rq-green-900);

  color: #fff;
}


.rq-footer__inner {
  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 30px;
}


.rq-brand--footer
.rq-brand__name {
  color: #fff;
}


.rq-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;
}


.rq-footer__links a {
  color:
    rgba(255,255,255,0.82);

  text-decoration: none;

  font-size: 0.72rem;
}


.rq-footer small {
  color:
    rgba(255,255,255,0.65);

  font-size: 0.66rem;
}


.rq-mobile-bottom {
  display: none;
}


/* =========================
   Responsive
   ========================= */

@media (max-width: 1050px) {

  .rq-nav {
    gap: 17px;
  }


  .rq-hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(400px, 0.95fr);

    gap: 40px;
  }


  .rq-service-track {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 820px) {

  .rq-header__inner {
    width:
      min(
        calc(100% - 30px),
        var(--rq-shell)
      );

    min-height: 64px;

    grid-template-columns:
      1fr auto;
  }


  .rq-nav {
    display: none;
  }


  .rq-language {
    display: none;
  }


  .rq-menu-button {
    display: block;
  }


  .rq-mobile-menu {
    position: absolute;

    left: 14px;
    right: 14px;
    top: calc(100% + 7px);

    z-index: 120;

    padding: 13px;

    border:
      1px solid var(--rq-line);

    border-radius: 18px;

    background:
      rgba(255,255,255,0.98);

    box-shadow:
      var(--rq-shadow);

    transform:
      translateY(-6px);

    opacity: 0;
    visibility: hidden;

    display: grid;

    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }


  .rq-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;

    transform:
      translateY(0);
  }


  .rq-mobile-menu a,
  .rq-mobile-language {
    min-height: 45px;

    padding:
      10px
      12px;

    display: flex;
    align-items: center;

    border: 0;
    border-radius: 11px;

    background: transparent;

    color: #34423b;

    text-decoration: none;
    text-align: left;

    font-size: 0.82rem;
    font-weight: 700;

    cursor: pointer;
  }


  .rq-mobile-menu a:hover,
  .rq-mobile-language:hover {
    background:
      var(--rq-green-050);
  }


  .rq-hero {
    padding:
      45px
      0
      31px;
  }


  .rq-hero__grid {
    grid-template-columns: 1fr;

    gap: 26px;
  }


  .rq-hero__copy {
    max-width: 660px;
  }


  .rq-hero h1 {
    font-size:
      clamp(
        2.4rem,
        10vw,
        4rem
      );
  }


  .rq-discovery {
    min-height: 340px;

    max-width: 620px;
  }


  .rq-service-track {
    display: flex;

    gap: 13px;

    overflow-x: auto;

    scroll-snap-type:
      x mandatory;

    scrollbar-width: none;

    padding:
      3px
      18vw
      16px
      0;
  }


  .rq-service-track::-webkit-scrollbar {
    display: none;
  }


  .rq-service-card {
    flex:
      0 0
      min(74vw, 310px);

    scroll-snap-align: start;
  }


  .rq-track-hint {
    margin-top: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #88928d;

    font-size: 0.66rem;
  }


  .rq-two-column {
    grid-template-columns: 1fr;
  }


  .rq-category-list {
    grid-template-columns:
      repeat(5, minmax(90px, 1fr));

    overflow-x: auto;

    padding-bottom: 10px;

    scrollbar-width: none;
  }


  .rq-category-list::-webkit-scrollbar {
    display: none;
  }


  .rq-philosophy__steps {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .rq-philosophy__steps::before {
    display: none;
  }


  .rq-footer__inner {
    grid-template-columns: 1fr;

    text-align: center;
  }


  .rq-footer__links {
    flex-wrap: wrap;
  }

}


@media (max-width: 540px) {

  body.rq-home {
    padding-bottom: 68px;
  }


  .rq-shell {
    width:
      min(
        calc(100% - 28px),
        var(--rq-shell)
      );
  }


  .rq-brand__name {
    font-size: 1.45rem;
  }


  .rq-hero {
    padding:
      33px
      0
      22px;
  }


  .rq-kicker {
    margin-bottom: 13px;

    font-size: 0.63rem;
  }


  .rq-hero h1 {
    font-size:
      clamp(
        2.2rem,
        11vw,
        3.1rem
      );

    line-height: 1.12;
  }


  .rq-hero__lead {
    margin:
      17px
      0
      18px;

    font-size: 0.83rem;

    line-height: 1.65;
  }


  .rq-search {
    grid-template-columns:
      auto minmax(0, 1fr);

    padding: 5px;
  }


  .rq-search__icon {
    width: 36px;
  }


  .rq-search input {
    height: 43px;

    font-size: 16px;
  }


  .rq-search button {
    display: none;
  }


  .rq-search-status {
    margin-top: 4px;

    min-height: 17px;

    font-size: 0.68rem;
  }


  .rq-quick {
    margin-top: 12px;
  }


  .rq-quick__label {
    display: none;
  }


  .rq-quick__items {
    justify-content: space-between;

    gap: 5px;
  }


  .rq-quick-item {
    min-width: 0;

    flex: 1;

    font-size: 0.62rem;
  }


  .rq-quick-item__icon {
    width: 48px;
    height: 48px;

    border-radius: 15px;
  }


  .rq-discovery {
    min-height: 215px;

    border-radius: 23px;
  }


  .rq-float-card {
    min-width: 86px;

    padding:
      8px
      10px;

    border-radius: 13px;

    font-size: 0.62rem;
  }


  .rq-float-card__icon {
    width: 28px;
    height: 28px;

    border-radius: 9px;

    font-size: 0.7rem;
  }


  .rq-float-card--language {
    left: 6%;
    top: 10%;
  }


  .rq-float-card--measure {
    right: 4%;
    top: 15%;
  }


  .rq-float-card--review {
    right: 8%;
    bottom: 9%;
  }


  .rq-character-slot {
    width: 88px;
    height: 88px;

    padding: 11px;

    font-size: 0.52rem;
  }


  .rq-character-slot__spark {
    top: 7px;
    right: 12px;

    font-size: 0.7rem;
  }


  .rq-section {
    padding:
      38px
      0;
  }


  .rq-section--services {
    padding-top: 34px;
  }


  .rq-section--compact {
    padding-top: 4px;
  }


  .rq-section-heading,
  .rq-panel-heading {
    margin-bottom: 17px;

    align-items: center;
  }


  .rq-section-heading h2,
  .rq-panel-heading h2,
  .rq-philosophy__heading h2 {
    font-size: 1.35rem;
  }


  .rq-section-heading__link,
  .rq-panel-heading a {
    font-size: 0.68rem;
  }


  .rq-service-track {
    margin-right: -14px;

    padding-right: 19vw;
  }


  .rq-service-card {
    flex-basis:
      min(72vw, 270px);
  }


  .rq-service-card__visual {
    height: 94px;
  }


  .rq-service-card__symbol {
    width: 56px;
    height: 56px;

    border-radius: 18px;

    font-size: 1rem;
  }


  .rq-service-card__body {
    padding:
      14px
      16px
      16px;
  }


  .rq-service-card h3 {
    margin:
      8px
      0
      4px;

    font-size: 1.06rem;
  }


  .rq-service-card p {
    font-size: 0.69rem;

    line-height: 1.55;
  }


  .rq-service-card__cta {
    margin-top: 11px;
  }


  .rq-mini-experience,
  .rq-update-panel {
    padding: 19px;

    border-radius: 19px;
  }


  .rq-panel-heading h2 {
    font-size: 1.06rem;
  }


  .rq-quiz {
    padding: 15px;
  }


  .rq-quiz__question {
    font-size: 0.8rem;
  }


  .rq-quiz__answers {
    gap: 6px;
  }


  .rq-quiz__answers button {
    flex: 1;

    min-width: 80px;
    min-height: 40px;

    padding:
      6px
      8px;

    font-size: 0.72rem;
  }


  .rq-update-row {
    grid-template-columns:
      auto minmax(0,1fr);

    gap: 7px;
  }


  .rq-update-row time {
    display: none;
  }


  .rq-update-row a,
  .rq-update-row > div {
    font-size: 0.7rem;
  }


  .rq-section--categories {
    padding-top: 34px;
  }


  .rq-category-list {
    grid-template-columns:
      repeat(5, 82px);

    margin-right: -14px;
  }


  .rq-category {
    min-height: 80px;

    padding: 9px;

    border-radius: 15px;

    font-size: 0.62rem;
  }


  .rq-category__icon {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    font-size: 0.74rem;
  }


  .rq-philosophy {
    padding:
      39px
      0
      45px;
  }


  .rq-philosophy__heading {
    margin-bottom: 17px;
  }


  .rq-philosophy__steps {
    grid-template-columns:
      repeat(4, minmax(120px, 1fr));

    gap: 5px;

    overflow-x: auto;

    margin-right: -14px;

    padding:
      0
      14px
      8px
      0;

    scrollbar-width: none;
  }


  .rq-philosophy__steps::-webkit-scrollbar {
    display: none;
  }


  .rq-philosophy__steps article {
    padding:
      10px
      7px;

    text-align: left;
  }


  .rq-philosophy__steps article > span {
    margin:
      0
      0
      7px;

    width: 31px;
    height: 31px;
  }


  .rq-philosophy__steps strong {
    font-size: 0.82rem;
  }


  .rq-philosophy__steps p {
    font-size: 0.64rem;
  }


  .rq-footer {
    padding:
      26px 0;
  }


  .rq-footer__links {
    gap:
      8px
      15px;
  }


  .rq-mobile-bottom {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 110;

    height: 66px;

    padding:
      5px
      max(8px, env(safe-area-inset-right))
      max(5px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    border-top:
      1px solid
      rgba(207, 226, 216, 0.95);

    background:
      rgba(255,255,255,0.96);

    backdrop-filter:
      blur(18px);

    box-shadow:
      0 -7px 22px
      rgba(25, 67, 51, 0.08);
  }


  .rq-mobile-bottom a {
    min-width: 0;

    display: grid;
    place-items: center;

    align-content: center;

    gap: 1px;

    color: #718079;

    text-decoration: none;

    font-size: 0.58rem;
    font-weight: 700;
  }


  .rq-mobile-bottom a > span:first-child {
    font-size: 1.13rem;

    line-height: 1.2;
  }


  .rq-mobile-bottom a.is-current {
    color:
      var(--rq-green-800);
  }

}


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    transition-duration:
      0.01ms !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;
  }

}


@media (hover: none) {

  .rq-quick-item:hover
  .rq-quick-item__icon,
  .rq-service-card:hover,
  .rq-category:hover {
    transform: none;
  }

}
/* ==========================================================
   RENQUA HOME HUB DRAFT 2 REFINEMENT 20260825
   ========================================================== */

#services,
#categories,
#updates {
  scroll-margin-top: 86px;
}


/* ---- Overall density ---- */

.rq-hero {
  padding:
    clamp(50px, 5vw, 78px)
    0
    clamp(40px, 4vw, 58px);
}


.rq-hero__grid {
  gap:
    clamp(36px, 5vw, 68px);
}


.rq-hero__lead {
  margin:
    21px
    0
    23px;

  max-width: 550px;
}


.rq-discovery {
  min-height: 400px;
}


.rq-section {
  padding:
    clamp(48px, 5vw, 68px)
    0;
}


.rq-section--services {
  padding-bottom: 34px;
}


.rq-section--compact {
  padding-top: 16px;
}


.rq-section-heading {
  margin-bottom: 21px;
}


.rq-service-card__visual {
  height: 112px;
}


.rq-service-card__symbol {
  width: 64px;
  height: 64px;

  border-radius: 20px;
}


.rq-service-card__body {
  padding:
    17px
    18px
    18px;
}


.rq-service-card h3 {
  margin:
    9px
    0
    5px;
}


.rq-category {
  min-height: 86px;
}


.rq-category__icon {
  width: 38px;
  height: 38px;
}


.rq-philosophy {
  padding:
    46px
    0
    53px;
}


.rq-philosophy__heading {
  margin-bottom: 22px;
}


.rq-philosophy__steps article {
  padding:
    12px
    14px;
}


.rq-philosophy__steps article > span {
  margin-bottom: 9px;
}


/* ---- More playful service visuals ---- */

.rq-service-card__visual {
  isolation: isolate;
}


.rq-service-card__visual::before {
  content: '';

  position: absolute;

  left: -25px;
  top: -34px;

  width: 105px;
  height: 105px;

  border:
    15px solid
    rgba(255,255,255,0.32);

  border-radius: 50%;

  z-index: 0;
}


.rq-service-card--french
.rq-service-card__visual {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255,255,255,0.72),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f4e5fb,
      #e3d5f4
    );
}


.rq-service-card--measure
.rq-service-card__visual {
  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.46)
      0 8%,
      transparent 8% 16%,
      rgba(255,255,255,0.25)
      16% 18%,
      transparent 18%
    ),
    linear-gradient(
      135deg,
      #e1f5e9,
      #cae8d8
    );
}


.rq-service-card--vocab
.rq-service-card__visual {
  background:
    radial-gradient(
      circle at 83% 24%,
      rgba(255,255,255,0.72)
      0 7px,
      transparent 8px
    ),
    radial-gradient(
      circle at 73% 42%,
      rgba(255,255,255,0.48)
      0 4px,
      transparent 5px
    ),
    linear-gradient(
      135deg,
      #fff2c8,
      #f7e2a0
    );
}


.rq-service-card--more
.rq-service-card__visual {
  background:
    radial-gradient(
      circle,
      rgba(20,161,125,0.10)
      0 2px,
      transparent 3px
    ),
    linear-gradient(
      135deg,
      #f1f6f3,
      #e5efea
    );

  background-size:
    20px 20px,
    auto;
}


.rq-service-card__symbol {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}


.rq-service-card:hover
.rq-service-card__symbol {
  transform:
    translateY(-3px)
    rotate(-2deg);

  box-shadow:
    0 16px 30px
    rgba(45, 73, 61, 0.15);
}


.rq-service-card--measure:hover
.rq-service-card__symbol {
  transform:
    translateY(-3px)
    rotate(2deg);
}


/* ---- Discovery / motion ---- */

.rq-character-slot {
  width: 126px;
  height: 126px;

  border:
    1px solid
    rgba(20,161,125,0.22);

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.96),
      rgba(223,244,234,0.80)
    );

  box-shadow:
    0 18px 45px
    rgba(34, 99, 74, 0.12);
}


.rq-character-slot__core {
  display: grid;
  place-items: center;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.90);

  color:
    var(--rq-green-700);

  font-size: 1.35rem;

  box-shadow:
    0 9px 24px
    rgba(39, 91, 70, 0.12);
}


@keyframes rq-gentle-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}


@keyframes rq-soft-pulse {
  0%,
  100% {
    scale: 1;
    opacity: 0.72;
  }

  50% {
    scale: 1.18;
    opacity: 1;
  }
}


.rq-float-card--language {
  animation:
    rq-gentle-float
    5.8s
    ease-in-out
    infinite;
}


.rq-float-card--measure {
  animation:
    rq-gentle-float
    6.6s
    ease-in-out
    -1.8s
    infinite;
}


.rq-float-card--review {
  animation:
    rq-gentle-float
    6.1s
    ease-in-out
    -3.1s
    infinite;
}


.rq-discovery__dot {
  animation:
    rq-soft-pulse
    3.8s
    ease-in-out
    infinite;
}


.rq-discovery__dot--2 {
  animation-delay: -1.2s;
}


.rq-discovery__dot--3 {
  animation-delay: -2.4s;
}


/* ---- Tablet ---- */

@media (max-width: 820px) {

  .rq-hero {
    padding:
      36px
      0
      25px;
  }


  .rq-hero__grid {
    gap: 19px;
  }


  .rq-discovery {
    min-height: 270px;
  }


  .rq-section {
    padding:
      39px
      0;
  }

}


/* ---- Mobile compact hub ---- */

@media (max-width: 540px) {

  body.rq-home {
    padding-bottom: 58px;
  }


  .rq-header__inner {
    min-height: 58px;
  }


  .rq-hero {
    padding:
      23px
      0
      13px;
  }


  .rq-hero__grid {
    gap: 13px;
  }


  .rq-kicker {
    margin-bottom: 8px;
  }


  .rq-hero h1 {
    font-size:
      clamp(
        2rem,
        10.5vw,
        2.75rem
      );

    line-height: 1.08;
  }


  .rq-hero__lead {
    margin:
      11px
      0
      12px;

    max-width: 330px;

    font-size: 0.76rem;

    line-height: 1.52;
  }


  .rq-search {
    border-radius: 15px;
  }


  .rq-search input {
    height: 40px;
  }


  .rq-search-status {
    min-height: 0;
    margin: 0;

    font-size: 0.65rem;
  }


  .rq-search-status:not(:empty) {
    margin-top: 4px;
  }


  .rq-quick {
    margin-top: 8px;
  }


  .rq-quick-item__icon {
    width: 44px;
    height: 44px;

    border-radius: 14px;
  }


  .rq-discovery {
    min-height: 150px;

    border-radius: 19px;
  }


  .rq-orbit--one {
    width: 68%;
    height: 55%;
  }


  .rq-orbit--two {
    width: 88%;
    height: 78%;
  }


  .rq-character-slot {
    width: 62px;
    height: 62px;

    padding: 7px;
  }


  .rq-character-slot__core {
    width: 32px;
    height: 32px;

    font-size: 0.78rem;
  }


  .rq-character-slot__spark {
    top: 4px;
    right: 7px;

    font-size: 0.55rem;
  }


  .rq-float-card {
    min-width: 70px;

    padding:
      5px
      7px;

    gap: 5px;

    border-radius: 11px;

    font-size: 0.54rem;
  }


  .rq-float-card__icon {
    width: 23px;
    height: 23px;

    border-radius: 7px;

    font-size: 0.55rem;
  }


  .rq-float-card--language {
    left: 5%;
    top: 11%;
  }


  .rq-float-card--measure {
    right: 4%;
    top: 12%;
  }


  .rq-float-card--review {
    right: 7%;
    bottom: 8%;
  }


  .rq-discovery__path {
    height: 34px;

    border-top-width: 4px;
  }


  .rq-discovery__dot {
    width: 6px;
    height: 6px;

    box-shadow:
      0 0 0 4px
      rgba(245,198,92,0.13);
  }


  .rq-section {
    padding:
      28px
      0;
  }


  .rq-section--services {
    padding-top: 26px;
    padding-bottom: 24px;
  }


  .rq-section--compact {
    padding-top: 0;
  }


  .rq-section-heading {
    margin-bottom: 13px;
  }


  .rq-service-card {
    flex-basis:
      min(69vw, 255px);
  }


  .rq-service-card__visual {
    height: 77px;
  }


  .rq-service-card__symbol {
    width: 47px;
    height: 47px;

    border-radius: 15px;

    font-size: 0.85rem;
  }


  .rq-service-card__body {
    padding:
      12px
      14px
      13px;
  }


  .rq-service-card__tag {
    padding:
      3px
      7px;

    font-size: 0.58rem;
  }


  .rq-service-card h3 {
    margin:
      6px
      0
      3px;

    font-size: 0.98rem;
  }


  .rq-service-card p {
    font-size: 0.65rem;
  }


  .rq-service-card__cta {
    margin-top: 8px;

    font-size: 0.67rem;
  }


  .rq-mini-experience,
  .rq-update-panel {
    padding: 15px;
  }


  .rq-two-column {
    gap: 12px;
  }


  .rq-panel-heading {
    margin-bottom: 12px;
  }


  .rq-quiz {
    padding: 12px;
  }


  .rq-quiz__question {
    margin-bottom: 9px;
  }


  .rq-quiz__result {
    min-height: 20px;
    margin-top: 5px;
  }


  .rq-section--categories {
    padding-top: 27px;
  }


  .rq-category-list {
    grid-template-columns:
      repeat(5, 72px);
  }


  .rq-category {
    min-height: 66px;

    padding: 6px;

    border-radius: 13px;
  }


  .rq-category__icon {
    width: 29px;
    height: 29px;

    border-radius: 9px;

    font-size: 0.65rem;
  }


  .rq-category-status {
    min-height: 0;
    margin-top: 5px;
  }


  .rq-category-status:empty {
    display: none;
  }


  .rq-philosophy {
    padding:
      27px
      0
      31px;
  }


  .rq-philosophy__heading {
    margin-bottom: 10px;
  }


  .rq-philosophy__steps {
    grid-template-columns:
      repeat(4, 102px);

    gap: 2px;
  }


  .rq-philosophy__steps article {
    padding:
      7px
      5px;
  }


  .rq-philosophy__steps article > span {
    width: 27px;
    height: 27px;

    margin-bottom: 5px;
  }


  .rq-philosophy__steps strong {
    font-size: 0.72rem;
  }


  .rq-philosophy__steps p {
    display: none;
  }


  .rq-footer {
    padding:
      20px
      0;
  }


  .rq-mobile-bottom {
    height: 56px;

    padding-top: 3px;
  }


  .rq-mobile-bottom a {
    font-size: 0.54rem;
  }


  .rq-mobile-bottom a > span:first-child {
    font-size: 1rem;
  }

}


/* Motion accessibility */

@media (prefers-reduced-motion: reduce) {

  .rq-float-card,
  .rq-discovery__dot {
    animation: none !important;
  }

}
/* ==========================================================
   RENQUA HOME HUB DRAFT 3 FINAL MOBILE REFINEMENT 20260825
   ========================================================== */

@media (max-width: 540px) {

  /* ---------------------------------
     Search
     --------------------------------- */

  .rq-search input {
    padding-right: 5px;
  }


  /* ---------------------------------
     Categories: all 5 visible
     --------------------------------- */

  .rq-category-list {
    grid-template-columns:
      repeat(5, minmax(0, 1fr));

    gap: 4px;

    margin-right: 0;
    padding-bottom: 0;

    overflow: visible;
  }


  .rq-category {
    min-width: 0;
    min-height: 62px;

    padding:
      6px
      2px;

    gap: 4px;

    border-radius: 11px;

    font-size: 0.56rem;

    line-height: 1.25;
  }


  .rq-category__icon {
    width: 27px;
    height: 27px;

    border-radius: 8px;

    font-size: 0.61rem;
  }


  /* ---------------------------------
     renqua cycle: all 4 visible
     --------------------------------- */

  .rq-philosophy__steps {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 3px;

    margin-right: 0;

    padding:
      0;

    overflow: visible;
  }


  .rq-philosophy__steps article {
    min-width: 0;

    padding:
      6px
      2px;

    text-align: center;
  }


  .rq-philosophy__steps article > span {
    width: 25px;
    height: 25px;

    margin:
      0 auto
      5px;

    font-size: 0.54rem;
  }


  .rq-philosophy__steps strong {
    font-size: 0.65rem;

    line-height: 1.35;

    letter-spacing: -0.03em;
  }


  .rq-philosophy__steps p {
    display: none;
  }


  /* ---------------------------------
     Footer compression
     --------------------------------- */

  .rq-footer {
    padding:
      15px
      0
      17px;
  }


  .rq-footer__inner {
    gap: 11px;
  }


  .rq-brand--footer .rq-brand__name {
    font-size: 1.22rem;
  }


  .rq-footer__links {
    gap:
      5px
      11px;
  }


  .rq-footer__links a {
    font-size: 0.62rem;
  }


  .rq-footer small {
    font-size: 0.58rem;
  }


  /* ---------------------------------
     Keep bottom navigation compact
     --------------------------------- */

  .rq-mobile-bottom {
    height: 56px;
  }

}
/* ==========================================================
   RENQUA HERO QUIZ POLISH 20260825
   ========================================================== */


/* ---------------------------------
   Header brand icon
   --------------------------------- */

.rq-brand {
  gap: 7px;
}


.rq-brand__icon {
  width: 30px;
  height: 30px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 9px;
}


.rq-brand__icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.rq-brand__spark {
  margin-left: -4px;
}


/* ---------------------------------
   Hero title
   --------------------------------- */

.rq-hero-title-line {
  white-space: nowrap;

  color:
    var(--rq-text);
}


.rq-hero h1
.rq-hero-title-line--accent {
  color:
    var(--rq-green-800);
}


/* ---------------------------------
   Interactive hero experience
   --------------------------------- */

.rq-hero-experience {
  position: relative;

  min-width: 0;
  min-height: 390px;

  display: flex;
  align-items: center;

  padding:
    clamp(
      26px,
      3vw,
      38px
    );

  overflow: hidden;

  border:
    1px solid
    rgba(205, 228, 216, 0.92);

  border-radius:
    var(--rq-radius-xl);

  background:
    radial-gradient(
      circle at 76% 20%,
      rgba(255, 244, 207, 0.72),
      transparent 30%
    ),
    radial-gradient(
      circle at 16% 82%,
      rgba(222, 244, 234, 0.96),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(250, 255, 252, 0.98),
      rgba(238, 249, 243, 0.92)
    );

  box-shadow:
    inset 0 0 70px
    rgba(255, 255, 255, 0.72),
    var(--rq-shadow-soft);
}


.rq-hero-experience__decor {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.rq-hero-experience__orbit {
  position: absolute;

  left: 50%;
  top: 50%;

  border:
    1px dashed
    rgba(20, 161, 125, 0.17);

  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    rotate(-10deg);
}


.rq-hero-experience__orbit--one {
  width: 83%;
  height: 58%;
}


.rq-hero-experience__orbit--two {
  width: 105%;
  height: 83%;

  transform:
    translate(-50%, -50%)
    rotate(18deg);
}


.rq-hero-experience__dot {
  position: absolute;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    rgba(20, 161, 125, 0.24);
}


.rq-hero-experience__dot--one {
  left: 9%;
  top: 19%;
}


.rq-hero-experience__dot--two {
  right: 12%;
  top: 13%;

  background:
    rgba(245, 198, 92, 0.42);
}


.rq-hero-experience__dot--three {
  right: 8%;
  bottom: 13%;

  background:
    rgba(155, 120, 208, 0.24);
}


.rq-hero-experience__spark {
  position: absolute;

  right: 18%;
  top: 24%;

  color:
    var(--rq-yellow);

  font-size: 1rem;
}


.rq-hero-experience__content {
  position: relative;
  z-index: 2;

  width: 100%;
}


.rq-hero-experience
.rq-panel-heading {
  margin-bottom: 18px;
}


.rq-hero-experience
.rq-panel-heading h2 {
  font-size:
    clamp(
      1.28rem,
      2vw,
      1.72rem
    );
}


.rq-hero-quiz {
  background:
    rgba(255, 255, 255, 0.92);

  backdrop-filter:
    blur(12px);

  box-shadow:
    0 16px 36px
    rgba(38, 81, 66, 0.08);
}


/* ---------------------------------
   Updates after quiz relocation
   --------------------------------- */

.rq-two-column--updates-only {
  grid-template-columns: 1fr;
}


.rq-two-column--updates-only
.rq-update-panel {
  width: 100%;
}


/* ---------------------------------
   Desktop hero balance
   --------------------------------- */

@media (min-width: 821px) {

  .rq-hero__grid {
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(470px, 0.92fr);

    gap:
      clamp(
        36px,
        4vw,
        54px
      );
  }


  .rq-hero h1 {
    max-width: none;

    font-size:
      clamp(
        3.35rem,
        4.7vw,
        4.65rem
      );
  }


  .rq-hero__lead {
    max-width: 610px;
  }

}


/* ---------------------------------
   Tablet
   --------------------------------- */

@media (max-width: 820px) {

  .rq-hero-experience {
    max-width: 620px;
    min-height: 0;

    padding:
      24px;

    border-radius:
      24px;
  }

}


/* ---------------------------------
   Mobile
   --------------------------------- */

@media (max-width: 540px) {

  .rq-brand {
    gap: 5px;
  }


  .rq-brand__icon {
    width: 26px;
    height: 26px;

    border-radius: 8px;
  }


  .rq-brand__spark {
    margin-left: -3px;
  }


  .rq-hero-title-line {
    white-space: nowrap;
  }


  .rq-hero-experience {
    min-height: 0;

    padding:
      15px;

    border-radius:
      19px;
  }


  .rq-hero-experience
  .rq-panel-heading {
    margin-bottom: 10px;
  }


  .rq-hero-experience
  .rq-panel-heading h2 {
    font-size: 1.05rem;
  }


  .rq-hero-experience
  .rq-panel-badge {
    font-size: 0.55rem;
  }


  .rq-hero-experience
  .rq-quiz {
    padding: 13px;
  }


  .rq-hero-experience__spark {
    right: 12%;
    top: 14%;
  }


  .rq-section--compact {
    padding-top: 8px;
  }

}


/* Existing global reduced-motion rule remains active. */

/* ==========================================================
   RENQUA HOME PRIMARY AD 20260825
   Placement: after recommended services / before updates
   ========================================================== */

.rq-home-ad {
  padding:
    10px
    0
    28px;

  background:
    transparent;
}


.rq-home-ad__inner {
  width: 100%;

  display: grid;
  justify-items: center;

  gap: 7px;
}


.rq-home-ad__label {
  color:
    #909a95;

  font-size: 0.64rem;
  font-weight: 600;

  letter-spacing: 0.04em;
}


.rq-home-ad__slot {
  width: 100%;

  min-height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  text-align: center;
}


.rq-home-ad__slot iframe,
.rq-home-ad__slot img,
.rq-home-ad__slot ins {
  display: block;

  max-width: 100% !important;

  margin:
    0 auto !important;
}


/*
  Intentionally no card background or border.
  The ad remains visually separate from renqua content.
*/


@media (max-width: 820px) {

  .rq-home-ad {
    padding:
      6px
      0
      24px;
  }

}


@media (max-width: 540px) {

  .rq-home-ad {
    padding:
      3px
      0
      21px;
  }


  .rq-home-ad__inner {
    gap: 5px;
  }


  .rq-home-ad__slot {
    min-height: 100px;
  }


  .rq-home-ad__label {
    font-size: 0.58rem;
  }

}

/* =========================================================
   RENQUA CONTENT PAGES 20260826
   About / Contact / Contact result
   ========================================================= */

body.rq-content-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #24332a;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(190, 224, 194, 0.28),
      transparent 30rem
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(225, 238, 208, 0.34),
      transparent 32rem
    ),
    #f8faf7;
}

body.rq-content-page::before,
body.rq-content-page::after {
  content: none !important;
  display: none !important;
}

.rq-content-page .rq-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rq-content-page .rq-page-hero {
  min-height: 0;
  margin: 0;
  padding: 88px 24px 42px;
  color: #24332a;
  text-align: left;
  background: transparent;
}

.rq-content-page .rq-page-hero::before,
.rq-content-page .rq-page-hero::after {
  content: none;
}

.rq-content-page .rq-page-hero .hero-inner,
.rq-content-page .rq-page-hero .site-hero__inner {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.rq-content-page .rq-page-hero h1,
.rq-content-page .rq-page-hero .site-hero__title {
  margin: 8px 0 18px;
  color: #24332a;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-shadow: none;
}

.rq-content-page .rq-page-hero .tagline,
.rq-content-page .rq-page-hero .site-hero__lead {
  max-width: 780px;
  margin: 0 0 12px;
  color: #607066;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.9;
  text-shadow: none;
}

.rq-content-page .rq-page-hero .site-hero__eyebrow {
  margin: 0 0 8px;
  color: #5e7b64;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rq-content-page .container,
.rq-content-page .page-main {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.rq-about-page .profile-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 12px;
  padding-bottom: 88px;
}

.rq-about-page .profile-card,
.rq-about-page .profile-note,
.rq-about-page .profile-legal,
.rq-about-page .glass-card,
.rq-about-page .glass-panel {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  color: #2a3830;
  border: 1px solid rgba(61, 98, 70, 0.10);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 48px rgba(43, 68, 50, 0.07);
  backdrop-filter: blur(10px);
}

.rq-about-page .profile-card--featured,
.rq-about-page .profile-history,
.rq-about-page .profile-legal {
  grid-column: 1 / -1;
}

.rq-about-page .role,
.rq-about-page .section-label {
  margin-bottom: 16px;
  color: #6d8871;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rq-about-page h2,
.rq-about-page h3 {
  color: #26372c;
}

.rq-about-page h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.35;
}

.rq-about-page p,
.rq-about-page li {
  color: #617068;
  line-height: 1.85;
}

.rq-about-page .profile-service-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.rq-about-page .profile-service-card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  color: #34493a;
  text-decoration: none;
  border: 1px solid rgba(72, 111, 80, 0.10);
  border-radius: 20px;
  background: #f8fbf7;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.rq-about-page .profile-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(60, 122, 75, 0.22);
  box-shadow:
    0 12px 28px rgba(57, 92, 65, 0.08);
}

.rq-about-page .profile-service-card strong {
  color: #315b3a;
  font-size: 1.06rem;
}

.rq-about-page .profile-update-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.rq-about-page .profile-update-item {
  padding: 20px;
  border: 1px solid rgba(63, 99, 71, 0.09);
  border-radius: 18px;
  background: #fbfcfa;
}

.rq-about-page .profile-update-item a,
.rq-about-page .subtle-links a,
.rq-about-page .profile-legal a {
  color: #397146;
}

.rq-contact-page .container {
  padding-top: 6px;
  padding-bottom: 92px;
}

.rq-contact-page .card {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  color: #2b3930;
  border: 1px solid rgba(61, 98, 70, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 56px rgba(43, 68, 50, 0.08);
}

.rq-contact-page .contact-form {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.rq-contact-page .contact-form label {
  display: block;
  color: #314239;
  font-size: 0.9rem;
  font-weight: 700;
}

.rq-contact-page .contact-form input[type="text"],
.rq-contact-page .contact-form input[type="email"],
.rq-contact-page .contact-form select,
.rq-contact-page .contact-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  color: #28362e;
  border: 1px solid rgba(61, 98, 70, 0.16);
  border-radius: 14px;
  outline: none;
  background: #fbfcfb;
  box-shadow: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.rq-contact-page .contact-form textarea {
  min-height: 190px;
}

.rq-contact-page .contact-form input:focus,
.rq-contact-page .contact-form select:focus,
.rq-contact-page .contact-form textarea:focus {
  border-color: rgba(61, 122, 75, 0.48);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(72, 139, 86, 0.09);
}

.rq-contact-page .submit-button,
.rq-result-page .back-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  background: #3f7b4d;
  box-shadow:
    0 10px 22px rgba(52, 108, 65, 0.16);
  cursor: pointer;
}

.rq-contact-page .submit-button:hover,
.rq-result-page .back-button:hover {
  background: #34683f;
}

.rq-contact-page .recaptcha-notice {
  color: #788279;
}

.rq-contact-page .recaptcha-notice a {
  color: #4a7152;
}

.rq-result-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.rq-result-page .result-box {
  width: min(620px, calc(100% - 32px));
  max-width: 620px;
  margin: 100px auto;
  padding: clamp(30px, 5vw, 48px);
  color: #2b3930;
  text-align: center;
  border: 1px solid rgba(61, 98, 70, 0.10);
  border-left: 1px solid rgba(61, 98, 70, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 22px 60px rgba(43, 68, 50, 0.09);
  font-family: inherit;
}

.rq-result-page .result-box.success {
  border-left: 5px solid #4f985f;
}

.rq-result-page .result-box.error {
  border-left: 5px solid #c97373;
}

.rq-result-page .result-box h1 {
  margin-top: 0;
  color: #293a30;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.rq-page-footer {
  margin-top: auto;
}

@media (max-width: 820px) {
  .rq-content-page .rq-page-hero {
    padding-top: 62px;
  }

  .rq-about-page .profile-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rq-about-page .profile-card--featured,
  .rq-about-page .profile-history,
  .rq-about-page .profile-legal {
    grid-column: auto;
  }

  .rq-about-page .profile-service-grid {
    grid-template-columns: 1fr;
  }

  .rq-contact-page .contact-form {
    grid-template-columns: 1fr;
  }

  .rq-contact-page .contact-form .contact-form__full,
  .rq-contact-page .contact-form .contact-form__actions,
  .rq-contact-page .contact-form .recaptcha-notice {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .rq-content-page .rq-page-hero {
    padding:
      44px
      16px
      28px;
  }

  .rq-content-page .rq-page-hero .hero-inner,
  .rq-content-page .rq-page-hero .site-hero__inner,
  .rq-content-page .container,
  .rq-content-page .page-main {
    width: calc(100% - 28px);
  }

  .rq-content-page .rq-page-hero h1,
  .rq-content-page .rq-page-hero .site-hero__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .rq-about-page .profile-card,
  .rq-about-page .profile-note,
  .rq-about-page .profile-legal,
  .rq-contact-page .card {
    padding: 20px;
    border-radius: 22px;
  }

  .rq-about-page .profile-grid,
  .rq-contact-page .container {
    padding-bottom: 64px;
  }

  .rq-result-page .result-box {
    margin: 64px auto;
    padding: 26px 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   RENQUA I18N VISUAL FIX 20260826
   ========================================================= */

body.rq-content-page {
  padding: 0 !important;
}


/* ---------- About legacy-style reset ---------- */

body.rq-about-page .rq-page-hero {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 88px 24px 44px !important;

  color: #24332a !important;
  text-align: left !important;

  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(198, 229, 202, 0.34),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 16%,
      rgba(255, 239, 190, 0.28),
      transparent 28rem
    ),
    #f8fbf7 !important;

  border-bottom:
    1px solid rgba(61, 98, 70, 0.09);
}

body.rq-about-page .rq-page-hero::before,
body.rq-about-page .rq-page-hero::after {
  content: none !important;
  display: none !important;
}

body.rq-about-page
.rq-page-hero
.site-hero__inner {
  width:
    min(
      1120px,
      calc(100% - 32px)
    ) !important;

  max-width: 1120px !important;

  margin:
    0 auto !important;

  padding:
    0 !important;

  box-sizing:
    border-box !important;
}

body.rq-about-page
.rq-page-hero
.site-hero__eyebrow {
  margin:
    0 0 10px !important;

  color:
    #5d8065 !important;

  font-size:
    0.78rem !important;

  font-weight:
    800 !important;

  letter-spacing:
    0.13em !important;

  text-align:
    left !important;

  text-shadow:
    none !important;
}

body.rq-about-page
.rq-page-hero
.site-hero__title {
  margin:
    0 0 18px !important;

  color:
    #24332a !important;

  font-size:
    clamp(
      2.5rem,
      5vw,
      4.7rem
    ) !important;

  font-weight:
    800 !important;

  line-height:
    1.08 !important;

  letter-spacing:
    -0.045em !important;

  text-align:
    left !important;

  text-shadow:
    none !important;
}

body.rq-about-page
.rq-page-hero
.site-hero__lead {
  max-width:
    780px !important;

  margin:
    0 !important;

  color:
    #607066 !important;

  font-size:
    clamp(
      1rem,
      1.8vw,
      1.14rem
    ) !important;

  font-weight:
    400 !important;

  line-height:
    1.9 !important;

  text-align:
    left !important;

  text-shadow:
    none !important;
}


/* ---------- Width / overflow reset ---------- */

body.rq-about-page .page-main {
  width:
    min(
      1120px,
      calc(100% - 32px)
    ) !important;

  max-width:
    1120px !important;

  margin:
    0 auto !important;

  padding:
    28px 0 88px !important;

  box-sizing:
    border-box !important;
}

body.rq-about-page .profile-card,
body.rq-about-page .profile-note,
body.rq-about-page .profile-legal,
body.rq-about-page .glass-card,
body.rq-about-page .glass-panel {
  width:
    100% !important;

  max-width:
    100% !important;

  min-width:
    0 !important;

  box-sizing:
    border-box !important;
}

body.rq-contact-page .container {
  width:
    min(
      1120px,
      calc(100% - 32px)
    ) !important;

  max-width:
    1120px !important;

  margin:
    0 auto !important;

  padding:
    8px 0 92px !important;

  box-sizing:
    border-box !important;
}

body.rq-contact-page .card {
  width:
    100% !important;

  max-width:
    100% !important;

  min-width:
    0 !important;

  box-sizing:
    border-box !important;
}

body.rq-contact-page .contact-form,
body.rq-contact-page .form-group {
  min-width:
    0 !important;

  max-width:
    100% !important;

  box-sizing:
    border-box !important;
}


/* ---------- English hero typography ---------- */

html[lang="en"]
.rq-home
.rq-hero h1 {
  font-size:
    clamp(
      2.6rem,
      4.2vw,
      4.35rem
    );
}

html[lang="en"]
.rq-home
.rq-hero-title-line {
  white-space:
    normal;
}


/* ---------- Mobile language controls ---------- */

@media (max-width: 760px) {

  .rq-home .rq-header__inner,
  .rq-content-page .rq-header__inner {
    width:
      calc(100% - 28px);

    min-height:
      60px;

    gap:
      8px;

    grid-template-columns:
      auto 1fr auto;
  }

  .rq-home .rq-header__actions,
  .rq-content-page .rq-header__actions {
    justify-self:
      end;

    gap:
      3px;
  }

  .rq-home .rq-language,
  .rq-content-page .rq-language {
    display:
      inline-flex !important;

    width:
      auto !important;

    min-width:
      42px;

    height:
      36px;

    align-items:
      center;

    justify-content:
      center;

    padding:
      0 9px;
  }

  .rq-home .rq-menu-button,
  .rq-content-page .rq-menu-button {
    display:
      block !important;

    width:
      40px !important;

    height:
      40px !important;

    padding:
      8px !important;
  }

  body.rq-about-page .rq-page-hero {
    padding:
      48px
      0
      32px !important;
  }

  body.rq-about-page
  .rq-page-hero
  .site-hero__inner {
    width:
      calc(100% - 28px) !important;
  }

  body.rq-about-page
  .rq-page-hero
  .site-hero__title {
    font-size:
      clamp(
        2rem,
        10vw,
        3rem
      ) !important;
  }

  body.rq-about-page .page-main {
    width:
      calc(100% - 28px) !important;

    padding:
      18px 0 64px !important;

    grid-template-columns:
      minmax(0, 1fr) !important;
  }

  body.rq-contact-page .container {
    width:
      calc(100% - 28px) !important;

    padding:
      6px 0 64px !important;
  }

  html[lang="en"]
  .rq-home
  .rq-hero h1 {
    font-size:
      clamp(
        2.15rem,
        10vw,
        2.75rem
      );
  }

}
/* renqua-home-ad-sp-native-size:start */
@media (max-width: 767px) {
  .rq-home-ad__embed--sp {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  /*
   * Ninja AdMax may enlarge the 320x50 creative.
   * Keep the smartphone homepage placement at its native size
   * so it remains centered and does not clip on the right.
   */
  .rq-home-ad__embed--sp > div {
    display: block !important;
    width: 320px !important;
    max-width: 320px !important;
    height: 50px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  .rq-home-ad__embed--sp > div > div {
    display: block !important;
    width: 320px !important;
    height: 50px !important;
    transform: none !important;
    transform-origin: top left !important;
  }

  .rq-home-ad__embed--sp iframe {
    display: block !important;
    width: 320px !important;
    max-width: 320px !important;
    height: 50px !important;
    margin: 0 !important;
  }
}
/* renqua-home-ad-sp-native-size:end */

/* renqua-privacy-mobile-title:start */
@media (max-width: 480px) {
  body.rq-privacy-page .rq-page-hero .site-hero__title {
    font-size: clamp(1.8rem, 9vw, 2.1rem);
    white-space: nowrap;
  }
}
/* renqua-privacy-mobile-title:end */
