html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #24323a;
  background: #f7f6f2;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-right: 24px;
  padding-left: 24px;
}

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

a {
  color: #14586e;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #0f4050;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 2000;
  padding: 12px 18px;
  color: #ffffff;
  background: #143548;
  border: 2px solid #ffffff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
  color: #ffffff;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 1000;
  min-height: 84px;
  background: rgba(250, 248, 243, 0.97);
  border-bottom: 1px solid #dedbd2;
  box-shadow: 0 7px 24px rgba(24, 48, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.header-inner::before,
.header-inner::after {
  display: none;
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #143548;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand h1 {
  margin: 0;
  color: #143548;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: inherit;
}

.brand img {
  width: 48px;
  height: 48px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  position: relative;
  color: #31464f;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #b13e39;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  color: #ffffff !important;
  background: #b13e39;
  border: 1px solid #b13e39;
  border-radius: 5px;
}

.nav-cta:hover,
.nav-cta:focus {
  color: #ffffff !important;
  background: #92332f;
  border-color: #92332f;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid #b9c0c0;
  border-radius: 4px;
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: #143548;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 12px 15px 22px;
  background: #faf8f3;
  border-top: 1px solid #e0ddd5;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: #24323a;
  font-weight: 700;
  border-bottom: 1px solid #e5e2db;
}

.mobile-nav a:last-child {
  color: #b13e39;
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #ffffff;
  background: #143548;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(13, 43, 59, 0.96) 0%, rgba(13, 43, 59, 0.85) 42%, rgba(13, 43, 59, 0.26) 74%, rgba(13, 43, 59, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 690px;
}

.hero-copy {
  max-width: 690px;
  padding: 76px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #f2d49e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: #f2d49e;
}

.hero h2 {
  max-width: 690px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -1.6px;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: #edf2f2;
  font-size: 21px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 39px;
}

.primary-button,
.secondary-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 5px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: #b13e39;
  border: 1px solid #b13e39;
}

.primary-button:hover,
.primary-button:focus {
  color: #ffffff;
  background: #91322e;
  border-color: #91322e;
  transform: translateY(-2px);
}

.secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.secondary-button:hover,
.secondary-button:focus {
  color: #143548;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f1f4f3;
  font-size: 15px;
  font-weight: 700;
}

.hero-points li::before {
  display: grid;
  width: 23px;
  height: 23px;
  color: #143548;
  content: "✓";
  place-items: center;
  background: #f2d49e;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -46px;
}

.quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1px solid #dfddd5;
  box-shadow: 0 20px 45px rgba(22, 53, 69, 0.12);
}

