

:root {
  --color-bg: #090d16;
  --color-bg-alt: #0d1424;
  --color-surface: #131c31;
  --color-surface-hover: #192540;
  --color-surface-card: #111a2e;
  --color-border: #1e2d4d;
  --color-border-focus: #38bdf8;

  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  --color-heading: #f8fafc;

  --color-primary: #0284c7;
  --color-primary-hover: #0369a1;
  --color-primary-light: #38bdf8;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-success: #10b981;
  --color-success-bg: rgba(16, 185, 129, 0.12);
  --color-danger: #f43f5e;
  --color-danger-bg: rgba(244, 63, 94, 0.12);

  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);

  --header-height: 76px;
  --transition: all 0.22s ease-in-out;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #7dd3fc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.95rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}



.site-header { position: sticky; top: 0; z-index: 100; background-color: #0b1120; border-bottom: 1px solid var(--color-border); height: var(--header-height); }

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid #38bdf8;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: none;
}

.brand__logo svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand__name span {
  color: var(--color-primary-light);
}

.brand__tagline {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
}

.main-nav__link {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav__link:hover {
  color: #38bdf8;
  background-color: rgba(56, 189, 248, 0.08);
}

.main-nav__link.is-active {
  color: #38bdf8;
  background-color: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
}

.header-cta {
  margin-left: 0.35rem;
}

.burger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  color: var(--color-text);
  cursor: pointer;
}

.burger-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  line-height: 1.3;
  position: relative;
  overflow: clip;
}

.jp-hidlink {
  position: absolute;
  z-index: -5;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--go {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.28);
  font-weight: 700;
  border: none;
}

.btn--go:hover {
  background: var(--color-primary-hover);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 132, 199, 0.36);
}

.js-more.btn--go {
  background: #f59e0b;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(84, 32, 4, 0.35);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.32);
  animation: jp-cta-pulse 2.8s ease infinite;
}

.js-more.btn--go svg {
  filter: drop-shadow(0 1px 2px rgba(84, 32, 4, 0.35));
}

.js-more.btn--go:hover {
  background: #d97706;
  animation-play-state: paused;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
  color: #ffffff;
}

@keyframes jp-cta-pulse {

  0%,
  100% {
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.32), 0 0 0 0 rgba(245, 158, 11, 0.5);
  }

  60% {
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.32), 0 0 0 11px rgba(245, 158, 11, 0);
  }
}

.btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}

.btn--secondary {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  background-color: var(--color-surface-hover);
  color: var(--color-heading);
  border-color: #334155;
}

.btn--accent {
  background-color: var(--color-accent);
  color: #0f172a;
  border-color: #fcd34d;
  font-weight: 700;
}

.btn--accent:hover {
  background-color: var(--color-accent-hover);
  color: #0f172a;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary-light);
  border-color: var(--color-border);
}

.btn--outline:hover {
  background-color: var(--color-surface);
  border-color: var(--color-primary-light);
}

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.badge--accent {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}

.badge--success {
  background-color: var(--color-success-bg);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.badge--primary {
  background-color: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}



.hero {
  padding: 1.75rem 0 1.25rem;
  background: #090d16;
  border-bottom: 1px solid var(--color-border);
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 0.6rem;
}

.hero__title {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0.65rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.375rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.stat-item__num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.1;
  margin-bottom: 0.1rem;
}

.stat-item__num span {
  color: var(--color-primary-light);
}

.stat-item__label {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}



.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-head {
  margin-bottom: 2.5rem;
  text-align: left;
}

.section-head--center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-head__badge {
  margin-bottom: 0.75rem;
}

.section-head__title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.section-head__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.studios-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.studio-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: grid;
  grid-template-columns: 70px 1.3fr 1.6fr 200px;
  gap: 1.25rem;
  align-items: center;
}

.studio-card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.studio-card--top {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--color-surface-card);
}

.studio-card__rank-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.studio-card__rank {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-heading);
  width: 40px;
  height: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.studio-card--top .studio-card__rank {
  background-color: rgba(245, 158, 11, 0.2);
  border-color: var(--color-accent);
  color: #fbbf24;
}

.studio-card__logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-card__logo-wrapper svg {
  width: 100%;
  height: 100%;
}

.studio-card__identity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.studio-card__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.studio-card__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.studio-card__location svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #475569;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.stars--active {
  color: var(--color-accent);
}

.rating-box__score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
}

