@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
* {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}



body {
  font-family: "InterTight", sans-serif;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

#page.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page.site > .site-footer {
  margin-top: auto;
}

.container {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  background: #fff;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}

.header__logo img {
  height: 30px;
  width: auto;
}

.header__title {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.header__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-left: 0;
  width: 100%;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.header-menu a:hover,
.header-menu .current-menu-item > a {
  color: #1866DD;
}

.header-menu .menu-item-cta > a,
.header-menu .cta > a {
  background: #2d2d2d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -12px rgba(0,0,0,0.35);
}

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

.site-navigation {
  justify-self: center;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.header__register-btn {
  background: #1866DD;
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -12px rgba(24, 102, 221, 0.7);
  transition: background 0.2s ease;
  font-size: 12px;
  line-height: 20px;
}

.header__register-btn:hover,
.header__register-btn.is-active {
  background: #155DFC;
}

.header__cta-btn {
  background: #2E2E2E;
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -12px rgba(0,0,0,0.35);
  transition: background 0.2s ease;
  font-size: 12px;
  line-height: 20px;
}

.header__login-link {
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  padding: 11px 8px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.header__login-link:hover {
  color: #155DFC;
}

.header__cta-btn:hover {
  background: #1f1f1f;
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.header__toggle:hover {
  box-shadow: 0 10px 20px -18px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.header__toggle-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__toggle-line:nth-child(1) {
  transform: translateY(-7px);
}

.header__toggle-line:nth-child(2) {
  transform: translateY(0);
}

.header__toggle-line:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-open .header__toggle-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-open .header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .header__toggle-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.6rem, 1.5vw,24px);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-label {
  display: inline-block;
  padding: 7px 13px;
  font-size: clamp(0.7rem, 1.1vw, 14px);
  font-weight: 500;
  background: #000;
  color: #FAFAFA;
  border-radius: 999px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.section-description {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 15px);
  line-height: 1.6;
  color: #52525C;
  max-width: 85%;
  margin-bottom: 20px;
}

.mesh-completed__inner {
  max-width: 760px;
  text-align: center;
}

.mesh-completed__inner .section-title {
  margin: 40px 0;
}

.mesh-completed__inner .section-description {
  max-width: 100%;
  margin: 0 auto 24px;
}

.text-accent {
  color: #1866DD;
}


/*HERO SECTION*/


.hero-app__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 2.5vw, 28px);
}

.page-id-739 .mwsb-sticky-btn {
    display: none !important;
}
/* Small label */
.hero-app__label {
  display: inline-block;
  padding: 7px 13px;
  font-size: clamp(0.7rem, 1.2vw, 14px);
  font-weight: 500;
  background: #000;
  color: #FAFAFA;
  border-radius: 999px;
}

/* Title */
.hero-app__title {
  max-width: 22ch;
  font-size: clamp(32px, 4.8vw, 70px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Highlight (optional if you wrap span later) */
.section-title span {
  color: #1866DD;
}

/* Description */
.hero-app__description {
  font-size: clamp(0.95rem, 1.6vw, 15px );
  line-height: 1.6;
  color: #52525C;
  width: 85%;
  margin: 0px;
}

/* Image wrapper */
.hero-app__image {
  width: 100%;

}
/* Image itself */
.hero-app__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.anim {
  opacity: 0;
  transform: translateY(30px);
}

.is-in-view .anim {
  animation: fadeUp 0.9s ease forwards;
}

.anim--1 { animation-delay: 0.3s; }
.anim--2 { animation-delay: 0.5s; }
.anim--3 { animation-delay: 0.7s; }
.anim--4 { animation-delay: 0.9s; }


.animate-on-load.is-visible .anim {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*FEATURES GRID*/
.features {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.features__inner {
  text-align: center;
}

.features__label {
  display: inline-block;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding: 0.4em 1em;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  background: #111;
  color: #fff;
  border-radius: 999px;
}

.features__title {
  font-size: clamp(2rem, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  max-width: 22ch;
}


.features__description {
  font-size: clamp(0.95rem, 1.6vw, 14px);
  color: #52525C;
  max-width: 60ch;
  margin: 0;
}

/* GRID */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 24px);
  padding: clamp(1.5rem, 3vw, 40px);
  background:#18181B;
  border-radius: clamp(1.5rem, 3vw, 28px);
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: clamp(1rem, 2vw, 16px);
  padding: clamp(1.25rem, 2.5vw, 24px);
  text-align: left;
  color: #fff;

  /* Drop shadow */
  box-shadow:
    0 10px 40px -20px rgba(0, 0, 0, 0.6),
    /* subtle white outline */
    0 0 0 1px rgba(255, 255, 255, 0.1),
    /* inner highlight */
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* Background blur */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.feature-card__icon img {
  width: clamp(32px, 4vw, 40px);
  height: auto;
  margin-bottom: 12px;

  /* white outline */
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.1));
}


.feature-card__title {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  margin:0 0 12px 0;
}

.feature-card__text {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: #bbb;
  line-height: 1.5;
  margin: 0;
}

/* SHARED CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 32px);
}

.card {
  background: #fff;
  border-radius: clamp(1rem, 2vw, 24px);
  padding: clamp(1.25rem, 2.2vw, 20px);
  height: 100%;
  display: flex;
  flex-direction: column;

  box-shadow:
    0 20px 60px -20px rgba(2, 6, 23, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.card__title {
  margin: 0 0 12px 0;
  font-size: clamp(1.05rem, 1.5vw, 19px);
  font-weight: 700;
  color: #18181B;
}

.card__text {
  margin: 0 0 24px 0;
  color: #52525C;
  line-height: 1.55;
  font-size: clamp(0.95rem, 1.4vw,14px);
}

.card__image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.35);
}

.modules .card-grid {
  gap: clamp(1.25rem, 2.6vw, 26px);
}

.card-grid--modules {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.6vw, 26px);
}

.card--module {
  justify-content: space-between;
}
/* CARD ANIMATION */
.anim--module-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.is-in-view .anim--module-card,
.anim--module-card.is-in-view { 
  opacity: 1;
  transform: translateY(0);
}

.card-grid--modules .card:nth-child(1) .anim--module-card { transition-delay: 0.2s; }
.card-grid--modules .card:nth-child(2) .anim--module-card { transition-delay: 0.35s; }
.card-grid--modules .card:nth-child(3) .anim--module-card { transition-delay: 0.5s; }
.card-grid--modules .card:nth-child(4) .anim--module-card { transition-delay: 0.65s; }

.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.in-view .anim {
  opacity: 1;
  transform: translateY(0);
}

.features__grid--anim .feature-card:nth-child(1) { transition-delay: 0.2s; }
.features__grid--anim .feature-card:nth-child(2) { transition-delay: 0.35s; }
.features__grid--anim .feature-card:nth-child(3) { transition-delay: 0.5s; }

/* APP SHOWCASE */

.showcase-title {
    font-size: 40px;
}


.app-showcase__inner {
  position: relative;
  background: #f6f8fb;
  overflow: hidden;
  border-radius: clamp(1.25rem, 2.5vw, 20px);
    background-image:
    radial-gradient(#d7dfea 1px, transparent 0),
    radial-gradient(#d7dfea 1px, transparent 0);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  border-radius: clamp(1.25rem, 2.5vw, 22px);
  padding: 96px 20px 198px 20px;
    max-width: 1390px;

}

.app-showcase__canvas {
  position: relative;
  margin: 0 auto;
  min-height: 520px;

}



.app-showcase__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  z-index: 0;
}

.app-showcase__center img {
  width: 440px;
  height: 440px;
  object-fit: contain;
  display: block;
}

.app-showcase__panels {
  position: absolute;
  inset: 0;
}

.app-showcase__panel {
  position: absolute;
  left: calc(var(--x, 50) * 1%);
  top: calc(var(--y, 50) * 1%);
  transform: translate(-50%, -50%);
  animation: floatPanel 9s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.app-showcase__panel img {
  display: block;
  animation: panelDrift 10s ease-in-out infinite alternate;
}

@keyframes floatPanel {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

@keyframes panelDrift {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.01); }
  100% { transform: translateY(1px) scale(1.02); }
}



@media (max-width: 900px) {
  .app-showcase__canvas {
    min-height: 480px;
  }
  .app-showcase__panel img {
    max-width: clamp(200px, 48vw, 320px);
  }
  .app-showcase__center {
    inset: 38% 38%;
  }
}

@media (max-width: 640px) {

  .section.app-showcase {
    padding-top: 0 !important;
  }
.showcase-title {
    font-size: 32px;
}
  .section.app-showcase .section__header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .section.app-showcase .section__header h1,
  .section.app-showcase .section__header h2 {
    margin-top: 0 !important;
  }

  .section.app-showcase .section__header p {
    margin-top: 8px; 
    margin-bottom: 0 !important;
  }

  .app-showcase__inner {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .app-showcase__canvas {
    position: relative;
    min-height: 650px;
    margin: 0 !important;
    padding: 0 !important;
  }

  .app-showcase__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .app-showcase__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    z-index: 2;
    pointer-events: none;
  }

  .app-showcase__center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .app-showcase__panel {
    position: absolute;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    animation: none;
    z-index: 5;
  }

  .app-showcase__panel:nth-of-type(1) {
    top: 16% !important;
  }

  .app-showcase__panel:nth-of-type(2) {
    top: 35% !important;
    left: 50% !important;
    width: 340px;
  }

  .app-showcase__panel:nth-of-type(3) {
    left: 22% !important;
    top: 70% !important;
    width: 180px;
  }

  .app-showcase__panel:nth-of-type(4) {
    left: 78% !important;
    top: 75% !important;
    width: 180px;
  }

  .app-showcase__panel:nth-of-type(5) {
    top: 96% !important;
    width: 210px;
  }

  .app-showcase__panel:nth-of-type(6) {
    left: 76% !important;
    top: 74% !important;
    width: 230px;
  }

  .app-showcase__panel:nth-of-type(7) {
    top: 90% !important;
    width: 340px;
  }

  .app-showcase__panel img {
    width: 100%;
    height: auto;
    display: block;
  }

  .app-showcase__panels {
    padding: 0 !important;
  }
}


/* PRICING */
.pricing__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.pricing-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: #f3f4f6;
  border-radius: 999px;
}

.pricing-toggle__btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 400;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.pricing-toggle__btn.is-active {
  background: #fff;
  color: #1866DD;
  box-shadow: 0 8px 18px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(24, 102, 221, 0.08);
}

.pricing__tabs {
  position: relative;
}

.pricing__panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.pricing__panel.is-active {
  display: block;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 18px);
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(160, 160, 160, 0.24);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 28px -20px rgba(0,0,0,0.25);
  height: 100%;
}

.pricing-card--featured {
  background: #1866DD;
  color: #fff;
  border-color: #1866DD;
  box-shadow: 0 16px 36px -18px rgba(18, 89, 211, 0.55);
}

.pricing-card__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  
}

.pricing-card__title-row {
  display: flex;
  align-items:flex-start;
  gap: 10px;
}

.pricing-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2E2E2E;
}

.pricing-card__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  color: #1866DD;
  font-size: 12px;
  font-weight: 400;
}
.pricing-card--featured .pricing-card__title, .pricing-card--featured .pricing-card__price{
    color: #fff;
}



.pricing-card__price {
  font-size: 24px;
  font-weight: 600;
  color: #1866DD;
}

.pricing-card__note {
  font-size: 0.95rem;
  color: #6b7280;
  
}

.pricing-card--featured .pricing-card__note,
.pricing-card--featured .pricing-card__subtitle {
  color: rgba(255,255,255,0.85);
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(160, 160, 160, 0.24);
  border-bottom: 1px solid rgba(160, 160, 160, 0.24);
  padding-bottom: 32px;
  margin-bottom: 32px;
  padding-top: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #565656;
}

.pricing-card__feature.is-strong {
  font-weight: 600;
}

.pricing-card--featured .pricing-card__feature {
  color: rgba(255,255,255,0.95);
}

.pricing-card__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #1259d3;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.pricing-card__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #1259d3;
}

