:root {
  --bg: #070b16;
  --bg-soft: #0d1424;
  --panel: #111b2d;
  --panel-2: #172238;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f8ff;
  --muted: #aab4c8;
  --accent: #61d6cf;
  --accent-2: #8d6bff;
  --accent-3: #ff5ecb;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-lg: 14px;
  --safe-inline: max(env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  --shell: min(1180px, calc(100vw - 40px - var(--safe-inline) - var(--safe-inline)));
  --scrollbar-track: rgba(7, 11, 22, 0.72);
  --scrollbar-thumb: linear-gradient(180deg, rgba(97, 214, 207, 0.82), rgba(141, 107, 255, 0.9) 52%, rgba(255, 94, 203, 0.78));
  --scrollbar-thumb-hover: linear-gradient(180deg, rgba(138, 242, 236, 0.95), rgba(159, 132, 255, 0.98) 52%, rgba(255, 118, 213, 0.95));
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: rgba(141, 107, 255, 0.82) rgba(7, 11, 22, 0.82);
  scrollbar-width: thin;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

html.stiksee-scroll-locked,
body.stiksee-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.stiksee-scroll-locked {
  position: fixed;
  top: var(--stiksee-scroll-lock-top, 0px);
  right: 0;
  left: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.1), var(--bg) 74%),
    radial-gradient(circle at 12% 8%, rgba(97, 214, 207, 0.16), transparent 32%),
    radial-gradient(circle at 86% 4%, rgba(141, 107, 255, 0.18), transparent 30%),
    #070b16;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  appearance: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  scrollbar-color: rgba(141, 107, 255, 0.82) rgba(7, 11, 22, 0.82);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(7, 11, 22, 0.9), rgba(13, 20, 36, 0.9)),
    var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(7, 11, 22, 0.92);
  border-radius: 999px;
  background: var(--scrollbar-thumb);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-corner {
  background: rgba(7, 11, 22, 0.92);
}

.nav-dropdown__menu,
.pack-modal__panel,
.pack-modal__content,
.pack-modal__preview,
.pack-modal__choices,
.auth-modal__panel {
  scrollbar-color: rgba(97, 214, 207, 0.82) rgba(13, 20, 36, 0.92);
  scrollbar-width: thin;
}

.nav-dropdown__menu::-webkit-scrollbar,
.pack-modal__panel::-webkit-scrollbar,
.pack-modal__content::-webkit-scrollbar,
.pack-modal__preview::-webkit-scrollbar,
.pack-modal__choices::-webkit-scrollbar,
.auth-modal__panel::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.nav-dropdown__menu::-webkit-scrollbar-track,
.pack-modal__panel::-webkit-scrollbar-track,
.pack-modal__content::-webkit-scrollbar-track,
.pack-modal__preview::-webkit-scrollbar-track,
.pack-modal__choices::-webkit-scrollbar-track,
.auth-modal__panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(13, 20, 36, 0.92);
}

.nav-dropdown__menu::-webkit-scrollbar-thumb,
.pack-modal__panel::-webkit-scrollbar-thumb,
.pack-modal__content::-webkit-scrollbar-thumb,
.pack-modal__preview::-webkit-scrollbar-thumb,
.pack-modal__choices::-webkit-scrollbar-thumb,
.auth-modal__panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(13, 20, 36, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(97, 214, 207, 0.86), rgba(141, 107, 255, 0.9));
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(7, 11, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  gap: clamp(10px, 1.35vw, 18px);
  color: #d7deee;
  font-size: 13px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.nav-dropdown__trigger,
.main-nav > a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  min-height: 36px;
  min-width: 36px;
  white-space: nowrap;
}

.nav-icon {
  color: #8af2ec;
  font-size: 13px;
  line-height: 1;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: 260px;
  max-height: 360px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  visibility: hidden;
  transition: opacity 0.14s ease, visibility 0.14s ease;
}

.nav-dropdown--mega .nav-dropdown__menu {
  width: min(880px, calc(100vw - 44px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: min(520px, calc(100vh - 130px));
  padding: 12px;
}

.nav-dropdown::after {
  position: absolute;
  right: -16px;
  bottom: 0;
  left: -16px;
  height: 28px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  gap: 4px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-dropdown--mega:hover .nav-dropdown__menu,
.nav-dropdown--mega:focus-within .nav-dropdown__menu {
  gap: 6px;
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: calc(var(--radius) - 2px);
  color: #d7deee;
}

.nav-dropdown--mega .nav-dropdown__menu a {
  display: grid;
  gap: 4px;
  justify-content: stretch;
  min-height: 58px;
}

.nav-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown__menu small {
  color: var(--muted);
  font-weight: 900;
}

.nav-dropdown--mega .nav-dropdown__menu small {
  color: #8eeaf3;
  font-size: 11px;
}

.main-nav a,
.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 28px;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.header-actions .btn {
  padding-right: 14px;
  padding-left: 14px;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.language-switcher::after {
  position: absolute;
  top: calc(100% - 16px);
  right: -10px;
  left: -10px;
  height: 24px;
  content: "";
}

.language-switcher__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 44px;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.language-switcher__current::after {
  width: 0;
  height: 0;
  border-top: 4px solid rgba(226, 232, 240, 0.72);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.language-switcher__flag {
  font-size: 15px;
  line-height: 1;
}

.language-switcher__code {
  min-width: 20px;
  text-align: center;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 90;
  display: grid;
  min-width: 180px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.14s ease, visibility 0.14s ease;
}

.language-switcher:hover .language-switcher__menu,
.language-switcher:focus-within .language-switcher__menu {
  gap: 3px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.language-switcher__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 9px;
  border-radius: calc(var(--radius) - 2px);
  color: #d7deee;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.language-switcher__item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.language-switcher__item:hover,
.language-switcher__item.is-current {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2) 55%, #4a83ff);
  box-shadow: 0 16px 38px rgba(141, 107, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.055);
}

.btn-light {
  background: #f7fbff;
  color: #071020;
  border: 0;
}

.btn-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  min-height: 40px;
  padding: 0 14px;
  font-weight: 800;
}

.hero {
  padding: 88px 0 82px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(97, 214, 207, 0.25);
  border-radius: 999px;
  background: rgba(97, 214, 207, 0.08);
  color: #9ff6ef;
  font-size: 13px;
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: rgba(226, 232, 240, 0.86);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-current="page"] {
  color: #fff;
}

.external-mobile-breadcrumbs {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 76px);
}

.hero h1 span,
.section-head h2 span {
  color: #8af2ec;
}

.lead {
  max-width: 720px;
  color: #d6deef;
  font-size: 19px;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.microcopy span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stats-row div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.stats-row strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-motion {
  position: relative;
  width: min(430px, 100%);
  min-height: 640px;
  margin-left: auto;
}

.motion-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  animation: motionFloat 8s ease-in-out infinite;
}

.motion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.76);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.motion-card-1 {
  inset: 0 18px auto auto;
  z-index: 4;
  width: 280px;
  height: 390px;
}

.motion-card-2 {
  top: 92px;
  left: 0;
  z-index: 3;
  width: 210px;
  height: 290px;
  animation-delay: -1.6s;
}

.motion-card-3 {
  top: 330px;
  right: 0;
  z-index: 5;
  width: 230px;
  height: 315px;
  animation-delay: -3.2s;
}

.motion-card-4 {
  top: 430px;
  left: 36px;
  z-index: 2;
  width: 185px;
  height: 240px;
  animation-delay: -4.4s;
}

.motion-card-5,
.motion-card-6 {
  display: none;
}

@keyframes motionFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(1.5deg);
  }
}