.quick-item {
  display: flex;
  gap: 15px;
  min-height: 122px;
  padding: 28px 30px;
  border-right: 1px solid #e3e0d8;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  place-items: center;
  background: #14586e;
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.quick-item strong {
  display: block;
  margin-bottom: 4px;
  color: #143548;
  font-size: 17px;
}

.quick-item span {
  display: block;
  color: #66747a;
  font-size: 14px;
  line-height: 1.5;
}

.section-block {
  padding: 98px 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: #eef1ef;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.text-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #b13e39;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-heading h2,
.article-content h2,
.contact-panel h2 {
  margin: 0 0 18px;
  color: #143548;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.section-heading p {
  margin: 0;
  color: #617078;
  font-size: 18px;
}

.service-card {
  height: 100%;
  min-height: 330px;
  margin-bottom: 28px;
  padding: 34px 31px 30px;
  background: #ffffff;
  border: 1px solid #dfddd6;
  border-top: 4px solid #14586e;
  box-shadow: 0 12px 28px rgba(32, 57, 69, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(32, 57, 69, 0.11);
}

.service-number {
  display: inline-block;
  margin-bottom: 27px;
  color: #b13e39;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.service-card h3 {
  margin: 0 0 14px;
  color: #143548;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 18px;
  color: #607077;
  font-size: 16px;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  color: #3c4d55;
  font-size: 15px;
}

.service-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #be9754;
  border-radius: 50%;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: 20px 20px 0 #dfe8e7;
}

.image-note {
  position: absolute;
  right: -22px;
  bottom: 34px;
  max-width: 270px;
  padding: 24px;
  color: #ffffff;
  background: #143548;
  box-shadow: 0 15px 35px rgba(20, 53, 72, 0.24);
}

.image-note strong {
  display: block;
  margin-bottom: 7px;
  color: #f2d49e;
  font-size: 18px;
}

.image-note span {
  font-size: 14px;
  line-height: 1.55;
}

.content-copy h2 {
  margin: 0 0 21px;
  color: #143548;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.content-copy h3 {
  margin: 31px 0 12px;
  color: #193f52;
  font-size: 23px;
  font-weight: 800;
}

.content-copy p {
  margin-bottom: 18px;
  color: #475a63;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 31px;
  color: #31464f;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  color: #ffffff;
  content: "✓";
  place-items: center;
  background: #b13e39;
  border-radius: 50%;
  font-size: 12px;
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 62px;
  align-items: start;
}

.article-content {
  max-width: 820px;
}

.article-content h2 {
  margin-top: 0;
}

.article-content h3 {
  margin: 43px 0 14px;
  color: #173f52;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
}

.article-content h4 {
  margin: 27px 0 10px;
  color: #2a4d5d;
  font-size: 20px;
  font-weight: 800;
}

.article-content p {
  margin-bottom: 21px;
  color: #455a63;
}

.article-content ul,
.article-content ol {
  margin: 4px 0 25px;
  padding-left: 23px;
}

.article-content li {
  margin-bottom: 10px;
  color: #455a63;
}

.editorial-note {
  margin: 31px 0;
  padding: 25px 28px;
  background: #f5eee4;
  border-left: 5px solid #be9754;
}

.editorial-note strong {
  display: block;
  margin-bottom: 8px;
  color: #143548;
}

.article-aside {
  position: sticky;
  top: 112px;
}

.aside-card {
  margin-bottom: 22px;
  padding: 28px;
  background: #143548;
}

.aside-card h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.aside-card p {
  color: #dce6e8;
  font-size: 15px;
}

.aside-card .primary-button {
  width: 100%;
  margin-top: 8px;
}

.aside-image {
  overflow: hidden;
  background: #dde4e2;
}

.aside-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.process-step {
  min-height: 260px;
  padding: 30px 27px;
  background: #ffffff;
  border: 1px solid #d9ddd9;
}

.process-step span {
  display: block;
  margin-bottom: 23px;
  color: #b13e39;
  font-size: 31px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 12px;
  color: #143548;
  font-size: 20px;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: #617078;
  font-size: 15px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 13px;
  background: #ffffff;
  border: 1px solid #dcded9;
}

.faq-item summary {
  position: relative;
  padding: 22px 65px 22px 24px;
  color: #173f52;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 28px;
  height: 28px;
  color: #ffffff;
  content: "+";
  background: #14586e;
  border-radius: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 20px;
  line-height: 26px;
}

.faq-item[open] summary::after {
  content: "−";
  background: #b13e39;
}

.faq-answer {
  padding: 0 24px 23px;
  color: #52656d;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.service-regions {
  border-top: 1px solid #dde2df;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.district-grid li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 17px;
  color: #173f52;
  background: #ffffff;
  border: 1px solid #d9dedb;
  box-shadow: 0 8px 20px rgba(32, 57, 69, 0.05);
  font-size: 16px;
  font-weight: 800;
}

.district-grid li span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #ffffff;
  place-items: center;
  background: #14586e;
  border-radius: 50%;
  font-size: 12px;
}

.regions-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: #52656d;
  text-align: center;
}

.contact-section {
  padding: 86px 0;
  color: #ffffff;
  background: #143548;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.contact-panel h2 {
  color: #ffffff;
}

.contact-panel p {
  max-width: 750px;
  margin: 0;
  color: #dce7e8;
  font-size: 18px;
}

.contact-actions {
  min-width: 360px;
  text-align: right;
}

.contact-button-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.contact-button {
  color: #143548;
  background: #f2d49e;
  border: 1px solid #f2d49e;
}

