/* ============================================
   BAYKA OTO KUAFÖR — Design System
   Logo-driven: Electric Blue · Chrome · Deep Black
   ============================================ */

:root {
  --bg-deep: #050608;
  --bg-base: #080b10;
  --bg-panel: #0c1119;
  --bg-elevated: #121a26;
  --bg-soft: #172131;

  --blue: #1a7cff;
  --blue-bright: #3d9bff;
  --blue-deep: #0d4fad;
  --blue-glow: rgba(26, 124, 255, 0.45);
  --blue-soft: rgba(26, 124, 255, 0.12);

  --chrome: #c8ced8;
  --chrome-bright: #e8ecf2;
  --steel: #8a93a3;
  --fog: #b7bfcb;
  --white: #f4f7fb;

  --line: rgba(200, 206, 216, 0.12);
  --line-strong: rgba(200, 206, 216, 0.22);
  --success: #3d8b6e;
  --danger: #b54a4a;

  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 28px rgba(0, 0, 0, 0.4);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-blue: 0 10px 40px rgba(26, 124, 255, 0.28);

  --container: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fog);
  background: var(--bg-deep) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Bootstrap theme bleed kontrolü */
.card,
.card-body,
.card-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.btn:focus,
.btn-bayka:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

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

.container-bayka {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--space-9) 0;
}

.section--tight {
  padding: var(--space-7) 0;
}

.section--flush {
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.lead {
  font-size: 1.125rem;
  color: var(--chrome);
  max-width: 38rem;
}

.text-muted {
  color: var(--steel);
}

/* ---------- Typography scale ---------- */
.display-xl {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.display-lg {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.display-md {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.display-sm {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.small-text {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--steel);
}

/* ---------- Buttons ---------- */
.btn-bayka {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-bayka:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-bayka:active {
  transform: translateY(0);
}

.btn-bayka--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-bayka--primary:hover {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  color: var(--white);
}

.btn-bayka--secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--chrome-bright);
}

.btn-bayka--secondary:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue-soft);
}

.btn-bayka--ghost {
  background: transparent;
  color: var(--chrome-bright);
  padding-inline: 0.25rem;
  min-height: auto;
}

.btn-bayka--ghost:hover {
  color: var(--blue-bright);
}

.btn-bayka--ghost i {
  transition: transform 0.25s var(--ease);
}

.btn-bayka--ghost:hover i {
  transform: translateX(4px);
}

.btn-group-bayka {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

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

.nav-main > a,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--chrome);
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-main > a:hover,
.nav-main > a.is-active,
.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  padding: 0.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--fog);
}