.pricing-card__icon-img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__icon-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.pricing-card--featured .pricing-card__icon {
  border-color: #fff;
}

.pricing-card--featured .pricing-card__icon::after {
  background: #fff;
}

.pricing-card__cta {
  margin-top: auto;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 14px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(24, 102, 221, 0.2);
  color: rgba(24, 102, 221, 1);
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-size: 14px;
}

.pricing-card__cta:hover {
  background: #d7e6ff;
}

.pricing-card--featured .pricing-card__cta {
  background: #fff;
  color: #1259d3;
}

.pricing-card--featured .pricing-card__cta:hover {
  background: #f1f4ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .pricing__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-toggle {
    width: 100%;
    justify-content: center;
  }
  .pricing-toggle__btn {
    flex: 1;
    text-align: center;
  }
}
.pricing-card__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border-radius: 14px;
  box-shadow: 0 12px 30px -26px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}


.faq__toggle {
  width: 100%;
  border: none;

  /* Figma fill: #fff @ 0.2% */
  background: rgba(255, 255, 255, 0.002);

  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
  font-family: "InterTight";
  font-size: 14px;
  font-weight: 400;
  color: #18181B;

  border-radius: 8px;

  box-shadow:
    0 10px 30px -10px rgba(2, 6, 23, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);

  transition: box-shadow 0.25s ease, transform 0.25s ease;
}



.faq__question {
  text-align: left;
}

.faq__chevron {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
}
.faq__chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-block;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* default (closed) */
  background-image: url("../images/down-arrow-faq.svg");

  transition: transform 0.25s ease;
}

/* open state: rotate + swap to white */
.faq__item.is-open .faq__chevron {
  background-image: url("../images/white-arrow-faq.svg");
  transform: rotate(-180deg);
}

.faq__answer {
  background: #fff;
  color: #374151;
  transition: max-height 0.25s ease;
  max-height: 0;
  overflow: hidden;
}

