:root {
  --bg: #030305;
  --panel: #0a0a0d;
  --pink: #ff1493;
  --pink2: #ff2aa6;
  --text: #f7f3f8;
  --muted: rgba(255, 255, 255, .74);
  --soft: rgba(255, 255, 255, .09);
  --line: rgba(255, 20, 147, .34);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px;
  z-index: 10000;
}

.skip-link:focus {
  left: 10px;
}

.shell {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 30px 0 0;
}

.header-shell {
  width: min(1480px, calc(100% - 96px));
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 240px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(255, 20, 147, .24));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  font-size: .92rem;
  letter-spacing: .08em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .8);
}

.main-nav span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(255, 20, 147, .78);
  border-radius: 12px;
  text-decoration: none;
  color: var(--pink2);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: .05em;
  box-shadow: 0 0 24px rgba(255, 20, 147, .22), inset 0 0 18px rgba(255, 20, 147, .04);
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 178px;
  padding-bottom: 56px;
  overflow: hidden;
  background: #040405;
}

.hero-bg,
.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 20, 147, .18), transparent 30%),
    linear-gradient(90deg, #030305 0%, #050407 38%, rgba(255, 20, 147, .09) 100%);
}

.hero-photo {
  background-image: url("assets/about/tk-about-photo-van.jpg");
  background-size: cover;
  background-position: 58% center;
  opacity: .98;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 5, .86) 0%, rgba(3, 3, 5, .72) 25%, rgba(3, 3, 5, .28) 47%, rgba(3, 3, 5, .04) 74%),
    linear-gradient(180deg, rgba(3, 3, 5, .08) 0%, rgba(3, 3, 5, .05) 48%, rgba(3, 3, 5, .58) 100%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 62%, rgba(255, 255, 255, .18), transparent 22%),
    radial-gradient(circle at 58% 60%, rgba(255, 20, 147, .12), transparent 34%);
  mix-blend-mode: screen;
  opacity: .36;
}

.hero-overlay {
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, #030305 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 96px));
  margin: auto;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--pink2);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .075em;
  font-size: 1.02rem;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  text-transform: uppercase;
  line-height: .92;
  font-weight: 1000;
  letter-spacing: 0;
  font-size: clamp(3.8rem, 5.8vw, 7.2rem);
  text-shadow: 0 3px 0 rgba(255, 255, 255, .07), 0 16px 36px rgba(0, 0, 0, .82);
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.pink-rule {
  width: 166px;
  height: 4px;
  margin: 28px 0 26px;
  background: linear-gradient(90deg, var(--pink), #fff0, var(--pink));
  box-shadow: 0 0 22px var(--pink);
}

.lede {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.03rem;
  line-height: 1.55;
  text-shadow: 0 10px 26px rgba(0, 0, 0, .86);
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 34px;
}

.btn {
  min-width: 206px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 950;
  font-size: 1.05rem;
}

.btn.primary {
  background: linear-gradient(135deg, #ff1493, #ff0f83);
  box-shadow: 0 0 28px rgba(255, 20, 147, .45);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(0, 0, 0, .42);
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1360px, calc(100% - 96px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0, 0, 0, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 0 34px rgba(0, 0, 0, .6);
}

.trust-strip article {
  min-height: 130px;
  padding: 30px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 1.55rem;
  box-shadow: 0 0 18px rgba(255, 20, 147, .22);
}

.trust-strip strong {
  display: block;
  font-size: 1.08rem;
  text-transform: uppercase;
  color: #fff;
}

.trust-strip p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 46px 0 0;
}

.quick-cards a,
.service-grid article,
.area-card,
.review-grid blockquote,
.quote-form {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .035);
  border-radius: 14px;
  padding: 24px;
}

.quick-cards small {
  display: block;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.quick-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.narrow {
  max-width: 850px;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: end;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  min-height: 250px;
}

.service-grid b {
  color: var(--pink);
  font-size: .88rem;
}

.service-grid h3 {
  font-size: 1.45rem;
}

.work-section {
  background: linear-gradient(180deg, rgba(255, 20, 147, .04), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  aspect-ratio: 1.14 / 1;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #111;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .88));
}

.work-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.work-card small {
  color: var(--pink2);
  font-weight: 950;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.1rem, 1.35vw, 1.36rem);
  line-height: 1.08;
}

.work-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  line-height: 1.35;
}

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

.about-photo {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 36px rgba(255, 20, 147, .16);
}

.about-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid cite {
  display: block;
  margin-top: 16px;
  color: var(--pink2);
  font-style: normal;
  font-weight: 900;
}

.credentials {
  background: rgba(255, 255, 255, .026);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
}

.contact-section a {
  color: var(--pink2);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .42);
  border-radius: 12px;
  color: #fff;
  padding: 15px 16px;
  font: inherit;
}