.rating-box__votes {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.studio-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.feature-pill {
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

.studio-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.studio-card__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.studio-card__bullet svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-success);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.studio-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.studio-card__meta-note {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}



.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.data-table th {
  background-color: var(--color-surface);
  color: var(--color-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.data-table .highlight-col {
  font-weight: 700;
  color: var(--color-heading);
}



.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card__icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  margin-bottom: 1.25rem;
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.info-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  flex: 1 0 auto;
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.step-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.step-card__number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-light);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.step-card__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}



.calc-wrapper {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);

  @media (max-width: 768px) {
    padding: 1rem;
  }
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-group__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.calc-option {
  position: relative;
}

.calc-option input[type="radio"],
.calc-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.calc-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  min-height: 80px;
}

.calc-option input:checked+label {
  background-color: rgba(2, 132, 199, 0.15);
  border-color: var(--color-primary-light);
  color: var(--color-heading);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.calc-result-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.calc-result-box__title {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.calc-result-box__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.calc-result-box__timeline {
  font-size: 0.95rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
}

.calc-breakdown {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  text-align: left;
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.calc-breakdown li span:last-child {
  color: var(--color-heading);
  font-weight: 600;
}



.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-heading);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: 0.35rem;
}

.form-error {
  font-size: 0.78rem;
  color: var(--color-danger);
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--color-danger);
}

.form-group.has-error .form-error {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: slideUp 0.3s ease forwards;
}

.form-feedback svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.form-feedback--success {
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-feedback--error {
  background-color: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}



.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-right: 0.25rem;
}

.filter-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--color-heading);
  border-color: #475569;
}

.filter-btn.is-active {
  background-color: var(--color-primary);
  color: #fff;
  border-color: #38bdf8;
}



.review-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  gap: 1.25rem;
}

.review-card__studio-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.review-card__logo-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__logo-box svg {
  width: 36px;
  height: 36px;
}

.review-card__title-box {
  min-width: 0;
}

.review-card__name {
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.review-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.4;
}

.review-card__score-box {
  text-align: right;
  flex-shrink: 0;
}

.review-card__score-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.review-card__meta-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.pros-box,
.cons-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.pros-box h4 {
  color: var(--color-success);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.cons-box h4 {
  color: var(--color-danger);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-box li,
.cons-box li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.pros-box li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cons-box li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.metric-bar-item__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.35rem;
}

.metric-bar-item__track {
  height: 8px;
  background-color: #1e293b;
  border-radius: 999px;
  overflow: hidden;
}

.metric-bar-item__fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 999px;
}



.legal-content {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.legal-content .meta-date {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 2rem;
}



.site-footer {
  background-color: #060910;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col__title {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.6rem;
}

.footer-nav a {
  color: var(--color-text-muted);
}

.footer-nav a:hover {
  color: var(--color-primary-light);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.social-link svg [fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.footer-bottom__disclaimer {
  max-width: 700px;
  line-height: 1.5;
}



.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background-color: var(--color-surface-card);
  border: 1px solid #38bdf8;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.cookie-banner__header svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary-light);
  stroke-width: 2;
  fill: none;
}

.cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}


.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal-overlay.is-visible {
  display: flex;
}

.cookie-modal {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.cookie-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}



.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 15, 0.96);
  
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate-overlay.is-hidden {
  display: none;
}

.age-gate-modal {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.25s ease-out;
}

.age-gate__badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.age-gate__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.age-gate__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate__warning {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: 1rem;
}



.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
  animation: slideInRight 0.25s ease-out;
}

.toast svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-success);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.lead-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lead-modal-overlay.is-visible {
  display: flex;
}

.lead-modal {
  background-color: var(--color-surface-card);
  border: 1px solid #38bdf8;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.lead-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-success-bg);
  border: 2px solid var(--color-success);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.lead-modal__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}



@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}




