

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/quicksand-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/quicksand-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/quicksand-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/worksans-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/worksans-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/worksans-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: hsl(36 100% 98%);
  --paper-2: hsl(40 70% 95%);
  --ink: hsl(200 55% 14%);
  --ink-soft: hsl(200 22% 34%);
  --line: hsl(192 40% 86%);

  --teal: hsl(189 94% 43%);
  --teal-deep: hsl(193 82% 31%);
  --teal-ink: hsl(196 80% 20%);
  --coral: hsl(5 100% 68%);
  --coral-deep: hsl(7 78% 56%);
  --mango: hsl(38 100% 59%);
  --leaf: hsl(151 62% 44%);
  --leaf-deep: hsl(151 55% 32%);

  --shadow-sm: 0 2px 8px hsl(193 60% 30% / .08);
  --shadow: 0 14px 34px hsl(193 55% 28% / .14);
  --shadow-lg: 0 26px 60px hsl(193 50% 26% / .20);

  --r-sm: .7rem;
  --r: 1.1rem;
  --r-lg: 1.8rem;
  --r-pill: 999px;

  --wrap: 1320px;
  --gap: clamp(1rem, 3vw, 2rem);

  --ff-display: 'Quicksand', system-ui, sans-serif;
  --ff-body: 'Work Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(42rem 30rem at 8% -8%, hsl(189 94% 60% / .22), transparent 60%),
    radial-gradient(38rem 28rem at 96% 4%, hsl(38 100% 62% / .20), transparent 58%),
    radial-gradient(50rem 38rem at 50% 116%, hsl(151 62% 56% / .18), transparent 60%),
    var(--paper);
}

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

a {
  color: var(--teal-deep);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  letter-spacing: -.01em;
}

p {
  margin: 0 0 1rem;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  z-index: 200;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
}


.qt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 1rem;
}
.qt-eyebrow::before {
  content: '◎';
  font-size: 1rem;
  color: var(--coral);
}
.qt-eyebrow::after {
  content: '';
  width: clamp(2rem, 9vw, 5.5rem);
  height: 0;
  border-top: 2px dotted hsl(189 70% 50% / .7);
}

.qt-coord {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--teal-deep);
  text-transform: uppercase;
}


.qt-btn {
  --bg: var(--coral);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px hsl(5 90% 55% / .32);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.qt-btn:hover {
  transform: translateY(-2px) rotate(-.6deg);
  box-shadow: 0 16px 30px hsl(5 90% 55% / .40);
}
.qt-btn--ghost {
  --bg: transparent;
  --fg: var(--teal-ink);
  border: 2px solid var(--teal);
  box-shadow: none;
}
.qt-btn--ghost:hover {
  background: hsl(189 94% 43% / .12);
  box-shadow: none;
}
.qt-btn--teal {
  --bg: var(--teal);
  box-shadow: 0 10px 22px hsl(189 80% 40% / .34);
}
.qt-btn--teal:hover {
  box-shadow: 0 16px 30px hsl(189 80% 40% / .42);
}


.qt-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: hsl(36 100% 98% / .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.qt-head__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 0;
}
.qt-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
}
.qt-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.qt-brand b {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.qt-brand small {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}
.qt-nav {
  display: flex;
  gap: .3rem;
  align-items: center;
}
.qt-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink-soft);
  padding: .5rem .8rem;
  border-radius: var(--r-pill);
  font-size: .95rem;
  transition: color .15s ease, background .15s ease;
}
.qt-nav a:hover,
.qt-nav a[aria-current='page'] {
  color: var(--teal-ink);
  background: hsl(189 94% 43% / .12);
}
.qt-head .qt-btn {
  padding: .6rem 1.1rem;
  font-size: .92rem;
}
.qt-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--teal);
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 16px hsl(189 80% 40% / .3);
}
.qt-burger span,
.qt-burger span::before,
.qt-burger span::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2.4px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: .25s ease;
}
.qt-burger span { top: 50%; margin-top: -1px; }
.qt-burger span::before { content: ''; top: -7px; }
.qt-burger span::after { content: ''; top: 7px; }