.faq__answer-inner {
  padding: 0 18px 16px 18px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq__item.is-open .faq__answer {
  background: #FAFAFA;
}

.faq__item.is-open .faq__answer-inner {
  color: #52525C;
}

.faq__item.is-open .faq__toggle {
  background: #1866DD;
  color: #fff;
}

.faq__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.faq__item.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
.faq__item {
  transition-delay: var(--delay, 0s);
}


/* CTA DUAL (white header + blue box) */
.cta-dual {
  padding-block: clamp(3rem, 6vw, 3rem);
}

.cta-dual__box {
  background: #1866DD;
  padding: clamp(2.5rem, 5vw, 64px) clamp(1.25rem, 3vw, 40px);
  color: #fff;

  box-shadow:
    0 30px 80px -45px rgba(24, 102, 221, 0.6),
    0 0 0 1px rgba(255,255,255,0.12);
}

.cta-dual__box-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(0.75rem, 2vw, 20px);
}

.cta-dual__pill {
  justify-self: center;
  display: inline-block;
  padding: 7px 13px;
  font-size: clamp(0.7rem, 1.1vw, 14px);
  font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.cta-dual__title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  max-width: 24ch;
  margin-inline: auto;
}

.cta-dual__title span {
  color: rgba(255,255,255,0.92);
}

.cta-dual__desc {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 15px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 72ch;
  margin-inline: auto;
}

/* benefits */
.cta-dual__benefits {
  margin: clamp(1rem, 2.5vw, 22px) auto 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 26px);
}

.cta-dual__benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.cta-dual__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-dual__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.image-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 64px);
  align-items: center;
}

.image-content--reverse {
  direction: rtl;
}

.image-content--reverse > * {
  direction: ltr;
}

.image-content__image img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.35);
}

.image-content__content {
  max-width: 520px;
}

.image-content__title {
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.image-content__text {
  font-size:18px;
  line-height: 36px;
  color: #52525C;
  margin-bottom: 20px;
}

.image-content__list {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-content__list li {
  font-size: 18px;
  color: #52525C;
  line-height: 36px;
}

.image-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 64px);
  align-items: center;
}

.image-content--image-right .image-content__content {
  order: 1;
}

.image-content--image-right .image-content__image {
  order: 2;
}

.image-content--image-left .image-content__image {
  order: 1;
}

.image-content--image-left .image-content__content {
  order: 2;
}
.image-content__title span{
  color: #155DFC;
}
/* IMAGE + CONTENT – MOBILE*/
@media (max-width: 900px) {

  .image-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-content__image {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .image-content__image img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
  }

  .image-content__content {
    order: 2;
    max-width: 100%;
    padding: 0 16px;
  }

  .image-content__title {
    font-size: 28px;
    line-height: 1.2;
    text-align:left;
        margin-bottom: 12px;
  }

  .image-content__text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 16px;
    text-align: left;
  }

  .image-content__list {
    padding-left: 20px;
    align-items: flex-start;
  }

  .image-content__list li {
    font-size: 16px;
    line-height: 28px;
  }
}
/* WARUM MESH APP*/

.warum-mesh__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 48px);
  align-items: stretch;
}

.warum-mesh__image {
  border-radius: clamp(1.25rem, 2.5vw, 28px);
  overflow: hidden;
   width: 560px;
  height: 600px;
}

.warum-mesh .section-title {
  font-size: clamp(2.2rem, 4.8vw, 48px); 
  line-height: 64px;
  max-width: 22ch;
}

.warum-mesh .section-description {
  font-size: 16px;
  line-height: 1;
  max-width: 60ch;
} 
.warum-mesh__image img {
  width: 100%;
  height: auto;
  display: block;
}
.warum-mesh .section-label {
  display: inline-block;
  margin-bottom: 16px;

  padding: 6px 14px;
  border-radius: 999px;

  background-color: #111;
  color: #fff;

  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.02em;
}
/* MOBILE */
@media (max-width: 768px) {

  .warum-mesh .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .warum-mesh .section__header {
    margin-bottom: 32px;
  }

  .warum-mesh .section-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .warum-mesh .section-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .warum-mesh__images {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: center;
  }

  .warum-mesh__image {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 560 / 600;
    border-radius: 20px;
  }

  .warum-mesh__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
	

}

/* CONTACTS FOCUS SECTION */

.contacts-focus__label {
  display: inline-block;
  padding: 7px 13px;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

 .contacts-focus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  grid-auto-rows: 1fr;
}
.contacts-focus__image {
  margin-top: auto;
}

.section.contacts-focus .section-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  max-width: 60ch;
  color: #52525C;
  margin: 0;
}

.contacts-focus__card {
  background: #F3F4F6;
  border-radius: 32px;
  padding: 40px 40px 0 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contacts-focus__icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.contacts-focus__card-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.contacts-focus__card-text {
  font-size: 18px;
  line-height: 1.6;
  color: #52525C;
  margin-bottom: 24px;
  font-weight: 400;
}

.contacts-focus__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contacts-focus__grid {
    grid-template-columns: 1fr;
  }
	.contact-hero{
		padding: 48px 0 !important;
	}
	.contact-box {
		padding: 32px 10px !important;
	}
	.contact-section{
		padding: 48px 0 !important;
	}
  .contacts-focus__card {
    padding: 32px 24px 0 24px;
  }
}
@media (max-width: 640px) {
  .contacts-focus__icon img {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
  }

  .contacts-focus__card-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .contacts-focus__card-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.site-footer {
  background: #0B0B0D;
  color: #fff;
  padding: 65px 0 40px;
}

/* ================= CTA ================= */
.footer-cta {
  margin-bottom: 96px;
}

/* CTA BOX ONLY */
.footer-cta__inner {
  background: linear-gradient(
    135deg,
    rgba(43, 127, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );
  border-radius: 24px;
  padding: 40px 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


/* CTA CONTENT */
.footer-cta__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BEDBFF;
  margin-bottom: 8px;
  display: block;
  line-height: 16px;
}

.footer-cta__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 36px;
}

.footer-cta__text {
  color: #D4D4D8;
  max-width: 520px;
  font-weight: 400;
  font-size: 13px;
}

/* CTA BUTTON */
.footer-cta__button {
  background: #2B7FFF;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= FOOTER MAIN ================= */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 80px;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.footer-menu__title{
  color:#9F9FA9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.footer-menus ul {
  list-style: none;
  padding: 0;
}

.footer-menus li::marker {
  display: none;
}

.footer-menus a {
  color: #A1A1AA;
  text-decoration: none;
}
.footer-brand__header {
  display: flex;
  align-items: center;
  gap: 12px; 
}

.footer-brand__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  margin: 0; 
}
.footer-brand__text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D4D4D8;
}
.footer-social,
.footer-social * {
  list-style: none !important;
}