.phone-pill {
  position: absolute;
  left: 56px;
  right: 32px;
  bottom: 86px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 11, 22, 0.75);
  text-align: center;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.motion-action {
  z-index: 6;
  color: var(--text);
  cursor: pointer;
}

.mini-stack {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: grid;
  gap: 14px;
  width: 165px;
}

.mini-stack img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.section {
  padding: 84px 0;
}

.section.section--free-tools {
  padding-top: 24px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.split-panel h2,
.cta-inner h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.section-head p,
.split-panel p,
.cta-inner p {
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.image-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.image-card h2,
.image-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.image-card p {
  color: var(--muted);
  font-size: 15px;
}

.image-card a {
  margin-top: auto;
  color: #8af2ec;
  font-weight: 900;
}

.image-card button {
  align-self: flex-start;
  margin-top: auto;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8af2ec;
  cursor: pointer;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.74);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: 42px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
}

.steps h3 {
  margin-bottom: 8px;
}

.compare-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.compare-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  object-fit: cover;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #1aefe2, #8d6bff 54%, #ff5ecb);
  color: #071020;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner .kicker {
  background: rgba(7, 11, 22, 0.12);
  border-color: rgba(7, 11, 22, 0.18);
  color: #071020;
}

.cta-inner p {
  max-width: 720px;
  color: rgba(7, 16, 32, 0.72);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 100px 0 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 11, 22, 0.92), rgba(7, 11, 22, 0.5), rgba(7, 11, 22, 0.86)),
    var(--hero-image) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(40px, 5.4vw, 66px);
}

.page-hero p:not(.kicker) {
  max-width: 720px;
  color: #d7deee;
  font-size: 19px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card,
.contact-grid article,
.faq-list details,
.content-page {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(124, 106, 255, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.052);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  border-color: rgba(138, 242, 236, 0.3);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(97, 214, 207, 0.42);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 94, 203, 0.17), transparent 38%),
    linear-gradient(180deg, rgba(97, 214, 207, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 26px 70px rgba(42, 214, 207, 0.12);
}

.price-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.price-card__topline p {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.price-card__index {
  color: rgba(226, 232, 240, 0.38);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.price-card__popular {
  display: inline-flex !important;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  margin: 18px 0 -2px !important;
  padding: 0 10px;
  border: 1px solid rgba(138, 242, 236, 0.3);
  border-radius: 999px;
  background: rgba(97, 214, 207, 0.11);
  color: #a8fff7 !important;
  font-size: 11px;
  font-weight: 950;
}

.price-card h2 {
  margin: 22px 0 18px;
  font-size: 30px;
}

.price-card__value {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-card__value strong {
  display: block;
  margin: 0;
  font-size: 46px;
  line-height: 1;
}

.price-card__value span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  color: #d7deee;
  font-size: 14px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
}

.price-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(97, 214, 207, 0.14);
  color: #9ff6ef;
  content: "✓";
  font-size: 11px;
  font-weight: 950;
}

.price-card > .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 32px;
}

.pricing-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.pricing-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pricing-how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.pricing-how article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 132px;
  padding: 24px;
  background: #0c1220;
}

.pricing-how article > span {
  color: #8af2ec;
  font-size: 12px;
  font-weight: 950;
}

.pricing-how strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.pricing-how p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid article {
  padding: 26px;
}

.contact-grid a {
  display: table;
  margin-top: 12px;
  color: #8af2ec;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(440px, 1.18fr);
  align-items: start;
  gap: 22px;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.contact-card {
  padding: 28px;
}

.contact-card--primary {
  background:
    radial-gradient(circle at 100% 0, rgba(97, 214, 207, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.052);
}

.contact-card__eyebrow,
.contact-form-card__head > div > p {
  display: block;
  margin: 0 0 10px;
  color: #8af2ec;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-form-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.contact-card > p,
.contact-card--account p,
.contact-form-card__lead {
  color: var(--muted);
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(7, 11, 22, 0.58);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.contact-action:hover {
  border-color: rgba(138, 242, 236, 0.42);
  background: rgba(97, 214, 207, 0.08);
  transform: translateY(-2px);
}

.contact-action__icon,
.contact-form-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(97, 214, 207, 0.24), rgba(124, 106, 255, 0.24));
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.contact-action > span:last-child {
  min-width: 0;
}

.contact-action small,
.contact-action strong {
  display: block;
}

.contact-action small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.contact-action strong {
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.contact-topics span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 850;
}

.contact-card--account {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
}

.contact-card--account .btn {
  grid-column: 2;
  justify-self: start;
}

.contact-card__number {
  color: rgba(138, 242, 236, 0.5);
  font-size: 12px;
  font-weight: 950;
}

.contact-card--account h2 {
  font-size: 23px;
}

.contact-card--account p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-form-card {
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 94, 203, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.052);
}

.contact-form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-form-card__head > div > p {
  margin-bottom: 7px;
}

.contact-form-card__lead {
  margin: 18px 0 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form > label:not(.contact-form__consent):not(.contact-form__honeypot) {
  display: grid;
  gap: 8px;
}

.contact-form label > span:first-child {
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(177, 194, 219, 0.22);
  border-radius: 12px;
  background: rgba(7, 11, 22, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(138, 242, 236, 0.65);
  box-shadow: 0 0 0 3px rgba(97, 214, 207, 0.1);
  outline: 0;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form__consent {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form__consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--accent);
}

.contact-form__consent a {
  color: #8af2ec;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form__submit small {
  max-width: 230px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form-status {
  margin: 0 0 20px;
  padding: 13px 14px;
  border: 1px solid rgba(97, 214, 207, 0.3);
  border-radius: 12px;
  background: rgba(97, 214, 207, 0.1);
  color: #dffdfa;
  font-size: 13px;
  font-weight: 800;
}

.contact-form-status.is-error {
  border-color: rgba(255, 120, 136, 0.34);
  background: rgba(255, 90, 108, 0.1);
  color: #ffd6dc;
}

.empty-state {
  max-width: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.external-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 232px), 240px));
  align-items: start;
  justify-content: start;
  gap: 16px;
}

.external-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.external-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.external-heading p {
  color: var(--muted);
}

.external-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.external-card > button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
}

.external-card > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.external-card__body a {
  display: block;
  min-height: 0;
  min-width: 0;
  color: var(--text);
  pointer-events: auto;
  text-decoration: none;
}

.external-card__body a:hover {
  color: var(--accent);
}

.external-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.external-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 0;
  padding: 42px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 18, 0.94));
  pointer-events: none;
}