.qt-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
}
.qt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, hsl(196 85% 16% / .82) 0%, hsl(196 80% 20% / .55) 42%, hsl(189 80% 32% / .28) 100%),
    radial-gradient(28rem 20rem at 86% 84%, hsl(38 100% 55% / .42), transparent 60%);
}
.qt-hero__in {
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.4rem, 6vw, 4rem);
  display: grid;
  gap: 1.4rem;
  max-width: 44rem;
}
.qt-hero .qt-eyebrow {
  color: hsl(38 100% 78%);
}
.qt-hero .qt-eyebrow::before { color: var(--mango); }
.qt-hero .qt-eyebrow::after { border-top-color: hsl(38 100% 70% / .8); }
.qt-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  line-height: .98;
  text-shadow: 0 2px 18px hsl(196 80% 12% / .5);
}
.qt-hero h1 em {
  font-style: normal;
  color: var(--mango);
}
.qt-hero__lead {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  max-width: 36rem;
  color: hsl(40 60% 96%);
}
.qt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .4rem;
}
.qt-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-top: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px dotted hsl(40 80% 80% / .5);
}
.qt-hero__stats b {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--mango);
}
.qt-hero__stats span {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: hsl(40 50% 90%);
}


.qt-sec {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.qt-sec--tight {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
}
.qt-sec__head {
  max-width: 46rem;
  margin-bottom: 2rem;
}
.qt-sec__head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}
.qt-sec__head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: .8rem;
}
.qt-sec__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  max-width: none;
  flex-wrap: wrap;
}


.qt-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 22rem);
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.6rem;
  margin: 0 -.2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}
.qt-rail::-webkit-scrollbar { height: 9px; }
.qt-rail::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 99px; }
.qt-rail::-webkit-scrollbar-track { background: hsl(192 40% 90%); border-radius: 99px; }

.qt-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.qt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.qt-card__top {
  position: relative;
  padding: 1.3rem 1.3rem .9rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(14rem 10rem at 100% 0%, hsl(189 94% 60% / .14), transparent 60%),
    linear-gradient(180deg, hsl(40 70% 97%), #fff);
}
.qt-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.qt-card__name {
  font-size: 1.16rem;
  margin-bottom: .25rem;
}
.qt-card__genre {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  font-weight: 600;
}
.qt-card__body {
  padding: 0 1.3rem 1.1rem;
  flex: 1;
}
.qt-card__body p {
  color: var(--ink-soft);
  font-size: .96rem;
  margin: .4rem 0 0;
}
.qt-card__meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 1.3rem 1.3rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.qt-rating {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: hsl(38 100% 59% / .16);
  color: var(--coral-deep);
  font-weight: 700;
  font-family: var(--ff-display);
  padding: .3rem .65rem;
  border-radius: var(--r-pill);
  font-size: .9rem;
}
.qt-rating span { color: var(--mango); }
.qt-card__meta .qt-btn {
  margin-left: auto;
  padding: .55rem 1rem;
  font-size: .9rem;
}


.qt-tag {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal-deep);
  background: hsl(189 94% 43% / .12);
  padding: .25rem .6rem;
  border-radius: var(--r-pill);
}


.qt-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.qt-split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.qt-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.qt-split__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: hsl(196 85% 16% / .82);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  padding: .4rem .8rem;
  border-radius: var(--r-pill);
}
.qt-split h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}
.qt-split p {
  color: var(--ink-soft);
}
.qt-feats {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .9rem;
}
.qt-feats li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.qt-feats b {
  font-family: var(--ff-display);
  display: block;
}
.qt-feats .ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: hsl(151 62% 44% / .16);
  color: var(--leaf-deep);
}