.footer-social a::before,
.footer-social a::after {
  content: none !important;
  display: none !important;
}
.footer-social a {
  text-decoration: none !important;
  border: 0 !important;
}
.footer-cta__button {
  background: #2B7FFF;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.footer-cta__button:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(43, 127, 255, 0.35);
  background-color: #3B8CFF;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom__copyright {
  font-size: 11px;
  color: #71717B;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom__badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #D4D4D8;
  text-transform: uppercase;
}

.footer-bottom__cookie {
  font-size: 11px;
  color: #9F9FA9;
  text-decoration: none;
}

.footer-bottom__cookie:hover {
  color: #fff;
}
.footer-menu__list li {
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
	  padding:24px;
    
  }
.footer-cta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }

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

.documents-control {
  padding: 120px 0;
}



.documents-control__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 16px;
  
}

.documents-control__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #52525C;
  margin-bottom: 50px;
  max-width: 622px;
}

.documents-control__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: stretch;
}

.documents-control__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid rgba(24,102,221,0.24);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}



.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  color: #2E2E2E;
  flex: 1;
  text-align: left;
  font-family: inherit;
}

.accordion-arrow {
  width: 12px;
  height: 12px;
  position: relative;
}

.accordion-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-right: 1.33px solid #1866DD;
  border-bottom: 1.33px solid #1866DD;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.is-active .accordion-arrow::before {
  transform: rotate(-135deg);
}

.accordion-content {
  margin-top: 12px;
  display: none;
}

.accordion-item.is-active .accordion-content {
  display: block;
}

.accordion-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #565656;
  margin: 0;
}

.documents-control__image {
  width: 100%;
}

.documents-control__image img {
  width: 100%;
  height: auto;      
  display: block;
}

@media (max-width: 768px) {

  .documents-control {
    padding: 48px 0;
  }

  .documents-control .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .documents-control__title {
    font-size: 32px;
    line-height: 40px;
  }

  .documents-control__description {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 32px;
  }

  .documents-control__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .documents-control__accordion {
    order: 1;
  }

  .documents-control__image {
    order: 2;
  }

  .accordion-item {
    padding: 16px;
    border-radius: 14px;
  }

  .accordion-title {
    font-size: 15px;
  }

  .accordion-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .documents-control__image img {
    height: auto;
    max-width: 100%;
  }
}

.accordion-item {
  cursor: pointer;
}

.accordion-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
/* TABS SHOWCASE */
.tabs-showcase__panel {
  background: #1866DD;
  border-radius: clamp(1.25rem, 3vw, 24px);
  padding: clamp(1.5rem, 4vw, 80px);
  color: #fff;

  box-shadow:
    0 30px 80px -45px rgba(24, 102, 221, 0.6),
    0 0 0 1px rgba(255,255,255,0.12);
}

/* tab row */
/* tabs bar wrapper */
.tabs-showcase__tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0; /* important: dividers need no gaps */
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);

  margin: 0 auto clamp(1.25rem, 3vw, 40px);

}
.tabs-showcase-container{
  text-align: center;
}
/* each tab */
.tabs-showcase__tab {
  border: none;
  cursor: pointer;
  font-family: "InterTight";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;

  padding: 7px 22px;
  border-radius: 999px;

  background: transparent;
  color: rgba(255,255,255,0.9);

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
}

/* vertical separators between tabs */
.tabs-showcase__tab + .tabs-showcase__tab::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.22);
}

/* active tab (white pill) */
.tabs-showcase__tab.is-active {
  background: #fff;
  color: #1866DD;
  box-shadow: 0 8px 18px -14px rgba(2, 6, 23, 0.25);
}

.tabs-showcase__tab.is-active:hover {
  color:#1866DD
}

/* remove divider next to active pill (looks cleaner like Figma) */
.tabs-showcase__tab.is-active::before {
  display: none;
}

/* optional hover */
.tabs-showcase__tab:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* keep active hover stable */
.tabs-showcase__tab.is-active:hover {
  transform: none;
}


/* panes */
.tabs-showcase__pane {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  position: absolute;
  inset: 0;
}

.tabs-showcase__pane.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}


.tabs-showcase__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 80px);
  align-items: center;
}

/* image side */
.tabs-showcase__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(0.9rem, 2vw, 12px);

}