.external-card__body small {
  color: var(--accent);
  font-weight: 950;
}

.external-card__body h3 {
  margin: 0;
}

.external-card__body strong,
.external-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.external-card__body span,
.external-card__body em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.external-card__body > small,
.external-card__body > span,
.external-card__body > em,
.external-card__body > .pack-runtime-specs {
  display: none;
}

.home-pack-showcase {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-pack-showcase + .home-pack-showcase {
  padding-top: 0;
}

.home-pack-showcase__head {
  max-width: 820px;
}

.home-pack-showcase__grid {
  align-items: stretch;
}

.home-pack-showcase__card[hidden] {
  display: none;
}

.home-pack-showcase__card {
  display: flex;
  flex-direction: column;
}

.home-pack-showcase__card .external-card__body {
  flex: 1;
}

.home-pack-showcase__media {
  overflow: hidden;
}

.home-pack-showcase__media img {
  transition: transform 180ms ease;
}

.home-pack-showcase__media:hover img {
  transform: scale(1.035);
}

.home-pack-showcase__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.home-subcategory-group {
  scroll-margin-top: 78px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-subcategory-group > .shell {
  width: min(1320px, calc(100vw - 40px));
}

.home-subcategory-group + .home-subcategory-group {
  padding-top: 0;
}

.home-subcategory-group__head {
  max-width: 820px;
}

.home-subcategory-list {
  display: grid;
  gap: 36px;
}

.home-subcategory-row {
  min-width: 0;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.home-subcategory-row--mobile-only {
  display: none;
}

.home-subcategory-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-subcategory-row__head h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.16;
}

.home-subcategory-row__head h3 a:hover {
  color: var(--accent);
}

.home-subcategory-row__head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.home-subcategory-row__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: start;
  gap: 16px;
}

.home-subcategory-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.home-subcategory-card::after {
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 18, 0.94));
  content: "";
}

.home-subcategory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.home-subcategory-card:hover img {
  transform: scale(1.035);
}

.home-subcategory-card > span {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 1;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-subcategory-row__actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.home-subcategory-row__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 2px 4px;
  color: #8af2ec;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.home-subcategory-row__more:hover {
  color: #ffffff;
}

.tools-page {
  display: grid;
  gap: 34px;
  width: 100%;
  min-width: 0;
}

.tools-page--single {
  gap: 28px;
}

.tools-page > * {
  max-width: 100%;
  min-width: 0;
}

.tools-hero {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.tools-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
}

.tools-hero--single h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
}

.tools-hero p {
  max-width: 820px;
  color: #d7e0ef;
  font-size: 18px;
  line-height: 1.7;
}

.tools-hero--single {
  width: 100%;
  max-width: none;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 36, 58, 0.72), rgba(12, 19, 33, 0.72));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.tools-hero--single > div {
  max-width: 900px;
}

.tool-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-keywords span {
  padding: 8px 11px;
  border: 1px solid rgba(126, 238, 255, 0.26);
  border-radius: 999px;
  background: rgba(126, 238, 255, 0.09);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.tool-widget-shell {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px dashed rgba(126, 238, 255, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.tool-widget-shell strong {
  color: #ffffff;
  font-size: 20px;
}

.tool-widget-shell p {
  margin: 0;
  color: #d7e0ef;
  font-size: 14px;
}

.tools-widget-section {
  width: 100%;
  max-width: none;
}

.tools-discovery {
  display: grid;
  gap: 28px;
  width: 100%;
  min-width: 0;
  padding: 6px 0 12px;
}

.tools-discovery__offer {
  display: grid;
  gap: 9px;
  max-width: 840px;
}

.tools-discovery__badge {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(138, 242, 236, 0.3);
  border-radius: 999px;
  background: rgba(138, 242, 236, 0.09);
  color: #9cf8f2;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.tools-discovery__offer h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.04;
}

.tools-discovery__offer p {
  max-width: 760px;
  margin: 0;
  color: #cbd8e8;
  font-size: 16px;
  line-height: 1.5;
}

.tools-discovery__groups {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.tools-discovery__group {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tools-discovery__group-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.tools-discovery__group-head > div {
  min-width: 0;
}

.tools-discovery__group-head > div > span {
  display: block;
  margin-bottom: 4px;
  color: #8af2ec;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.tools-discovery__group-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
}

.tools-discovery__group-head > a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
  min-height: 36px;
  color: #dffcf9;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.tools-discovery__group-head > a:hover {
  color: #ffffff;
}

.tools-discovery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.tools-discovery-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.tools-discovery-card:hover {
  border-color: rgba(138, 242, 236, 0.36);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.tools-discovery-card__open:focus-visible,
.tools-discovery-card strong a:focus-visible {
  outline: 2px solid #8af2ec;
  outline-offset: 3px;
}

.tools-discovery-card__open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.tools-discovery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #111827;
  object-fit: cover;
}

.tools-discovery-card img[data-image-state="deferred"],
.tools-discovery-card img[data-image-state="loading"],
.tools-discovery-card img[data-image-state="retrying"],
.tools-discovery-card img[data-image-state="failed"] {
  visibility: hidden;
}

.tools-discovery-card strong {
  display: -webkit-box;
  min-width: 0;
  min-height: 34px;
  margin: 0 9px 10px;
  overflow: hidden;
  color: #f4f7fb;
  font-size: 13px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tools-discovery-card strong a {
  color: inherit;
  text-decoration: none;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.tools-related .tool-card {
  min-height: 96px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(97, 214, 207, 0.1), rgba(255, 94, 203, 0.075)),
    rgba(255, 255, 255, 0.052);
}

.tools-related .tool-card::before {
  display: none;
  content: none;
}

.tool-card:hover {
  border-color: rgba(138, 242, 236, 0.35);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.tool-card small {
  color: var(--accent);
  font-weight: 900;
}

.tool-card h2,
.tool-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

a.tool-card {
  color: var(--text);
  text-decoration: none;
}

.tool-card a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 28px;
  color: var(--text);
  text-decoration: none;
}

.tool-card a:hover {
  color: var(--accent);
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tool-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.tools-content {
  width: 100%;
  max-width: none;
}

.tools-content-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.tools-content-visuals img {
  width: 100%;
  height: clamp(96px, 14vw, 190px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.tools-content-visuals--tool-cover {
  grid-template-columns: minmax(0, 1fr);
}

.tools-content-visuals--tool-cover img {
  height: auto;
  aspect-ratio: 1200 / 630;
}

.stiksee-editorial-photo {
  position: relative;
  width: min(82%, 760px);
  margin: 34px 0;
}

.stiksee-editorial-photo:nth-of-type(even) {
  margin-left: auto;
}

.stiksee-editorial-photo > a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #0b1220;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.stiksee-editorial-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.stiksee-editorial-photo > a:hover img {
  transform: scale(1.018);
}

.stiksee-editorial-photo__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(5, 12, 26, 0.76);
  color: #fff;
  font-size: 18px;
  place-items: center;
  backdrop-filter: blur(10px);
}

.stiksee-editorial-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.stiksee-image-lightbox {
  position: fixed;
  z-index: 10030;
  inset: 0;
  display: grid;
  padding:
    max(24px, env(safe-area-inset-top, 0px))
    max(24px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px))
    max(24px, env(safe-area-inset-left, 0px));
  background: rgba(2, 6, 16, 0.92);
  place-items: center;
  backdrop-filter: blur(12px);
}

.stiksee-image-lightbox[hidden] { display: none; }

.stiksee-image-lightbox__figure {
  max-width: min(1180px, 94vw);
  margin: 0;
}

.stiksee-image-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  max-height: 86dvh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.stiksee-image-lightbox__figure figcaption {
  max-width: 840px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.stiksee-image-lightbox__close {
  position: fixed;
  z-index: 1;
  top: max(18px, env(safe-area-inset-top, 0px));
  right: max(18px, env(safe-area-inset-right, 0px));
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(8, 15, 30, 0.78);
  color: #fff;
  font: 400 34px/1 Arial, sans-serif;
  cursor: pointer;
  place-items: center;
}

html.stiksee-lightbox-open,
body.stiksee-lightbox-open { overflow: hidden; }

.tools-related {
  display: grid;
  gap: 18px;
  width: 100%;
}

.tools-related .section-head {
  max-width: none;
  margin-bottom: 8px;
}

.tools-related .section-head h2 {
  max-width: 100%;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.pack-runtime-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pack-runtime-specs__item {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: #dce6f5;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.pack-runtime-specs__item.is-emphasis {
  border-color: rgba(126, 238, 255, 0.34);
  background: linear-gradient(135deg, rgba(126, 238, 255, 0.18), rgba(236, 73, 214, 0.16));
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.16);
}

.pack-runtime-specs--single {
  gap: 10px;
}

.pack-runtime-specs--single .pack-runtime-specs__item {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 14px;
}

.pack-modal[hidden] {
  display: none;
}

.pack-modal [hidden] {
  display: none !important;
}

.pack-modal {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: grid;
  place-items: center;
  padding: 22px;
}

.pack-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.78);
  backdrop-filter: blur(12px);
}

.pack-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.05fr);
  width: min(1040px, 100%);
  height: min(820px, calc(100vh - 44px));
  height: min(820px, calc(100dvh - 44px));
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 29, 48, 0.98), rgba(9, 14, 26, 0.98));
  box-shadow: var(--shadow);
  outline: none;
}

