:root {
  --white: #ffffff;
  --cream: #f8fafc;
  --soft: #eef4fb;
  --text: #102033;
  --muted: #64748b;

  --blue: #1457d9;
  --blue-2: #37a0ff;
  --blue-light: #eaf1ff;

  --navy: #0d1b2f;
  --orange: #ff9f1c;
  --orange-dark: #e46f00;
  --green: #18a058;

  --border: #dbe4ef;
  --card: #ffffff;

  --shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
  --shadow-heavy: 0 32px 80px rgba(15, 23, 42, 0.16);

  --radius: 28px;
  --radius-sm: 18px;
}

.dark-mode {
  --white: #0f172a;
  --cream: #07111f;
  --soft: #101d31;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --border: #27364d;
  --card: #101d31;
  --blue-light: #13294c;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  --shadow-heavy: 0 32px 80px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 87, 217, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.10), transparent 32%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 45%, var(--white) 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--orange);
  color: var(--navy);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  z-index: 99999;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: 0.3s ease;
}

.dark-mode header {
  background: rgba(15, 23, 42, 0.90);
}

header.scrolled {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 9px 20px;
  background: var(--navy);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 600;
}

.navbar {
  max-width: 1240px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 14px 32px rgba(20, 87, 217, 0.25);
}

.logo span {
  color: var(--blue);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-links a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.btn-nav {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: #111827 !important;
  box-shadow: 0 12px 26px rgba(255, 159, 28, 0.25);
}

.menu-toggle,
.theme-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-toggle {
  display: none;
}

.theme-toggle {
  margin-left: 10px;
}

.menu-toggle:hover,
.theme-toggle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.hero {
  max-width: 1240px;
  margin: auto;
  padding: 80px 22px 70px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.hero-content {
  animation: fadeUp 0.85s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin-bottom: 26px;
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(20, 87, 217, 0.24);
}

.btn.secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid var(--border);
}

.dark-mode .btn.secondary {
  background: var(--card);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-trust div {
  min-width: 135px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 17px 19px;
  box-shadow: var(--shadow);
}

.hero-trust strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue);
  font-weight: 900;
}

.hero-trust span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow-heavy);
  border: 8px solid #ffffff;
}

.dark-mode .hero-visual img {
  border-color: var(--card);
}

.hero-floating-card {
  position: absolute;
  left: -25px;
  bottom: 42px;
  width: min(350px, 90%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(18px);
  animation: floatCard 4.5s ease-in-out infinite;
}

.dark-mode .hero-floating-card {
  background: rgba(15, 23, 42, 0.90);
}

.hero-floating-card span {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-light);
  font-size: 28px;
}

.hero-floating-card strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.hero-floating-card p {
  font-size: 14px;
  margin-top: 3px;
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: 78px 22px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -2.2px;
}

.cards-grid,
.pricing-grid,
.team-grid,
.blog-grid,
.clients-grid,
.law-grid,
.process-grid,
.showcase-grid {
  display: grid;
  gap: 24px;
}

.cards-grid,
.pricing-grid,
.team-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.clients-grid,
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.law-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.pricing-card,
.team-card,
.law-card,
.contact-form,
.contact-info,
.process-card,
.faq-item,
.feature-box,
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.card,
.pricing-card,
.team-card,
.law-card,
.process-card,
.feature-box,
.faq-item {
  padding: 30px;
}

.card:hover,
.pricing-card:hover,
.team-card:hover,
.law-card:hover,
.process-card:hover,
.faq-item:hover,
.blog-card:hover,
.feature-box:hover,
.showcase-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-heavy);
}

.icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 33px;
  margin-bottom: 20px;
}

.card h3,
.pricing-card h3,
.team-card h3,
.process-card h3,
.feature-box h3,
.showcase-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.card p,
.pricing-card p,
.team-card p,
.process-card p,
.blog-content p,
.split p,
.law-card p,
.showcase-card p {
  color: var(--muted);
}

.showcase-grid {
  grid-template-columns: 1.35fr 0.8fr;
  grid-template-rows: repeat(2, 260px);
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 260px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.showcase-card.large {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: 0.5s ease;
}

.showcase-card:hover img {
  transform: scale(1.07);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 47, 0.82), rgba(13, 27, 47, 0.08));
}