.qt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.qt-steps--3 {
  grid-template-columns: repeat(3, 1fr);
}
.qt-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.3rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.qt-step__n {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  margin-bottom: .9rem;
  box-shadow: 0 6px 14px hsl(189 80% 40% / .3);
}
.qt-step:nth-child(2) .qt-step__n { background: var(--mango); box-shadow: 0 6px 14px hsl(38 90% 50% / .3); }
.qt-step:nth-child(3) .qt-step__n { background: var(--leaf); box-shadow: 0 6px 14px hsl(151 60% 40% / .3); }
.qt-step:nth-child(4) .qt-step__n { background: var(--coral); box-shadow: 0 6px 14px hsl(5 80% 55% / .3); }
.qt-step h3 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.qt-step p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
}


.qt-band {
  background:
    radial-gradient(30rem 22rem at 0% 0%, hsl(189 94% 50% / .28), transparent 60%),
    radial-gradient(30rem 22rem at 100% 100%, hsl(38 100% 58% / .3), transparent 60%),
    linear-gradient(120deg, var(--teal-deep), var(--teal-ink));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3rem);
}
.qt-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.qt-band b {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  display: block;
  color: var(--mango);
  line-height: 1;
}
.qt-band span {
  font-size: .92rem;
  color: hsl(40 50% 92%);
  letter-spacing: .04em;
}


.qt-revs {
  columns: 3;
  column-gap: 1.2rem;
}
.qt-rev {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem 1.3rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.qt-rev__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .6rem;
}
.qt-rev__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.qt-rev__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
}
.qt-rev__sub {
  font-size: .76rem;
  color: var(--ink-soft);
}
.qt-rev__stars {
  color: var(--mango);
  letter-spacing: .1em;
  font-size: .92rem;
  margin-bottom: .5rem;
}
.qt-rev p {
  color: var(--ink-soft);
  font-size: .96rem;
  margin: 0;
}


.qt-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.qt-board__row {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.qt-board__row:last-child { border-bottom: 0; }
.qt-board__row--head {
  background: hsl(40 70% 96%);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.qt-board__rank {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teal-deep);
  text-align: center;
}
.qt-board__row:nth-child(2) .qt-board__rank { color: var(--mango); }
.qt-board__row:nth-child(3) .qt-board__rank { color: var(--coral-deep); }
.qt-board__game {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--ff-display);
  font-weight: 600;
}
.qt-board__game img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}
.qt-board__bar {
  width: clamp(5rem, 16vw, 11rem);
  height: 9px;
  border-radius: 99px;
  background: hsl(192 40% 90%);
  overflow: hidden;
}
.qt-board__bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--leaf));
}
.qt-board__score {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ink);
  min-width: 3rem;
  text-align: right;
}



