@charset "UTF-8";
/* ==========================================================================
   EUS — shared design system
   Reusable tokens, typography, buttons, badges, form fields, header, footer.
   Page-specific layout lives in each page's own <style> block.
   ========================================================================== */
:root {
  --white: #ffffff;
  --text-gray: #615e83;
  --border: #e5e5ef; /* general borders / dividers */
  --field-border: #e0e5f2; /* form control borders */
  --light: #f8f8ff;
  --navy: #1e1b39;
  --primary: #3a61ff;
  --blue-100: #e5eafc;
  --lilac: #eef0fe;
  --container: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-locale: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 110px;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
}

/* Heading font stack: Latin from Poppins, Cyrillic falls back to Montserrat */
h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
}

h2,
h3 {
  font-size: 36px;
}

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

/* --------------------------------------------------------------------------
   Buttons — base + variants + size/width modifiers
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  padding: 17px 30px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(74, 58, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(74, 58, 255, 0.36);
}

.btn-light {
  background: var(--lilac);
  color: var(--navy);
}

.btn-light:hover {
  background: #e3e6fb;
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* modifiers */
.btn--lg {
  font-size: 19px;
  padding: 19px 40px;
}

.btn--block {
  width: 100%;
}

.btn--wide {
  min-width: 210px;
}

.btn--center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
} /* center a block-level button */
/* trailing arrow chip inside a button — white circle with a blue arrow */
.btn .btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  flex: none;
}

.btn .btn-arrow svg {
  stroke: var(--primary);
}

.btn-light .btn-arrow {
  background: #fff;
}

/* --------------------------------------------------------------------------
   Section label badge
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 22px rgba(30, 27, 57, 0.08);
}

.badge .badge-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lilac);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--primary);
}

.badge .badge-tx {
  background: var(--lilac);
  color: var(--primary);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 6px 16px;
}

/* --------------------------------------------------------------------------
   Card — white rounded surface used for forms / panels
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(13, 10, 44, 0.1);
}

/* --------------------------------------------------------------------------
   Form fields — labels, inputs, textarea, focus, eye toggle, checkbox, phone
   -------------------------------------------------------------------------- */
.field {
  margin-bottom: 22px;
}

.field > label {
  display: block;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}

.input-wrap {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input {
  height: 52px;
  padding: 0 16px;
}

.field .input-wrap input {
  padding-right: 44px;
} /* room for the eye icon */
.field input::placeholder,
.field textarea::placeholder {
  color: #9c99b5;
}

.field input:focus,
.field textarea:focus,
.field input.focused {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.12);
}

.field textarea {
  min-height: 210px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}

.eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9c99b5;
  display: grid;
  place-items: center;
  padding: 4px;
}

.eye:hover {
  color: var(--text-gray);
}

/* checkbox — unchecked by default; add .on for checked */
.checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid var(--field-border);
  display: grid;
  place-items: center;
  flex: none;
  cursor: pointer;
  transition: 0.15s;
}

.checkbox.on {
  background: var(--primary);
  border-color: var(--primary);
}

.cfg-item.required .checkbox.on {
  background: #9c99b5;
  border-color: #9c99b5;
}

.checkbox:not(.on) svg {
  display: none;
}

/* phone field with country-code selector */
.phone-input {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.phone-input input {
  flex: 1;
  min-width: 0;
}

.cc {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  padding: 0 12px;
  height: 52px;
  background: #fff;
  cursor: pointer;
  flex: none;
}

.cc img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cc .code {
  font-size: 15px;
  color: var(--navy);
}

.cc svg {
  color: var(--text-gray);
}

#simple .wrapper {
  max-width: 800px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 40px 0;
}
#simple .wrapper h1 {
  margin-bottom: 20px;
}

#simple .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  z-index: 30;
  padding-top: 26px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.nav {
  width: min(1200px, 100vw - 24px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  -webkit-backdrop-filter: blur(7.5999999046px);
  backdrop-filter: blur(7.5999999046px);
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(30, 27, 57, 0.08);
  padding: 12px 20px;
  gap: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: -5px;
}

.logo .logo-img {
  width: 68px;
  object-fit: contain;
  font-family: "Inter", sans-serif;
}

.logo .logo-sub {
  font-size: 9px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  font-family: "Inter", sans-serif;
}

.nav-links > a,
.nav-links > .nav-dd > .nav-dd-toggle {
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  background: var(--lilac);
  color: var(--primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 16px;
  min-width: 120px;
}

/* Hamburger toggle (mobile only) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.site-header.open .nav-burger span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile dropdown menu (hidden on desktop) */
.nav-mobile {
  display: none;
  flex-direction: column;
  width: min(1200px, 100vw - 24px);
  margin: 12px auto 0;
  padding: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(30, 27, 57, 0.16);
}

.nav-mobile a:not(.btn) {
  padding: 14px 16px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
}

.nav-mobile a:not(.btn):hover,
.nav-mobile a:not(.btn).active {
  background: var(--lilac);
  color: var(--primary);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.nav-mobile-actions .btn {
  width: 100%;
}

.site-header.open .nav-mobile {
  display: flex;
}

/* --------------------------------------------------------------------------
   Feature card — icon + title + text + circular arrow (grids or carousels)
   -------------------------------------------------------------------------- */
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px 26px;
  position: relative;
  box-shadow: 0 20px 45px rgba(30, 27, 57, 0.06);
  min-height: 340px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(30, 27, 57, 0.12);
}

.fcard .ficon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.fcard h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.5;
}

.fcard p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.fcard .farrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lilac);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.fcard .farrow svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* Blog / article post card — image + title + text + read link (grids or carousels) */
.post {
  background: linear-gradient(180deg, #fbfbfe 0%, #f3f1f0 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13, 10, 44, 0.06);
}

.post > img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.post .body {
  padding: 30px 34px 34px;
}

.post h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.post p {
  font-size: 15px;
  color: var(--text-gray);
  margin-top: 16px;
}

.post .read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.post .read svg {
  transition: transform 0.15s;
}

.post .read:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Feature chip / tag pill
   -------------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(30, 27, 57, 0.05);
}