/* text side */
.tabs-showcase__title {
  margin: 0 0 16px 0;
  font-size: clamp(1.25rem, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.tabs-showcase__desc {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 18px);
  line-height: 36px;
  color: rgba(255,255,255,0.9);
  max-width: 46ch;
}
@media (max-width: 768px) {

  .tabs-showcase > .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tabs-showcase__panel {
    width: 100%;
    padding: 24px;
  }

  .tabs-showcase-container {
    width: 100%;
    text-align: left; 
    overflow: hidden;
  }

  .tabs-showcase__tabs {
    display: flex;               
    width: 100%;
    justify-content: flex-start;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
    -webkit-overflow-scrolling: touch;

    margin: 0 0 24px;
  }

  .tabs-showcase__tabs::-webkit-scrollbar {
    display: none;
  }

  .tabs-showcase__tab {
    flex: 0 0 auto;
  }

  .tabs-showcase__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tabs-showcase__desc {
    max-width: 100%;
    line-height: 1.7;
  }
}


.blog-section {
  padding: 96px 0;
}

.blog-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.blog-section__label {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 16px;
}

.blog-section__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-section__description {
  color: #6b7280;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.blog-card__badge {
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.blog-card__date {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  text-transform: uppercase;
  color: #111111; 
}


.blog-card__title {
  font-weight: 700;
  font-size: 17.4px;
  line-height: 28px;
  letter-spacing: 0;
  color: #111111;
  margin: 0 0 8px;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: underline;
}

.blog-card__excerpt {
  font-size: 14px;
  color: #454545;
  line-height:22px;
  font-weight:400;
}
@media (max-width: 768px) {

  .blog-section {
    padding: 48px 0;
  }

  .blog-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-section__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .blog-section__description {
    font-size: 15px;
  }

  .blog-card__image img {
    height: 220px;
    border-radius: 16px;
  }
}


.single-hero {
  padding-top: 120px;
}

.single-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 40px; 
  border-bottom: 1px solid #D9D9D9;
}

.single-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-hero__label {
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.single-hero__date {
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #6b7280;
}

.single-hero__title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.single-hero__excerpt {
  font-size: 16px;
  line-height: 26px;
  color: #52525c;
  max-width: 520px;
}

.single-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}
.single-content {
  padding: 20px 0 120px;
}

.single-content__inner {
  max-width: 720px;
  margin: 0 auto;
}

.single-content__inner p {
  font-size: 16px;
  line-height: 28px;
  color: #3f3f46;
  margin-bottom: 24px;
}

.single-content__inner h2,
.single-content__inner h3 {
  margin: 48px 0 16px;
  font-weight: 700;
}
.single-post .blog-section {
  padding-top: 0;
}
@media (max-width: 768px) {

  .single-hero {
    padding: 48px 0;
  }

  .single-hero .container,
  .single-content .container,
  .blog-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .single-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .single-hero__content {
    order: 1;
  }

  .single-hero__image {
    order: 2;
	  
  }

  .single-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .single-hero__excerpt {
    font-size: 15px;
  }

  .single-hero__image img {
    border-radius: 16px;
  }

  .single-content {
    padding: 48px 0 96px;
  }
}

.content-block {
  width: 100%;
}

.content-block__inner {
  padding: 80px 350px;
}

.content-block__inner > *:first-child {
  margin-top: 0;
}

.content-block__inner > *:last-child {
  margin-bottom: 0;
}

.content-block__inner p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.content-block__inner h1,
.content-block__inner h2,
.content-block__inner h3,
.content-block__inner h4,
.content-block__inner h5 {
  margin: 48px 0 16px;
}

.content-block__inner img {
  max-width: 480px;
  height: auto;
  display: block;
  margin: 32px 0;
  border-radius: 16px;
}

.content-block--legal .content-block__box {
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  padding: 32px;
  background: #ffffff;
}
.content-block--legal .content-block__inner {
  padding: 20px 176px;
}
.content-block__back {
  margin-top: 24px;
}

.content-block__back a {
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

.content-block__back a:hover {
  text-decoration: underline;
}


.content-block--legal .content-block__box + .content-block__box {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .content-block--legal .content-block__inner {
    padding: 64px 120px;
  }
}

@media (max-width: 768px) {
  .content-block--legal .content-block__inner {
    padding: 48px 24px;
  }
}

@media (max-width: 1440px) {
  .content-block__inner {
    padding: 80px 200px;
  }
}

@media (max-width: 1024px) {
  .content-block__inner {
    padding: 64px 120px;
  }
}

@media (max-width: 768px) {
  .content-block__inner {
    padding: 48px 24px;
  }

  .content-block--legal .content-block__box {
    padding: 24px;
  }
}

@media (max-width: 1228px) {
  .tabs-showcase__grid{
  grid-template-columns:1fr
  }
}
.secondary-hero {
  position: relative;
  background-color: #ffffff;

  background-image:
    radial-gradient(#D7DFEA 1px, transparent 1px),
    radial-gradient(#D7DFEA 1px, transparent 1px);

  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;

  padding: 80px 0;
  border-bottom: 1px solid #EEF0F2;
}


.secondary-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.secondary-hero__label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;

  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #18181B;
  border-radius: 999px;
}

.secondary-hero__title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #18181B;
  margin-top: 0;
}

.secondary-hero__description {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: #52525B;
  margin-bottom: 32px;
}

.secondary-hero__media img {
  width: 100%;
  height: auto;
  display: block;
}
.secondary-hero__title span {
  color: #1866DD;
}
@media (max-width: 1024px) {
  .secondary-hero__inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .secondary-hero {
    padding: 48px 0;
  }

  .secondary-hero__title {
    font-size: 32px;
  }
	.secondary-hero__label{
		font-size:12px;
	}
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  text-decoration: none;
  border: 0;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.btn-primary {
  background: #1866DD;
  color: #fff;

  box-shadow: 0 10px 24px -14px rgba(24, 102, 221, 0.6);
}

.btn-primary:hover {
  background: #155DFC;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -16px rgba(24, 102, 221, 0.75);
}
 .secondary-hero__media {
  justify-self: end;

}

@media (max-width: 1440px) {
  .secondary-hero__media {
    margin-right: 0;
  }
}
.secondary-hero {
  overflow: hidden;
}

.secondary-hero__media {
  position: relative;
}

.secondary-hero__media img {
  width: auto;
  max-width: none;
  height: auto;

  position: relative;
  right: -120px;
}
@media (max-width: 1024px) {
  .secondary-hero__media {
    justify-self: center;
    margin-right: 0;
  }

  .secondary-hero__media img {
    right: 0;
    width: 100%;
    max-width: 100%;
  }
}

.legal-page-header {
  margin-bottom: 48px;
}

.page-excerpt {
    color: #52525C;
    margin-top: 12px;
    line-height: 1.5;
    font-size: 15px;
    font-weight:400;
}

.page-divider {
    margin-top: 32px;
    border: none;
    border-top: 1px solid #e5e5e5;
}
.page-excerpt {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #52525C;
}

.page-divider {
    margin-top: 32px;
    border: none;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.legal-hero {
    margin-bottom: 48px;
}

.contact-hero {
  padding: 80px 0;
  border-bottom: 1px solid #EEF0F2;
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-hero__content {
  max-width: 560px;
}

.contact-hero__content .page-title {
  margin-bottom: 12px;
}

.contact-hero__content .page-excerpt {
  max-width: 640px;
}

.contact-hero__media {
  display: flex;
  justify-content: flex-end;
}

.contact-hero__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.contact-section {
  padding: 64px 0 80px;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-box {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
}

.contact-box__title {
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 6px;
}

.contact-box__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  margin-bottom: 24px;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 18px;
}

.company-item {
  display: flex;
  flex-direction: column;
}

.company-item--full {
  grid-column: span 2;
}

.company-label {
  font-size: 13px;
  font-weight: 400;
  color: #71717B;
  margin-bottom: 4px;
}

.company-value {
  font-size: 13px;
  font-weight: 400;
  color: #0A0A0A;
}

.company-value a {
  color: #0A0A0A;
  text-decoration: none;
}

.wpcf7 label {
  font-size: 13px;
  font-weight: 400;
  color: #52525C;
  display: block;
  margin-bottom: 6px;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  font-weight: 400;
  color: #0A0A0A;
}
.wpcf7 textarea {
  width: 100%;
}

.wpcf7 textarea {
  min-height: 120px;
}

.wpcf7-submit {
  background: #0A0A0A;
  color: #ffffff !important;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;

  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wpcf7-submit:hover {
  background: #000000;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-acceptance {
  flex: 1;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start; 
  gap: 8px;
}

.wpcf7-list-item-label {
  line-height: 1.4;
}
.wpcf7-submit {
  white-space: nowrap;
  margin-left: auto;
}

.c7f-acceptance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-back {
  display: block;
  text-align:right;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  color: #737373;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

.cf7-acceptance {
  display: flex;
  align-items: center;
}

.cf7-acceptance input[type="checkbox"] {
  margin: 0 22px 0 0;
}

.cf7-acceptance span.wpcf7-list-item {
  margin: 0;
}

.cf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.4;
}

/* =========================================================
   MEGA MENU 
========================================================= */

.mega-menu > li.mega-menu-item.mega-toggle-on > .mega-sub-menu {
  position: absolute !important;
  left: 50% !important;
  top: calc(100% + 20px) !important;
  transform: translateX(-50%) !important;
  width: min(1270px, calc(100vw - 32px)) !important;
  background: #ffffff !important;
  padding: 32px !important;
  border-radius: 10px !important;
  border: 1px solid #E5E7EB !important;
  box-shadow:
    0 20px 25px -5px rgba(0,0,0,0.08),
    0 10px 10px -5px rgba(0,0,0,0.04) !important;

  z-index: 9999;
}

.mega-menu .mega-menu-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 260px;
  gap: 32px;
  align-items: stretch;
}

.mega-col__title {
  font-size: 14px;
  font-weight: 400;
  color: #6A7282;
  margin-bottom: 16px;
}

.mega-menu .mega-item {
  display: flex;
  align-items: center;
  gap: 24px;

  padding: 10px 0px;
  border-radius: 12px;

  text-decoration: none !important;
  background: transparent !important;

  transition: background 0.2s ease;
  padding-left:5px;
}

.mega-menu .mega-item:hover {
  background: #F8FAFC;
}

.mega-menu .mega-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;

  background: linear-gradient(135deg, #EEF2FF, #F5F7FF);
  color: #2563EB;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu .mega-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu .mega-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  line-height: 1.2;
}

.mega-menu .mega-item__desc {
  font-size: 13px;
  font-weight: 400;
  color: #6A7282;
  line-height: 1.3;
}

.mega-menu .mega-cta {
  height: 100%;
  border-radius: 10px;

  background: linear-gradient(180deg, #EFF6FF 0%, #E0E7FF 100%);
  padding: 24px;

  display: flex;
  flex-direction: column;
}

.mega-menu .mega-cta h4 {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.mega-menu .mega-cta p {
  font-size: 13px;
  font-weight: 400;
  color: #6A7282;
  line-height: 1.4;
  margin-bottom: 16px;
}

.mega-menu .mega-cta a {
  margin-top: auto;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
}
.mega-menu,
.mega-menu > li.mega-menu-item {
  background: #ffffff !important;
}

.mega-menu > li.mega-menu-item > a.mega-menu-link {
  background: transparent !important;
  color: #2E2E2E !important;
  font-weight: 500;
  box-shadow: none !important;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mega-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
.mega-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
  color: #155DFC !important;
  background: transparent !important;
}
.mega-menu > li.mega-menu-item > a .mega-indicator,
.mega-menu > li.mega-menu-item > a .mega-indicator::before {
  transition: transform 0.25s ease;
}

.mega-menu > li.mega-menu-item.mega-toggle-on > a .mega-indicator,
.mega-menu > li.mega-menu-item.mega-toggle-on > a .mega-indicator::before {
  transform: rotate(180deg);
}
.mega-item {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mega-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  
  
}
#mega-menu-primary {
  display: flex !important;
  gap: 42px !important;    
  padding: 0 !important;
  margin: 0 !important;
}
#mega-menu-primary,
#mega-menu-primary > li,
#mega-menu-primary > li > a,
#mega-menu-primary > li > a.mega-menu-link {
  margin: 0 !important;
  padding: 0 !important;
}

/* ======================================
   MOBILE MENU
====================================== */
@media (max-width: 900px) {

  .header__inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
    position: relative;
    z-index: 10001;
    background: #fff;
  }
   .header__actions {
    width: auto !important;     
    display: flex !important;   
    margin-left: auto;          
    align-items: center;
  }
    #mega-menu-primary 
  .mega-menu-item 
  > .mega-menu-item-content {
    border-bottom: 1px solid #605b5b;
  }

  #mega-menu-primary 
  .mega-menu-item:last-child 
  > .mega-menu-item-content {
    border-bottom: none;
  }
  #mega-menu-primary .mega-menu-item > a {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

  #mega-menu-primary {
    position: fixed !important;
    top: 64px !important;
    right: 0;
    width: 100vw !important;
    height: calc(100vh - 64px); 
    background: #ffffff !important;
    z-index: 9998;
    overflow-y: auto;
    padding: 24px 16px 16px !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
.mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    width: 100% !important;
  }
  .site-header.is-open #mega-menu-primary {
    transform: translateX(0);
  }
.header__cta {
    display: none !important;
}
.site-header {
  position: relative;
  z-index: 10001;
  background: #fff;
}
body::before,
.mega-menu-overlay,
.mega-menu-backdrop {
  display: none !important;
  opacity: 0 !important;
}

}

.card--module:hover {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.feature-card:hover::after {
  opacity: 1;
}
.hero-app__image img {
  transform: translateY(8px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-app__image:hover img {
  transform: translateY(0);
}

.pricing-card__head {
    text-align: left;
    align-items: flex-start;
}

.pricing-card__title-row {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-card__price-wrap {
    text-align: left;
    margin: 12px 0 8px;
}

.pricing-card__old-price {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280; 
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card__price {
  font-size:24px;
    color: #2563eb;
    line-height: 1.1;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-card__period {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 4px;
}

.pricing-card__price-note {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 6px;
    max-width: 260px;
    margin-right: auto;
}

.pricing-card__note {
    text-align: center;
}
.pricing-section__footer-note {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280; 
    text-align: center;
    margin-top: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}
.pricing-card--featured .pricing-card__old-price,
.pricing-card--featured .pricing-card__price-note {
    color: #ffffff;
    opacity: 0.85;
}
.pricing-card__price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.pricing-card__note {
    font-size: inherit;
    font-weight: inherit;
    color: #6b7280;
    margin: 0;
}

.pricing-card--featured .pricing-card__note {
    color: #ffffff;
    opacity: 0.85;
}
.pricing-card__price-wrap {
    min-height: 126px;
}
.pricing-card__note {
    font-size: 16px;        
    font-weight: 400;       
    color: #6b7280;
    white-space: nowrap;
}
.pricing-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.pricing-card--featured:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
.pricing-card__price-wrap {
    min-height: 0px;
}
	.mesh-menu-links > a, .mesh-toggle{
		font-size: 20px !important;
		font-weight:600 !important;
	}
  .site-header {
    position: relative !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    background: #ffffff !important;
  }

  .site-header * {
    opacity: 1 !important;
  }

  #mega-menu-primary {
    position: fixed !important;
    top: 70px !important; 
    right: 0 !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: #ffffff !important;
    padding: 0 !important;
    overflow-y: auto !important;
    z-index: 9998 !important;
  }

  #mega-menu-primary,
  #mega-menu-primary ul {
    padding: 0 !important;
    margin: 0 !important;
  }

  #mega-menu-primary li.mega-menu-item {
    margin: 0 !important;
  }

  #mega-menu-primary a.mega-menu-link {
    padding: 14px 20px !important;
    border-bottom: 1px solid #e5e5e5 !important;
  }

  #mega-menu-primary li:last-child > a.mega-menu-link {
    border-bottom: none !important;
  }

}
@media (max-width: 900px) {

  .mega-menu .mega-menu-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .mega-menu .mega-menu-row > div {
    width: 100% !important;
  }

  .mega-menu .mega-cta {
    width: 100% !important;
    margin-top: 16px;
    border-radius: 16px !important;
  }

  .mega-menu .mega-cta {
    background: #F1F5F9 !important;
    padding: 20px !important;
  }

  .mega-menu .mega-cta h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
  }

  .mega-menu .mega-cta p {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  .mega-menu .mega-cta a {
    color: #1866DD !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }

  .header__login-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px !important;
    font-size: 14px !important;
    color: #2E2E2E !important;
  }

  .header__cta-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin: 0 !important;
    background: #0F172A !important;
    color: #fff !important;
    font-weight: 600 !important;
  }

}
#mega-menu-wrap-primary,
#mega-menu-primary,
#mega-menu-primary > li.mega-menu-item > a,
#mega-menu-primary.mega-menu-horizontal {
  background: transparent !important;
}
#mega-menu-wrap-primary 
#mega-menu-primary > li.mega-menu-item {
  background: transparent !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

}
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
}

