:root {
  --bg: #f4f1ea;
  --paper: #fffdfa;
  --paper-soft: #f8f2e8;
  --ink: #151116;
  --ink-2: #2b2328;
  --muted: #716871;
  --line: rgba(31, 24, 30, 0.12);
  --line-strong: rgba(31, 24, 30, 0.22);
  --rose: #bd4d72;
  --rose-deep: #812f55;
  --teal: #2d7d79;
  --blue: #384f78;
  --gold: #c9a35b;
  --gold-soft: #f1dfb8;
  --plum: #25131f;
  --shadow: 0 30px 80px rgba(22, 15, 20, 0.18);
  --shadow-soft: 0 20px 54px rgba(22, 15, 20, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(244, 241, 234, 0.98) 38%, #eee8dd),
    linear-gradient(125deg, rgba(129, 47, 85, 0.1), transparent 25%, rgba(45, 125, 121, 0.12) 62%, transparent),
    linear-gradient(90deg, rgba(201, 163, 91, 0.1), transparent 34%, rgba(56, 79, 120, 0.07)),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 17, 22, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 17, 22, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 42%);
  background-size: 76px 76px, 76px 76px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 68%);
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(185, 77, 111, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 24, 30, 0.09);
  background: rgba(255, 253, 250, 0.76);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 16px 42px rgba(22, 15, 20, 0.07);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 16px 32px rgba(129, 47, 85, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(31, 24, 30, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 10px 26px rgba(22, 15, 20, 0.04);
}

.navlinks a {
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.navlinks a:hover {
  color: var(--ink);
  background: rgba(241, 223, 184, 0.58);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(31, 24, 30, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 10px 24px rgba(22, 15, 20, 0.04);
}

.lang-switch a {
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

html[lang="uk"] .lang-switch a[data-lang-option="uk"],
html[lang="ru"] .lang-switch a[data-lang-option="ru"] {
  color: #fffdfa;
  background: linear-gradient(135deg, var(--ink), var(--plum));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgba(31, 24, 30, 0.13);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 250, 0.92);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 10px 24px rgba(22, 15, 20, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 47, 85, 0.3);
  background: #fffdfa;
  box-shadow: 0 18px 40px rgba(22, 15, 20, 0.13);
}

.btn-primary,
.btn-accent {
  color: #fffaf4;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #171118, var(--plum) 48%, var(--rose-deep));
  box-shadow: 0 20px 46px rgba(129, 47, 85, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-accent:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #211720, #351a2c 48%, #963b61);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  padding: 82px 0 88px;
  color: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 82%;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.95), rgba(244, 241, 234, 0.22) 45%, rgba(37, 19, 31, 0.1)),
    url("/shot-720.jpg") center right / cover no-repeat;
  opacity: 0.2;
  filter: saturate(0.86) contrast(1.06);
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3) 38%, transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: min(5vw, 64px);
  top: 82px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  background: url("/logo.svg") center / contain no-repeat;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(328px, 0.52fr);
  gap: 58px;
  align-items: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 70px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: 22px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-card {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateZ(0);
  max-width: 430px;
  justify-self: end;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.58), rgba(255, 253, 250, 0.16)),
    linear-gradient(135deg, rgba(201, 163, 91, 0.14), rgba(129, 47, 85, 0.12));
  box-shadow: 0 34px 92px rgba(22, 15, 20, 0.18);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 253, 248, 0.64);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(66, 127, 120, 0.12);
}

.chat-preview {
  display: grid;
  padding: 0;
  background: transparent;
}

.profile-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1086 / 1449;
  border: 1px solid rgba(31, 24, 30, 0.09);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(22, 15, 20, 0.16);
}

.profile-preview {
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid rgba(39, 30, 22, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 225, 196, 0.34), rgba(255, 253, 248, 0.88)),
    #fffaf2;
}

.profile-preview strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.profile-preview span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}

.bubble {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border: 1px solid rgba(39, 30, 22, 0.06);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #f2eadf;
  font-weight: 780;
  box-shadow: 0 10px 22px rgba(38, 27, 17, 0.055);
}

