@font-face {
  font-family: "Satoshi Variable";
  src: url("../font/Satoshi-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi Variable";
  src: url("../font/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand */
  --primary-clr: #19bc66;
  --secondary-clr: #139e55;
  --heading-clr: #222222;
  --text-clr: #444444;
  --light-green: #e2ffeb;
  --white-clr: #ffffff;
  --light-clr: #dddddd;

  /* Gradients */
  --hero-gradient: linear-gradient(0deg, #ffffff, #ffffff), linear-gradient(180deg, rgba(25, 188, 102, 0.76) 0%, #139e55 100%);

  --border-gradient: linear-gradient(141.75deg, #ffffff 24.82%, #19bc66 80.14%);

  --shadow-clr: rgba(0, 0, 0, 0.12);

  /* Motion */
  --transition: all 0.3s ease;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html:not(.js-loaded) [data-animate] {
  opacity: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  color: var(--text-clr);
  background: var(--white-clr);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main{
  flex-grow:1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

button,
input,
textarea {
  border: 0;
  outline: none;
}

button {
  cursor: pointer;
}

.flex {
  display: flex;
}

.item-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* ------------------------------------------------------------
   Common Typography
------------------------------------------------------------ */
.sec-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0px;
  color: var(--heading-clr);
}

.sec-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 29.7px;
  letter-spacing: 0px;
  color: var(--text-clr);
}

.em-card {
  position: relative;
  min-width: 600px;
  height: 600px;
  max-width: 600px;
  overflow: hidden;
  background: var(--light-green);
  border-radius: var(--radius-lg);
  border: 0.95px solid #0000000f;
}

.em-green-card {
  background: var(--light-green);
  border-radius: var(--radius-lg);
}

.em-main{
  padding: 100px 0 50px;
}

.mb-sm {
  margin-bottom: 12px;
}

.mb-lg {
  margin-bottom: 26px;
}

.px-xl {
  padding-block: 104px;
}

.pb-xxl {
  padding-bottom: 100px;
}

.mx-xxl {
  margin-block: 104px;
}

/* ------------------------------------------------------------
   Navbar
------------------------------------------------------------ */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-nav.scrolled {
  background: #ffffff;
  border-bottom-color: var(--border-clr);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Logo */
.site-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.site-nav__brand img{
  max-width: 50px;
  width: 100%;
}

.logo-text {
  font-family: "Satoshi Variable", sans-serif;
  font-weight: 900;
  font-size: 22.95px;
  line-height: 26.23px;
  color: var(--heading-clr);
}

/* Desktop links */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-clr);
  padding: 4px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--primary-clr);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.site-nav__link:hover {
  color: var(--primary-clr);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
  transform: scaleX(1);
}

.site-nav__link--active {
  color: var(--heading-clr);
}

.site-nav__sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--border-clr);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Hamburger */
.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.site-nav__burger span {
  display: block;
  height: 2px;
  background: var(--heading-clr);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  width: 100%;
}

.site-nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.site-nav__drawer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease;
  background: rgba(255, 255, 255, 0.98);
}

.site-nav__drawer.open {
  max-height: 260px;
  border-top-color: var(--border-clr);
}

.site-nav__drawer nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0 20px;
}

.site-nav__drawer-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-clr);
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.site-nav__drawer-link:last-child {
  border-bottom: none;
}

.site-nav__drawer-link:hover,
.site-nav__drawer-link.site-nav__link--active {
  color: var(--primary-clr);
  padding-left: 6px;
}

.site-nav__overlay {
  position: fixed;
  left: 0;
  top: 72px;
  width: 100vw;
  height: calc(100vh - 72px);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.site-nav__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

/* ------------------------------------------------------------
   Hero Section
------------------------------------------------------------ */
.em-hero {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.em-hero__bg {
  background-image: url("../images/em-hero-bg.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.em-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
}

.em-hero__copy {
  max-width: 560px;
  margin-top: 115px;
}

.em-hero__title {
  margin: 0 0 23px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 60px;
  color: var(--heading-clr);
}

.em-hero__title .em-accent {
  color: var(--primary-clr);
}

.em-hero__subtitle {
  margin: 0 0 48px;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: var(--text-clr);
}

/* ------------------------------------------------------------
   Features Section
------------------------------------------------------------ */
.em-features {
  padding: 100px 0;
  text-align: center;
  position: relative;
  padding-bottom: 80px;
}

.em-features::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/vector-art1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  height: 558px;
}

.em-features > * {
  position: relative;
  z-index: 1;
}

.em-features__title {
  font-size: 42px;
}

.em-features__subtitle {
  margin: 0 auto;
  max-width:800px;
}

/* ------------------------------------------------------------
   Transaction Section
------------------------------------------------------------ */
.em-transaction {
  overflow: hidden;
}

.em-transaction__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.em-transaction__text {
  max-width: 522px;
}

.em-transaction__visual {
  display: flex;
  justify-content: flex-end;
}

.em-transaction__bg-card {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.em-transaction__img {
  max-width: 481px;
  width: 100%;
  height: 100%;
}

.em-transaction__pop {
  position: absolute;
  top: 117px;
  max-width: 488px;
  width:100%;
}

/* ------------------------------------------------------------
   Category / Orbit Section
------------------------------------------------------------ */
.em-category {
  position: relative;
  overflow: visible;
}

.em-category::after {
  content: "";
  position: absolute;
  content: url("../images/dot-art1.png");
  pointer-events: none;
  z-index: 0;
  top: -143px;
  left: 0;
}

.em-category::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 270px;
  background-image: url("../images/vector-art2.png");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  background-position: 0 -152px;
  z-index: 0;
}

.em-category > * {
  position: relative;
  z-index: 1;
}

.cat-orbit-wrap {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 60px;
  overflow: hidden;
}

/* Center content */
.cat-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 480px;
}

/* Badges */
.cat-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 182px;
  height: 42px;
  padding: 6px 10px;
  border-radius: 40px;
  background: var(--white-clr);
  color: #444444;
  font-size: 14px;
  font-weight: 500;
}

.cat-badge img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
}

/* Rings group — shift all rings up together */
.cat-rings-group {
  position: absolute;
  inset: 0;
}

/* Orbit rings */
.cat-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(25, 188, 102, 0.3);
}

/* Ring 0 — inner, 4 items, radius 130px */
.cat-ring--0 {
  width: 520px;
  height: 520px;
  margin-left: -260px;
  margin-top: -260px;
  animation: cat-cw 26s linear infinite;
}

/* Ring 1 — middle, 5 items, radius 420px */
.cat-ring--1 {
  width: 820px;
  height: 820px;
  margin-left: -410px;
  margin-top: -410px;
  animation: cat-cw 38s linear infinite;
}

/* Ring 2 — outer, 5 items, radius 530px — clips at section edges */
.cat-ring--2 {
  width: 1120px;
  height: 1120px;
  margin-left: -560px;
  margin-top: -560px;
  animation: cat-cw 54s linear infinite;
}

/* Ring items — centered at ring origin then translated outward */
.cat-ring > li {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px;
}

/* Ring 0 — 6 items, 60° apart, radius 260px */
.cat-ring--0 > li:nth-child(1) {
  transform: rotate(0deg) translateX(260px) rotate(0deg);
}
.cat-ring--0 > li:nth-child(2) {
  transform: rotate(60deg) translateX(260px) rotate(-60deg);
}
.cat-ring--0 > li:nth-child(3) {
  transform: rotate(120deg) translateX(260px) rotate(-120deg);
}
.cat-ring--0 > li:nth-child(4) {
  transform: rotate(180deg) translateX(260px) rotate(-180deg);
}
.cat-ring--0 > li:nth-child(5) {
  transform: rotate(240deg) translateX(260px) rotate(-240deg);
}
.cat-ring--0 > li:nth-child(6) {
  transform: rotate(300deg) translateX(260px) rotate(-300deg);
}

/* Ring 1 — 8 items, 45° apart, radius 410px */
.cat-ring--1 > li:nth-child(1) {
  transform: rotate(0deg) translateX(410px) rotate(0deg);
}
.cat-ring--1 > li:nth-child(2) {
  transform: rotate(45deg) translateX(410px) rotate(-45deg);
}
.cat-ring--1 > li:nth-child(3) {
  transform: rotate(90deg) translateX(410px) rotate(-90deg);
}
.cat-ring--1 > li:nth-child(4) {
  transform: rotate(135deg) translateX(410px) rotate(-135deg);
}
.cat-ring--1 > li:nth-child(5) {
  transform: rotate(180deg) translateX(410px) rotate(-180deg);
}
.cat-ring--1 > li:nth-child(6) {
  transform: rotate(225deg) translateX(410px) rotate(-225deg);
}
.cat-ring--1 > li:nth-child(7) {
  transform: rotate(270deg) translateX(410px) rotate(-270deg);
}
.cat-ring--1 > li:nth-child(8) {
  transform: rotate(315deg) translateX(410px) rotate(-315deg);
}