.video-modal__iframe-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.video-modal__iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
}
.pricing-card:last-child .pricing-card__cta {
  background: #1866DD;
  color: #fff;
}

.pricing-card:last-child .pricing-card__cta:hover {
  background: #1259d3;
}
/* APP DOWNLOAD SECTION */
.footer-apps {
  margin-top: 24px;
}

.footer-apps__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #D4D4D8;
  margin-bottom: 12px;
  line-height:20px;
}

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

.footer-apps__badges img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.footer-apps__badges a:hover img {
  transform: scale(1.05);
}

/* ===== REGISTER CSS MERGED FROM assets/css/register.css ===== */

.mesh-register-body {
  margin: 0;
  min-height: 100vh;
  background: #f2f3f5;
  color: #303744;
}

.mesh-register {
  
  padding: 16px 16px 26px;
  background-color: white;
}

.mesh-register .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mesh-register__shell {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  
}

.mesh-register__locale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 22px;
}

.mesh-register__locale-code {
  border-bottom: 1px solid #8a909b;
  color: #4b5361;
  font-size: 20px;
  line-height: 1;
  padding-bottom: 4px;
}

.mesh-register__locale-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #7f8796;
}

.mesh-register__grid {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}

.mesh-register-panel--form {
  padding: 48px 0 48px;
  max-width: 500px;
  margin: 0;
}