.pack-modal--catalog .pack-modal__panel {
  display: block;
  width: min(980px, 100%);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pack-modal--photoset .pack-modal__panel {
  display: block;
  width: min(620px, 100%);
  height: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pack-modal__panel--step-change .pack-modal__content {
  animation: pack-modal-step-in 220ms ease-out;
}

@keyframes pack-modal-step-in {
  from {
    opacity: 0.45;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pack-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.72);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.pack-modal__media {
  display: block;
  min-height: 0;
  height: 100%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.pack-modal--catalog .pack-modal__media,
.pack-modal--photoset .pack-modal__media {
  display: none;
}

.pack-modal__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 10px;
}

.pack-modal__content {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px;
}

.pack-modal--catalog .pack-modal__content {
  overflow: visible;
}

.pack-modal--photoset .pack-modal__content {
  overflow: visible;
  padding: 26px;
}

.pack-modal__content h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.pack-modal__content p {
  color: var(--muted);
}

.pack-modal__content > .btn {
  justify-self: start;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.pack-modal--photoset .pack-modal__content > .btn {
  position: relative;
  width: 100%;
  justify-self: stretch;
}

.pack-modal__preview {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.pack-modal__preview > strong {
  color: #dce4f4;
  font-size: 13px;
  font-weight: 950;
}

.pack-modal__preview > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pack-modal--photoset .pack-modal__preview > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pack-modal__preview img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.pack-modal__catalog-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin: 18px 0;
}

.pack-modal__catalog-stage[hidden] {
  display: none;
}

.pack-modal__catalog-media,
.pack-modal__catalog-upload {
  min-height: 0;
}

.pack-modal__catalog-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.pack-modal__catalog-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-modal__fields {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  min-width: 0;
}

.pack-modal__field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.pack-modal__fields span,
.pack-modal__prompt span {
  color: #f4f7fb;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.pack-modal__fields input,
.pack-modal__fields select,
.pack-modal__fields textarea,
.pack-modal__prompt textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  border: 1px solid rgba(177, 194, 219, 0.24);
  border-radius: var(--radius);
  background: rgba(16, 26, 44, 0.94);
  color: var(--text);
  padding: 0 13px;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  opacity: 1;
}

.pack-modal__fields select {
  color-scheme: dark;
  cursor: pointer;
}

.pack-modal__fields select option {
  background: #111c30;
  color: #f4f7fb;
}

.pack-modal__fields input::placeholder,
.pack-modal__fields textarea::placeholder,
.pack-modal__prompt textarea::placeholder {
  color: rgba(210, 220, 237, 0.58);
}

.pack-modal__fields textarea,
.pack-modal__prompt textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.pack-modal__fields small,
.pack-modal__upload small,
.pack-modal__upload strong {
  color: #b9c6d9;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.pack-modal__upload,
.pack-modal__prompt {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.pack-modal__upload {
  padding: 12px;
  border: 1px dashed rgba(97, 214, 207, 0.45);
  border-radius: var(--radius);
  background: rgba(97, 214, 207, 0.07);
}

.pack-modal__upload--large {
  min-height: 116px;
}

.pack-modal--catalog .pack-modal__upload--large {
  min-height: 0;
  aspect-ratio: 3 / 4;
  padding: 8px;
}

.pack-modal--catalog .pack-modal__upload:not(.pack-modal__upload--has-files) {
  display: flex;
  align-items: stretch;
}

.pack-modal--catalog .pack-modal__upload-picker {
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.pack-modal--catalog .pack-modal__upload-preview:empty {
  display: none;
}

.pack-modal--catalog .pack-modal__upload--has-files {
  display: block;
}

.pack-modal--catalog .pack-modal__upload--has-files .pack-modal__upload-picker {
  display: none;
}

.pack-modal--catalog .pack-modal__upload--has-files .pack-modal__upload-preview {
  height: 100%;
  margin-top: 0;
  grid-template-columns: 1fr;
}

.pack-modal--catalog .pack-modal__upload--has-files .pack-modal__upload-preview figure {
  height: 100%;
  aspect-ratio: auto;
}

.pack-modal--catalog .pack-modal__upload-icon {
  display: none;
}

.pack-modal--catalog .pack-modal__upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #d83bf0, #315df4);
  color: #fff !important;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.pack-modal__upload-picker {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(138, 242, 236, 0.2);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 242, 236, 0.12), transparent 58%),
    rgba(5, 12, 24, 0.48);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.pack-modal__upload-picker:hover {
  border-color: rgba(138, 242, 236, 0.62);
  background: rgba(97, 214, 207, 0.12);
  transform: translateY(-1px);
}

.pack-modal__upload-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(138, 242, 236, 0.26);
  border-radius: 12px;
  background: rgba(138, 242, 236, 0.09);
  color: #aef8f2;
}

.pack-modal__upload-icon svg,
.pack-modal__upload-remove svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pack-modal__upload-button {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.pack-modal__upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}

.pack-modal__upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}

.pack-modal__upload-preview figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(2, 6, 14, 0.82);
}

.pack-modal__upload--has-files .pack-modal__upload-preview {
  margin-top: 10px;
}

.pack-modal__upload-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pack-modal__upload-remove {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(4, 8, 17, 0.82);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.pack-modal__upload-remove:hover {
  border-color: rgba(255, 118, 118, 0.72);
  background: rgba(125, 24, 35, 0.9);
}

.pack-modal__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}

.pack-modal__choice {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.pack-modal__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-modal__choice img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pack-modal__choice:not(:has(img)) {
  min-height: 48px;
  align-items: center;
}

.pack-modal__choice span {
  padding: 8px;
  font-size: 12px;
  text-align: center;
}

.pack-modal__choice:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(97, 214, 207, 0.16);
}

.pack-modal__check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
}

.pack-modal__check input {
  width: 16px;
  min-height: 16px;
  margin-top: 3px;
}

.pack-modal__notice {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(97, 214, 207, 0.38);
  border-radius: var(--radius);
  background: rgba(97, 214, 207, 0.13);
  color: #eefcff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.content-page {
  max-width: 900px;
  padding: 34px;
}

.tools-page .tools-content.content-page {
  width: 100%;
  max-width: none;
  padding: clamp(22px, 3vw, 36px);
}

.content-page--tools {
  width: var(--shell);
  max-width: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.content-page h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.stiksee-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 28px;
}

.legal-page {
  padding-top: 54px;
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 860px);
  gap: 24px;
  align-items: start;
}

.legal-page__nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.legal-page__nav strong {
  margin-bottom: 4px;
  color: #fff;
}

.legal-page__nav a {
  color: rgba(226, 234, 248, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.legal-page__nav a:hover,
.legal-page__nav a[aria-current="page"] {
  color: #8af2ec;
}

.legal-page__content {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.legal-page__kicker,
.legal-page__updated {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.legal-page__content h1 {
  max-width: 760px;
  margin: 8px 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.legal-page__updated {
  margin-bottom: 28px;
  color: var(--muted);
}

.legal-page__section {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page__section + .legal-page__section {
  margin-top: 22px;
}

.legal-page__section h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.legal-page__section p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.pack-single {
  padding-top: 46px;
}

.pack-single__topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
  color: #cbd6e7;
  font-size: 13px;
  font-weight: 850;
}

.pack-single__category {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 13px;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 999px;
  background: rgba(110, 231, 255, 0.1);
  color: #9deeff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

a.pack-single__category:hover {
  border-color: rgba(110, 231, 255, 0.52);
  color: #d9fbff;
}

.pack-single__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  min-width: 0;
}

.pack-single__media {
  display: block;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.pack-single__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.pack-single__media:hover img,
.pack-single__media:focus-visible img {
  transform: scale(1.025);
}

.pack-single__summary {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding-top: 10px;
}

.pack-single__summary h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.pack-single__description {
  max-width: 780px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 36, 58, 0.72), rgba(12, 19, 33, 0.72));
}

.pack-single__description p,
.pack-single__seo p,
.pack-single__seo li {
  color: #d7e0ef;
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.pack-single__description strong,
.pack-single__seo strong {
  color: #ffffff;
  font-weight: 900;
}

.pack-single__summary .btn {
  justify-self: start;
}

.pack-single__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pack-single__facts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce6f5;
  font-size: 12px;
  font-weight: 800;
}

.pack-single__seo {
  padding-top: 28px;
}

.pack-single__seo-panel {
  width: 100%;
  max-width: 1180px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.pack-single__seo-lead {
  padding: 18px 20px;
  border-left: 3px solid #6ee7ff;
  border-radius: var(--radius);
  background: rgba(110, 231, 255, 0.08);
}

.pack-single__seo h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.pack-single__wow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.pack-single__wow-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 231, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(31, 47, 76, 0.9), rgba(12, 18, 31, 0.92));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.pack-single__wow-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -50% -35%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(-8deg);
  animation: pack-wow-sweep 5.8s ease-in-out infinite;
}

.pack-single__wow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(110, 231, 255, 0.13);
  color: #9deeff;
  font-weight: 950;
}

.pack-single__wow-card h2 {
  position: relative;
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.pack-single__wow-card p {
  position: relative;
  color: #d1dbea;
  line-height: 1.65;
}

.pack-landing {
  margin-top: 34px;
}

.pack-landing__head {
  margin-bottom: 18px;
}

.pack-landing__use-grid,
.pack-landing__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pack-landing__use-card,
.pack-landing__benefits article,
.pack-landing__faq details,
.pack-landing__cta {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.pack-landing__use-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 24px;
}

.pack-landing__use-card small {
  color: #f5b8ff;
  font-weight: 950;
  text-transform: uppercase;
}

.pack-landing__use-card h3,
.pack-landing__benefits h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.pack-landing__use-card p,
.pack-landing__benefits p,
.pack-landing__faq p,
.pack-landing__cta p {
  color: #d4deed;
  line-height: 1.65;
}

.pack-landing__use-card .btn {
  align-self: end;
  justify-self: start;
}

.pack-landing__benefits article {
  padding: 24px;
}

.pack-landing__faq {
  display: grid;
  gap: 10px;
}

.pack-landing__faq details {
  padding: 0;
}

.pack-landing__faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 900;
}

.pack-landing__faq details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pack-landing__faq p {
  margin: 0;
  padding: 16px 20px 20px;
}

.pack-landing__related {
  margin-top: 0;
}

.pack-landing__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(110, 231, 255, 0.16), transparent 32%),
    radial-gradient(circle at 80% 40%, rgba(245, 184, 255, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(30, 45, 73, 0.92), rgba(11, 17, 30, 0.95));
}

.pack-landing__cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.pack-landing__cta p {
  max-width: 720px;
}

@keyframes pack-wow-sweep {
  0%,
  44% {
    transform: translateX(-55%) rotate(-8deg);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  100% {
    transform: translateX(55%) rotate(-8deg);
    opacity: 0;
  }
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  top: var(--stiksee-visual-viewport-top, 0px);
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 10020;
  display: grid;
  height: var(--stiksee-visual-viewport-height, 100vh);
  height: var(--stiksee-visual-viewport-height, 100dvh);
  place-items: center;
  padding: 22px;
}

html.auth-modal-open,
body.auth-modal-open {
  overflow: hidden;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.78);
  backdrop-filter: blur(12px);
}

.auth-modal__panel {
  position: relative;
  z-index: 1;
  width: min(410px, 100%);
  max-height: min(760px, calc(var(--stiksee-visual-viewport-height, 100vh) - 44px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 29, 48, 0.98), rgba(9, 14, 26, 0.98));
  box-shadow: var(--shadow);
  outline: none;
}

.auth-submodal[hidden] {
  display: none;
}

.auth-submodal {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  width: min(360px, calc(100% - 44px));
  max-height: calc(var(--stiksee-visual-viewport-height, 100vh) - 44px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(21, 31, 50, 0.98), rgba(8, 13, 25, 0.98));
  box-shadow: var(--shadow);
}

.auth-code-modal {
  width: min(330px, 100%);
}

.auth-submodal h2 {
  margin: 0;
  padding-right: 36px;
  font-size: 24px;
}

.auth-submodal p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.auth-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 900;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.auth-tab {
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.auth-tab.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.auth-pane {
  display: none;
  min-width: 0;
  padding-top: 18px;
}

.auth-pane.is-active {
  display: block;
}

.auth-pane h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.auth-pane p {
  color: var(--muted);
}

.auth-stack,
.auth-phone {
  display: grid;
  gap: 10px;
}

.auth-provider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
}

.auth-provider-yandex {
  background: #fc3f1d;
  color: #fff;
  box-shadow: 0 14px 30px rgba(252, 63, 29, 0.24);
}

.auth-provider-yandex span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #fc3f1d;
  font-size: 15px;
  font-weight: 950;
}

.auth-provider-google {
  background: #fff;
  color: #172033;
}

.auth-provider-google span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.auth-provider-telegram {
  background: #fff;
  color: #172033;
}

.auth-provider-telegram span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #25a3e1;
  line-height: 1;
}

.auth-provider-telegram svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.auth-phone {
  margin-top: 4px;
  padding-top: 4px;
}

.auth-phone strong {
  color: #eef5ff;
  font-size: 14px;
  font-weight: 950;
}

.auth-pane input,
.auth-submodal input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 0 14px;
}