/* Ring 2 — 10 items, 36° apart, radius 560px */
.cat-ring--2 > li:nth-child(1) {
  transform: rotate(0deg) translateX(560px) rotate(0deg);
}
.cat-ring--2 > li:nth-child(2) {
  transform: rotate(36deg) translateX(560px) rotate(-36deg);
}
.cat-ring--2 > li:nth-child(3) {
  transform: rotate(72deg) translateX(560px) rotate(-72deg);
}
.cat-ring--2 > li:nth-child(4) {
  transform: rotate(108deg) translateX(560px) rotate(-108deg);
}
.cat-ring--2 > li:nth-child(5) {
  transform: rotate(144deg) translateX(560px) rotate(-144deg);
}
.cat-ring--2 > li:nth-child(6) {
  transform: rotate(180deg) translateX(560px) rotate(-180deg);
}
.cat-ring--2 > li:nth-child(7) {
  transform: rotate(216deg) translateX(560px) rotate(-216deg);
}
.cat-ring--2 > li:nth-child(8) {
  transform: rotate(252deg) translateX(560px) rotate(-252deg);
}
.cat-ring--2 > li:nth-child(9) {
  transform: rotate(288deg) translateX(560px) rotate(-288deg);
}
.cat-ring--2 > li:nth-child(10) {
  transform: rotate(324deg) translateX(560px) rotate(-324deg);
}

/* Icon circles */
.cat-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Counter-rotate must match its ring's speed */
.cat-ring--0 .cat-icon {
  animation: cat-ccw 26s linear infinite;
}
.cat-ring--1 .cat-icon {
  animation: cat-ccw 38s linear infinite;
}
.cat-ring--2 .cat-icon {
  animation: cat-ccw 54s linear infinite;
}

.cat-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* Orbit keyframes */
@keyframes cat-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes cat-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* ------------------------------------------------------------
   Download buttons
------------------------------------------------------------ */
.em-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content:center;
}

.em-cta {
  padding-top: 104px;
}

.em-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 185px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-lg);
  background: #121212;
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 1.2px solid #a6a6a6;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.em-btn__icon {
  width: 22px;
  height: 22px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center
}

.em-btn:hover {
  transform: translateY(-2px) !important;
  background: #242424;
}

.em-btn:active {
  transform: translateY(0);
}

.em-btn:focus-visible {
  outline: 2px solid var(--primary-clr);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   Phone mockup
------------------------------------------------------------ */
.em-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.em-hero__device {
  position: relative;
  max-width:384px;
  filter: drop-shadow(-40px 50px 60px rgba(0, 0, 0, 0.22)) drop-shadow(0 24px 50px rgba(18, 158, 85, 0.25));
}

.em-hero__device img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: -102.77px 102.77px 82.21px 0px #00000040;
}

/* fade-out gradient over bottom of phone, matches the reference */
.em-hero__device::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(226, 255, 235, 0.95) 100%);
  pointer-events: none;
}

/* ------------------------------------------------------------
   Ledger / Accounts Section
------------------------------------------------------------ */

.em-ledger {
  position: relative;
  z-index: 1;
}

.em-ledger__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.em-ledger__main-img {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 28px;
}

@keyframes ledger-img-cycle {
  5% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  32% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ledger-user-slide {
  0% {
    left: 251px;
  }
  44% {
    left: 251px;
  }
  56% {
    left: 140px;
    animation-timing-function: ease-out;
  }
  58% {
    left: 138px;
  }
  86% {
    left: 138px;
  }
  100% {
    left: 251px;
  }
}

@keyframes ledger-user-appear {
  0% {
    opacity: 0;
  }
  46% {
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  89% {
    opacity: 1;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.em-ledger__main-img.one,
.em-ledger__main-img.two {
  opacity: 0;
  animation: ledger-img-cycle 6s linear infinite;
  animation-play-state: paused;
}

.em-ledger__visual.cycle-active .em-ledger__main-img.one,
.em-ledger__visual.cycle-active .em-ledger__main-img.two {
  animation-play-state: running;
}

.em-ledger__main-img.two {
  animation-delay: 3s;
}


.em-ledger__user-img {
  position: absolute;
  top: 120px;
  width: 106px;
  height: 104px;
}

.em-ledger__user-img.one {
  left: 251px;
  opacity: 0;
  animation: ledger-user-slide 6s linear infinite;
  animation-play-state: paused;
}

.em-ledger__user-img.two,
.em-ledger__user-img.three {
  opacity: 1;
  animation: ledger-user-appear 6s linear infinite;
  animation-play-state: paused;
}

.em-ledger__user-img.two {
  left: 251px;
}

.em-ledger__user-img.three {
  left: 363px;
}

.em-ledger__visual.cycle-active .em-ledger__user-img.one,
.em-ledger__visual.cycle-active .em-ledger__user-img.two,
.em-ledger__visual.cycle-active .em-ledger__user-img.three {
  animation-play-state: running;
}

.em-ledger__visual.cycle-active .em-ledger__user-img.one {
  opacity: 1;
  transition: opacity 1.08s linear 0s;
}


.em-ledger__main-img img {
  width: 100%;
  height: auto;
}

/* Visual card (LEFT) */
.em-ledger__visual {
  display: flex;
  justify-content: center;
}

.em-ledger__card.em-card.mob {
  display: none;
}

/* Bottom three books row */
.em-ledger__books {
  position: absolute;
  bottom: 32px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

/* Center green card */
.em-ledger__book-card {
  flex: 1;
  background: linear-gradient(135deg, #19bc66 0%, #139e55 100%);
  border-radius: 10px;
  padding: 10px 8px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.em-ledger__book-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  margin: 0 0 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.em-ledger__book-amount {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.em-ledger__text{
  max-width:582px;
}

/* ------------------------------------------------------------
   Common: Visually hidden (SEO / screen-reader text)
------------------------------------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   Common: Badge List wrapper (reusable across sections)
------------------------------------------------------------ */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ------------------------------------------------------------
   Common: Badge Pill (reusable across sections)
------------------------------------------------------------ */
.em-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 6px 16px;
  border-radius: 40px;
  background: var(--light-green);
  color: var(--heading-clr);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 29.7px;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   Visualize Section
------------------------------------------------------------ */
.em-visualize {
  position: relative;
  z-index: 1;
}

.em-visualize .em-green-card {
  padding: 63px;
  min-height: 600px;
}

.em-visualize__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.em-visualize__header .sec-title {
  margin-bottom: 16px;
}

/* Three-column grid: left-tags | chart | right-tags */
.em-visualize__layout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 55px;
  overflow: visible;
}

/* Tag columns */
.em-visualize__tags {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
  overflow: visible;
}

.em-visualize__tags--left {
  align-items: flex-start;
}
.em-visualize__tags--right {
  align-items: flex-end;
}

/* Individual category tag card */
.em-vtag-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 8px 16px;
  border-radius: 5.93px;
  background: #ffffff;
  box-shadow: 0px 0.85px 10.75px 0px #2121211c;
}

.em-vtag-inner img{
  max-width:60px;
  max-height:60px;
}

.em-vtag {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.em-vtag--visible {
  opacity: 1;
  transform: translateY(0);
}

.em-vtag.one .em-vtag-inner {
  transform: translate(33px, -20px);
}
.em-vtag.two .em-vtag-inner {
  transform: translate(2px, 15px);
}
.em-vtag.three .em-vtag-inner {
  transform: translate(71px, 22px);
}
.em-vtag.four .em-vtag-inner {
  transform: translate(-38px, -20px);
}
.em-vtag.five .em-vtag-inner {
  transform: translate(1px, 15px);
}
.em-vtag.six .em-vtag-inner {
  transform: translate(-30px, 22px);
}

.em-vtag::after,
.em-vtag::before {
  position: absolute;
  display: block;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.em-vtag.one::after {
  content: url("../images/em-visual__line1.svg");
  left: 222px;
  top: 8px;
}

.em-vtag.two::after {
  content: url("../images/em-visual__line2.svg");
  left: 179px;
  top: 48px;
}

.em-vtag.three::after {
  content: url("../images/em-visual__line1.svg");
  left: 211px;
  top: 11px;
  transform: scaleY(-1);
}

.em-vtag.four::before {
  content: url("../images/em-visual__line1.svg");
  transform: scaleX(-1);
  right: 217px;
  top: 11px;
}

.em-vtag.five::before {
  content: url("../images/em-visual__line2.svg");
  transform: scaleX(-1);
  right: 178px;
  top: 48px;
}

.em-vtag.six::before {
  content: url("../images/em-visual__line1.svg");
  transform: scale(-1);
  right: 217px;
  top: 9px;
}

.em-vtag__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  color: #222222;
  white-space: nowrap;
}

/* Center chart wrapper */
.em-visualize__chart-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.em-visualize__canvas {
  display: block;
}

/* Center label overlay */
.em-visualize__center-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.em-visualize__center-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.2;
}

.em-visualize__center-sub.bold{
  font-weight:500;
  color:#222;
}

.em-visualize__center-val {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.15;
}

.em-ledge-visualize::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/vector-art3.png");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.em-ledge-visualize {
  position: relative;
  z-index: 1;
}
/* ------------------------------------------------------------
   Report Section
------------------------------------------------------------ */
.em-report {
  position: relative;
  z-index: 1;
}

.em-report::after {
  content: "";
  position: absolute;
  content: url("../images/dot-art2.png");
  pointer-events: none;
  z-index: 0;
  bottom: -55px;
  right: 0;
}

.em-report__card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.em-report__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  z-index: 2;
  position: relative;
  overflow:hidden;
}

.em-report__copy {
  max-width: 597px;
}

.em-report__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.em-report__img {
  position: absolute;
}

.em-report__img--1 {
  top: 117px;
  left: 30px;
  z-index: 1;
}

.em-report__img--2 {
  bottom: 50px;
  right: 20px;
}

.em-report__img--inner1,
.em-report__img--inner2 {
  position: relative;
}

.report1-min-img {
  position: absolute;
  top: -54px;
  right: -25px;
}

.report2-min-img {
  position: absolute;
  right: -15px;
  top: -55px;
}

/* .em-report__img--1 {
  position: absolute;
  left: 20px;
  top: 60px;
  z-index: 1;
  animation: report-float-up 5s ease-in infinite;
}

.em-report__img--2 {
  position: absolute;
  left: 52px;
  bottom: 55px;
  animation: report-float-down 5s ease-in infinite;
}

@keyframes report-float-up {
  0%,
  100% { transform: translateY(0); }
  50%  { transform: translateY(-40px); }
}

@keyframes report-float-down {
  0%,
  100% { transform: translateY(0); }
  50%  { transform: translateY(40px); }
} */

/* ------------------------------------------------------------
   Backup Section
------------------------------------------------------------ */
.em-backup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}

.em-backup__visual {
  display: flex;
  justify-content: center;
}

/* SVG lines overlay */
.em-backup__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Data icon — left, vertically centered */
.em-backup__data {
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

/* Service cards — right side */
.em-backup__service {
  position: absolute;
  right: 55px;
}

.em-backup-path {
  position: absolute;
  left: 199px;
}

.em-backup-path.top {
  top: 207px;
}

.em-backup-path.bottom {
  position: absolute;
  bottom: 207px;
}

.em-backup__service--drive {
  top: 150px;
}

.em-backup__service--cloud {
  bottom: 150px;
}

.em-backup__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.em-backup__text{
  max-width: 600px;
}

/* ------------------------------------------------------------
   Secure Section
------------------------------------------------------------ */

.em-secure {
  position: relative;
  z-index: 1;
}

.em-secure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/vector-art4.png);
  background-repeat: no-repeat;
  pointer-events: none;
  background-position: center;
  transform: translateY(276px);
}

.em-secure__icon img {
  filter: drop-shadow(1px 2px 4px rgba(25, 188, 102, 0.5));
}

.em-secure-inner {
  padding: 83px 76px;
  position: relative;
  z-index: 1;
}

.em-secure__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.em-secure__title {
  margin-bottom: 16px;
}

.em-secure__text {
  margin: 0;
}

.em-secure__grid {
  display: flex;
  gap: 24px;
  flex-wrap:wrap;
}

.em-secure__card{
  width: calc(100% / 3 - (2 * 24px) / 3);
}

.em-secure__card__inner {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  height:100%;
}

.em-secure__card__inner::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 99999px;
  height: 99999px;
  background-image: conic-gradient(rgba(0, 0, 0, 0), var(--primary-clr), rgba(0, 0, 0, 0) 25%);
  animation: secure-border-rotate 5s linear infinite;
}

.em-secure__card__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: var(--white-clr);
  border-radius: calc(var(--radius-lg) - 3px);
}