.mesh-register__title {
  margin: 0;
  color: #545b66;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.03;
  margin-bottom: 30px;
 
}

.mesh-register__subtitle {
  margin: 18px 0 34px;
  color: #6b7380;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.mesh-register-form {
  width: 100%;
}

.mesh-register-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;

}

.mesh-register-form__field {
  position: relative;
  margin-bottom: 22px;
}

.mesh-register-form__field--floating .mesh-register-form__floating-label {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #8e97a5;
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
  background: #ffffff;
  z-index: 1;
  padding: 0 6px;
  transition: top 0.18s ease, transform 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}

.mesh-register-form__field--floating input:focus + .mesh-register-form__floating-label,
.mesh-register-form__field--floating input:not(:placeholder-shown) + .mesh-register-form__floating-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 13px;
  color: #6a7380;
}

.mesh-register-form__field input {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid #c9d0da;
  border-radius: 12px;
  background: transparent;
  color: #3b4350;
  font-size: 16px;
  line-height: 1;
  padding: 0 22px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mesh-register-form__field input::placeholder {
  color: #8e97a5;
  opacity: 1;
}


.mesh-register-form__field--phone {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 44px;
  border: 1.5px solid #c9d0da;
  border-radius: 12px;
  background: transparent;
  overflow: visible;
  margin-bottom: 22px;
}

.mesh-register-form__country {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0 12px;
  cursor: pointer;
  height: 100%;
  border-right: 1px solid #d2d8e3;
  border-radius: 22px 0 0 22px;
}

.mesh-register-form__country:focus-visible {
  outline: 2px solid #3c6ed8;
  outline-offset: -2px;
}

.mesh-register-form__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
}

.mesh-register-form__flag-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.mesh-register-form__country-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #7f8795;
  transition: transform 0.2s ease;
}

.mesh-register-form__country[aria-expanded="true"] .mesh-register-form__country-arrow {
  transform: rotate(180deg);
}

.mesh-register-form__dial {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  z-index: 2;
  pointer-events: none;
  color: #2f3744;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding-left: 16px;
}

.mesh-register-form__field--phone input {
  grid-column: 2;
  grid-row: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 44px;
  padding: 0 16px 0 56px;
  font-size: 16px;
  box-shadow: none;
}

.mesh-register-form__field--phone input:focus {
  border: 0;
  box-shadow: none;
}

.mesh-register-form__country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(760px, 100%);
  max-height: 340px;
  overflow-y: auto;
  border: 1px solid #d2d8e3;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  box-shadow: 0 16px 36px -24px rgba(14, 24, 39, 0.5);
  z-index: 40;
}

.mesh-register-form__country-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mesh-register-form__country-item + .mesh-register-form__country-item {
  border-top: 1px solid #eef1f6;
}

.mesh-register-form__country-option {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #101828;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px 18px;
  cursor: pointer;
}

.mesh-register-form__country-option:hover,
.mesh-register-form__country-option:focus-visible {
  background: #f5f7fb;
  outline: none;
}

.mesh-register-form__country-option.is-active {
  background: #f0f2f5;
}

.mesh-register-form__country-option-flag {
  display: inline-flex;
  align-items: center;
  width: 46px;
}

.mesh-register-form__country-option-flag-image {
  width: 46px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.mesh-register-form__country-option-name {
  font-size: 16px;
  line-height: 1.25;
  color: #0f172a;
}

.mesh-register-form__country-option-dial {
  font-size: 16px;
  line-height: 1.25;
  color: #727e8f;
}

.mesh-register-form__field--password input {
  padding-right: 98px;
}

.mesh-register-form__toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #356ad8;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

.mesh-register-form__captcha {
  margin-top: 8px;
}

.mesh-register-form__captcha .g-recaptcha {
  width: fit-content;
}

.mesh-register-form__checkbox {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  max-width: 760px;
  color: #666f7c;
  font-size: 14px;
  line-height: 1.42;
}

.mesh-register-form__checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #9fa8b5;
  border-radius: 4px;
  background: transparent;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.mesh-register-form__checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid #2f67d5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.mesh-register-form__checkbox a {
  color: #606a77;
}

.mesh-register-form__submit {
  margin-top: 24px;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: #3a68d5;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.mesh-register-form__submit:hover {
  opacity: 0.92;
}

.mesh-register-form__submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.mesh-register-form__notice,
.mesh-register-form__error {
  margin: 8px 0 0;
  color: #b91c1c;
  font-size: 16px;
  line-height: 1.4;
}

.mesh-register-form__notice {
  border: 1px solid #fecaca;
  background: #fee2e2;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
}

.mesh-register__login {
  margin: 30px 0 0;
  color: #6a7380;
  font-size: 14px;
  text-align: center;
}

.mesh-register__login a {
  color: #2f67d5;
}

.mesh-register-panel--visual {
  background: #3a68d5;
  border-radius: 14px;
  padding: 68px 68px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 930px;
  margin-right: 0;
}

.mesh-register-visual__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
  max-width: 100%;
}

.mesh-register-visual__subtitle {
  margin: 18px 0 30px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.mesh-register-visual__image-wrap {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
aspect-ratio: 16 / 11;
}

.mesh-register-visual__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.mesh-register-visual__links {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
}

.mesh-register-visual__links a {
  color: #eef2ff;
  font-size: 13px;
  text-decoration: underline;
}

.mesh-register-success {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e9f1;
  padding: 42px 36px;
  box-shadow: 0 24px 60px -44px rgba(2, 8, 24, 0.4);
}

.mesh-register-success__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f0ff;
  color: #2f67d5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.mesh-register-success__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.1;
  color: #1f2635;
}