.tag img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Section divider heading (label + rule) + horizontal feature carousel
   -------------------------------------------------------------------------- */
.divider-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.divider-head h2 {
  white-space: nowrap;
  color: var(--navy);
  font-size: 16px;
}

.divider-head .line {
  flex: 1;
  height: 1px;
  background: var(--navy);
  opacity: 0.45;
}

.carousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
}

.carousel .fcard {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.carousel .post {
  flex: 0 0 430px;
  scroll-snap-align: start;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: #d8ddee;
  border-radius: 99px;
}

/* full-bleed-right variant: keeps the left edge aligned with the container
   but extends the track to the right edge of the viewport */
.carousel--bleed {
  margin-right: calc(50% - 50vw);
  padding-right: 15px;
}

/* --------------------------------------------------------------------------
   Integration CTA band (centered, soft concentric rings behind)
   -------------------------------------------------------------------------- */
.integration {
  position: relative;
  text-align: center;
  padding: 110px 0 120px;
  padding-top: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fe 100%);
}

.rings {
  position: absolute;
  top: 485px;
  left: 50%;
  transform: translate(-50%, -46%);
  z-index: 0;
  width: 0;
  height: 0;
}

.rings i {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 0;
  top: 0;
}

.rings i:first-child {
  background: linear-gradient(125deg, #e9f3fd, #fff);
  border: 1px solid #f7f7f9;
}

.integration .container {
  position: relative;
  z-index: 3;
}

.integration h2 {
  margin: 22px 0 22px;
}

.integration p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.int-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-image: url("../img/footer/bg.jpg");
  background-position: top center;
  color: #82828e;
  position: relative;
  overflow: hidden;
  padding: 64px 0 30px;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: stretch;
}

.footer-left {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
}

.footer-logo .f-eus {
  display: block;
  font-family: "Jomolhari", serif;
  font-size: 50px;
  line-height: 1;
  color: #fff;
}

.footer-logo .f-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
}

.footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #82828e;
  margin-top: 5px;
}

.footer-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 2.35;
  color: #82828e;
  max-width: 772px;
  margin-top: 27px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 39px;
  margin-top: auto;
  padding-top: 60px;
  flex-wrap: wrap;
}

.footer-nav > a {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  transition: color 0.15s;
}

.footer-nav > a:hover {
  color: var(--primary);
}

.footer-lang {
  position: relative;
}

.footer-lang .lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.footer-lang .lang-toggle img {
  width: 18px;
  height: 18px;
}

.footer-lang .lang-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 160px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13, 10, 44, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 20;
}

.footer-lang.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-lang .lang-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
}

.footer-lang .lang-menu a:hover {
  background: var(--lilac);
  color: var(--primary);
}

.footer-lang .lang-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

.footer-right {
  flex: 0 0 275px;
  max-width: 275px;
  display: flex;
  flex-direction: column;
}

.footer-right .footer-demo {
  margin-top: auto;
}

.footer-demo .demo-head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-demo .demo-head h3 {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.footer-demo .demo-head img {
  width: 22px;
  height: 22px;
  transition: transform 0.15s;
}

.footer-demo .demo-head:hover img {
  transform: translate(2px, -2px);
}

.footer-demo .demo-sub {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #82828e;
  margin-top: 12px;
  max-width: 275px;
}

.footer-pay {
  padding-top: 45px;
}

.footer-pay .pay-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #82828e;
  margin-bottom: 5px;
}

.footer-pay .pay-methods {
  display: block;
  width: 275px;
  max-width: 100%;
  height: auto;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 28px 0 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #82828e;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #fff;
}

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

.footer-partner .partner-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.15;
  color: #82828e;
  text-align: right;
}

.footer-partner .ds-logo {
  display: block;
  width: 62px;
  height: 26px;
  flex: none;
  background: #fff;
  -webkit-mask: url(../img/footer/ds-logo.png) no-repeat center/contain;
  mask: url(../img/footer/ds-logo.png) no-repeat center/contain;
}

/* --------------------------------------------------------------------------
   Shared responsive rules (nav + footer)
   -------------------------------------------------------------------------- */
/* keep content off the screen edges once the viewport is narrower than the container */
@media (max-width: 1348px) {
  .container:not(.nav) {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1080px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}
@media (max-width: 900px) {
  h1,
  h2,
  h3 {
    font-size: 25px;
  }
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
  .footer-right {
    flex-basis: auto;
    max-width: none;
  }
  .footer-nav,
  .footer-pay {
    margin-top: 24px;
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .footer-logo .f-eus {
    font-size: 42px;
  }
  .footer-nav {
    gap: 20px 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/*# sourceMappingURL=app-new.css.map */