.bubble.out {
  margin-left: auto;
  color: #fffaf2;
  background: linear-gradient(135deg, #24201b, #81304c);
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.quick-row div {
  padding: 12px;
  border: 1px solid rgba(39, 30, 22, 0.08);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  font-weight: 950;
  text-align: center;
}

section {
  padding: 82px 0;
}

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

.section-head p,
.card p,
.step p,
.faq p,
footer p {
  color: var(--muted);
}

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

.card,
.step {
  border: 1px solid rgba(31, 24, 30, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 232, 0.93)),
    var(--paper);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.card,
.step {
  padding: 25px;
}

.card {
  min-height: 216px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card::before,
.step::before,
.feature-item::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), rgba(189, 77, 114, 0.44), rgba(45, 125, 121, 0.28));
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 47, 85, 0.24);
  box-shadow: 0 28px 64px rgba(22, 15, 20, 0.14);
}

.mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 17px;
  border: 1px solid rgba(201, 163, 91, 0.36);
  border-radius: var(--radius);
  color: #5d431c;
  background: linear-gradient(135deg, #fff8ea, var(--gold-soft));
  font-weight: 950;
}

.card:nth-child(2n) .mark {
  color: #234d48;
  background: linear-gradient(135deg, #f2fbf8, #dbece8);
  border-color: rgba(66, 127, 120, 0.2);
}

.card:nth-child(3n) .mark {
  color: #2f4166;
  background: linear-gradient(135deg, #f4f6fb, #dfe5f3);
  border-color: rgba(72, 95, 136, 0.2);
}

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

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  position: relative;
  padding: 25px;
  border: 1px solid rgba(31, 24, 30, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 232, 0.93)),
    var(--paper);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.feature-item::before {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.feature-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 163, 91, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8ea, var(--gold-soft));
  font-size: 22px;
}

