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

:root {
  --ink: #17213f;
  --ink-soft: #56617d;
  --navy: #101936;
  --navy-light: #172449;
  --blue: #4067df;
  --blue-dark: #3155c4;
  --violet: #8357dd;
  --teal: #2bb7a8;
  --cream: #f7f8fc;
  --line: #e3e7f0;
  --white: #fff;
  --shadow: 0 22px 60px rgba(24, 35, 68, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 0;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 31px;
  height: 31px;
  padding: 5px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
  transform: rotate(-7deg);
}

.brand-mark span {
  display: block;
  width: 5px;
  border-radius: 4px 4px 1px 1px;
  background: var(--white);
}

.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 18px; }
.brand-mark span:nth-child(3) { height: 14px; }

.brand-name {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.brand-name strong {
  display: block;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: .01em;
}

.main-nav {
  display: none;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(64, 103, 223, .22);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(64, 103, 223, .3);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 138px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(247, 248, 252, .97), rgba(247, 248, 252, .8)),
    radial-gradient(circle at 80% 30%, #e8ecfb, transparent 42%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .45;
  background-image: linear-gradient(rgba(42, 57, 100, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 57, 100, .05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent, #000 60%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
}

.hero-glow-one {
  top: 130px;
  right: -120px;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(90, 111, 225, .22), transparent 67%);
}

.hero-glow-two {
  bottom: -160px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(115, 81, 210, .13), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -.045em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(44px, 12vw, 74px);
  font-weight: 800;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--blue);
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  color: #6d7690;
  font-size: 12px;
  font-weight: 600;
}

.hero-meta span {
  position: relative;
}

.hero-meta span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aab1c3;
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 510px);
  min-height: 470px;
  margin-inline: auto;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(64, 103, 223, .15);
  border-radius: 50%;
}

.orbit-one {
  inset: 16px;
}

.orbit-two {
  inset: 65px;
  border-style: dashed;
}

.dashboard-card {
  position: absolute;
  inset: 70px 18px auto;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(-2deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.mini-brand {
  display: flex;
  align-items: end;
  gap: 2px;
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 6px;
  background: var(--blue);
}

.mini-brand i {
  width: 3px;
  background: white;
}

.mini-brand i:nth-child(1) { height: 7px; }
.mini-brand i:nth-child(2) { height: 13px; }
.mini-brand i:nth-child(3) { height: 10px; }

.status-dot {
  margin-left: auto;
  color: var(--teal);
}

.status-dot::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.document-list {
  display: grid;
  gap: 8px;
  padding: 17px 0;
}

.document-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
}

.document-row.active {
  border-color: #dce4fb;
  background: #f6f8ff;
}

.doc-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: var(--blue);
  background: #e9eeff;
  place-items: center;
}

.doc-icon.violet {
  color: var(--violet);
  background: #f0eafd;
}

.doc-icon.teal {
  color: var(--teal);
  background: #e5f7f4;
}

.doc-icon svg {
  width: 18px;
}

.document-row strong,
.document-row small {
  display: block;
}

.document-row strong {
  font-size: 12px;
  line-height: 1.35;
}

.document-row small {
  color: #8a92a8;
  font-size: 9px;
}

.check {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 10px;
  place-items: center;
}

.dashboard-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dashboard-footer span,
.dashboard-footer strong {
  display: block;
  font-size: 9px;
  line-height: 1.4;
}

.dashboard-footer span {
  color: #9299aa;
}

.progress {
  height: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: #e9ecf3;
}

.progress span {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.dashboard-footer b {
  color: var(--blue);
  font-size: 11px;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(27, 38, 72, .13);
}

.float-card-top {
  top: 42px;
  right: 0;
}

.float-card-bottom {
  bottom: 18px;
  left: 4px;
}

.float-icon {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 14px;
  place-items: center;
}

.float-icon-blue {
  background: var(--blue);
}

.float-card small,
.float-card strong {
  display: block;
  line-height: 1.35;
}

.float-card small {
  color: #9199ab;
  font-size: 8px;
}

.float-card strong {
  font-size: 10px;
}

.section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 45px;
}

.section-heading h2,
.process-copy h2,
.benefit-intro h2,
.contact-copy h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(34px, 8vw, 54px);
  font-weight: 750;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: #cbd4ef;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card-featured {
  color: var(--white);
  border-color: var(--blue);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .13), transparent 37%),
    var(--blue);
}

.service-card-featured p {
  color: #e2e8ff;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: #aab2c7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-card-featured .service-number {
  color: #bfcaff;
}

.service-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 42px;
  border-radius: 12px;
  color: var(--blue);
  background: #edf1ff;
  place-items: center;
}

.service-card-featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.service-icon svg {
  width: 29px;
}

.service-card h3 {
  max-width: 270px;
  margin-bottom: 15px;
  font-size: 23px;
}

.service-card p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.card-link {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.service-card-featured .card-link {
  border-color: rgba(255, 255, 255, .2);
}

.card-link b {
  font-size: 17px;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.process::before {
  position: absolute;
  top: -200px;
  left: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 103, 223, .22), transparent 67%);
  content: "";
}

.process-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 70px;
}

.process-visual {
  min-height: 410px;
  display: grid;
  place-items: center;
}

