@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0f172a;
  --navy-2: #111f3d;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --text: #334155;
  --muted: #64748b;
  --light: #f1f5f9;
  --light-2: #e8eef7;
  --white: #ffffff;
  --border: #dbe4ef;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
  color: var(--text);
  font-family: 'Manrope', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  display: block;
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button svg,
a svg {
  flex: 0 0 auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  width: 100%;
  margin: 0;
  padding: 12px max(20px, calc((100vw - var(--max-width)) / 2));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-width: 0 0 1px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(17, 31, 61, 0.94));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 1;
}

.main-nav {
  grid-column: 2;
  justify-self: center;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
  overflow: hidden;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  color: #bfd0e8;
  font-size: 0.75rem;
  line-height: 1.25;
  max-width: 260px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  border-radius: var(--radius);
  color: #c7d3e5;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.icon-link,
.menu-button,
.back-to-top {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
}

.button-primary:hover {
  background: var(--blue-hover);
}

.button-secondary {
  border-color: var(--border);
  background: var(--white);
  color: var(--navy);
}

.site-header .button-secondary,
.site-header .button-primary {
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
}

.full-width {
  width: 100%;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0;
}

.soft-band {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--light), var(--light-2));
}

.soft-band > * {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 78px);
  padding-top: 52px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 1.1rem;
}

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

.hero-checks {
  gap: 10px 18px;
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-checks svg {
  color: var(--blue);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 22px -16px -18px 22px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  content: '';
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 58% 42%;
  filter: contrast(1.05) saturate(1.06);
  box-shadow: var(--shadow);
}

.vehicle-section {
  padding-top: 70px;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
  background: var(--light);
}

.vehicle-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.16)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 38%);
  content: '';
  pointer-events: none;
}

.vehicle-photo-large {
  grid-row: span 2;
}

.vehicle-photo:nth-child(4) {
  grid-column: 1 / -1;
  min-height: clamp(360px, 40vw, 520px);
}

.vehicle-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.06);
  transform: scale(1.01);
}

.vehicle-photo-large img {
  object-position: 58% 36%;
}

.vehicle-photo:nth-child(2) img {
  object-position: 50% 58%;
}

.vehicle-photo:nth-child(3) img {
  object-position: 50% 50%;
}

.vehicle-photo:nth-child(4) img {
  max-height: none;
  object-position: 50% 68%;
  transform: none;
}

.section-grid {
  display: grid;
  gap: 48px;
}

.two-columns,
.booking-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.presentation p {
  max-width: 690px;
}

.profile-panel,
.form-card,
.pricing-card,
.advantage-card,
.audience-card,
.faq-item,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

.profile-panel {
  padding: 34px;
  box-shadow: var(--shadow);
}

.profile-panel svg {
  color: var(--blue);
}

.profile-panel h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.55rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats-row div {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.advantage-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.audience-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.audience-card p {
  margin: 0;
  color: var(--muted);
}

.timeline-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.timeline-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.timeline-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  content: '';
}

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: #eaf1ff;
  color: var(--blue);
  font-weight: 800;
}

.timeline-card h3,
.review-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
}

.timeline-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.reviews-section {
  padding-top: 72px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 28px;
}

.review-rating {
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--text);
  font-size: 1rem;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

.advantage-card {
  padding: 24px;
}

.advantage-card svg {
  color: var(--blue);
}

.advantage-card h3,
.pricing-card h3,
.form-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  line-height: 1.2;
}

.advantage-card p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

.pricing-card.highlighted {
  border-color: var(--blue);
  background: var(--navy);
  color: var(--white);
}

.pricing-card.highlighted h3,
.pricing-card.highlighted strong,
.pricing-card.highlighted p,
.pricing-card.highlighted li {
  color: var(--white);
}

.highlight-label {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: 2.45rem;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 9px;
  color: var(--text);
  font-weight: 700;
}

.pricing-card li svg {
  flex: 0 0 auto;
  color: var(--blue);
  margin-top: 3px;
}

.pricing-card .button {
  margin-top: auto;
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 26px;
  align-items: center;
  max-width: 980px;
  margin: 30px auto 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff, #edf4ff);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.payment-panel h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
}

.payment-panel p {
  margin: 0;
  color: var(--muted);
}

.payment-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: payment-step;
}

.payment-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.payment-panel li::before {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  content: counter(payment-step);
  counter-increment: payment-step;
  font-size: 0.82rem;
}

.booking-grid {
  padding-block: 94px;
}

.booking-points {
  display: grid;
  gap: 12px;
}

.booking-points article {
  min-height: 76px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 16px 18px;
}

.booking-points strong,
.booking-points span {
  display: block;
}

.booking-points strong {
  color: var(--navy);
}

.booking-points span {
  color: var(--muted);
  margin-top: 4px;
}

.booking-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.booking-card .button + .button {
  margin-top: 12px;
}

.form-card {
  padding: 30px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.form-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-message {
  border-radius: var(--radius);
  margin: 4px 0 16px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
}

.form-message.success {
  background: #ecfdf5;
  color: #166534;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 20px 22px;
  text-align: left;
  font-weight: 800;
}

.faq-item svg {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq-item svg.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  padding-block: 94px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-card svg,
.contact-card span {
  color: var(--blue);
}

.contact-card span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--navy);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sector-list {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.sector-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.sector-list p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.15fr auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 28px max(20px, calc((100vw - var(--max-width)) / 2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-width: 1px 0 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #c7d3e5;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer strong {
  display: block;
  color: var(--white);
}

.footer span {
  display: block;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 700;
}

.footer nav a {
  border-radius: var(--radius);
  padding: 9px 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.footer-actions .button {
  min-height: 42px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-action-bar a:not(.mobile-action-primary) {
  background: rgba(255, 255, 255, 0.09);
}

.mobile-action-primary {
  background: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 14px;
  }

  .brand {
    grid-column: 1;
  }

  .header-actions {
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
  }

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

  .menu-button {
    display: inline-grid;
  }

  .hero,
  .two-columns,
  .booking-grid,
  .contact-grid,
  .vehicle-gallery {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery {
    grid-template-rows: auto;
  }

  .vehicle-photo-large {
    grid-row: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-media {
    max-width: 760px;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .section,
  .soft-band > * {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    width: 100%;
  }

  .section,
  .booking-grid,
  .contact-grid {
    padding-block: 68px;
  }

  .hero {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .hero-actions .button,
  .button.full-width {
    width: 100%;
  }

  .button-small {
    display: none;
  }

  .advantage-grid,
  .audience-grid,
  .timeline-grid,
  .reviews-grid,
  .pricing-grid,
  .contact-cards,
  .stats-row,
  .payment-panel {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

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

  .footer-actions {
    flex-direction: column;
  }

  .mobile-action-bar {
    display: grid;
  }

  .back-to-top {
    bottom: 82px;
  }

  body {
    padding-bottom: 78px;
  }
}