@keyframes secure-border-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.em-secure__card-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
}

.em-secure__card-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
}

/* ------------------------------------------------------------
   Contact Page
------------------------------------------------------------ */

.em-contact{
  padding-top: 115px;
  padding-bottom: 40px;
}

/* Left column */
.em-contact__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0;
  color: var(--heading-clr);
  margin-bottom: 15px;
}

.em-contact__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 28.03px;
  letter-spacing: 0;
  color: var(--heading-clr);
  margin-bottom: 30px;
}

.em-contact__email-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 27px;
  width:100%;
}

.em-contact__email-badge {
  width: 66px;
  height: 66px;
  background: #D9FCE1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
}

.em-contact__get-in-touch-text{
  font-weight: 400;
  font-size: 18px;
  line-height: 50px;
  color: var(--text-clr);
  text-align: center;
}

.em-contact__email-heading {
  font-weight: 500;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--heading-clr);
  margin-bottom: 2px;
}

.em-contact__email-addr {
  font-weight: 400;
  font-size: 18px;
  line-height: 28.03px;
  letter-spacing: 0;
  color: var(--heading-clr);
  margin: 0;
}

.em-contact__email-addr:hover {
  color: #22c55e;
}

.em-contact-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.em-contact-left .em-contact__app-box {
  margin-top: 30px;
}

/* Green app box */
.em-contact__app-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 28px;
  border-radius: 30px;
  border: 1px solid #0000000f;
  background: var(--light-green);
}

.em-contact__app-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0;
  text-align: center;
  color: var(--heading-clr);
  margin: 0;
}

.em-contact__app-stores {
  display: flex;
  gap: 39px;
  justify-content: center;
}

/* Right column — form card */
.em-contact__form-card {
  padding: 31px 32px;
  border-radius: 30px;
  box-shadow: -1px 1px 20.5px 0px #0000001f;
  background: var(--white-clr);
  height: 100%;
  max-width: 544px;
  margin-left: auto;
}

/* Form fields */
.em-contact__field-label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--heading-clr);
  margin-bottom: 6px;
}

.em-contact__input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #d0d5dd;
  background: var(--white-clr);
  font-size: 14px;
  font-weight: 400;
  color: var(--heading-clr);
  transition: border-color 0.2s ease;
  outline: none;
}

.em-contact__input::placeholder {
  color: #98a2b3;
}

.em-contact__input:focus {
  border-color: var(--primary-clr);
}

.em-contact__input.iti__tel-input {
  padding-left: 90px;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  border-right: 1px solid #d0d5dd;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 13px;
  color: var(--heading-clr);
}

.em-contact__textarea {
  height: 134px;
  resize: vertical;
  padding-top: 10px;
}

/* Send button */
.em-contact__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 51px;
  border-radius: 12px;
  background: var(--primary-clr);
  color: var(--white-clr);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 131%;
  letter-spacing: 0;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease
}

.em-contact__btn:hover {
  background: #14a857;
}

/* Desktop: show inline extras, hide mobile extras */
.em-contact-left__desktop-extras {
  display: block;
}
.em-contact-mobile-extras {
  display: none;
}

/* Contact form submission feedback */
.em-contact__msg--success,
.em-contact__msg--error {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.em-contact__msg--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.em-contact__msg--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Validation error states */
.em-contact__form .em-contact__input.error {
  border-color: #e53e3e;
}

.em-contact__form .help-block {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #e53e3e;
  line-height: 1.4;
}

.em-contact__app-stores a img{
  height: 50px;
  width: auto;
}

.em-contact__get-in-touch-title{
  text-align: center;
  font-weight: 600;
  font-size: 30px;
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.em-footer {
  background: #0d0d0d;
  color: var(--white-clr);
  padding: 45px 0 0;
}

.em-footer__brand .logo-text{
 color:#ffffff;
}

.em-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

/* Brand / Logo */
.em-footer__logo {
  width: 160px;
  height: auto;
}

/* Nav links */
.em-footer__nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.em-footer__legal {
  display: flex;
  align-items: center;
}

.em-footer__legal a + a::before {
  content: "|";
  color: var(--light-clr);
  margin-right: 10px;
  pointer-events: none;
}

.em-footer__nav a,
.em-footer__legal a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--light-clr);
  padding-inline: 5px 10px;
  white-space: nowrap;
  transition: color 0.2s ease;
}


.em-footer__nav a:hover,
.em-footer__legal a:hover {
  color: var(--white-clr);
}

/* Right column */
.em-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

/* Store buttons */
.em-store-row,
.em-footer__stores {
  display: flex;
  gap: 16px;
}

.em-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #000000;
  border: 1.2px solid #a6a6a6;
  border-radius: 10px;
  color: var(--white-clr);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  min-width: 148px;
}

.em-store-btn:hover {
  background: #252525;
  border-color: #555;
}

.em-store-btn img {
  flex-shrink: 0;
  display: block;
}

.em-store-btn__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.em-store-btn__sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-clr);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.em-store-btn__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white-clr);
  line-height: 1.3;
}

/* Bottom bar */
.em-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #676767;
}

.em-footer__copy,
.em-footer__crafted {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  margin: 0;
}

.em-footer__crafted {
  display: flex;
  align-items: center;
  gap: 6px;
}

.em-footer__crafted img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.em-footer__crafted a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.em-footer__crafted a:hover {
  color: #00B5FF;
}

.em-footer__stores a img{
  height: 50px;
  width: auto;
}

/* --- Tutorial Video Section --- */
.em-tutorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow:hidden;
  z-index: 2;
}

.em-tutorial__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  height: 500px;
}

.em-tutorial__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.em-tutorial__video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.em-tutorial__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

/* ------------------------------------------------------------
   CTA Section
------------------------------------------------------------ */
.em-cta {
  position: relative;
  background-image: url("../images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 60px;
}

.em-cta .container {
  position: relative;
  z-index: 1;
}

.em-cta-title {
  text-align: center;
  line-height: 54px;
  max-width: 595px;
}

.em-cta-text {
  margin-bottom: 26px;
  text-align: center;
  margin-inline:auto;
}

.em-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.em-cta__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.em-cta__img {
  width: 100%;
  display: block;
  max-width:528px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.em-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}

.em-cta .sec-title {
  color: var(--white-clr);
}

.em-cta .sec-text {
  color: rgba(255, 255, 255, 0.75);
}

.iti__selected-country{
  height: 44px !important;
}

/* ------------------------------------------------------------
   FAQ PAGE
------------------------------------------------------------ */
.em-faq {
  padding: 80px 0 50px;
}

.em-faq-mobile{
  padding: 0 0 50px;
}

.em-faq__header {
  max-width: 640px;
  margin: 50px auto 0;
}

.em-faq__header .sec-title {
  margin-bottom: 12px;
}

.em-faq__category{
  margin-bottom: 50px;
}

.em-faq-category__wrap{
  margin-top: 50px;
}

.em-faq__category:not(:last-child) {
  padding-bottom: 50px;
  border-bottom: 1px solid #e8f5ee;
}

.em-faq__category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-clr);
  margin-bottom: 20px;
}