#qt-farol .qt-sec__head {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.qt-farol-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 45rem;
  margin-inline: auto;
}
.qt-farol-box details {
  background: linear-gradient(180deg, #fff, var(--paper-2));
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.qt-farol-box details[open] {
  border-left-color: var(--coral);
  box-shadow: var(--shadow);
}
.qt-farol-box summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--teal-ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.qt-farol-box summary::-webkit-details-marker { display: none; }
.qt-farol-box summary::after {
  content: '▾';
  font-size: 1.15rem;
  color: var(--teal);
  flex: none;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: hsl(189 94% 43% / .12);
  border-radius: var(--r-pill);
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.qt-farol-box details[open] summary::after {
  transform: rotate(180deg);
  color: var(--coral);
  background: hsl(5 100% 68% / .16);
}
.qt-farol-box details p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  color: var(--ink-soft);
}
.qt-farol-box details p a {
  color: var(--coral-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.qt-sub {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: #fff;
  isolation: isolate;
}
.qt-sub__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qt-sub::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, hsl(196 85% 15% / .92), hsl(189 78% 28% / .78));
}
.qt-sub__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}
.qt-sub__intro h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .8rem;
}
.qt-sub__intro p {
  color: hsl(40 60% 94%);
}
.qt-sub__contacts {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .9rem;
}
.qt-sub__contacts li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .96rem;
  color: hsl(40 55% 95%);
}
.qt-sub__contacts .ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: hsl(38 100% 60% / .22);
  color: var(--mango);
  flex-shrink: 0;
}
.qt-sub__contacts a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.qt-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.qt-form h3 {
  font-size: 1.35rem;
  margin-bottom: .3rem;
}
.qt-form > p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1.1rem;
}
.qt-field {
  margin-bottom: .9rem;
}
.qt-field label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .35rem;
  color: var(--teal-ink);
}
.qt-field input {
  width: 100%;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.qt-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px hsl(189 94% 43% / .18);
}
.qt-consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--ink-soft);
  margin: .3rem 0 1.1rem;
}
.qt-consent input {
  margin-top: .25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--coral);
}
.qt-consent a { font-weight: 600; }
.qt-form .qt-btn { width: 100%; justify-content: center; }
.qt-success {
  display: none;
  margin-top: .9rem;
  padding: .8rem 1rem;
  background: hsl(151 62% 44% / .16);
  color: var(--leaf-deep);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .95rem;
}
.qt-success.show { display: block; }


.qt-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.qt-strip span {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .55rem 1.1rem;
  font-size: .92rem;
  box-shadow: var(--shadow-sm);
}


.qt-cta {
  text-align: center;
  background:
    radial-gradient(24rem 16rem at 16% 10%, hsl(38 100% 58% / .35), transparent 60%),
    radial-gradient(24rem 16rem at 84% 90%, hsl(151 62% 50% / .3), transparent 60%),
    linear-gradient(120deg, var(--coral), var(--coral-deep));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 6vw, 3.6rem);
}
.qt-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: .8rem;
}
.qt-cta p {
  color: hsl(20 80% 96%);
  max-width: 38rem;
  margin: 0 auto 1.4rem;
}
.qt-cta .qt-btn { background: #fff; color: var(--coral-deep); box-shadow: var(--shadow); }
.qt-cta .qt-btn:hover { background: var(--paper); }


.qt-foot {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(180deg, hsl(196 80% 17%), hsl(198 82% 12%));
  color: hsl(40 40% 90%);
  padding: clamp(2.6rem, 6vw, 4rem) 0 1.6rem;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.qt-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.qt-foot__brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-bottom: .8rem;
}
.qt-foot__brand b {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: #fff;
  display: block;
}
.qt-foot__brand p {
  font-size: .92rem;
  color: hsl(40 30% 82%);
  max-width: 24rem;
}
.qt-foot h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.qt-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.qt-foot a {
  color: hsl(40 35% 86%);
  font-size: .95rem;
}
.qt-foot a:hover { color: var(--mango); }
.qt-foot__contact li {
  font-size: .92rem;
  color: hsl(40 35% 86%);
  margin-bottom: .55rem;
  line-height: 1.45;
}
.qt-foot__bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid hsl(40 30% 80% / .18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .85rem;
  color: hsl(40 30% 78%);
}


.qt-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.qt-sheet[data-open='true'] { display: block; }
.qt-sheet__scrim {
  position: absolute;
  inset: 0;
  background: hsl(196 80% 12% / .5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .28s ease;
}
.qt-sheet[data-open='true'] .qt-sheet__scrim { opacity: 1; }
.qt-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 1rem 1.4rem 2rem;
  box-shadow: 0 -20px 50px hsl(196 60% 20% / .3);
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
  max-height: 86vh;
  overflow-y: auto;
}
.qt-sheet[data-open='true'] .qt-sheet__panel { transform: translateY(0); }
.qt-sheet__grip {
  width: 48px;
  height: 5px;
  border-radius: 99px;
  background: var(--line);
  margin: .2rem auto 1.2rem;
}
.qt-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.qt-sheet__head b {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.qt-sheet__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.qt-sheet__nav {
  display: grid;
  gap: .4rem;
}
.qt-sheet__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  padding: .9rem 1rem;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
}
.qt-sheet__nav a::after { content: '→'; color: var(--coral); }
.qt-sheet__nav a:hover { background: hsl(189 94% 43% / .1); }
.qt-sheet .qt-btn { width: 100%; justify-content: center; margin-top: 1rem; }

body.qt-lock { overflow: hidden; }


.qt-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  max-width: 44rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(160%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.qt-cookie[data-show='true'] { transform: translateY(0); }
.qt-cookie p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  flex: 1;
  min-width: 14rem;
}
.qt-cookie b { color: var(--ink); font-family: var(--ff-display); }
.qt-cookie a { font-weight: 600; }
.qt-cookie__btns {
  display: flex;
  gap: .6rem;
}
.qt-cookie .qt-btn { padding: .6rem 1.1rem; font-size: .9rem; }


.qt-page-hero {
  background:
    radial-gradient(30rem 20rem at 90% -10%, hsl(189 94% 55% / .22), transparent 60%),
    radial-gradient(26rem 18rem at 0% 120%, hsl(38 100% 58% / .2), transparent 60%);
  padding: clamp(2.6rem, 7vw, 4.4rem) 0 clamp(1.6rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--line);
}
.qt-page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  max-width: 24ch;
}
.qt-page-hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 50rem;
  margin-top: .8rem;
}
.qt-prose {
  max-width: 52rem;
}
.qt-prose h2 {
  font-size: 1.5rem;
  margin: 2.2rem 0 .8rem;
  color: var(--teal-ink);
}
.qt-prose h3 {
  font-size: 1.15rem;
  margin: 1.6rem 0 .5rem;
}
.qt-prose p,
.qt-prose li {
  color: var(--ink-soft);
}
.qt-prose ul {
  padding-left: 1.2rem;
  display: grid;
  gap: .4rem;
}
.qt-prose strong { color: var(--ink); }
.qt-prose .qt-updated {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--teal-deep);
  background: hsl(189 94% 43% / .12);
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}
.qt-card-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.5rem;
}