.contact-button:hover,
.contact-button:focus {
  color: #ffffff;
  background: #b13e39;
  border-color: #b13e39;
  transform: translateY(-2px);
}

.contact-call {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.contact-call:hover,
.contact-call:focus {
  color: #143548;
  background: #ffffff;
  border-color: #ffffff;
}


.site-footer {
  padding: 55px 0 30px;
  color: #cbd5d8;
  background: #0c2735;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 55px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.footer-copy {
  max-width: 470px;
  color: #adbec4;
  font-size: 15px;
}

.footer-heading {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5d8;
  font-size: 15px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #f2d49e;
}

.footer-text-list li {
  color: #cbd5d8;
  font-size: 15px;
}

.footer-bottom {
  padding-top: 24px;
  color: #90a4ac;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: flex;
  gap: 10px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 17px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(20, 40, 48, 0.24);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-action svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: currentColor;
}

.floating-whatsapp {
  background: #198754;
}

.floating-call {
  background: #14586e;
}

.floating-action:hover,
.floating-action:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(20, 40, 48, 0.3);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  background: #126a42;
}

.floating-call:hover,
.floating-call:focus {
  background: #0f4050;
}

.legal-note {
  padding: 17px 0;
  color: #4f626a;
  background: #f2eee6;
  border-top: 1px solid #e3dbce;
  border-bottom: 1px solid #e3dbce;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1199px) {
  .hero h2 {
    font-size: 49px;
  }

  .split-layout {
    gap: 45px;
  }

  .article-wrap {
    gap: 42px;
  }
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 43, 59, 0.94) 0%, rgba(13, 43, 59, 0.81) 65%, rgba(13, 43, 59, 0.38) 100%);
  }

  .hero h2 {
    font-size: 46px;
  }

  .quick-strip-inner {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e3e0d8;
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .split-layout,
  .article-wrap,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-image {
    order: 2;
  }

  .split-image img {
    min-height: 430px;
  }

  .article-aside {
    position: static;
  }

  .article-aside .aside-image {
    display: none;
  }

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

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

  .contact-actions {
    min-width: 0;
    text-align: left;
  }

  .contact-button-group {
    justify-content: flex-start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 76px;
    font-size: 16px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .site-header,
  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 9px;
    font-size: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero,
  .hero-content {
    min-height: 610px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 43, 59, 0.95) 0%, rgba(13, 43, 59, 0.84) 100%);
  }

  .hero-copy {
    padding: 62px 0 86px;
  }

  .hero h2 {
    font-size: 39px;
    letter-spacing: -0.8px;
  }

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

  .hero-actions,
  .primary-button,
  .secondary-button,
  .contact-button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -30px;
  }

  .quick-item {
    padding: 23px 22px;
  }

  .section-block {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading h2,
  .article-content h2,
  .contact-panel h2,
  .content-copy h2 {
    font-size: 32px;
  }

  .section-heading p,
  .contact-panel p {
    font-size: 17px;
  }

  .service-card {
    min-height: 0;
  }

  .split-image img {
    min-height: 330px;
    box-shadow: 12px 12px 0 #dfe8e7;
  }

  .image-note {
    position: static;
    max-width: none;
  }

  .article-content h3 {
    font-size: 24px;
  }

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

  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .district-grid li {
    min-height: 52px;
    padding: 12px 13px;
    font-size: 15px;
  }

  .regions-note {
    text-align: left;
  }

  .process-step {
    min-height: 0;
  }

  .faq-item summary {
    padding: 19px 59px 19px 19px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 19px 20px;
  }

  .contact-section {
    padding: 66px 0;
  }

  .contact-button-group {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .floating-actions {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #d9dedc;
    box-shadow: 0 -8px 24px rgba(20, 40, 48, 0.12);
    backdrop-filter: blur(10px);
  }

  .floating-action {
    flex: 1 1 50%;
    min-height: 52px;
    padding: 12px 10px;
    border: 0;
  }

  .floating-action svg {
    margin-right: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