.quote-form button {
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 950;
  font-size: 1rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  color: var(--muted);
}

.footer a {
  color: #fff;
}

.floating-menu-button {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 20, 147, .45);
  background: rgba(8, 8, 12, .58);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 20, 147, .2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s;
}

.floating-menu-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-menu-panel {
  position: fixed;
  top: 76px;
  right: 24px;
  z-index: 9998;
  width: 240px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 20, 147, .32);
  background: rgba(8, 8, 12, .86);
  box-shadow: 0 0 28px rgba(255, 20, 147, .17);
  backdrop-filter: blur(18px);
  display: none;
}

.floating-menu-panel.is-open {
  display: grid;
  gap: 12px;
}

.floating-menu-panel a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  font-weight: 950;
  padding: 9px 10px;
  border-radius: 10px;
}

.floating-menu-panel a:hover {
  background: rgba(255, 20, 147, .08);
  color: var(--pink2);
}

.floating-menu-panel .quote-shortcut {
  margin-top: 8px;
  text-align: center;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 20, 147, .28);
}

.quote-helper {
  position: fixed;
  right: 26px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}

.quote-helper.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.quote-helper__button {
  position: relative;
  width: 82px;
  min-height: 114px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.quote-helper__bubble-label {
  position: absolute;
  right: 7px;
  bottom: 96px;
  background: rgba(9, 9, 13, .88);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 9px 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 950;
  font-size: .68rem;
  letter-spacing: .08em;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(255, 20, 147, .16);
}

.quote-helper__bubble-label::after {
  content: "";
  position: absolute;
  right: 23px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

.quote-bulb {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 68px;
  height: 92px;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 205, 232, .34));
  transform-origin: 50% 80%;
  transition: filter .22s ease, transform .22s ease;
}

.quote-bulb__glass {
  position: absolute;
  left: 9px;
  top: 0;
  width: 50px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50% 50% 43% 43% / 56% 56% 38% 38%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, .92) 0 8px, transparent 9px),
    linear-gradient(180deg, #fff0f7 0%, #ffe3f1 42%, #ffd6ea 100%);
  box-shadow: inset 0 12px 22px rgba(255, 255, 255, .42), 0 0 18px rgba(255, 170, 218, .3);
}

.quote-bulb__glass::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -7px;
  height: 12px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #ffd6ea, #f0b8d4);
  border-inline: 1px solid rgba(255, 255, 255, .45);
}

.quote-bulb__eye {
  position: absolute;
  top: 25px;
  width: 5px;
  height: 6px;
  background: #271d2b;
  border-radius: 50%;
}

.quote-bulb__eye--left {
  left: 17px;
}

.quote-bulb__eye--right {
  right: 17px;
}

.quote-bulb__smile {
  position: absolute;
  left: 20px;
  top: 36px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid #8c3a62;
  border-radius: 0 0 18px 18px;
}

.quote-bulb__neck {
  position: absolute;
  left: 25px;
  top: 55px;
  width: 18px;
  height: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #f7d9e9, #cdc5d1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.quote-bulb__base {
  position: absolute;
  left: 20px;
  top: 63px;
  width: 28px;
  height: 29px;
  border-radius: 6px 6px 10px 10px;
  background:
    repeating-linear-gradient(180deg, #fbfbff 0 4px, #c9cad3 4px 8px),
    linear-gradient(90deg, #ececf4, #aeb0ba);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .1), 0 2px 0 rgba(255, 255, 255, .35);
}

.quote-bulb__base::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -4px;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: #9fa1ab;
}

.quote-bulb__arm {
  position: absolute;
  top: 44px;
  width: 18px;
  height: 20px;
  border: 2px solid #ffd6ea;
  border-bottom: 0;
  z-index: -1;
}

.quote-bulb__arm--left {
  left: 2px;
  border-right: 0;
  border-radius: 14px 0 0 0;
  transform: rotate(-28deg);
}

.quote-bulb__arm--right {
  right: 2px;
  border-left: 0;
  border-radius: 0 14px 0 0;
  transform: rotate(28deg);
}

.quote-helper__button:hover .quote-bulb {
  filter: drop-shadow(0 0 22px rgba(255, 20, 147, .54));
  transform: translateY(-2px) scale(1.02);
}

.quote-helper__button:hover .quote-bulb__glass {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, .95) 0 8px, transparent 9px),
    linear-gradient(180deg, #fff0f7 0%, #ffd6ea 38%, #ff9bd0 100%);
  box-shadow: inset 0 10px 20px rgba(255, 255, 255, .4), 0 0 26px rgba(255, 20, 147, .48);
}