@media (max-width: 1120px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0.5rem 0;
  }

  .burger-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .main-nav__link {
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
  }

  .main-nav__link.is-active {
    color: #38bdf8;
    background-color: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.4);
    font-weight: 600;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 0.65rem;
  }

  .studio-card {
    grid-template-columns: 70px 1.3fr 1.4fr 190px;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

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

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

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


@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .main-nav {
    padding: 0.85rem 1rem;
  }

  .main-nav__list {
    gap: 0.25rem;
  }

  .main-nav__link {
    padding: 0.45rem 0.75rem;
    font-size: 0.84rem;
  }

  
  .hero {
    padding: 0.75rem 0 0.4rem;
    background: var(--color-bg);
  }

  .hero .hero-split {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero .visual-banner {
    display: none;
    
  }

  .hero__kicker {
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
  }

  .hero__title {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
  }

  .hero__subtitle {
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero .btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.76rem;
  }

  .hero__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.25rem !important;
    margin-top: 0.45rem !important;
    padding: 0.35rem 0.5rem !important;
    background-color: #111a2e !important;
    border: 1px solid #1e2d4d !important;
    border-radius: 8px !important;
  }

  .hero__stats .stat-item {
    text-align: center !important;
    padding: 0.1rem 0.2rem !important;
    position: relative !important;
  }

  .hero__stats .stat-item:not(:last-child)::after {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    right: -0.125rem !important;
    top: 15% !important;
    height: 70% !important;
    width: 1px !important;
    background-color: #1e2d4d !important;
  }

  .hero__stats .stat-item__num {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
  }

  .hero__stats .stat-item__num span {
    font-size: 0.75rem !important;
    color: #38bdf8 !important;
  }

  .hero__stats .stat-item__label {
    font-size: 0.58rem !important;
    color: #94a3b8 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    margin-top: 0.1rem !important;
  }

  
  .section {
    padding: 0.65rem 0 1.25rem !important;
  }

  .section-head {
    margin-bottom: 0.5rem !important;
  }

  .section-head__badge {
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

  .section-head__title {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
  }

  .section-head__desc {
    display: none;
    
  }

  
  .studios-list {
    gap: 0.55rem;
  }

  .studio-card {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    grid-template-areas: "rank info action";
    gap: 0.5rem 0.65rem;
    padding: 0.65rem 0.85rem;
    align-items: center;
    border-radius: var(--radius-md);
  }

  .studio-card__rank-box {
    grid-area: rank;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
  }

  .studio-card__rank {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 0;
  }

  .studio-card__logo-wrapper {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .studio-card__identity {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
  }

  .studio-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .studio-card__location {
    font-size: 0.72rem;
    color: var(--color-text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    gap: 0.25rem;
  }

  .studio-card__location svg {
    width: 12px;
    height: 12px;
  }

  .rating-box {
    gap: 0.3rem;
    margin-top: 0;
  }

  .rating-box .stars {
    display: none;
    
  }

  .rating-box__score {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent);
  }

  .rating-box__votes {
    display: none;
    
  }

  .studio-card__features {
    display: none;
    
  }

  .studio-card__actions {
    grid-area: action;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

  .studio-card__actions .btn--outline,
  .studio-card__meta-note {
    display: none;
    
  }

  .studio-card__actions .js-more.btn--go {
    padding: 7px 12px;
    font-size: 0.78rem;
    border-radius: 8px;
    white-space: nowrap;
    gap: 4px;
  }

  .studio-card__actions .js-more.btn--go svg {
    width: 13px;
    height: 13px;
  }

  
  .filter-bar {
    padding: 0.5rem 0.75rem;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    border-radius: var(--radius-md);
  }

  .filter-group {
    gap: 0.3rem;
    overflow-x: auto;
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-label {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .filter-btn {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  
  .review-card {
    padding: 1.15rem 1rem !important;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
  }

  .review-card__header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .review-card__studio-info {
    align-items: center;
    gap: 0.75rem;
  }

  .review-card__logo-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .review-card__logo-box svg {
    width: 28px;
    height: 28px;
  }

  .review-card__name {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
  }

  .review-card__meta {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .review-card__score-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.75rem;
  }

  .review-card__score-val {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .review-card__score-box .badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  
  .review-pros-cons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.85rem;
  }

  .pros-box,
  .cons-box {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .pros-box h4,
  .cons-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .pros-box li,
  .cons-box li {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0.35rem;
  }

  .metrics-list {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
    border-radius: var(--radius-sm);
  }

  .metric-bar-item__label {
    font-size: 0.78rem;
  }

  .metric-bar-item__track {
    height: 6px;
  }

  
  .step-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-card__number {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}


.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: center;
}

.visual-banner {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.visual-banner:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(56, 189, 248, 0.12);
}

.visual-banner__img {
  width: 100%;
  height: auto;
  max-height: 220px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.visual-banner__caption {
  padding: 0.5rem 0.85rem;
  background: #0b1120;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.visual-banner__caption svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-primary);
  flex-shrink: 0;
}