.feature-item:nth-child(2n) > span {
  background: linear-gradient(135deg, #f2fbf8, #dbece8);
}

.feature-item:nth-child(3n) > span {
  background: linear-gradient(135deg, #f4f6fb, #dfe5f3);
}

.feature-item p {
  color: var(--muted);
}

.num {
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 8px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 6px;
  color: #6a4b1b;
  background: #f7edd9;
  font-size: 13px;
  font-weight: 950;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(135deg, #171118, var(--plum) 48%, #7c2f53);
  box-shadow: var(--shadow);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 163, 91, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: #fffaf4;
}

.cta-band .lead {
  color: rgba(255, 250, 244, 0.76);
}

.cta-band .btn-accent {
  color: var(--ink);
  background: linear-gradient(135deg, #fff9ec, #e5c777);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 920;
}

.faq p {
  max-width: 800px;
  margin: 10px 0 0;
}

.city-seo {
  padding-top: 42px;
}

.city-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.city-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 24, 30, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 232, 0.92)),
    var(--paper);
  box-shadow: 0 16px 34px rgba(22, 15, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.city-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 47, 85, 0.24);
  box-shadow: 0 22px 48px rgba(22, 15, 20, 0.13);
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 46px;
  background: rgba(255, 253, 250, 0.68);
}

.footergrid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.tiny {
  font-size: 13px;
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .hero-inner,
  .footergrid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
    width: min(100%, 420px);
  }

  .grid,
  .city-links,
  .feature-list,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 44px;
  }

  .lead {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    font-size: 19px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand img {
    flex: 0 0 36px;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .header-actions > .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 34px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  section {
    padding: 50px 0;
  }

  .hero-actions .btn,
  .actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .quick-row,
  .grid,
  .city-links,
  .feature-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 21px;
  }

  .hero::before {
    opacity: 0.08;
  }

  .hero::after {
    width: 150px;
    height: 150px;
    right: -26px;
    top: 82px;
  }

  .cta-band {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Premium redesign pass */
body {
  background:
    linear-gradient(180deg, #110d14 0, #1d1320 520px, #f4f0e8 521px, #eee7db 100%),
    var(--bg);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  opacity: 0.7;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 62%);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 13, 20, 0.76);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.brand {
  color: #fffaf4;
}

.brand img {
  background: rgba(255, 250, 244, 0.94);
}

.navlinks,
.lang-switch {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.navlinks a,
.lang-switch a {
  color: rgba(255, 250, 244, 0.74);
}

.navlinks a:hover {
  color: #fffaf4;
  background: rgba(255, 255, 255, 0.11);
}

html[lang="uk"] .lang-switch a[data-lang-option="uk"],
html[lang="ru"] .lang-switch a[data-lang-option="ru"] {
  color: #171118;
  background: linear-gradient(135deg, #fff9ea, #d9b760);
}

.hero {
  min-height: calc(100vh - 76px);
  color: #fffaf4;
  background:
    linear-gradient(115deg, rgba(17, 13, 20, 0.98), rgba(37, 19, 31, 0.95) 46%, rgba(129, 47, 85, 0.78)),
    #171118;
  isolation: isolate;
}

.hero::before {
  inset: 0;
  height: 100%;
  opacity: 0.42;
  background:
    linear-gradient(90deg, #110d14 0, rgba(17, 13, 20, 0.82) 32%, rgba(17, 13, 20, 0.16) 72%),
    url("/bcb.png") center right / cover no-repeat;
  filter: saturate(0.92) contrast(1.08);
  mask-image: none;
}

.hero::after {
  display: none;
}

.hero h1 {
  max-width: 820px;
  color: #fffaf4;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.hero .lead {
  color: rgba(255, 250, 244, 0.76);
  font-size: 23px;
}

.hero-actions .btn:not(.btn-accent) {
  color: #fffaf4;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn:not(.btn-accent):hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-primary,
.btn-accent {
  min-height: 50px;
  padding: 0 23px;
  color: #171118;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, #fff9ea, #e1c16e 52%, #bd8d33);
  box-shadow: 0 22px 52px rgba(201, 163, 91, 0.24), 0 12px 28px rgba(129, 47, 85, 0.3);
}

.btn-primary:hover,
.btn-accent:hover {
  background: linear-gradient(135deg, #fffdf4, #e8cb7b 52%, #c8983c);
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
}

.hero-card {
  max-width: 470px;
}

.hero-card::before {
  display: none;
}

.profile-card-image {
  border-color: transparent;
  box-shadow: none;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.34));
}

main > section:not(.hero) {
  position: relative;
}

.section-head {
  max-width: 900px;
}

main > section:not(.hero) .section-head h2 {
  text-wrap: balance;
}

.card,
.step,
.feature-item,
.city-links a {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 238, 225, 0.94)),
    var(--paper);
  border-color: rgba(36, 25, 31, 0.14);
  box-shadow: 0 24px 70px rgba(22, 15, 20, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.card:nth-child(1),
.feature-item:nth-child(1),
.step:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(37, 19, 31, 0.97), rgba(122, 45, 79, 0.93)),
    var(--plum);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fffaf4;
}

.card:nth-child(1) h3,
.feature-item:nth-child(1) h3,
.step:nth-child(1) h3,
.card:nth-child(1) p,
.feature-item:nth-child(1) p,
.step:nth-child(1) p {
  color: rgba(255, 250, 244, 0.82);
}

.card:nth-child(1) .mark,
.step:nth-child(1) .num,
.feature-item:nth-child(1) > span {
  color: #171118;
  background: linear-gradient(135deg, #fff9ea, #d9b760);
}

#why .card:nth-child(1) {
  color: var(--ink);
  border-color: rgba(36, 25, 31, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 238, 225, 0.94)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(22, 15, 20, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#why .card:nth-child(1) h3 {
  color: var(--ink-2);
}

#why .card:nth-child(1) p {
  color: var(--muted);
}

#why .card:nth-child(1) .mark {
  color: #5d431c;
  background: linear-gradient(135deg, #fff8ea, var(--gold-soft));
}

.feature-item {
  min-height: 190px;
}

.cta-band {
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(17, 13, 20, 0.96), rgba(37, 19, 31, 0.94) 48%, rgba(129, 47, 85, 0.86)),
    url("/bcb.png") center right / cover no-repeat;
}

.cta-band::before {
  background:
    linear-gradient(90deg, rgba(17, 13, 20, 0.96), rgba(17, 13, 20, 0.62) 48%, rgba(17, 13, 20, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 62%);
}

.faq details {
  padding: 23px 24px;
  border: 1px solid rgba(36, 25, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.7);
  box-shadow: 0 16px 42px rgba(22, 15, 20, 0.06);
}

.faq details + details {
  margin-top: 10px;
}

.faq details:last-child {
  border-bottom: 1px solid rgba(36, 25, 31, 0.1);
}

footer {
  background: #171118;
}

footer,
footer p,
footer a {
  color: rgba(255, 250, 244, 0.76);
}

footer b {
  color: #fffaf4;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, #110d14 0, #1d1320 650px, #f4f0e8 651px, #eee7db 100%),
      var(--bg);
  }

  .site-header {
    background: rgba(17, 13, 20, 0.88);
  }

  .hero {
    padding: 70px 0 54px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero .lead {
    font-size: 21px;
  }

  .hero-card {
    width: min(100% - 8px, 430px);
    margin-top: 22px;
  }

  .hero-card::before {
    display: none;
  }

  .cta-band {
    padding: 32px 24px;
  }
}