.em-faq__accordion .accordion-item.em-faq__item {
  border: 1px solid var(--primary-clr);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(25, 188, 102, 0.06);
}

.em-faq__accordion .accordion-item.em-faq__item:not(:last-child){
  margin-bottom:20px;
}

.em-faq__btn {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-clr);
  background: #ffffff;
  padding: 18px 20px;
  line-height: 1.5;
  box-shadow: none !important;
  align-items:flex-start;
}

.em-faq__btn:not(.collapsed) {
  color: var(--primary-clr);
  background: #f5fff9;
}

.em-faq__btn::after {
  margin-top:3px;
  filter: invert(52%) sepia(72%) saturate(450%) hue-rotate(102deg) brightness(90%);
}

.em-faq__btn:focus {
  box-shadow: none !important;
  outline: none;
}

.em-faq__body {
  font-size: 16px;
  color: var(--text-clr);
  line-height: 1.75;
  padding: 4px 20px 20px;
  background: #f5fff9;
}

.em-faq__body p {
  margin: 0 0 12px;
}

.em-faq__body p:last-child {
  margin-bottom: 0;
}

.em-faq__body .ratio {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.em-faq__body .ratio.ratio-16x9 {
  --bs-aspect-ratio: 40%;
}

/* ---- FAQ Search Bar ---- */
.em-faq__search-wrap {
  max-width: 640px;
  margin: 30px auto 0;
}

.em-faq__search-label {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-clr);
  margin-bottom: 10px;
}

.em-faq__search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.em-faq__search-icon {
  position: absolute;
  left: 14px;
  color: #aab8c2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.em-faq__search-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 40px 0 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--primary-clr);
  font-size: 15px;
  color: var(--heading-clr);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.em-faq__search-input::placeholder {
  color: #98a2b3;
}

.em-faq__search-input:focus {
  border-color: var(--secondary-clr);
  box-shadow: 0 0 0 3px rgba(25, 188, 102, 0.15);
  background: #f5fff9;
}

.em-faq__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

.em-faq__search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #aab8c2;
  font-size: 14px;
  padding: 4px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.em-faq__search-clear:hover {
  color: var(--heading-clr);
}

.em-faq__search-empty {
  font-size: 15px;
  color: var(--text-clr);
  text-align: center;
  margin-top: 16px;
  padding: 20px;
  background: #f5fff9;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--primary-clr);
}

/* =============================================
   CMS Pages (Privacy Policy, Terms & Conditions)
   ============================================= */

.em-legal-mobile{
  padding:30px 0;
}

.cms-page {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.cms-page p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}

.cms-page h1 {
  display: block;
  font-size: 2em;
  font-weight: bold;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  color: #222;
}

.cms-page h2 {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 0.83em;
  color: #444;
}

.cms-page ul {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 20px;
  padding-left: 20px;
}

.cms-page ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 20px;
  padding-left: 20px;
}

.cms-page li {
  display: list-item;
}

.cms-page ul li {
  list-style: disc;
}

.cms-page ol li {
  list-style: decimal;
}

.cms-page hr {
  margin: 30px 0;
}

.cms-page a {
  color: #0066cc;
  text-decoration: none;
}

.cms-page a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   Smart App Banner  (mobile only — shown via JS on ≤767px)
------------------------------------------------------------ */
.sab {
  display: none; /* JS shows it only on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
  will-change: transform, opacity;
}

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

.sab.sab--hiding {
  transform: translateY(110%);
  opacity: 0;
}

.sab__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  line-height: 1;
}

.sab__close:active {
  transform: scale(0.88);
  background: rgba(0, 0, 0, 0.12);
}

.sab__logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
}

.sab__text {
  flex: 1;
  min-width: 0;
}

.sab__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-clr);
  margin: 0 0 2px;
  line-height: 1.2;
}

.sab__desc {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sab__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--primary-clr);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.sab__btn:hover {
  background: var(--secondary-clr);
  color: #fff;
}

.sab__btn:active {
  transform: scale(0.93);
}

.sab__btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  flex-shrink: 0;
}

/* --- Video Play Button --- */
.em-hero__video-wrapper {
  position: relative;
}

.video-modal .modal-dialog {
  max-width:1000px
}

.em-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-clr);
  border: 3px solid var(--primary-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 0 8px rgba(25, 188, 102, 0.25);
}

.em-hero__visual .em-play-btn{
  top: 56%;
}

.em-play-btn .fa-play {
  color: #fff;
  font-size: 22px;
  margin-left: 4px;
}

/* --- FAQ Video Promo --- */
.em-faq__promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin: 36px auto 0;
  border:1px solid var(--primary-clr);
  border-radius: var(--radius-md);
  background: #f5fff9;
  padding: 20px 40px;
  max-width:900px;
}

.em-faq__promo-copy{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.em-faq__promo-video {
  position: relative;
  background: var(--primary-clr);
  border-radius: 14px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  padding:16px;
}

.em-faq__promo-video::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to top, rgb(0 0 0 / 90%) 2%, transparent 100%);
  border-radius: 0 0 14px 14px;
  pointer-events: none;
  z-index: 1;
}

.em-faq__promo-icon{
  width: 58px;
  height: 50px;
  background: #e1ffed;
  padding: 10px;
  border-radius: 10px;
}

.em-faq__promo-icon img{
  width:100%;
}

.em-faq__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-clr);
  line-height: 1.3;
}

.em-faq__promo-text {
  font-size: 16px;
  color: var(--text-clr);
  line-height: 1.65;
}

.em-faq__promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-clr);
  color: #ffffff;
  font-size: 16px;
  width: fit-content;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  height: 44px;
  margin-top:10px;
  transition: background 0.2s ease
}

.em-faq__promo-btn:hover {
  background: #14a857;
}

.em-faq__promo-thumb-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.em-faq__promo-thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.em-faq__promo-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}

.em-faq__promo-play {
  width: 38px;
  height: 38px;
}

.em-faq__promo-play .fa-play {
  color: #fff;
  font-size: 16px;
  margin-left: 3px;
}

/* ------------------------------------------------------------
   404 Page
------------------------------------------------------------ */
.em-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 160px);
  padding: 80px 16px;
  text-align: center;
}

.em-404__inner {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.em-404__illustration {
  position: relative;
  margin-bottom: 30px;
}

.em-404__circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.em-404__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  line-height: 1;
}

.em-404__number span {
  font-size: 210px;
  font-weight: 900;
  color: #00b24f;
  text-shadow: -8px 0 0 #b0e0bf;
  line-height: 190px;
}

.em-404__logo-zero {
  width: auto;
  height: 158px;
  object-fit: contain;
  filter: drop-shadow(-8px 0 0 #b0e0bf);
}

.em-404__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-clr);
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.em-404__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-clr);
  margin-bottom: 30px;
  max-width: 420px;
}

.em-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.em-404__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-clr);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  border: 1.2px solid var(--light-clr);
  transition: var(--transition);
  background: var(--white-clr);
}

.em-404__link:hover {
  border-color: var(--primary-clr);
  color: var(--primary-clr);
  box-shadow: 0 4px 14px rgba(25, 188, 102, 0.12);
}

.cmn-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-lg);
  background: var(--primary-clr);
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: background 0.2s ease;
}

.cmn-btn:hover {
  background: #14a857;
}

/* ------------------------------------------------------------
   Invite Page
------------------------------------------------------------ */
/* Error card */
.em-invite__error-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top:20px;
}

.em-invite__error-box {
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  gap:30px;
}

.em-invite__error-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.em-invite__error-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.em-invite__error-card .cmn-btn{
  width:fit-content;
  margin-top: 10px;
}

.em-invite__error-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  color: #e53e3e;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  width: fit-content;
}

.em-invite__error-badge img{
  width:20px;
  height:20px;
}

.em-invite__error-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--heading-clr);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.em-invite__error-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-clr);
}

.em-invite__error-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.em-invite__error-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-clr);
}

.em-invite__error-list li i {
  color: #e53e3e;
  font-size: 16px;
  flex-shrink: 0;
}

.em-divider {
  width: 100%;
  height: 1px;
  background: #99999966;
  display: block;
  margin-block: 10px;
}


/* ── Section 1: Banner Hero ── */
.em-invite__hero {
  margin-bottom: 24px;
  padding: 20px 24px;
  max-width: 1000px;
  margin-inline: auto;
  border: 1px solid var(--primary-clr);
  border-radius: var(--radius-md);
  background: #f5fff9;
  padding: 20px 40px;
}

.em-invite__hero-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.em-invite__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 4px;
  box-shadow: 0 2px 12px rgba(25, 188, 102, 0.2);
}

.em-invite__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.em-invite__head-text strong {
  color:var(--heading-clr);
}

.em-invite__by {
  font-size: 16px;
  color: var(--text-clr);
}