.process-ring {
  position: relative;
  display: grid;
  width: min(78vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  place-items: center;
}

.process-ring::before,
.process-ring::after {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.process-ring::before { inset: 45px; }
.process-ring::after { inset: 92px; }

.ring-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.brand-mark.large {
  width: 51px;
  height: 51px;
  padding: 8px;
  gap: 5px;
  border-radius: 13px;
}

.brand-mark.large span {
  width: 8px;
}

.brand-mark.large span:nth-child(1) { height: 15px; }
.brand-mark.large span:nth-child(2) { height: 28px; }
.brand-mark.large span:nth-child(3) { height: 21px; }

.ring-center strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.ring-label {
  position: absolute;
  z-index: 3;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  color: #c7cee1;
  background: var(--navy-light);
  font-size: 9px;
  font-weight: 700;
}

.ring-label::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.ring-label-one { top: 12%; right: 2%; }
.ring-label-two { bottom: 20%; right: -5%; }
.ring-label-three { bottom: 14%; left: -3%; }

.eyebrow.light {
  color: #91a6f2;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy h2 em {
  color: #8aa2f5;
}

.process-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #aeb7cd;
}

.process-points {
  display: grid;
  margin-top: 35px;
}

.process-points > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.process-points span {
  color: #7582a1;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.process-points p {
  margin: 0;
  color: #aeb7cd;
  font-size: 13px;
}

.process-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 14px;
}

.benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  gap: 50px;
}

.benefit-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 22px 0;
  color: var(--ink-soft);
}

.text-link.dark span {
  transition: transform .2s ease;
}

.text-link.dark:hover span {
  transform: translateX(4px);
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  color: var(--blue);
  background: #e8edfc;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.benefit-list h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.benefit-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 65px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(28, 38, 72, .06);
}

.fact-strip div {
  padding: 23px 16px;
  text-align: center;
}

.fact-strip div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fact-strip div:nth-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.fact-strip strong,
.fact-strip span {
  display: block;
}

.fact-strip strong {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.fact-strip span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
}

.cta-section {
  padding: 28px 0;
  background: var(--cream);
}

.cta-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 30px;
  padding: 45px 30px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue);
}

.cta-pattern {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.cta-pattern::before,
.cta-pattern::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  content: "";
}

.cta-pattern::before { inset: 55px; }
.cta-pattern::after { inset: 110px; }

.cta-card > *:not(.cta-pattern) {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(32px, 8vw, 48px);
}

.cta-card h2 em {
  color: #dce4ff;
}

.cta-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #dfe5ff;
}

.button-light {
  width: fit-content;
  flex: 0 0 auto;
  color: var(--blue);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(25, 47, 116, .2);
}

.button-light:hover {
  color: var(--blue-dark);
  background: #f4f6ff;
}

.contact-grid {
  display: grid;
  gap: 45px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 22px;
  color: var(--ink-soft);
}

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card > a,
.contact-address {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 21px;
  border-bottom: 1px solid var(--line);
}

.contact-card > a {
  transition: background .2s ease;
}

.contact-card > a:hover {
  background: #f7f9ff;
}

.contact-card > a > b {
  color: var(--blue);
  font-size: 18px;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--blue);
  background: #eaf0ff;
  place-items: center;
}

.contact-icon svg {
  width: 20px;
}

.contact-card small,
.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-card small {
  margin-bottom: 2px;
  color: #8b93a6;
  font-size: 10px;
}

.contact-card strong {
  font-size: 13px;
  line-height: 1.5;
}

.contact-note {
  padding: 15px 21px;
  color: #7f8799;
  background: #f8f9fc;
  font-size: 10px;
}

.site-footer {
  padding: 28px 0;
  color: #aeb7cd;
  background: var(--navy);
}

.footer-inner {
  align-items: flex-start;
  flex-direction: column;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name strong {
  color: #91a6f2;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 64px, 1180px);
  }

  .main-nav {
    display: flex;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .cta-card {
    padding: 55px;
  }

  .contact-card > a,
  .contact-address {
    padding: 23px 27px;
  }

  .contact-card strong {
    font-size: 14px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-top: 27px;
  }

  .hero {
    display: flex;
    align-items: center;
    min-height: 790px;
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .dashboard-card {
    inset: 85px 22px auto;
    padding: 25px;
  }

  .float-card-top {
    top: 55px;
    right: -5px;
  }

  .float-card-bottom {
    bottom: 35px;
    left: -12px;
  }

  .section {
    padding: 120px 0;
  }

  .section-heading {
    grid-template-columns: 1.35fr .65fr;
    align-items: end;
    margin-bottom: 60px;
  }

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

  .service-card:last-child {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
  }

  .benefits-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
  }

  .fact-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .fact-strip div {
    padding: 29px 20px;
  }

  .fact-strip div:not(:last-child) {
    border-right: 1px solid var(--line);
  }

  .fact-strip div:nth-child(-n+2) {
    border-bottom: 0;
  }

  .fact-strip strong {
    font-size: 28px;
  }

  .cta-section {
    padding: 0;
    background: linear-gradient(var(--cream) 50%, var(--white) 50%);
  }

  .cta-card {
    grid-template-columns: 1fr auto;
    padding: 65px 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 90px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    min-height: 39px;
    padding: 0 12px;
    font-size: 11px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-name strong {
    font-size: 10px;
  }

  .hero-meta span::after {
    display: none;
  }

  .float-card-top {
    right: -5px;
  }

  .float-card-bottom {
    left: -4px;
  }

  .contact-card > a,
  .contact-address {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding: 18px 15px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