.qt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.qt-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.qt-contact-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: hsl(189 94% 43% / .14);
  color: var(--teal-deep);
  margin-bottom: .8rem;
}
.qt-contact-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.qt-contact-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.qt-contact-card a { font-weight: 600; }


.qt-404 {
  text-align: center;
  padding: clamp(3rem, 10vw, 7rem) 0;
}
.qt-404 .big {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(5rem, 22vw, 13rem);
  line-height: .9;
  background: linear-gradient(120deg, var(--teal), var(--leaf), var(--mango));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}


@media (max-width: 1080px) {
  .qt-revs { columns: 2; }
  .qt-foot__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .qt-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .qt-steps--3 { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .qt-nav,
  .qt-head .qt-btn { display: none; }
  .qt-burger { display: block; }
  .qt-split { grid-template-columns: 1fr; }
  .qt-split__media { order: -1; }
  .qt-sub__grid { grid-template-columns: 1fr; }
  .qt-band__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .qt-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .qt-revs { columns: 1; }
  .qt-steps { grid-template-columns: 1fr; }
  .qt-board__row { grid-template-columns: 2.2rem 1fr auto; }
  .qt-board__bar { display: none; }
  .qt-board__row--head .qt-board__bar-h { display: none; }
  .qt-foot__grid { grid-template-columns: 1fr; }
  .qt-cookie { flex-direction: column; align-items: stretch; }
  .qt-cookie__btns { justify-content: stretch; }
  .qt-cookie__btns .qt-btn { flex: 1; justify-content: center; }
  .qt-hero__stats { gap: 1.2rem 1.6rem; }
}

@media (min-width: 881px) {
  .qt-sheet { display: none !important; }
}