.em-invite__by strong {
  color: var(--heading-clr);
  font-weight: 600;
}

.em-invite__name {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--heading-clr);
  letter-spacing: -0.02em;
}

.em-invite__name em {
  font-style: normal;
  color: var(--primary-clr);
}

.em-invite__tagline {
  font-size: 15px;
  color: var(--text-clr);
  line-height: 1.6;
  max-width: 400px;
}

/* ── Section 2: Download card ── */
.em-invite__dl-card {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 24px;
  background: var(--white-clr);
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-clr);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 36px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.em-invite__dl-title {
  margin-bottom: 2px;
}

.em-invite__title{
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-clr);
}

.em-invite__store-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.em-invite__store-badge {
  height: 48px;
  width: auto;
}

/* ── Section 3: QR card ── */
.em-invite__qr-card {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: var(--white-clr);
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-clr);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 36px 30px;
}

.em-invite__qr-card-header {
  text-align: center;
  margin-bottom: 36px;
}

.qr-card-header-inner{
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-bottom: 20px;
}

.em-invide__download-text{
  display: flex;
  justify-content: left;
  gap: 20px;
}


.em-invite__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--light-green);
  color: var(--primary-clr);
  display: flex;
  align-items: center;
  padding: 12px;
  justify-content: center;
}

.em-invite__qr-title {
  margin-bottom: 2px;
  text-align:left;
}

.qr-card-header-cont .sec-text{
  text-align:left;
}

.em-invite__qr-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

/* Numbered guide steps */
.em-invite__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.em-invite__step {
  display: flex;
  align-items: start;
  gap: 16px;
}

.em-invite__step-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--primary-clr);
  color: var(--primary-clr);
  font-size: 14px;
  line-height: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:2px;
}

.em-invite__step-text {
  font-size: 18px;
  color: var(--text-clr);
  line-height: 28px;
  text-align:left;
}

.em-invite__step-text strong {
  color: var(--heading-clr);
  font-weight: 600;
}

/* QR wrap */
.em-invite__qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: var(--white-clr);
  border-radius: var(--radius-md);
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  width: fit-content;
}

/* ── Invite code box ── */
.em-invite__code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.em-invite__code-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-clr);
  margin: 0;
}

.em-invite__code-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white-clr);
  border: 1.5px solid var(--primary-clr);
  border-radius: 7px;
  padding: 6px 16px;
}

.em-invite__code-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-clr);
}

.em-invite__code-copy {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--primary-clr);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.em-invite__code-copy:hover {
  color: var(--secondary-clr);
  transform: scale(1.15);
}

/* ── Toast notification ── */
.em-invite__toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.em-invite__toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Shimmer / skeleton loading state ── */
@keyframes invite-shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}

.em-invite__hero.em-loading,
.em-invite__dl-card.em-loading,
.em-invite__qr-card.em-loading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.em-invite__hero.em-loading > *,
.em-invite__dl-card.em-loading > *,
.em-invite__qr-card.em-loading > * {
  visibility: hidden;
}

.em-invite__hero.em-loading::after,
.em-invite__dl-card.em-loading::after,
.em-invite__qr-card.em-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #edfff4 25%,
    #f7fffa 50%,
    #edfff4 75%
  );
  background-size: 1600px 100%;
  animation: invite-shimmer 1.6s infinite linear;
  z-index: 1;
}


/* ======== 1400px ======== */
@media screen and (min-width: 1400px) {
  .em-contact__email-row {
    max-width: 464px;
  }

  .em-contact__app-stores a img, .em-footer__stores a img{
    height: auto;
    width: auto;
  }
}

/* ======== 1199px ======== */
@media screen and (max-width: 1199px) {
  .em-vtag {
    width: 180px;
  }
  .em-vtag__label {
    font-size: 15px;
  }
  .em-card {
    min-width: 500px;
    height: 500px;
    max-width: 500px;
  }
  .em-transaction__pop {
    position: absolute;
    top: 93px;
  }
  .em-ledger__user-img.one {
    left: 198px;
  }
  .em-secure-inner {
    padding: 83px 20px;
  }

  .em-ledger__user-img.two {
    left: 200px;
  }
  .em-ledger__user-img.three {
    left: 297px;
  }

  @keyframes ledger-user-slide {
    0% {
      left: 198px;
    }
    44% {
      left: 198px;
    }
    56% {
      left: 107px;
      animation-timing-function: ease-out;
    }
    58% {
      left: 105px;
    }
    86% {
      left: 105px;
    }
    100% {
      left: 198px;
    }
  }

  .em-ledger__user-img {
    top: 90px;
  }

  .em-report__img--1 {
    top: 80px;
    left: 22px;
    width: 300px;
    z-index: 1;
  }

  .report2-min-img {
    right: -15px;
    top: -36px;
    width: 150px;
  }

  .report1-min-img {
    top: -26px;
    right: -25px;
    width: 150px;
  }

  .em-report__img--2 {
    bottom: 43px;
    right: 14px;
    width: 439px;
  }

  .em-backup-path {
    position: absolute;
    left: 135px;
  }

  .em-backup__data {
    left: 15px;
  }

  .em-backup__service--drive {
    top: 96px;
  }

  .em-backup__service--cloud {
    bottom: 96px;
  }

  .em-backup-path.top {
    top: 161px;
  }

  .em-backup-path.bottom {
    bottom: 161px;
  }

  .em-backup__service {
    right: 24px;
  }

  .cat-ring {
    display: block;
  }

  /* Ring 0 — radius 130px */
  .cat-ring--0 {
    width: 520px;
    height: 520px;
    margin-left: -260px;
    margin-top: -260px;
  }
  .cat-ring--0 > li:nth-child(1) {
    transform: rotate(0deg) translateX(260px) rotate(0deg);
  }
  .cat-ring--0 > li:nth-child(2) {
    transform: rotate(60deg) translateX(260px) rotate(-60deg);
  }
  .cat-ring--0 > li:nth-child(3) {
    transform: rotate(120deg) translateX(260px) rotate(-120deg);
  }
  .cat-ring--0 > li:nth-child(4) {
    transform: rotate(180deg) translateX(260px) rotate(-180deg);
  }
  .cat-ring--0 > li:nth-child(5) {
    transform: rotate(240deg) translateX(260px) rotate(-240deg);
  }
  .cat-ring--0 > li:nth-child(6) {
    transform: rotate(300deg) translateX(260px) rotate(-300deg);
  }

  /* Ring 1 — radius 360px */
  .cat-ring--1 {
    width: 720px;
    height: 720px;
    margin-left: -360px;
    margin-top: -360px;
  }
  .cat-ring--1 > li:nth-child(1) {
    transform: rotate(0deg) translateX(360px) rotate(0deg);
  }
  .cat-ring--1 > li:nth-child(2) {
    transform: rotate(45deg) translateX(360px) rotate(-45deg);
  }
  .cat-ring--1 > li:nth-child(3) {
    transform: rotate(90deg) translateX(360px) rotate(-90deg);
  }
  .cat-ring--1 > li:nth-child(4) {
    transform: rotate(135deg) translateX(360px) rotate(-135deg);
  }
  .cat-ring--1 > li:nth-child(5) {
    transform: rotate(180deg) translateX(360px) rotate(-180deg);
  }
  .cat-ring--1 > li:nth-child(6) {
    transform: rotate(225deg) translateX(360px) rotate(-225deg);
  }
  .cat-ring--1 > li:nth-child(7) {
    transform: rotate(270deg) translateX(360px) rotate(-270deg);
  }
  .cat-ring--1 > li:nth-child(8) {
    transform: rotate(315deg) translateX(360px) rotate(-315deg);
  }

  /* Ring 2 — radius 460px */
  .cat-ring--2 {
    width: 920px;
    height: 920px;
    margin-left: -460px;
    margin-top: -460px;
  }
  .cat-ring--2 > li:nth-child(1) {
    transform: rotate(0deg) translateX(460px) rotate(0deg);
  }
  .cat-ring--2 > li:nth-child(2) {
    transform: rotate(36deg) translateX(460px) rotate(-36deg);
  }
  .cat-ring--2 > li:nth-child(3) {
    transform: rotate(72deg) translateX(460px) rotate(-72deg);
  }
  .cat-ring--2 > li:nth-child(4) {
    transform: rotate(108deg) translateX(460px) rotate(-108deg);
  }
  .cat-ring--2 > li:nth-child(5) {
    transform: rotate(144deg) translateX(460px) rotate(-144deg);
  }
  .cat-ring--2 > li:nth-child(6) {
    transform: rotate(180deg) translateX(460px) rotate(-180deg);
  }
  .cat-ring--2 > li:nth-child(7) {
    transform: rotate(216deg) translateX(460px) rotate(-216deg);
  }
  .cat-ring--2 > li:nth-child(8) {
    transform: rotate(252deg) translateX(460px) rotate(-252deg);
  }
  .cat-ring--2 > li:nth-child(9) {
    transform: rotate(288deg) translateX(460px) rotate(-288deg);
  }
  .cat-ring--2 > li:nth-child(10) {
    transform: rotate(324deg) translateX(460px) rotate(-324deg);
  }

  .em-features {
    padding: 60px 0;
  }

  .px-xl {
    padding-block: 60px;
  }

  .em-category {
    padding-top: 60px;
  }

  .pb-xxl {
    padding-bottom: 120px;
  }

  .sec-title{
    font-size: 34px;
    line-height: 40px;
  }

  .em-features__title{
    font-size: 40px;
  }

  .em-hero__content{
    gap:30px;
  }

  .em-footer__nav, .em-footer__nav{
    gap:10px;
  }

  .em-footer__main{
    gap:20px;
  }
  .em-vtag.one::after {
    left: 216px;
    top: 8px;
  }
  .em-vtag.two::after {
    left: 172px;
    top: 48px;
  }
  .em-vtag.three::after {
    left: 207px;
    top: 13px;
  }
  .em-vtag.four::before {
    right: 214px;
    top: 11px;
  }
  .em-vtag.five::before {
    right: 173px;
    top: 48px;
  }
  .em-vtag.six::before {
    right: 216px;
    top: 10px;
  }

  .em-vtag.one .em-vtag-inner {
    transform: translate(43px, -20px);
  }
  .em-vtag.two .em-vtag-inner {
    transform: translate(9px, 15px);
  }
  .em-vtag.three .em-vtag-inner {
    transform: translate(74px, 22px);
  }
  .em-vtag.four .em-vtag-inner {
    transform: translate(-33px, -20px);
  }
  .em-vtag.five .em-vtag-inner {
    transform: translate(8px, 15px);
  }
  .em-vtag.six .em-vtag-inner {
    transform: translate(-35px, 22px);
  } 

  .video-modal .modal-dialog {
    max-width:900px;
  }

  .em-invite__error-box{
    gap:20px;
  }
}