.quote-helper.is-open .quote-bulb {
  filter: drop-shadow(0 0 28px rgba(255, 20, 147, .72));
  transform: scale(1.04);
}

.quote-helper.is-open .quote-bulb__glass {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, .95) 0 8px, transparent 9px),
    linear-gradient(180deg, #ffe3f1 0%, #ff82c6 42%, #ff1493 100%);
  box-shadow: inset 0 8px 20px rgba(255, 255, 255, .36), 0 0 34px rgba(255, 20, 147, .86);
  animation: bulb-pulse 1.45s ease-in-out infinite;
}

@keyframes bulb-pulse {
  0%, 100% {
    box-shadow: inset 0 8px 20px rgba(255, 255, 255, .36), 0 0 26px rgba(255, 20, 147, .68);
  }
  50% {
    box-shadow: inset 0 8px 20px rgba(255, 255, 255, .42), 0 0 38px rgba(255, 20, 147, .94);
  }
}

.quote-helper__panel {
  position: absolute;
  right: 0;
  bottom: 118px;
  width: 268px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 20, 147, .38);
  background: rgba(8, 8, 12, .92);
  box-shadow: 0 0 28px rgba(255, 20, 147, .22);
  backdrop-filter: blur(18px);
  display: none;
}

.quote-helper.is-open .quote-helper__panel {
  display: block;
}

.quote-helper__panel h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.quote-helper__panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.45;
}

.quote-helper__panel a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 8px;
}

.panel-primary {
  background: var(--pink);
  color: #fff;
}

.panel-secondary {
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.quote-helper.is-open .quote-helper__bubble-label {
  display: none;
}

@media (max-width: 1050px) {
  .site-header {
    position: relative;
    padding: 12px 0;
  }

  .header-shell {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 14px 16px;
    background: rgba(8, 8, 12, .78);
    box-shadow: 0 0 22px rgba(255, 20, 147, .12);
  }

  .brand img {
    width: 190px;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 56px;
  }

  .hero-photo {
    background-position: 56% center;
  }

  .hero-photo::before {
    background:
      linear-gradient(180deg, rgba(3, 3, 5, .76) 0%, rgba(3, 3, 5, .58) 38%, rgba(3, 3, 5, .22) 64%, rgba(3, 3, 5, .68) 100%),
      linear-gradient(90deg, rgba(3, 3, 5, .64) 0%, rgba(3, 3, 5, .2) 64%, rgba(3, 3, 5, .04) 100%);
  }

  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 10.8vw, 4.8rem);
    max-width: 760px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .quick-cards,
  .service-grid,
  .about-grid,
  .review-grid,
  .credentials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-menu-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 20px;
    right: 18px;
  }

  .shell {
    width: calc(100% - 28px);
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 170px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-photo {
    background-position: 48% center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 3.7rem);
    line-height: .95;
  }

  .lede {
    font-size: 1rem;
  }

  .section {
    padding: 62px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 2.5rem;
  }

  .about-photo img {
    height: 430px;
  }

  .footer-inner {
    display: grid;
  }

  .quote-helper {
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .quote-helper__button {
    width: 72px;
    min-height: 104px;
  }

  .quote-bulb {
    width: 62px;
    height: 84px;
    right: 5px;
  }

  .quote-bulb__glass {
    left: 8px;
    width: 46px;
    height: 54px;
  }

  .quote-bulb__neck {
    left: 23px;
    top: 51px;
  }

  .quote-bulb__base {
    left: 18px;
    top: 59px;
  }

  .quote-helper__bubble-label {
    right: 3px;
    bottom: 88px;
    padding: 8px 12px;
  }

  .quote-helper__panel {
    width: min(260px, calc(100vw - 28px));
    right: 0;
    bottom: 108px;
  }

  .floating-menu-panel {
    right: 14px;
    top: 72px;
  }
}