.nav-dropdown__menu a:hover {
  background: var(--blue-soft);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-drawer {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ---------- Hero / Marka Sahnesi ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.55) 48%, rgba(5, 6, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.35) 0%, rgba(5, 6, 8, 0.2) 40%, rgba(5, 6, 8, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__content .lead {
  margin: 1.25rem 0 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
}

.hero__meta-item span {
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.04em;
}

/* ---------- Finish Vaadi ---------- */
.promise {
  background: var(--bg-base);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
}

.promise__triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.promise__item {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.promise__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.promise__item span {
  font-size: 0.875rem;
  color: var(--steel);
}

.promise__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.promise__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
}

/* ---------- Capabilities ---------- */
.capabilities {
  background: var(--bg-deep);
}

.cap-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.cap-row:first-of-type {
  border-top: 1px solid var(--line);
}

.cap-row:hover {
  background: linear-gradient(90deg, var(--blue-soft), transparent);
}

.cap-row__index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
}

.cap-row__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cap-row__desc {
  color: var(--steel);
  font-size: 0.95rem;
  max-width: 42rem;
  margin: 0;
}

.cap-row__link {
  color: var(--chrome);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.cap-row:hover .cap-row__link {
  color: var(--blue-bright);
}

/* ---------- Profiles ---------- */
.profiles {
  background: var(--bg-panel);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

.profile-panel {
  background: var(--bg-elevated);
  padding: 2.25rem 1.75rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}

.profile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--blue-soft), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.profile-panel:hover::before {
  opacity: 1;
}

.profile-panel:hover {
  background: var(--bg-soft);
}

.profile-panel > * {
  position: relative;
  z-index: 1;
}

.profile-panel__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.85rem;
}

.profile-panel h3 {
  margin-bottom: 0.75rem;
}

.profile-panel p {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ---------- Difference split ---------- */
.diff {
  background: var(--bg-deep);
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.diff__list {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.diff__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.diff__num {
  font-family: var(--font-display);
  color: var(--blue-bright);
  font-size: 1rem;
  padding-top: 0.15rem;
}

.diff__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.diff__item p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.diff__visual {
  position: relative;
  min-height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.diff__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.diff__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 1rem 1.25rem;
  background: rgba(5, 6, 8, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  max-width: 260px;
}

.diff__badge strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.diff__badge span {
  font-size: 0.85rem;
  color: var(--steel);
}

/* ---------- Process ---------- */
.process {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
}

.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process__track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.45;
}

.process__step {
  padding: 0 1.25rem;
  position: relative;
}

.process__step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: var(--bg-deep);
  color: var(--blue-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.process__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  color: var(--steel);
  font-size: 0.92rem;
  margin: 0;
}

.process__cta {
  margin-top: 3rem;
}

/* ---------- Results / before-after ---------- */
.results {
  background: var(--bg-base);
}

.results__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 420px;
  border: 1px solid var(--line);
  user-select: none;
  touch-action: none;
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--chrome-bright);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.ba-slider__handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-2);
}

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 4;
  padding: 0.35rem 0.7rem;
  background: rgba(5, 6, 8, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
}

.ba-label--before {
  left: 1rem;
}

.ba-label--after {
  right: 1rem;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-card {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  flex: 1;
}

.quote-card p {
  color: var(--chrome);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-card strong {
  color: var(--white);
  font-size: 0.9rem;
}

.quote-card span {
  color: var(--steel);
  font-size: 0.8rem;
}

/* ---------- PPF Types (homepage) ---------- */
.ppf-types {
  background: var(--bg-deep);
}

.ppf-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.ppf-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  min-height: 460px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ppf-type-card:hover {
  border-color: rgba(26, 124, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.ppf-type-card--featured {
  border-color: rgba(26, 124, 255, 0.5);
  background: linear-gradient(180deg, #152238 0%, var(--bg-elevated) 55%);
}

.ppf-type-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(26, 124, 255, 0.4);
  padding: 0.3rem 0.55rem;
  border-radius: var(--r-sm);
  font-weight: 600;
}

.ppf-type-card__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.ppf-type-card__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.ppf-type-card__desc {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.ppf-type-card__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--chrome-bright);
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.ppf-type-card__list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.ppf-type-card__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--fog);
}

.ppf-type-card__list i {
  color: var(--blue-bright);
  margin-top: 0.15rem;
}

.ppf-type-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ppf-types__grid--films {
  grid-template-columns: repeat(3, 1fr);
}

.ppf-film-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.4rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  min-height: 320px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ppf-film-card:hover {
  border-color: rgba(26, 124, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.ppf-film-card--featured {
  border-color: rgba(26, 124, 255, 0.5);
  background: linear-gradient(180deg, #152238 0%, var(--bg-elevated) 60%);
}

.ppf-film-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(26, 124, 255, 0.4);
  padding: 0.3rem 0.55rem;
  border-radius: var(--r-sm);
  font-weight: 600;
}

.ppf-film-card__badge--muted {
  color: var(--chrome);
  border-color: var(--line-strong);
}

.ppf-film-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 0.65rem;
}

.ppf-film-card__desc {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex: 1;
}

.ppf-film-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ppf-film-card__specs span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.25rem;
}

.ppf-film-card__specs strong {
  font-size: 0.85rem;
  color: var(--chrome-bright);
  font-weight: 600;
  line-height: 1.3;
}

.ppf-film-card .btn-bayka {
  width: 100%;
}

.ppf-types__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.package-card {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.package-card:hover {
  border-color: rgba(26, 124, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.package-card--featured {
  border-color: rgba(26, 124, 255, 0.45);
  background: linear-gradient(180deg, #152238 0%, var(--bg-elevated) 100%);
}

.package-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(26, 124, 255, 0.4);
  padding: 0.3rem 0.55rem;
  border-radius: var(--r-sm);
}

.package-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
}

.package-card__desc {
  color: var(--steel);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.package-card__list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}

.package-card__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--fog);
}

.package-card__list i {
  color: var(--blue-bright);
  margin-top: 0.15rem;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

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

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.trust-item i {
  color: var(--blue-bright);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-item span,
.trust-item a {
  color: var(--steel);
  font-size: 0.85rem;
}

.trust-item a:hover {
  color: var(--blue-bright);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: var(--space-9) 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(8, 14, 28, 0.88));
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cta-band .lead {
  margin: 1rem 0 1.5rem;
}

/* ---------- Forms ---------- */
.form-bayka {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--chrome);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  background: rgba(5, 6, 8, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%8A93A3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--steel);
}

.form-success {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(61, 139, 110, 0.45);
  background: rgba(61, 139, 110, 0.12);
  border-radius: var(--r-md);
  color: #9fd4bc;
  font-size: 0.92rem;
}

.form-success.is-visible {
  display: block;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.55), rgba(5, 6, 8, 0.92));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__content .lead {
  margin-top: 1rem;
}

/* ---------- About page ---------- */
.manifesto {
  background: var(--bg-base);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.manifesto__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

.manifesto__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.standard-block {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
}

.standard-block span {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.standard-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.standard-block p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

/* ---------- Services index ---------- */
.service-index {
  background: var(--bg-deep);
}

.service-line {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.service-line:first-of-type {
  border-top: 1px solid var(--line);
}

.service-line:hover {
  background: linear-gradient(90deg, var(--blue-soft), transparent 60%);
}

.service-line__thumb {
  width: 120px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}

.service-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.service-line:hover .service-line__thumb img {
  transform: scale(1.05);
}

.service-line h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.service-line p {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
  max-width: 40rem;
}

.service-line__arrow {
  color: var(--steel);
  font-size: 1.25rem;
}

.service-line:hover .service-line__arrow {
  color: var(--blue-bright);
}

/* ---------- Service detail ---------- */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.scope-box {
  padding: 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.scope-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.scope-box ul {
  display: grid;
  gap: 0.65rem;
}

.scope-box li {
  display: flex;
  gap: 0.6rem;
  color: var(--fog);
  font-size: 0.92rem;
}

.scope-box--in i {
  color: var(--blue-bright);
}

.scope-box--out i {
  color: var(--steel);
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-item button i {
  color: var(--blue-bright);
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open button i {
  transform: rotate(45deg);
}

.faq-item__body {
  display: none;
  padding: 0 1.25rem 1.2rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-item__body {
  display: block;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.filter-btn {
  min-height: 40px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--chrome);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue-soft);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(5, 6, 8, 0.9));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-panel {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.contact-list {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
}

.contact-list i {
  color: var(--blue-bright);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.contact-list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-list span,
.contact-list a {
  color: var(--steel);
  font-size: 0.9rem;
}

.contact-list a:hover {
  color: var(--blue-bright);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #040507;
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-brand .auth-pill {
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--chrome);
  font-size: 1.1rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-social a:hover {
  border-color: rgba(26, 124, 255, 0.5);
  color: var(--blue-bright);
  background: var(--blue-soft);
}

/* ---------- Google Reviews ---------- */
.reviews-google {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--line);
}

.reviews-google__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-google__head .lead {
  margin-top: 1rem;
}

.reviews-google__score {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  min-width: 220px;
}

.reviews-google__score-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.reviews-google__score-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.reviews-google__stars,
.review-card__stars {
  display: flex;
  gap: 0.15rem;
  color: #f4b400;
  font-size: 0.85rem;
}

.reviews-google__swiper {
  padding-bottom: 2.75rem;
}

.review-card {
  height: 100%;
  min-height: 260px;
  padding: 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.review-card:hover {
  border-color: rgba(26, 124, 255, 0.4);
  transform: translateY(-2px);
}

.review-card__top {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.15rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  border: 1px solid rgba(26, 124, 255, 0.35);
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 700;
}

.review-card__top strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.review-card__google {
  color: var(--steel);
  font-size: 1.15rem;
}

.review-card p {
  color: var(--chrome);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}

.review-card__meta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--steel);
}

.reviews-google__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--steel);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: var(--blue-bright);
}

.footer-muted {
  color: var(--steel);
  font-size: 0.875rem;
  line-height: 1.45;
}

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

.footer-credit {
  color: var(--chrome);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}

.footer-credit:hover {
  color: var(--blue-bright);
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(5, 6, 8, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  gap: 0.65rem;
}

.mobile-cta .btn-bayka {
  flex: 1;
}

/* ---------- Utility ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 0.5rem;
}

.section-head .lead {
  margin-top: 1rem;
}

.split-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  min-height: 360px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.text-gradient {
  background: linear-gradient(120deg, var(--white) 20%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.overlap-note {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(26, 124, 255, 0.35);
  background: var(--blue-soft);
  border-radius: var(--r-md);
  color: var(--chrome-bright);
  font-size: 0.82rem;
  font-weight: 600;
}

.auth-pill i {
  color: var(--blue-bright);
}

/* Swiper overrides */
.swiper-bayka .swiper-pagination-bullet {
  background: var(--steel);
  opacity: 1;
}

.swiper-bayka .swiper-pagination-bullet-active {
  background: var(--blue-bright);
}

/* AOS soften */
[data-aos] {
  pointer-events: auto;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(26, 124, 255, 0.45);
  transform: translateY(-3px);
  color: inherit;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.35rem 1.6rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 600;
}

.blog-card__meta span:not(:first-child) {
  color: var(--steel);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.blog-card p {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chrome-bright);
}

.blog-card:hover .blog-card__link {
  color: var(--blue-bright);
}

.article {
  padding-bottom: var(--space-9);
}

.article__hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 0;
}

.article__cover {
  position: relative;
  margin-top: 2rem;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

.article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--steel);
}

.article__meta strong {
  color: var(--blue-bright);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.article__content {
  max-width: 720px;
}

.article__content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article__content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.article__content p {
  margin-bottom: 1.15rem;
  color: var(--fog);
}

.article__content ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.article__content ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--fog);
}

.article__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.article__aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
}

.article__aside h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.article__aside p {
  font-size: 0.9rem;
  color: var(--steel);
  margin-bottom: 1.25rem;
}

.article__related {
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid var(--line);
}

.article__related h2 {
  margin-bottom: 1.5rem;
}