/* ======== 991px ======== */
@media screen and (max-width: 991px) {
  /* Visualize: stack tags above and below chart */
  .em-visualize__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
    gap: 32px;
  }
  .em-visualize__tags--left,
  .em-visualize__tags--right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .em-vtag {
    width: auto;
    min-width: 140px;
  }
  .em-visualize__tags--right {
    order: 2;
  }
  .em-visualize__chart-wrap {
    order: 1;
  }

  .em-cta__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .em-cta__visual {
    order: 2;
    width: 400px;
    height: auto;
    margin-inline: auto;
  }

  .em-cta__copy {
    order: 1;
  }

  .em-cta__copy {
    align-items: center;
  }

  .em-hero__title {
    font-size: 40px;
    line-height: 55px;
  }
  .em-btn {
    min-width: 158px;
    padding: 0 10px;
  }
  .em-cta-row {
    gap: 8px;
  }

  .sec-text, .em-invite__step-text {
    font-size: 16px;
    line-height: 26px;
  }

  .em-features__title {
    font-size: 36px;
  }

  .mb-lg {
    margin-bottom: 20px;
  }

  .em-transaction__grid,
  .em-report__grid,
  .em-backup__grid,
  .em-ledger__grid,
  .em-tutorial__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .em-backup__copy {
    max-width: 100%;
  }

  .em-ledger__copy {
    max-width: 100%;
  }

  .em-transaction__pop {
    top: 105px;
  }

  .em-transaction__bg-card {
    height: 400px;
  }

  .sec-title {
    text-align: center;
  }

  .sec-text {
    text-align: center;
  }

  .em-report__badges,
  .em-backup__badges {
    justify-content: center;
  }

  .em-transaction__text,
  .em-report__copy {
    max-width: 100%;
  }

  .em-report__card {
    min-width: 100%;
    height: 476px;
    width: 100%;
  }

  .em-report__img--1 {
    top: 41px;
    left: 22px;
    width: 400px;
    z-index: 1;
  }

  .em-report__img--2 {
    bottom: 7px;
    right: 15px;
    width: 575px;
  }

  .em-secure__grid{
    justify-content: center;
  }

  .em-secure__card{
    width: calc(100% / 2 - (1 * 24px) / 2);
  }

  .em-secure-inner {
    padding: 40px 20px;
  }

  .em-secure__header {
    margin: 0 auto 30px;
  }

  .em-card {
    min-width: 100%;
    height: 540px;
    max-width: 100%;
    width: 100%;
  }

  .em-report__card{
    height: 498px;
  }

  .em-backup__service {
    right: 118px;
  }

  .em-backup-path {
    position: absolute;
    left: 230px;
  }

  .em-backup__data {
    left: 99px;
  }

  .em-vtag-inner {
    gap: 7px;
    min-height: 56px;
    padding: 8px 9px;
  }

  .em-vtag.one::after {
    left: 133px;
    top: -7px;
  }

    .em-vtag.two::after {
      left: 92px;
  }

  .em-vtag.three::after {
    left: 136px;
    top: 28px;
  }

  .em-vtag.four::before {
    right: 124px;
    top: -5px;
  }

  .em-vtag.five::before {
    right: 92px;
  }

  .em-vtag.six::before {
    right: 142px;
    top: 29px;
  }

  .em-vtag-inner img {
    height: 50px;
  }

  .em-vtag.one .em-vtag-inner {
    transform: translate(-20px, -37px);
  }

  .em-vtag.two .em-vtag-inner {
    transform: translate(-49px, 17px);
  }

  .em-vtag.three .em-vtag-inner {
    transform: translate(29px, 43px);
  }

  .em-vtag.four .em-vtag-inner {
    transform: translate(17px, -34px);
  }

  .em-vtag.five .em-vtag-inner {
    transform: translate(51px, 17px);
  }

  .em-vtag.six .em-vtag-inner {
    transform: translate(7px, 40px);
  }

  .em-features {
    padding: 50px 0;
  }

  .px-xl {
    padding-block: 40px;
  }

  .em-category {
    padding-top: 40px;
  }

  .pb-xxl {
    padding-bottom: 80px;
  }

  .em-ledger__user-img.one {
    left: 297px;
  }
  
  .em-ledger__user-img.two {
    left: 300px;
  }
  .em-ledger__user-img.three {
    left: 433px;
  }

  @keyframes ledger-user-slide {
    0% {
      left: 297px;
    }
    44% {
      left: 297px;
    }
    56% {
      left: 166px;
      animation-timing-function: ease-out;
    }
    58% {
      left: 164px;
    }
    86% {
      left: 164px;
    }
    100% {
      left: 297px;
    }
  }

  .em-secure__card-title{
    font-size: 24px;
    line-height: 36px;
  }

  .em-secure__card-text{
    font-size: 16px;
    line-height: 24px;
  }

  .em-ledger__visual, .em-backup__visual{
    order:2;
  }

  .em-ledger__copy, .em-backup__copy{
    order:1;
  }

  .em-contact__title, .em-contact__desc{
    text-align:center;
  }

  .em-contact__email-row{
    justify-content: center;
  }

  .em-contact__form-card{
    padding: 31px 32px;
    border-radius: 30px;
    box-shadow: -1px 1px 20.5px 0px #0000001f;
    background: var(--white-clr);
    height: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .em-contact {
    padding-top: 120px;
  }

  .em-contact__btn{
    font-size: 18px;
  }

  .em-contact-right, .em-contact__desc{
    margin-bottom:50px;
  }

  .em-footer__main{
    align-items: flex-start;
    gap:15px;
  }

  .em-footer__nav {
    flex-direction: column;
    gap: 10px;
  }

  /* Mobile section order: hide desktop extras, show mobile extras */
  .em-contact-left__desktop-extras {
    display: none;
  }
  .em-contact-mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .em-contact__get-in-touch{
    padding: 30px 28px;
    border-radius: 30px;
    border: 1px solid #0000000f;
    background: var(--light-green);
    color: var(--heading-clr);
  }

  .em-contact__email-heading{
    display:none;
  }

  .em-contact__email-badge {
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background: #ffffff;
    border-radius: 50px;
    padding: 10px;
  }

  .em-contact__email-row{
    padding-block: 0;
    margin-top:10px;
  }

  .badge-list{
    justify-content: center;
  }

  .em-ledger__text, .em-features__subtitle{
    max-width:100%;
  }

  .em-faq__search-wrap{
    max-width:100%;
  }

  .video-modal .modal-dialog {
    max-width: 700px;
  }

  .em-faq__promo-title{
    font-size: 18px;
    line-height: 1.4;
  }

  .em-faq__promo-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .em-faq__promo{
    gap:10px;
  }

  .em-faq__promo-play{
    width: 40px;
    height: 40px;
  }

  .em-faq__promo-play .fa-play {
    font-size: 15px;
  }

  .em-tutorial__copy .cmn-btn{
    margin-inline:auto;
    padding: 0 15px;
  }

  .em-tutorial__card{
    height:auto;
  }

  .em-backup__text{
    max-width:100%;
  }

  .em-tutorial__grid{
    overflow:hidden;
  }

  .em-invite__qr-body {
    grid-template-columns: 1fr;
  }

  .em-invite__dl-left {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .em-invite__qr-wrap {
    margin: 0 auto;
  }

  .em-invite__name {
    font-size: 28px;
  }

  .qr-card-header-inner, .em-invide__download-text{
    gap:12px;
  }

  .download-content .sec-text{
    text-align:left;
  }

  .em-invite__title{
    font-size:18px;
  }

  .em-invite__qr-card-header{
    margin-bottom: 20px;
  }

  .em-invite__error-box{
    grid-template-columns: 1fr;
  }

  .em-invite__error-img{
    order: 2;
    max-width: 444px;
    margin-inline: auto;
  }

  .em-invite__error-content{
    align-items: center;
  }

  .em-btn, .cmn-btn {
    font-size: 15px;
    height: 44px;
  }
}

/* ======== 767px ======== */
@media screen and (max-width: 767px) {
  .site-nav__links {
    display: none;
  }

  .em-hero__copy {
    margin-top: 0;
  }

  .site-nav__burger {
    display: flex;
  }

  /* Mobile drawer becomes off-canvas (slides from right) */
  .site-nav__drawer {
    position: fixed;
    top: 72px;
    right: 0;
    height: calc(100vh - 72px);
    width: min(86vw, 320px);
    max-height: none;
    overflow: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: none;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1001;
  }

  .site-nav__drawer.open {
    transform: translateX(0);
    max-height: none;
    border-top-color: transparent;
  }

  .site-nav__drawer nav {
    padding: 18px 18px 24px;
  }

  .site-nav__drawer-link {
    padding: 14px 6px;
  }

  .site-nav__inner {
    height: 72px;
  }

  .em-hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .em-hero__title,
  .sec-title {
    text-align: center;
  }

  .em-hero__subtitle{
    margin: 0 0 30px;
  }

  .em-hero__subtitle,
  .sec-text {
    text-align: center;
  }

  .em-cta-row {
    justify-content: center;
  }

  .em-hero__device {
    height: 420px;
  }

  .em-play-btn{
    width: 50px;
    height: 50px;
  }

  .em-play-btn .fa-play {
    font-size: 16px;
  }

  .em-report__img--1 {
    top: 41px;
    width: 320px;
  }

  .em-report__img--2 {
    bottom: 39px;
    width: 452px;
  }

  .em-secure__grid {
    gap: 20px;
  }

  .em-secure__card{
    width: 100%;
  }

  .em-footer__main {
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }

  .em-footer__stores, .em-store-row {
    justify-content: center;
    width: 100%;
  }

  .em-footer__brand,
  .em-footer__nav {
    width: fit-content;
  }

  .em-footer__right {
    width: 100%;
    align-items: flex-start;
    gap: 20px;
  }

  .em-footer__social {
    order: 1;
  }

  .em-footer__stores {
    gap: 10px;
    order: 2;
  }

  .em-backup__data {
    left: 11px;
  }

  .em-backup-path {
    left: 145px;
  }

  .em-backup__service {
    right: 28px;
  }

  .cat-orbit-wrap {
    height: auto;
    padding: 60px 20px;
  }

  .cat-ring {
    display: none;
  }

  .em-vtag::before,
  .em-vtag::after {
    display: none;
  }

  /* Stack chart + tag columns in same grid cell so icons orbit the pie */
  .em-visualize__layout {
    grid-template-rows: 300px;
    gap: 0;
    position: relative;
  }

  .em-visualize__chart-wrap,
  .em-visualize__tags--left,
  .em-visualize__tags--right {
    grid-column: 1;
    grid-row: 1;
  }

  .em-visualize__tags--left,
  .em-visualize__tags--right {
    display: block;
    position: relative;
    pointer-events: none;
    z-index: 5;
    flex-direction: unset;
    justify-content: unset;
    align-items: unset;
    gap: 0;
  }

  /* Each tag: absolute circle positioned around the pie */
  .em-vtag {
    position: absolute !important;
    min-width: unset !important;
    width: 50px !important;
    height: 50px !important;
    transform: translateY(10px); /* base state (hidden) */
  }

  .em-vtag--visible {
    transform: translateY(0) !important;
  }

  /* Icon-only circle bubble */
  .em-vtag-inner {
    width: 50px;
    height: 50px;
    min-height: unset;
    padding: 8px;
    border-radius: 50%;
    gap: 0;
    justify-content: center;
    align-items: center;
  }

  .em-vtag-inner img {
    height: 30px;
    width: 30px;
  }

  .em-vtag__label {
    display: none;
  }

  /* Reset inner transforms */
  .em-vtag.one .em-vtag-inner,
  .em-vtag.two .em-vtag-inner,
  .em-vtag.three .em-vtag-inner,
  .em-vtag.four .em-vtag-inner,
  .em-vtag.five .em-vtag-inner,
  .em-vtag.six .em-vtag-inner {
    transform: none !important;
  }

  .em-report__card {
    height: 484px;
  }

  .em-vtag.one {
    left: -10px;
    top: -117px;
  }

  .em-vtag.two {
    left: -50px;
    top: -10px;
  }

  .em-vtag.three {
    left: 9px;
    top: 80px;
  }

  .em-vtag.four {
    left: -40px;
    top: -118px;
  }

  .em-vtag.five {
    left: -2px;
    top: 1px;
  }

  .em-vtag.six {
    left: -74px;
    top: 88px;
  }

  .em-ledger__user-img.one {
    left: 106px;
  }
  
  .em-ledger__user-img.two {
    left: 205px;
  }

  .em-ledger__user-img.three {
    left: 306px;
  }

  @keyframes ledger-user-slide {
    0% {
      left: 204px;
    }
    44% {
      left: 204px;
    }
    56% {
      left: 108px;
      animation-timing-function: ease-out;
    }
    58% {
      left: 106px;
    }
    86% {
      left: 106px;
    }
    100% {
      left: 204px;
    }
  }

  .em-features {
    padding: 60px 0px 30px 0px;
  }

  .px-xl {
    padding-block: 30px;
  }

  .em-category {
    padding-top: 30px;
  }
  
  .pb-xxl {
    padding-bottom: 60px;
  }

  .em-contact__title {
    font-size: 34px;
    line-height: 58px;
    margin-bottom: 15px;
  }

  .em-contact__desc {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .em-contact__email-heading {
    font-size: 24px;
    line-height: 130%;
  }

  .em-contact__email-addr {
    font-size: 16px;
    line-height: 26.03px;
  }

  .em-contact__btn{
    height: 44px;
    font-size: 16px;
  }

  .em-contact__app-stores{
    gap:10px;
  }

  .em-footer__main {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .em-footer__nav {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .site-nav__brand img {
    max-width: 48px;
  }

  .logo-text{
    font-size: 20.95px;
  }

  .em-footer__nav a, .em-footer__legal a{
    text-decoration: underline;
  }

  .em-faq {
    padding: 48px 0 30px;
  }  

  .em-faq-mobile{
    padding: 0 0 80px;
  }

  .em-faq__category:not(:last-child) {
    padding-bottom: 30px;
  }

  .em-faq__category {
    margin-bottom: 30px;
  }

  .em-faq__btn {
    font-size: 16px;
    padding: 14px 16px;
    align-items:flex-start;
  }

  .em-faq__btn::after{
    margin-top:3px;
  }

  .em-faq__body {
    font-size: 15px;
    padding: 4px 16px 16px;
  }

  .em-faq__category-title{
    font-size: 22px;
  }

  .em-faq__search-wrap {
    margin-bottom: 32px;
  }

  .em-faq__search-input {
    font-size: 16px; /* prevents iOS auto-zoom on focus */
  }

  .em-faq-category__wrap {
    margin-top: 40px;
  }

  .em-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .video-modal .modal-dialog {
    max-width: 560px;
  }

  .em-hero__visual .em-play-btn{
    top: 41%;
  }

  .em-faq__promo {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }

  .em-faq__promo-copy {
    align-items: center;
  }

  .em-faq__promo-title{
    text-align: center;
  }

  .em-faq__promo-text{
    text-align: center;
  }

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

  .em-tutorial__card {
    padding: 20px;
  }

  .em-404__number span{
    font-size: 180px;
    line-height: 135px;
  }

  .em-404__logo-zero{
    height: 134px;
  }

  .em-invite__dl-left,
  .em-invite__dl-right {
    padding: 24px 20px;
  }

  .em-invite__qr-card, .em-invite__dl-card, .em-invite__hero {
    padding: 24px 20px;
  }

  .em-invite__name {
    font-size: 26px;
  }

  .em-invite__store-badge {
    height: 44px;
  }

  .em-invite__dl-card{
    flex-direction:column;
  }

  .em-invite__icon {
    width: 50px;
    height: 50px;
  }

  .em-invide__download-text, .qr-card-header-inner{
    flex-direction: column;
    align-items: center;
  }

  .em-invite__title {
    text-align:center;
  }

  .download-content .sec-text {
    text-align: center;
  }

  .qr-card-header-cont .sec-text{
    text-align: center;
  }

  .em-invite__error-box {
    flex-direction: column;
  }

  .em-invite__error-title {
    font-size: 22px;
  }

  .em-invite__error-card{
    padding-top:0;
  }
}

/* ======== 575px ======== */
@media screen and (max-width: 575px) {
  .cat-badges {
    gap: 10px;
  }

  .cat-badge {
    width: auto;
    padding: 6px 10px;
  }

  .em-report__card {
    min-width: 100%;
    height: 117vw;
    width: 100%;
  }

  .report1-min-img,
  .report2-min-img {
    width: 27vw;
  }

  .report1-img {
    width: 70vw;
  }

  .em-report__img--inner1,
  .em-report__img--inner2 {
    position: relative;
    width: fit-content;
  }

  .em-report__img--2 {
    bottom: 5vw;
  }

  .em-backup__data {
    left: 5vw;
  }

  .em-backup__data-circle {
    width: 32vw;
    height: 32vw;
  }

  .em-backup-path.top {
    top: 161px;
  }

  .em-backup-path.bottom {
    bottom: 161px;
  }

  .em-backup__service {
    right: 0;
    width: 32vw;
  }

  .em-backup__service--drive {
    top: 126px;
    right: 5vw;
  }

  .em-backup__service--cloud {
    bottom: 126px;
  }

  .em-backup-path {
    left: 122px;
  }

  .em-report__img--2 {
    bottom: 39px;
    width: 100%;
    right: 0;
  }
  .report2-min-img {
    right: -1vw;
    top: -6vw;
  }
  .em-bck-inner {
    width: 100%;
    height: 100%;
    padding-inline: 5vw;
  }
  .em-backup-path {
    left: 27vw;
  }
  .em-backup__service {
    right: 8vw;
    width: 32vw;
    z-index: 1;
  }

  .em-ledger__card.em-card:not(.mob) {
    display: none;
  }

  .em-ledger__card.em-card.mob {
    display: block;
    min-width: unset;
    width: 94vw;
    height: 94vw;
    max-width: 94vw;
  }

  .em-ledger__main-img{
    width: 94vw;
    padding: 16px;
  }

  .em-ledger__user-img {
    top: 90px;
    width: 18vw;
    height: 18vw;
  }

  .em-report__card {
    height: 90vw;
  }

  .em-ledger__user-img.one {
    left: 218px;
  }
    
  .em-ledger__user-img.two {
    left: 225px;
  }    .em-invite__title {
    font-size: 16px;
}
  .em-ledger__user-img.three {
    left: 329px;
  }

  @keyframes ledger-user-slide {
    0% {
      left: 218px;
    }
    44% {
      left: 218px;
    }
    56% {
      left: 123px;
      animation-timing-function: ease-out;
    }
    58% {
      left: 121px;
    }
    86% {
      left: 121px;
    }
    100% {
      left: 218px;
    }
  }

  .em-vtag.one {
    left: -10px;
    top: -117px;
  }

  .em-vtag.two {
    left: -50px;
    top: -10px;
  }

  .em-vtag.three {
    left: 9px;
    top: 80px;
  }

  .em-vtag.four {
    left: -40px;
    top: -118px;
  }

  .em-vtag.five {
    left: -2px;
    top: 1px;
  }

  .em-vtag.six {
    left: -74px;
    top: 88px;
  }

  .em-report::after{
    bottom: -136px;
  }

  .em-ledge-visualize::after{
    background-position: -80px 53px;
  }

  .em-contact {
    padding-top: 100px;
  }

  .em-footer__nav{
    flex-wrap: wrap;
  }

  .em-main{
    padding-top:80px;
  }

  .em-legal-mobile {
    padding-top: 30px;
  }

  .video-modal .modal-dialog {
    max-width: 100%;
  }

  .em-invite {
    padding: 90px 12px 40px;
  }

  .em-invite__left,
  .em-invite__right {
    padding: 24px 20px;
  }

  .em-invite__name {
    font-size: 24px;
  }

  .em-invite__store-badge {
    height: 44px;
  }

  .em-invite-inner{
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .em-invite__right {
    gap: 30px;
  }

  .em-invite__error-title{
    font-size: 20px;
  }
}

/* ======== 480px ======== */
@media screen and (max-width: 480px) {
  .em-hero__title {
    font-size: 32px;
    line-height: 42px;
  }

  .em-invite__error-sub{
    font-size: 16px;
  }

  .em-hero__subtitle {
    font-size: 18px;
    line-height: 27px;
  }

  .em-btn, .cmn-btn {
    font-size: 15px;
    height: 44px;
  }

  .em-hero__content {
    gap: 40px;
  }

  .sec-title {
    font-size: 24px;
    line-height: 30px;
  }

  .em-features__title {
    font-size: 26px;
  }

  .sec-text, .em-invite__step-text {
    font-size: 15px;
    line-height: 22.7px;
  }

  .mb-sm {
    margin-bottom: 10px;
  }

  .mb-lg {
    margin-bottom: 15px;
  }

  .em-transaction__bg-card {
    height: auto;
  }

  .em-secure__icon img {
    width: 60px;
    height: 60px;
  }

  .em-secure__card-title {
    font-size: 20px;
    line-height: 33px;
  }

  .em-secure__card-text {
    font-size: 15px;
    line-height: 22px;
  }

  .em-secure__card__inner {
    gap: 10px;
  }

  .em-cta-text {
    margin-bottom: 20px;
  }

  .em-cta__grid {
    gap: 34px;
  }

  .em-cta__visual {
    width: 100%;
  }

  .em-cta__copy {
    margin-top: 0;
  }

  .em-backup-path {
    left: 18vw;
  }
  .em-backup__visual .em-card {
    height: 100vw;
  }
  .em-backup__service--drive {
    top: 18vw;
  }
  .em-backup-path.top {
    top: 28vw;
    width: 38vw;
  }
  .em-backup-path.bottom {
    bottom: 28vw;
    width: 38vw;
  }
  .em-backup__service--cloud {
    bottom: 18vw;
  }
  .report1-img {
    width: 58vw;
  }
  .em-report__img--2 {
    width: 90%;
  }
  .em-report__card {
    height: 86vw;
  }
  .em-report__img--inner2 {
    transform: translateY(5vw);
  }
  .report2-min-img {
    right: 2vw;
  }
  .em-report__img--1 {
    left: 14px;
  }
  .report1-min-img {
    top: -20px;
  }
  .report1-min-img,
  .report2-min-img {
    width: 24vw;
  }

  .em-contact__title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .em-contact__desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 14px;
  }

  .em-contact__email-heading {
    font-size: 20px;
    line-height: 120%;
  }

  .em-contact__email-addr {
    font-size: 15px;
    line-height: 26.03px;
  }

  .em-contact__app-box{
    gap: 20px;
    padding: 20px 10px;
    border-radius: 15px;
  }

  .em-contact__app-text{
    font-size: 15px;
    line-height: 137%;
  }

  .em-store-btn{
    min-width: auto;
  }

  .em-contact-right, .em-contact__desc {
    margin-bottom: 40px;
  }

  .em-contact__input {
    height: 36px;
    padding: 6px 14px;
    padding-top: 4px;
  }

  .iti__selected-country{
    height: 36px !important;
  }

  .em-contact__textarea{
    height: 76px;
  }

  .em-contact__email-row {
    gap: 8px;
  }
  .em-contact__email-row img{
    width:55px;
    height:55px;
  }

  .em-contact__form-card {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .em-contact__btn {
    height: 40px;
    font-size: 15px;
  }

  .site-nav__brand img {
    max-width: 44px;
  }

  .logo-text {
    font-size: 19.95px;
  }

  .site-nav__brand{
    gap:6px;
  }

  .em-contact__get-in-touch-title{
    font-size: 24px;
  }

  .em-contact__get-in-touch-text{
    font-size: 15px;
    line-height: 28px;
  }

  .em-contact__email-badge{
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .em-faq__category-title {
    font-size: 20px;
  }


  .em-play-btn{
    width: 40px;
    height: 40px;
  }

  .em-play-btn .fa-play {
    font-size: 15px;
  }

  .em-faq__promo-video{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline: 10px;
  }

  .em-404 {
    padding: 60px 16px;
  }

  .em-404__number{
    gap:20px;
  }

  .em-404__number span {
    font-size: 110px;
    line-height: 100px;
  }

  .em-404__logo-zero {
    height: 86px;
  }

  .em-404__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .em-404__desc {
    font-size: 15px;
    line-height: 1.4;
  }

  .em-404__desc{
    margin-bottom: 20px;
    max-width:100%;
  }

  .em-404__actions {
    flex-direction: column;
    width: 100%;
  }

  .em-404__illustration{
    margin-bottom: 16px;
  }

  .em-invite__features{
    gap: 10px;
  }

  .em-invite__feature{
    gap: 8px;
  }

  .em-invite__download{
    gap:10px;
  }

  .em-invite__feat-icon {
    width: 36px;
    height: 36px;
  }

  .em-invite__feat-text strong{
    font-size: 15px;
  }

  .em-invite__feat-text span {
    font-size: 14px;
  }

  .em-invite__avatar {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .em-invite__title {
    font-size: 16px;
  }

  .em-invite__step-num{
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .em-invite__qr-body, .em-invite__step{
    gap:10px;
  }

  .em-invite__error-icon{
    width: 50px;
    height: 50px;
  }

  .em-invite__error-icon svg{
    width: 26px;
  }

  .em-invite__code-wrap{
    flex-direction: column;
  }
}

/* ======== 420px ======== */
@media screen and (max-width: 420px) {
  .em-backup-path.top {
    top: 28vw;
    width: 38vw;
  }
  .em-backup-path.bottom {
    bottom: 28vw;
    width: 38vw;
  }
  .em-backup__data {
    left: 0;
  }
  .em-backup__service {
    right: 0;
    width: 32vw;
  }
  .em-transaction__pop {
    top: 90px;
  }

  .em-invite__features{
    gap: 10px;
  }

  .em-invite__features{
    flex-direction: column;
    width: fit-content;
    margin-inline:auto;
  }
}

/* ======== 375px ======== */
@media screen and (max-width: 375px) {
  .em-btn, .cmn-btn {
    min-width: auto;
    padding: 0 15px;
  }

  .em-footer__nav{
    gap: 6px;
  }

  .em-badge,.cat-badge{
    gap: 5px;
    padding: 4px 9px;
  }

  .em-footer__nav a{
    padding-inline: 5px 8px;
  }

  .em-transaction__pop {
    top: 80px;
  }

  .em-hero__visual .em-play-btn {
    top: 50%;
  }
}