.auth-code-modal input {
  min-height: 58px;
  text-align: center;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 8px;
}

.auth-pane input::placeholder,
.auth-submodal input::placeholder {
  color: rgba(246, 248, 255, 0.48);
}

.auth-pane input:focus,
.auth-submodal input:focus {
  border-color: rgba(97, 214, 207, 0.62);
  box-shadow: 0 0 0 3px rgba(97, 214, 207, 0.12);
}

.auth-phone input[type="tel"] {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.auth-consents {
  display: grid;
  gap: 8px;
  margin: 2px 0 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.auth-email-modal .auth-consents {
  margin-top: 2px;
}

.auth-consents[hidden] {
  display: none;
}

.auth-consent {
  display: grid;
  min-height: 44px;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(231, 239, 252, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.auth-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #61d6cf;
}

.auth-consent a {
  color: #8af2ec;
  text-decoration: none;
  font-weight: 950;
}

.auth-consent a:hover {
  color: #fff;
}

.auth-submit {
  width: 100%;
}

.auth-switch {
  display: table;
  min-height: 44px;
  max-width: 100%;
  margin: 6px auto 0;
  border: 0;
  background: transparent;
  color: #8af2ec;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.auth-email-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  border: 1px solid rgba(138, 242, 236, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(97, 214, 207, 0.18), rgba(124, 106, 255, 0.18));
  color: #f6fbff;
  box-shadow: 0 12px 28px rgba(97, 214, 207, 0.12);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.auth-email-toggle:hover,
.auth-email-toggle:focus-visible {
  border-color: rgba(138, 242, 236, 0.72);
  background: linear-gradient(135deg, rgba(97, 214, 207, 0.28), rgba(124, 106, 255, 0.26));
  color: #fff;
  box-shadow: 0 16px 34px rgba(97, 214, 207, 0.18);
}

.auth-email-toggle:focus-visible {
  outline: 2px solid rgba(138, 242, 236, 0.58);
  outline-offset: 3px;
}

.auth-status {
  margin: 0;
  color: #8af2ec;
  font-size: 13px;
  font-weight: 800;
}

.auth-status.is-error {
  color: #ff9da2;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 10px 18px;
  padding-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 28px;
  color: rgba(226, 234, 248, 0.72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-tools {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-tools__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}

.footer-tools__head strong {
  color: #ffffff;
  font-size: 18px;
}

.footer-tools__head span {
  color: var(--muted);
  font-size: 13px;
}

.footer-tools__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.footer-tools__group {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-tools__group-title {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.footer-tools__group a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-tools__group a:hover {
  color: var(--accent);
}

@media (min-width: 1061px) {
  .site-header .header-inner {
    width: min(1480px, calc(100vw - 32px));
  }
}

@media (min-width: 1061px) and (max-width: 1350px) {
  .main-nav {
    gap: 10px;
  }

  .header-actions .btn[data-auth-open="register"] {
    display: none;
  }
}

@media (max-width: 1060px) {
  .header-inner {
    position: relative;
    grid-template-areas: "brand actions toggle";
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .menu-toggle {
    position: relative;
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
    font-size: 0;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  }

  .menu-toggle::before {
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  }

  .menu-toggle::after {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    box-shadow: none;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - 84px - env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 84px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #080d1a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav .nav-dropdown__trigger {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible,
  .main-nav .nav-dropdown__trigger:hover,
  .main-nav .nav-dropdown__trigger:focus-visible {
    background: rgba(255, 255, 255, 0.075);
  }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .main-nav .nav-dropdown__trigger {
    justify-content: flex-start;
  }

  .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown--mega .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown::after {
    content: none;
  }

  .header-actions {
    grid-area: actions;
    justify-content: center;
    gap: 8px;
    margin: 0;
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions .btn[data-auth-open="login"] {
    display: inline-flex;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 13px;
  }

  .language-switcher {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .language-switcher::after {
    top: 100%;
  }

  .language-switcher__menu {
    top: calc(100% + 8px);
    right: auto;
    left: 0;
    width: min(180px, calc(100vw - 24px - var(--safe-inline) - var(--safe-inline)));
    min-width: 0;
  }

  .language-switcher__current {
    min-height: 44px;
    border-radius: 12px;
  }

  .hero-grid,
  .split-panel,
  .pack-single__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pack-single__wow {
    grid-template-columns: minmax(0, 1fr);
  }

  .pack-landing__use-grid,
  .pack-landing__benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .pack-landing__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 620px;
  }

  .card-grid,
  .pricing-grid,
  .tools-grid,
  .footer-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools-hero--single {
    grid-template-columns: 1fr;
  }

  .tools-discovery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-side {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .contact-card {
    height: auto;
    box-sizing: border-box;
  }

  .legal-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-page__nav {
    position: static;
  }

  .legal-page__grid > *,
  .legal-page__nav > *,
  .legal-page__content > * {
    min-width: 0;
    max-width: 100%;
  }

  .legal-page__nav a,
  .legal-page__content {
    overflow-wrap: anywhere;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(calc(100vw - 24px - var(--safe-inline) - var(--safe-inline)), 1180px);
  }

  .btn {
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .hero {
    padding: 24px 0 58px;
  }

  .external-page {
    display: flex;
    flex-direction: column;
  }

  .external-mobile-breadcrumbs {
    display: block;
    order: 0;
    padding: 8px 0 6px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 15, 28, 0.92);
  }

  .external-mobile-breadcrumbs .breadcrumbs {
    margin-bottom: 0;
  }

  .external-page > .external-hero .breadcrumbs {
    display: none;
  }

  .external-page > .external-listing {
    order: 1;
    padding-top: 8px;
    padding-bottom: 24px;
  }

  .external-page > .external-hero {
    order: 2;
    min-height: 0;
    margin-top: 0;
    padding: 30px 0 36px;
  }

  .hero-copy > .kicker {
    display: none;
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .home-subcategory-group {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-subcategory-group + .home-subcategory-group {
    padding-top: 0;
  }

  .home-subcategory-list {
    gap: 28px;
  }

  .home-subcategory-row {
    padding-bottom: 28px;
  }

  .home-subcategory-row--mobile-only {
    display: block;
  }

  .home-subcategory-row__head {
    align-items: flex-start;
    margin-bottom: 13px;
  }

  .home-subcategory-row__head h3 {
    font-size: 20px;
  }

  .home-subcategory-row__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .home-subcategory-card {
    aspect-ratio: 2 / 3;
    border-radius: 9px;
  }

  .home-subcategory-card:nth-child(n + 7) {
    display: none;
  }

  .home-subcategory-card > span {
    right: 7px;
    bottom: 8px;
    left: 7px;
    font-size: 11px;
    line-height: 1.2;
  }

  .home-subcategory-row__actions {
    margin-top: 10px;
  }

  .hero-actions .btn,
  .cta-inner .btn,
  .pack-single__summary .btn {
    width: 100%;
  }

  .pack-single {
    padding-top: 28px;
  }

  .pack-single__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .pack-single__layout > *,
  .pack-single__media,
  .pack-single__summary,
  .pack-single__description,
  .pack-runtime-specs {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pack-single__summary h1 {
    font-size: clamp(26px, 9vw, 36px);
    line-height: 1.1;
  }

  .pack-single__description,
  .pack-single__seo-panel,
  .pack-single__wow-card,
  .pack-landing__use-card,
  .pack-landing__benefits article,
  .pack-landing__faq summary,
  .pack-landing__cta {
    padding: 18px;
  }

  .pack-single__facts {
    display: grid;
  }

  .pack-landing__use-card .btn,
  .pack-landing__cta .btn {
    width: 100%;
  }

  .stats-row,
  .card-grid,
  .pricing-grid,
  .contact-grid,
  .tools-grid,
  .footer-tools__grid,
  .nav-dropdown--mega .nav-dropdown__menu {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-intro,
  .pricing-how,
  .contact-side,
  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-intro {
    align-items: start;
    gap: 14px;
  }

  .pricing-how {
    gap: 1px;
  }

  .price-card {
    min-height: 440px;
    padding: 22px;
  }

  .contact-card,
  .contact-form-card {
    padding: 22px;
  }

  .contact-form__wide {
    grid-column: auto;
  }

  .contact-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__submit .btn {
    width: 100%;
  }

  .external-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 8px;
  }

  .external-card {
    border-radius: 9px;
  }

  .external-card img {
    aspect-ratio: 2 / 3;
  }

  .external-card__body {
    gap: 0;
    padding: 8px 7px 9px;
  }

  .external-card__body h3 {
    display: -webkit-box;
    overflow: hidden;
    min-width: 0;
    font-size: 11px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .external-card__body h3 a {
    display: block;
    min-height: 0;
  }

  .external-card__body > small,
  .external-card__body > span,
  .external-card__body > em,
  .external-card__body > .pack-runtime-specs {
    display: none;
  }

  .tools-hero--single {
    padding: 18px;
  }

  .section.section--free-tools {
    padding-top: 14px;
  }

  .tools-page--single {
    gap: 20px;
  }

  .tools-discovery {
    gap: 20px;
    padding: 2px 0 8px;
  }

  .tools-discovery__offer {
    gap: 6px;
  }

  .tools-discovery__badge {
    padding: 5px 8px;
    font-size: 10px;
  }

  .tools-discovery__offer h2 {
    font-size: 25px;
    line-height: 1.08;
  }

  .tools-discovery__offer p {
    font-size: 13px;
    line-height: 1.4;
  }

  .tools-discovery__groups {
    gap: 24px;
  }

  .tools-discovery__group {
    gap: 10px;
    padding-top: 13px;
  }

  .tools-discovery__group-head {
    gap: 10px;
    align-items: center;
  }

  .tools-discovery__group-head > div > span {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .tools-discovery__group-head h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .tools-discovery__group-head > a {
    min-height: 32px;
    font-size: 10px;
    text-align: right;
  }

  .tools-discovery__grid {
    gap: 6px;
  }

  .tools-discovery-card {
    gap: 5px;
    border-radius: 7px;
  }

  .tools-discovery-card img {
    aspect-ratio: 2 / 3;
  }

  .tools-discovery-card strong {
    min-height: 27px;
    margin: 0 6px 7px;
    font-size: 10.5px;
    line-height: 1.28;
  }

  .tools-related .tool-card {
    min-height: 88px;
    padding: 14px 16px;
  }

  .tools-content-visuals {
    gap: 7px;
    margin-bottom: 20px;
  }

  .tools-content-visuals img {
    height: clamp(82px, 25vw, 108px);
    border-radius: 10px;
  }

  .tools-content-visuals--tool-cover img {
    height: auto;
  }

  .content-page--tools {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .legal-page {
    padding-top: 28px;
  }

  .legal-page__content {
    padding: 20px;
  }

  .pack-modal {
    place-items: end center;
    padding: 0;
  }

  .pack-modal__panel,
  .pack-modal--catalog .pack-modal__panel {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .pack-modal__close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    float: none;
    margin: 0;
  }

  .pack-modal__media {
    height: min(52vh, 420px);
    height: min(52dvh, 420px);
    padding:
      max(8px, env(safe-area-inset-top, 0px))
      max(12px, env(safe-area-inset-right, 0px))
      0
      max(12px, env(safe-area-inset-left, 0px));
  }

  .pack-modal__catalog-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
  }

  .pack-modal__content,
  .pack-modal--catalog .pack-modal__content {
    overflow: visible;
    padding:
      16px
      max(16px, env(safe-area-inset-right, 0px))
      calc(7rem + env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  .pack-modal__content .kicker {
    width: fit-content;
    max-width: calc(100% - 52px);
    justify-self: start;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .pack-modal__content h2 {
    margin: 0 42px 8px 0;
    font-size: 22px;
    line-height: 1.12;
  }

  .pack-modal__fields {
    gap: 12px;
    margin: 16px 0;
  }

  .pack-modal__upload--large {
    padding: 10px;
  }

  .pack-modal--catalog .pack-modal__upload {
    padding: 8px;
  }

  .pack-modal--catalog .pack-modal__upload-picker {
    height: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 8px;
    padding: 8px 4px;
    border: 0;
  }

  .pack-modal--catalog .pack-modal__upload-button {
    font-size: 13px !important;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pack-modal__content > .btn {
    width: 100%;
    margin-top: 14px;
  }

  .auth-modal {
    place-items: end stretch;
    padding:
      max(8px, env(safe-area-inset-top, 0px))
      0
      0;
  }

  .auth-modal__panel {
    width: 100%;
    max-width: none;
    max-height: calc(var(--stiksee-visual-viewport-height, 100vh) - max(8px, env(safe-area-inset-top, 0px)));
    padding:
      18px
      max(16px, env(safe-area-inset-right, 0px))
      calc(20px + env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .auth-modal__brand {
    margin-bottom: 14px;
    padding-right: 52px;
  }

  .auth-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-tab {
    min-height: 44px;
    padding: 6px 8px;
    font-size: 14px;
  }

  .auth-pane {
    padding-top: 14px;
  }

  .auth-pane h2 {
    margin: 0 48px 14px 0;
    font-size: 24px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .auth-submodal {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    max-height: calc(var(--stiksee-visual-viewport-height, 100vh) - max(8px, env(safe-area-inset-top, 0px)));
    padding:
      20px
      max(16px, env(safe-area-inset-right, 0px))
      calc(20px + env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .auth-submodal h2 {
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .auth-modal__close {
    top: 10px;
    right: max(10px, env(safe-area-inset-right, 0px));
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-motion {
    width: min(360px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .motion-card-1 {
    right: 0;
    width: 235px;
    height: 330px;
  }

  .motion-card-2 {
    top: 86px;
    width: 165px;
    height: 230px;
  }

  .motion-card-3 {
    top: 298px;
    width: 190px;
    height: 255px;
  }

  .motion-card-4 {
    top: 365px;
    left: 20px;
    width: 150px;
    height: 200px;
  }

  .section {
    padding: 58px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 220px;
  }

  .page-hero {
    min-height: 350px;
    padding: 76px 0 44px;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 18px;
  }

  .header-actions .btn[data-auth-open="login"] {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .phone-pill {
    left: 32px;
    right: 20px;
    bottom: calc(54px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .pack-single__wow-card::after {
    animation: none;
    opacity: 0;
  }
}

.analytics-consent {
  position: fixed;
  left: max(18px, env(safe-area-inset-left, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(430px, calc(100vw - 36px));
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(9, 15, 29, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.analytics-consent p a {
  color: #8af2ec;
}

.analytics-consent__actions {
  flex: 0 0 auto;
}

.analytics-consent__actions .btn {
  min-height: 44px;
  padding: 7px 13px;
  font-size: 12px;
}

.seo-related-links {
  margin: 34px 0;
  padding: 22px;
  border: 1px solid rgba(126, 238, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.seo-related-links > strong {
  display: block;
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}

.seo-related-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.seo-related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(138, 242, 236, 0.22);
  border-radius: 999px;
  background: rgba(138, 242, 236, 0.06);
  color: #dffdfb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.seo-related-links a:hover {
  border-color: rgba(138, 242, 236, 0.55);
  background: rgba(138, 242, 236, 0.13);
}

.stiksee-seo-growth {
  width: min(900px, calc(100% - 32px));
  margin: 46px auto 0;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(138, 242, 236, 0.14);
  background:
    radial-gradient(circle at 100% 0, rgba(97, 214, 207, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.contact-layout > .stiksee-seo-growth {
  grid-column: 1 / -1;
  width: 100%;
}

.stiksee-seo-growth__content > :first-child,
.stiksee-seo-growth__faq > :first-child {
  margin-top: 0;
}

.stiksee-seo-growth__content > :last-child,
.stiksee-seo-growth__faq > :last-child {
  margin-bottom: 0;
}

.stiksee-seo-growth h2 {
  margin-top: 30px;
  font-size: clamp(24px, 3vw, 34px);
}

.stiksee-seo-growth h3 {
  margin-top: 22px;
  font-size: clamp(19px, 2vw, 24px);
}

.stiksee-seo-growth__faq {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.stiksee-seo-growth__faq details,
.faq-list .stiksee-seo-growth__faq details {
  padding: 16px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stiksee-seo-growth__faq details:first-of-type {
  border-top: 0;
}

.stiksee-seo-growth__faq summary {
  cursor: pointer;
  color: #f4f8ff;
  font-size: 17px;
  font-weight: 850;
}

.stiksee-seo-growth__faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.stiksee-seo-growth > .seo-related-links {
  margin: 30px 0 0;
  padding: 26px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
}

.stiksee-seo-growth + .site-footer {
  margin-top: 46px;
}

@media (max-width: 640px) {
  .stiksee-editorial-photo {
    width: 100%;
    margin: 26px 0;
  }

  .stiksee-editorial-photo > a,
  .stiksee-editorial-photo img {
    border-radius: 14px;
  }

  .stiksee-image-lightbox {
    padding:
      max(12px, env(safe-area-inset-top, 0px))
      max(12px, env(safe-area-inset-right, 0px))
      max(12px, env(safe-area-inset-bottom, 0px))
      max(12px, env(safe-area-inset-left, 0px));
  }

  .stiksee-image-lightbox__close {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
  }

  .analytics-consent {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: max(10px, env(safe-area-inset-left, 0px));
    gap: 8px;
    width: auto;
    padding: 9px 9px 9px 12px;
  }

  .analytics-consent__actions .btn {
    min-height: 44px;
  }

  .stiksee-seo-growth {
    width: calc(100% - 20px);
    margin-top: 32px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .stiksee-seo-growth__faq {
    margin-top: 24px;
    padding-top: 22px;
  }

  .stiksee-seo-growth + .site-footer {
    margin-top: 32px;
  }
}