.mesh-register-success__text {
  margin: 0 0 10px;
  color: #5a6070;
  font-size: 16px;
  line-height: 1.45;
}

.mesh-register-success__steps {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4f5563;
  font-size: 14px;
  line-height: 1.6;
}

.mesh-register-success__steps li + li {
  margin-top: 4px;
}

.mesh-register-success__actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mesh-register-success__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #3a68d5;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.mesh-register-success__link {
  color: #2f67d5;
  font-size: 14px;
  text-decoration: underline;
}

.mesh-register__grid--success {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  align-items: stretch;
}

@media (max-width: 1650px) {
  .mesh-register__grid {
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 42px;
  }

  .mesh-register__grid--success {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  }

  .mesh-register-panel--visual {
    padding: 64px 64px;
    min-height: 500px;
  }
}

@media (max-width: 1360px) {
  .mesh-register__title {
    font-size: clamp(46px, 5vw, 62px);
  }

  .mesh-register__subtitle {
    font-size: 17px;
  }

  .mesh-register-form__field input,
  .mesh-register-form__field--phone input,
  .mesh-register-form__dial,
  .mesh-register-form__toggle {
    font-size: 16px;
  }

  .mesh-register-form__checkbox,
  .mesh-register-form__submit,
  .mesh-register__login {
    font-size: 14px;
  }

  .mesh-register-visual__subtitle {
    font-size: 17px;
  }

  .mesh-register-visual__links a {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .mesh-register {
    padding: 18px 12px 34px;
  }

  .mesh-register__grid,
  .mesh-register__grid--success {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: 24px;
  }

  .mesh-register-panel--form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 52px;
  }

  .mesh-register-form {
    max-width: 760px;
    margin: 0 auto;
  }

  .mesh-register-panel--visual {
    display: flex;
    width: 100%;
    min-height: 0;
    max-width: 760px;
    margin: 0 auto;
    margin-right: auto;
    padding: 34px 30px 24px;
    border-radius: 12px;
  }

  .mesh-register-visual__title {
    font-size: clamp(28px, 3.6vw, 32px);
  }

  .mesh-register-visual__subtitle {
    margin: 14px 0 20px;
  }

  .mesh-register-visual__image-wrap {
    max-height: 340px;
  }

  .mesh-register-visual__links {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .mesh-register {
    padding: 14px 10px 32px;
  }

  .mesh-register__locale-code {
    font-size: 18px;
  }

  .mesh-register__title {
    font-size: clamp(34px, 10vw, 52px);
    margin-bottom: 18px;
  }

  .mesh-register__subtitle {
    margin: 10px 0 30px;
    font-size: 16px;
  }

  .mesh-register-panel--visual {
    display: none;
  }

  .mesh-register-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .mesh-register-form__field {
    margin-bottom: 14px;
  }

  .mesh-register-form__row .mesh-register-form__field {
    margin-bottom: 0;
  }

  .mesh-register-form__field--floating .mesh-register-form__floating-label {
    left: 16px;
  }

  .mesh-register-form__field input {
    min-height: 42px;
    border-radius: 16px;
    font-size: 16px;
    padding: 0 16px;
  }
  .mesh-register-panel--form {
    padding: 48px 20px;
  }

  .mesh-register-form__field--phone {
    min-height: 42px;
    border-radius: 16px;
    grid-template-columns: 84px minmax(0, 1fr);
    margin-bottom: 14px;
  }

  .mesh-register-form__country {
    min-height: 42px;
    padding: 0 8px;
    border-radius: 16px 0 0 16px;
    gap: 6px;
  }

  .mesh-register-form__flag {
    width: 26px;
    height: 18px;
  }

  .mesh-register-form__flag-image {
    border-radius: 4px;
  }

  .mesh-register-form__dial {
    font-size: 16px;
    padding-left: 10px;
  }

  .mesh-register-form__field--phone input {
    grid-column: 2;
    grid-row: 1;
    min-height: 42px;
    font-size: 16px;
    padding: 0 10px 0 48px;
  }

  .mesh-register-form__field--password input {
    padding-right: 86px;
  }

  .mesh-register-form__country-dropdown {
    width: 100%;
    max-height: 280px;
  }

  .mesh-register-form__country-option {
    grid-template-columns: 42px 1fr auto;
    padding: 10px 12px;
  }

  .mesh-register-form__country-option-flag {
    width: 34px;
  }

  .mesh-register-form__country-option-flag-image {
    width: 34px;
    height: 22px;
    border-radius: 4px;
  }

  .mesh-register-form__country-option-name,
  .mesh-register-form__country-option-dial {
    font-size: 15px;
  }

  .mesh-register-form__toggle {
    right: 12px;
    font-size: 14px;
  }

  .mesh-register-form__checkbox {
    margin-top: 16px;
    grid-template-columns: 24px 1fr;
    font-size: 14px;
    gap: 10px;
  }

  .mesh-register-form__checkbox input {
    width: 22px;
    height: 22px;
    border-width: 2px;
  }

  .mesh-register-form__checkbox input:checked::after {
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  .mesh-register-form__submit {
    margin-top: 20px;
    min-height: 50px;
    border-radius: 15px;
    font-size: 17px;
  }

  .mesh-register__login {
    margin-top: 20px;
    font-size: 14px;
  }

  .mesh-register-success {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .mesh-register-success__badge {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .mesh-register-success__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .mesh-register-success__text {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .mesh-register-form__row {
  
    margin-bottom: 0;
  }

  .mesh-register-form__row .mesh-register-form__field {
    margin-bottom: 14px;
  }
}

/* Prevent injected mobile-menu markup from creating layout space below footer. */
body:not(.mesh-menu-open) .mesh-menu-overlay,
body:not(.mesh-menu-open) .mesh-menu-panel {
  display: none !important;
}

body.mesh-menu-open .mesh-menu-overlay,
body.mesh-menu-open .mesh-menu-panel {
  display: block !important;
}

@media (min-width: 901px) {
  .mesh-burger,
  .mesh-menu-overlay,
  .mesh-menu-panel {
    display: none !important;
  }
}

/* MeshWeb Sticky Button: keep button fixed, remove layout spacer (white strip). */
.mwsb-spacer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.card__image {
  position: relative;
}

.card__video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
}

.card__video-button img {
  width: 100%;
  height: auto;
  display: block;
}
.company-item a.company-value {
    color: #155DFC;
    text-decoration: none;
}

.company-item a.company-value:hover {
    text-decoration: underline;
}
.wpcf7-acceptance input[type="checkbox"] {
    margin-top: 4px; 
}

* {
  box-sizing: border-box;
}
 
body {
  margin: 0;
}
 
html {
  overflow-y: scroll;
}
.secondary-hero__title,
.secondary-hero__description,
.secondary-hero__label,
.secondary-hero .btn {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}