.showcase-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
}

.showcase-card p {
  color: #dbeafe;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.split p {
  margin-top: 16px;
}

.check-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(24, 160, 88, 0.13);
  color: var(--green);
  font-weight: 950;
}

.process-card {
  text-align: left;
}

.step {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(20, 87, 217, 0.24);
}

.pricing-card {
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--blue);
  transform: scale(1.035);
}

.pricing-card.popular:hover {
  transform: translateY(-9px) scale(1.04);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #111827;
  font-size: 12px;
  font-weight: 950;
}

.price {
  color: var(--blue) !important;
  font-size: 30px;
  font-weight: 950;
  margin-bottom: 12px;
}

.image-box {
  padding: 0;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.client-logo {
  padding: 28px 18px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 950;
  color: var(--text);
  transition: 0.35s ease;
}

.client-logo:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-8px);
}

.faq-wrapper {
  display: grid;
  gap: 16px;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-question span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-light);
  color: var(--blue);
}

.faq-answer {
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  margin-top: 16px;
}

.blog-card {
  overflow: hidden;
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.07);
}

.blog-content {
  padding: 28px;
}

.blog-content span {
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 13px;
}

.blog-content h2 {
  font-family: "Manrope", sans-serif;
  margin: 10px 0 12px;
  font-size: 23px;
  line-height: 1.15;
}

.blog-content a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 950;
}

.cta {
  max-width: 1160px;
  margin: 60px auto;
  padding: 70px 24px;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 159, 28, 0.18), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(20, 87, 217, 0.20), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef4fb);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-heavy);
}

.dark-mode .cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 159, 28, 0.18), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(20, 87, 217, 0.20), transparent 30%),
    var(--card);
}

.cta h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.cta p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}

footer {
  margin-top: 80px;
  background: var(--navy);
  color: #ffffff;
}

.footer-grid {
  max-width: 1240px;
  margin: auto;
  padding: 52px 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 34px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  color: #cbd5e1;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.footer-grid a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.copyright {
  padding: 22px;
  text-align: center;
  color: #cbd5e1;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.page-hero {
  padding: 95px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 159, 28, 0.14), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(20, 87, 217, 0.14), transparent 35%),
    var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
  margin: auto;
}

.service-list {
  display: grid;
  gap: 26px;
}

.service-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-heavy);
}

.service-number {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
}

.service-item p {
  color: var(--muted);
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
}

.role {
  color: var(--blue) !important;
  font-weight: 900;
}

.notice {
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 159, 28, 0.12);
  border: 1px solid rgba(255, 159, 28, 0.25);
  color: var(--text);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 32px;
}

.contact-box {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-box p {
  color: var(--muted);
}

.contact-form label {
  display: block;
  margin: 15px 0 7px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 87, 217, 0.12);
}

.contact-form button {
  margin-top: 20px;
}

.form-message {
  margin-top: 16px;
  color: var(--green);
  font-weight: 850;
}

.map-placeholder {
  height: 340px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.12), rgba(20, 87, 217, 0.14)),
    repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.05) 10px, transparent 10px, transparent 20px);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 24px;
  font-weight: 950;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #86efac);
  color: #052e16;
  font-size: 27px;
  box-shadow: 0 18px 46px rgba(34,197,94,0.32);
  z-index: 900;
  animation: pulseButton 2.4s infinite;
}

.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 900;
}

.back-to-top.show {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0.42);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(34,197,94,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .process-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid,
  .pricing-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 340px;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 116px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(22px);
  }

  .dark-mode .nav-links {
    background: rgba(15, 23, 42, 0.96);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    text-align: center;
  }

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .law-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .top-bar {
    font-size: 12px;
    gap: 9px;
  }

  .navbar {
    padding: 15px;
  }

  .logo {
    font-size: 23px;
  }

  .logo::before {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 58px 18px 45px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .process-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 390px;
  }

  .hero-floating-card {
    left: 16px;
    bottom: 20px;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 300px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
  }
}