@charset "UTF-8";
/*!
 * Wise Theme — Inspired by the Wise (TransferWise) design system.
 * Bootstrap 5 compatible. RTL safe.
 */
:root {
  --wise-primary: #9fe870;
  --wise-primary-hover: #cdffad;
  --wise-primary-neutral: #c5edab;
  --wise-primary-pale: #e2f6d5;
  --wise-on-primary: #0e0f0c;
  --wise-ink: #0e0f0c;
  --wise-ink-deep: #163300;
  --wise-body: #454745;
  --wise-mute: #868685;
  --wise-canvas: #ffffff;
  --wise-canvas-soft: #e8ebe6;
  --wise-positive: #2ead4b;
  --wise-positive-deep: #054d28;
  --wise-warning: #ffd11a;
  --wise-warning-deep: #b86700;
  --wise-warning-content: #4a3b1c;
  --wise-negative: #d03238;
  --wise-negative-deep: #a72027;
  --wise-negative-darkest: #a7000d;
  --wise-negative-bg: #320707;
  --wise-accent-orange: #ffc091;
  --wise-accent-cyan: #38c8ff;
  --wise-header-bg: var(--wise-canvas);
  --wise-header-text: var(--wise-ink);
  --wise-footer-bg: var(--wise-ink);
  --wise-footer-text: var(--wise-canvas-soft);
  --wise-footer-heading: #ffffff;
  --wise-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  --wise-font-display: "Manrope", "Inter", system-ui, sans-serif;
  --wise-space-xxs: 2px;
  --wise-space-xs: 4px;
  --wise-space-sm: 8px;
  --wise-space-md: 12px;
  --wise-space-lg: 16px;
  --wise-space-xl: 24px;
  --wise-space-2xl: 32px;
  --wise-space-3xl: 48px;
  --wise-radius-none: 0;
  --wise-radius-sm: 8px;
  --wise-radius-md: 12px;
  --wise-radius-lg: 16px;
  --wise-radius-xl: 24px;
  --wise-radius-pill: 9999px;
  --wise-container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--wise-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--wise-body);
  background-color: var(--wise-canvas);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--wise-font-display);
  color: var(--wise-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: var(--wise-space-lg);
}

h1, .h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

h2, .h2 {
  font-size: clamp(32px, 4vw, 47px);
  line-height: 1.1;
  font-weight: 900;
}

h3, .h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}

h4, .h4 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

h5, .h5 {
  font-size: 20px;
  font-weight: 700;
}

h6, .h6 {
  font-size: 18px;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: var(--wise-space-lg);
}

a {
  color: var(--wise-ink);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}
a:hover {
  color: var(--wise-ink-deep);
  text-decoration: underline;
}

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

::-moz-selection {
  background: var(--wise-primary);
  color: var(--wise-on-primary);
}

::selection {
  background: var(--wise-primary);
  color: var(--wise-on-primary);
}

.display-mega {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 126px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--wise-ink);
}

.display-xxl {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wise-ink);
}

.display-xl {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--wise-ink);
}

.eyebrow, .section-header__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wise-positive-deep);
  background: var(--wise-primary-pale);
  padding: 4px 12px;
  border-radius: var(--wise-radius-pill);
  display: inline-block;
  margin-bottom: var(--wise-space-lg);
}

.text-mute {
  color: var(--wise-mute) !important;
}

.text-ink {
  color: var(--wise-ink) !important;
}

.text-primary-wise {
  color: var(--wise-primary) !important;
}

.lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--wise-body);
}

.container,
.container-lg,
.container-xl {
  max-width: var(--wise-container);
}

.section {
  padding-block: var(--wise-space-3xl);
}

.section-lg {
  padding-block: calc(var(--wise-space-3xl) * 1.5);
}

.section-sm {
  padding-block: var(--wise-space-2xl);
}

.wise-band {
  padding-block: var(--wise-space-3xl);
}

.wise-band--sage {
  background-color: var(--wise-canvas-soft);
  color: var(--wise-ink);
}

.wise-band--white {
  background-color: var(--wise-canvas);
  color: var(--wise-ink);
}

.wise-band--dark {
  background-color: var(--wise-ink);
  color: var(--wise-canvas-soft);
}
.wise-band--dark h1, .wise-band--dark h2, .wise-band--dark h3, .wise-band--dark h4, .wise-band--dark h5, .wise-band--dark h6 {
  color: #ffffff;
}

.wise-band--green {
  background-color: var(--wise-primary-pale);
}

.section-header {
  margin-bottom: var(--wise-space-3xl);
  max-width: 720px;
}
.section-header--center {
  margin-inline: auto;
  text-align: center;
}
.section-header__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 47px);
  line-height: 1.1;
  margin-bottom: var(--wise-space-lg);
  color: var(--wise-ink);
}
.section-header__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--wise-body);
  margin: 0;
}

.pt-wise-none {
  padding-top: 0 !important;
}

.pb-wise-none {
  padding-bottom: 0 !important;
}

.pt-wise-xs {
  padding-top: var(--wise-space-xs) !important;
}

.pb-wise-xs {
  padding-bottom: var(--wise-space-xs) !important;
}

.pt-wise-sm {
  padding-top: var(--wise-space-sm) !important;
}

.pb-wise-sm {
  padding-bottom: var(--wise-space-sm) !important;
}

.pt-wise-md {
  padding-top: var(--wise-space-md) !important;
}

.pb-wise-md {
  padding-bottom: var(--wise-space-md) !important;
}

.pt-wise-lg {
  padding-top: var(--wise-space-lg) !important;
}

.pb-wise-lg {
  padding-bottom: var(--wise-space-lg) !important;
}

.pt-wise-xl {
  padding-top: var(--wise-space-xl) !important;
}

.pb-wise-xl {
  padding-bottom: var(--wise-space-xl) !important;
}

.pt-wise-2xl {
  padding-top: var(--wise-space-2xl) !important;
}

.pb-wise-2xl {
  padding-bottom: var(--wise-space-2xl) !important;
}

.pt-wise-3xl {
  padding-top: var(--wise-space-3xl) !important;
}

.pb-wise-3xl {
  padding-bottom: var(--wise-space-3xl) !important;
}

.pt-wise-section-none {
  padding-top: 0 !important;
}

.pb-wise-section-none {
  padding-bottom: 0 !important;
}

.pt-wise-section-sm {
  padding-top: var(--wise-space-2xl) !important;
}

.pb-wise-section-sm {
  padding-bottom: var(--wise-space-2xl) !important;
}

.pt-wise-section-md {
  padding-top: var(--wise-space-3xl) !important;
}

.pb-wise-section-md {
  padding-bottom: var(--wise-space-3xl) !important;
}

.pt-wise-section-lg {
  padding-top: 64px !important;
}

.pb-wise-section-lg {
  padding-bottom: 64px !important;
}

.pt-wise-section-xl {
  padding-top: 96px !important;
}

.pb-wise-section-xl {
  padding-bottom: 96px !important;
}

.btn,
.wise-btn {
  --bs-btn-padding-y: 12px;
  --bs-btn-padding-x: 24px;
  --bs-btn-border-radius: var(--wise-radius-xl);
  font-family: var(--wise-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  border-radius: var(--wise-radius-xl);
  transition: all 0.18s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none !important;
  min-height: 48px;
}

.btn-wise-primary,
.btn-primary {
  background-color: var(--wise-primary);
  color: var(--wise-on-primary);
  border-color: var(--wise-primary);
}
.btn-wise-primary:hover, .btn-wise-primary:focus,
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--wise-primary-hover);
  color: var(--wise-on-primary);
  border-color: var(--wise-primary-hover);
}

.btn-wise-secondary,
.btn-secondary {
  background-color: var(--wise-canvas-soft);
  color: var(--wise-ink);
  border-color: var(--wise-canvas-soft);
}
.btn-wise-secondary:hover, .btn-wise-secondary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #d8ddd5;
  color: var(--wise-ink);
  border-color: #d8ddd5;
}

.btn-wise-tertiary,
.btn-outline-dark {
  background-color: var(--wise-canvas);
  color: var(--wise-ink);
  border: 1px solid var(--wise-ink);
}
.btn-wise-tertiary:hover, .btn-wise-tertiary:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--wise-ink);
  color: var(--wise-canvas);
}

.btn-wise-dark {
  background-color: var(--wise-ink);
  color: var(--wise-primary);
  border-color: var(--wise-ink);
}
.btn-wise-dark:hover, .btn-wise-dark:focus {
  background-color: #000;
  color: var(--wise-primary);
}

.btn-wise-icon {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 9999px;
  background-color: var(--wise-canvas);
  color: var(--wise-ink);
  border: 1px solid var(--wise-canvas-soft);
}

.btn-lg {
  font-size: 18px;
  padding: 16px 32px;
  min-height: 56px;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
  min-height: 40px;
}

.wise-card {
  background-color: var(--wise-canvas);
  color: var(--wise-ink);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.wise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 15, 12, 0.06);
}
.wise-card--sage {
  background-color: var(--wise-canvas-soft);
}
.wise-card--green {
  background-color: var(--wise-primary-pale);
}
.wise-card--dark {
  background-color: var(--wise-ink);
  color: var(--wise-primary);
}
.wise-card--dark h1, .wise-card--dark h2, .wise-card--dark h3, .wise-card--dark h4, .wise-card--dark h5, .wise-card--dark h6, .wise-card--dark .wise-card__title {
  color: var(--wise-primary);
}
.wise-card--dark p {
  color: rgba(255, 255, 255, 0.85);
}
.wise-card--bordered {
  border: 1px solid var(--wise-ink);
}
.wise-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  border-radius: 16px;
  font-size: 24px;
  margin-bottom: var(--wise-space-lg);
}
.wise-card__title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: var(--wise-space-md);
  color: var(--wise-ink);
}
.wise-card__text {
  color: var(--wise-body);
  margin: 0;
}
.wise-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--wise-ink);
  margin-top: var(--wise-space-lg);
}
.wise-card__link i {
  transition: transform 0.2s ease;
}
.wise-card__link:hover {
  text-decoration: none;
  color: var(--wise-ink-deep);
}
.wise-card__link:hover i {
  transform: translateX(4px);
}

[dir=rtl] .wise-card__link:hover i {
  transform: translateX(-4px);
}

.wise-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  background: var(--wise-primary-pale);
  color: var(--wise-positive-deep);
}
.wise-badge--negative {
  background: var(--wise-negative-bg);
  color: #fff;
}
.wise-badge--neutral {
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
}

.form-control,
.wise-input {
  background-color: var(--wise-canvas);
  color: var(--wise-ink);
  border: 1px solid var(--wise-ink);
  border-radius: var(--wise-radius-md);
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--wise-font-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  min-height: 48px;
}
.form-control:focus,
.wise-input:focus {
  outline: none;
  border-color: var(--wise-ink-deep);
  box-shadow: 0 0 0 3px rgba(159, 232, 112, 0.35);
}
.form-control::-moz-placeholder, .wise-input::-moz-placeholder {
  color: var(--wise-mute);
}
.form-control::placeholder,
.wise-input::placeholder {
  color: var(--wise-mute);
}

textarea.form-control,
textarea.wise-input {
  min-height: 120px;
  resize: vertical;
}

.form-label,
label {
  font-weight: 600;
  color: var(--wise-ink);
  margin-bottom: var(--wise-space-xs);
}

.wise-header {
  background-color: var(--wise-header-bg);
  color: var(--wise-header-text);
  padding: 12px 0;
  position: relative;
  z-index: 100;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.wise-header.is-sticky {
  position: sticky;
  top: 0;
}
.wise-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(14, 15, 12, 0.06);
}
.wise-header--transparent {
  background-color: transparent;
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 0;
}
.wise-header--dark {
  --wise-header-bg: var(--wise-ink);
  --wise-header-text: #fff;
}
.wise-header--dark .nav-link, .wise-header--dark .wise-header__brand {
  color: #fff !important;
}
.wise-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wise-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: var(--wise-font-display);
  font-size: 22px;
  color: var(--wise-header-text);
  text-decoration: none !important;
  flex-shrink: 0;
}
.wise-header__brand img {
  max-height: 36px;
  width: auto;
}
.wise-header__brand-label {
  line-height: 1.1;
  white-space: nowrap;
}
.wise-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  gap: 2px;
}
.wise-header__nav .navbar-nav {
  flex-wrap: nowrap;
  row-gap: 0;
  justify-content: center;
}
.wise-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: auto;
}
.wise-header .nav-link {
  color: var(--wise-header-text);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 7px !important;
  white-space: nowrap;
  border-radius: var(--wise-radius-sm);
}
.wise-header .nav-link:hover, .wise-header .nav-link.active {
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
}
.wise-header .dropdown-menu {
  border-radius: var(--wise-radius-lg);
  border: none;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(14, 15, 12, 0.12);
}
.wise-header .dropdown-toggle::after {
  margin-inline-start: 0.3rem;
  vertical-align: 0.08em;
}
.wise-header .dropdown-item {
  border-radius: var(--wise-radius-sm);
  padding: 10px 12px;
  font-weight: 500;
}
.wise-header .dropdown-item:hover, .wise-header .dropdown-item.active {
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
}
@media (max-width: 1399.98px) and (min-width: 1200px) {
  .wise-header__inner {
    gap: 12px;
  }
  .wise-header .nav-link {
    font-size: 13px;
    padding: 7px 6px !important;
  }
  .wise-header .dropdown-toggle::after {
    margin-inline-start: 0.24rem;
  }
  .wise-header__actions .btn {
    --bs-btn-padding-x: 14px;
    --bs-btn-padding-y: 9px;
    min-height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 1199.98px) and (min-width: 992px) {
  .wise-header__inner {
    gap: 8px;
  }
  .wise-header .nav-link {
    font-size: 12px;
    padding: 7px 4px !important;
  }
  .wise-header .dropdown-toggle::after {
    margin-inline-start: 0.18rem;
  }
  .wise-header__actions .btn {
    --bs-btn-padding-x: 12px;
    --bs-btn-padding-y: 8px;
    min-height: 38px;
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .wise-header__inner {
    gap: 12px;
  }
  .wise-header__brand {
    font-size: 18px;
  }
  .wise-header__brand img {
    max-height: 30px;
  }
  .wise-header__nav {
    justify-content: flex-start;
  }
  .wise-header__actions {
    margin-inline-start: auto;
  }
}

.wise-header__search-toggle,
.wise-header__menu-toggle {
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wise-header__search-toggle:hover,
.wise-header__menu-toggle:hover {
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
}

.wise-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 12, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.wise-search-overlay.is-open {
  display: flex;
}
.wise-search-overlay__inner {
  background: var(--wise-canvas);
  width: 100%;
  max-width: 640px;
  border-radius: var(--wise-radius-xl);
  padding: 32px;
  position: relative;
}
.wise-search-overlay__close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--wise-canvas-soft);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 18px;
  cursor: pointer;
}

.wise-mobile-menu .offcanvas {
  border: 0;
}
.wise-mobile-menu .offcanvas-header {
  border-bottom: 1px solid var(--wise-canvas-soft);
  padding: 16px 24px;
}
.wise-mobile-menu .offcanvas-body {
  padding: 24px;
}
.wise-mobile-menu .navbar-nav {
  gap: 4px;
}
.wise-mobile-menu .navbar-nav .nav-link {
  padding: 12px 16px !important;
  border-radius: var(--wise-radius-sm);
  font-weight: 600;
  font-size: 16px;
}
.wise-mobile-menu .navbar-nav .nav-link:hover, .wise-mobile-menu .navbar-nav .nav-link.active {
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
}

.wise-footer {
  background: var(--wise-footer-bg);
  color: var(--wise-footer-text);
  padding-block: var(--wise-space-3xl);
  margin-top: var(--wise-space-3xl);
}
.wise-footer a {
  color: var(--wise-footer-heading);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}
.wise-footer a:hover {
  color: var(--wise-primary);
}
.wise-footer a,
.wise-footer .widget a,
.wise-footer .sidebar-widget a,
.wise-footer .menu a,
.wise-footer li a,
.wise-footer p a {
  color: var(--wise-footer-heading) !important;
}
.wise-footer .text-muted,
.wise-footer .text-secondary {
  color: rgba(255, 255, 255, 0.78) !important;
}
.wise-footer__heading {
  color: var(--wise-footer-heading);
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: var(--wise-space-lg);
}
.wise-footer__brand {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--wise-footer-heading);
  display: inline-block;
  margin-bottom: var(--wise-space-lg);
}
.wise-footer__brand-label {
  display: inline-block;
  vertical-align: middle;
}
.wise-footer__brand img {
  max-height: 40px;
  width: auto;
  margin-inline-end: 10px;
  vertical-align: middle;
}
.wise-footer__about {
  max-width: 360px;
  line-height: 1.6;
}
.wise-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wise-footer__menu li {
  margin-bottom: var(--wise-space-sm);
}
.wise-footer__menu a {
  opacity: 0.92;
}
.wise-footer__menu a:hover {
  opacity: 1;
}
.wise-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wise-footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: var(--wise-space-md);
}
.wise-footer__contact li i {
  color: var(--wise-primary);
  margin-top: 4px;
}
.wise-footer__contact li a {
  color: var(--wise-footer-text);
}
.wise-footer__social {
  display: flex;
  gap: 8px;
  margin-top: var(--wise-space-lg);
}
.wise-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--wise-footer-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.wise-footer__social a:hover {
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  text-decoration: none;
}
.wise-footer__bottom {
  margin-top: var(--wise-space-2xl);
  padding-top: var(--wise-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--wise-footer-text);
  opacity: 0.8;
}
.wise-footer__bottom a {
  opacity: 0.95;
}
.wise-footer__newsletter {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--wise-radius-lg);
  padding: var(--wise-space-xl);
  margin-bottom: var(--wise-space-2xl);
}
.wise-footer__newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.wise-footer__newsletter .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.wise-footer__newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.wise-footer__newsletter .form-control:focus {
  border-color: var(--wise-primary);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.12);
}

.wise-back-to-top {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1050;
}
.wise-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wise-back-to-top:hover {
  background: var(--wise-primary-hover);
}

.wise-preloader {
  position: fixed;
  inset: 0;
  background: var(--wise-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.wise-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.wise-preloader .spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--wise-canvas-soft);
  border-top-color: var(--wise-primary);
  animation: wise-spin 0.8s linear infinite;
}

@keyframes wise-spin {
  to {
    transform: rotate(360deg);
  }
}
.pagination {
  --bs-pagination-color: var(--wise-ink);
  --bs-pagination-bg: var(--wise-canvas);
  --bs-pagination-active-bg: var(--wise-primary);
  --bs-pagination-active-color: var(--wise-on-primary);
  --bs-pagination-active-border-color: var(--wise-primary);
  --bs-pagination-border-radius: var(--wise-radius-md);
  gap: 4px;
}
.pagination .page-link {
  border-radius: var(--wise-radius-sm) !important;
  border: 1px solid var(--wise-canvas-soft);
  font-weight: 600;
}

.wise-hero {
  background-color: var(--wise-canvas-soft);
  padding-block: clamp(48px, 8vw, 96px);
  overflow: hidden;
  position: relative;
}
.wise-hero--white {
  background-color: var(--wise-canvas);
}
.wise-hero--dark {
  background-color: var(--wise-ink);
  color: #fff;
}
.wise-hero--dark .wise-hero__title {
  color: var(--wise-primary);
}
.wise-hero--dark .wise-hero__lead {
  color: rgba(255, 255, 255, 0.85);
}
.wise-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wise-space-3xl);
  align-items: center;
}
@media (min-width: 992px) {
  .wise-hero__inner {
    grid-template-columns: 1.1fr 1fr;
  }
}
.wise-hero__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--wise-ink);
  margin-bottom: var(--wise-space-xl);
}
.wise-hero__title em, .wise-hero__title .accent {
  font-style: normal;
  color: var(--wise-positive-deep);
  background: var(--wise-primary);
  padding: 0 8px;
  border-radius: var(--wise-radius-md);
}
.wise-hero__lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--wise-body);
  max-width: 560px;
  margin-bottom: var(--wise-space-2xl);
}
.wise-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wise-hero__media {
  position: relative;
}
.wise-hero__media img {
  border-radius: var(--wise-radius-xl);
  width: 100%;
  display: block;
}
.wise-hero__converter {
  background: var(--wise-canvas);
  border: 1px solid var(--wise-ink);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  max-width: 420px;
  margin-inline: auto;
}

.wise-hero-slider .swiper {
  position: relative;
}
.wise-hero-slider__slide {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-color: var(--wise-canvas-soft);
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media (min-width: 992px) {
  .wise-hero-slider__slide {
    min-height: 640px;
  }
}
.wise-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 12, 0.6), rgba(14, 15, 12, 0.25));
}
.wise-hero-slider__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: var(--wise-space-2xl);
}
.wise-hero-slider__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--wise-space-lg);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.wise-hero-slider__lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  margin-bottom: var(--wise-space-xl);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.wise-hero-slider .swiper-pagination {
  position: absolute;
  bottom: 24px;
  z-index: 5;
}
.wise-hero-slider .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.55;
  width: 10px;
  height: 10px;
}
.wise-hero-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--wise-primary);
  opacity: 1;
  width: 32px;
  border-radius: 9999px;
}
.wise-hero-slider .swiper-button-prev,
.wise-hero-slider .swiper-button-next {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  transition: background 0.2s ease;
}
.wise-hero-slider .swiper-button-prev:hover,
.wise-hero-slider .swiper-button-next:hover {
  background: var(--wise-primary);
  color: var(--wise-on-primary);
}
.wise-hero-slider .swiper-button-prev::after,
.wise-hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.wise-stats__item {
  background: var(--wise-canvas-soft);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  text-align: center;
}
.wise-stats__number {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--wise-ink);
  margin-bottom: var(--wise-space-sm);
}
.wise-stats__number .suffix {
  color: var(--wise-positive);
}
.wise-stats__label {
  color: var(--wise-body);
  font-weight: 600;
}

.wise-process__item {
  position: relative;
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
}
.wise-process__step {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: var(--wise-space-md);
}

.wise-testimonial {
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  height: 100%;
}
.wise-testimonial__rating {
  color: var(--wise-warning);
  font-size: 16px;
  margin-bottom: var(--wise-space-md);
}
.wise-testimonial__content {
  font-size: 18px;
  line-height: 1.55;
  color: var(--wise-ink);
  margin-bottom: var(--wise-space-lg);
}
.wise-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wise-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wise-testimonial__name {
  font-weight: 700;
  color: var(--wise-ink);
  margin: 0;
}
.wise-testimonial__role {
  font-size: 14px;
  color: var(--wise-mute);
}

.wise-pricing__card {
  background: var(--wise-canvas-soft);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  height: 100%;
  position: relative;
  border: 1px solid transparent;
}
.wise-pricing__card--featured {
  background: var(--wise-ink);
  color: #fff;
  transform: scale(1.02);
}
.wise-pricing__card--featured .wise-pricing__title,
.wise-pricing__card--featured .wise-pricing__price {
  color: var(--wise-primary);
}
.wise-pricing__card--featured .wise-pricing__features li {
  color: rgba(255, 255, 255, 0.85);
}
.wise-pricing__title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: var(--wise-space-sm);
}
.wise-pricing__price {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  margin: 8px 0 4px;
  color: var(--wise-ink);
}
.wise-pricing__price .currency {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.7;
}
.wise-pricing__price .period {
  font-size: 0.35em;
  font-weight: 600;
  opacity: 0.7;
  margin-inline-start: 4px;
}
.wise-pricing__features {
  list-style: none;
  padding: 0;
  margin: var(--wise-space-lg) 0;
}
.wise-pricing__features li {
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.wise-pricing__features li::before {
  content: "✓";
  color: var(--wise-positive);
  font-weight: 800;
  flex: 0 0 auto;
}
.wise-pricing__badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}

.wise-accordion .accordion-item {
  background: var(--wise-canvas);
  border: 1px solid var(--wise-canvas-soft);
  border-radius: var(--wise-radius-lg) !important;
  margin-bottom: var(--wise-space-md);
  overflow: hidden;
}
.wise-accordion .accordion-button {
  background: var(--wise-canvas);
  color: var(--wise-ink);
  font-weight: 700;
  font-size: 18px;
  padding: 20px 24px;
  border-radius: var(--wise-radius-lg) !important;
}
.wise-accordion .accordion-button:not(.collapsed) {
  background: var(--wise-primary-pale);
  color: var(--wise-ink);
  box-shadow: none;
}
.wise-accordion .accordion-button:focus {
  box-shadow: none;
}
.wise-accordion .accordion-body {
  padding: 0 24px 24px;
  color: var(--wise-body);
}

.wise-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--wise-radius-lg);
  display: block;
}
.wise-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  aspect-ratio: 4/3;
}
.wise-gallery__item:hover img {
  transform: scale(1.04);
}
.wise-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 12, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wise-gallery__item:hover::after {
  opacity: 1;
}

.wise-partners__item {
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-lg);
  padding: var(--wise-space-lg);
  display: grid;
  grid-template-rows: minmax(56px, auto) auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 132px;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.25s ease;
}
.wise-partners__item:hover {
  filter: none;
}
.wise-partners__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wise-partners__logo img {
  display: block;
  max-height: 60px;
  max-width: 100%;
  width: auto;
  margin-inline: auto;
}
.wise-partners__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--wise-ink);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.wise-team__card {
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-xl);
  overflow: hidden;
  text-align: center;
  padding: 0 0 var(--wise-space-xl);
}
.wise-team__avatar {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--wise-canvas-soft);
  margin-bottom: var(--wise-space-lg);
}
.wise-team__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wise-team__name {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 4px;
}
.wise-team__role {
  color: var(--wise-mute);
  font-size: 14px;
  margin-bottom: var(--wise-space-md);
}
.wise-team__social {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.wise-team__social a {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--wise-canvas-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wise-ink);
}
.wise-team__social a:hover {
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  text-decoration: none;
}

.wise-cta {
  background: var(--wise-primary-pale);
  border-radius: var(--wise-radius-xl);
  padding: clamp(32px, 5vw, 64px);
}
.wise-cta--dark {
  background: var(--wise-ink);
  color: #fff;
}
.wise-cta--dark h2, .wise-cta--dark h3 {
  color: var(--wise-primary);
}
.wise-cta__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: var(--wise-space-md);
}

.wise-video {
  position: relative;
  border-radius: var(--wise-radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--wise-canvas-soft);
}
.wise-video img, .wise-video video, .wise-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.wise-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 15, 12, 0.25);
  color: #fff;
  text-decoration: none;
  font-size: 64px;
}
.wise-video__play span {
  width: 88px;
  height: 88px;
  border-radius: 9999px;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.25s ease;
}
.wise-video__play:hover span {
  transform: scale(1.08);
}

.wise-iconbox {
  text-align: center;
  padding: var(--wise-space-lg);
}
.wise-iconbox__icon {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: var(--wise-primary-pale);
  color: var(--wise-ink-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: var(--wise-space-lg);
}
.wise-iconbox__title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: var(--wise-space-sm);
}

.wise-imagetext {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wise-space-2xl);
  align-items: center;
}
@media (min-width: 992px) {
  .wise-imagetext {
    grid-template-columns: 1fr 1fr;
  }
  .wise-imagetext--reverse > :first-child {
    order: 2;
  }
}
.wise-imagetext__image {
  border-radius: var(--wise-radius-xl);
  overflow: hidden;
  background: var(--wise-canvas-soft);
}
.wise-imagetext__image img {
  width: 100%;
  display: block;
}

.wise-timeline {
  position: relative;
  padding-inline-start: 32px;
}
.wise-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  inset-inline-start: 8px;
  width: 2px;
  background: var(--wise-canvas-soft);
}
.wise-timeline__item {
  position: relative;
  margin-bottom: var(--wise-space-2xl);
}
.wise-timeline__dot {
  position: absolute;
  inset-inline-start: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: var(--wise-primary);
  border: 4px solid var(--wise-canvas);
  box-shadow: 0 0 0 2px var(--wise-primary);
}
.wise-timeline__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--wise-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.wise-timeline__title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: var(--wise-space-sm);
}

.wise-tabs .nav-tabs {
  border: 0;
  gap: 8px;
  margin-bottom: var(--wise-space-xl);
}
.wise-tabs .nav-tabs .nav-link {
  border-radius: 9999px;
  background: var(--wise-canvas-soft);
  color: var(--wise-ink);
  border: 0;
  padding: 10px 20px;
  font-weight: 600;
}
.wise-tabs .nav-tabs .nav-link.active {
  background: var(--wise-ink);
  color: #fff;
}

.wise-breadcrumb {
  background: var(--wise-canvas-soft);
  padding-block: var(--wise-space-2xl);
}
.wise-breadcrumb__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: var(--wise-space-md);
  color: var(--wise-ink);
}
.wise-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--wise-body);
}
.wise-breadcrumb__list li + li::before {
  content: "/";
  margin-inline-end: 8px;
  color: var(--wise-mute);
}
.wise-breadcrumb__list a {
  color: var(--wise-body);
}
.wise-breadcrumb__list a:hover {
  color: var(--wise-ink);
}
.wise-breadcrumb__list .active {
  color: var(--wise-ink);
}

.wise-contact-info {
  display: grid;
  gap: var(--wise-space-lg);
}
.wise-contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--wise-canvas);
  padding: var(--wise-space-lg);
  border-radius: var(--wise-radius-lg);
}
.wise-contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--wise-primary);
  color: var(--wise-on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}
.wise-contact-info__label {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--wise-ink);
}
.wise-contact-info__value {
  color: var(--wise-body);
  margin: 0;
}

.wise-post-card {
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wise-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 15, 12, 0.08);
}
.wise-post-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--wise-canvas-soft);
}
.wise-post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.wise-post-card:hover .wise-post-card__image img {
  transform: scale(1.04);
}
.wise-post-card__body {
  padding: var(--wise-space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wise-post-card__meta {
  font-size: 13px;
  color: var(--wise-mute);
  margin-bottom: 8px;
}
.wise-post-card__title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: var(--wise-space-md);
}
.wise-post-card__title a {
  color: var(--wise-ink);
}
.wise-post-card__title a:hover {
  color: var(--wise-ink-deep);
  text-decoration: none;
}
.wise-post-card__excerpt {
  color: var(--wise-body);
  margin-bottom: var(--wise-space-lg);
  flex: 1;
}
.wise-post-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wise-ink);
  font-weight: 700;
  margin-top: auto;
}
.wise-post-card__cta:hover {
  color: var(--wise-ink-deep);
  text-decoration: none;
}

.wise-single-post__hero {
  background: var(--wise-canvas-soft);
  padding-block: var(--wise-space-3xl);
}
.wise-single-post__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: var(--wise-space-lg);
}
.wise-single-post__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--wise-mute);
  font-size: 14px;
  margin-bottom: var(--wise-space-xl);
}
.wise-single-post__cover {
  border-radius: var(--wise-radius-xl);
  overflow: hidden;
  margin: -64px auto var(--wise-space-3xl);
  max-width: 960px;
}
.wise-single-post__cover img {
  width: 100%;
  display: block;
}
.wise-single-post__content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--wise-body);
}
.wise-single-post__content h2, .wise-single-post__content h3, .wise-single-post__content h4 {
  color: var(--wise-ink);
  margin-top: var(--wise-space-2xl);
}
.wise-single-post__content img {
  border-radius: var(--wise-radius-lg);
}
.wise-single-post__content blockquote {
  background: var(--wise-primary-pale);
  border-radius: var(--wise-radius-lg);
  padding: var(--wise-space-xl);
  font-size: 22px;
  font-style: italic;
  border: 0;
  margin-block: var(--wise-space-xl);
}
.wise-single-post__content a {
  color: var(--wise-positive-deep);
  text-decoration: underline;
}

.wise-sidebar .widget,
.wise-sidebar .sidebar-widget {
  background: var(--wise-canvas);
  border-radius: var(--wise-radius-xl);
  padding: var(--wise-space-xl);
  margin-bottom: var(--wise-space-xl);
}
.wise-sidebar .widget__title,
.wise-sidebar .widget .widget-title,
.wise-sidebar .widget .sidebar-widget-title,
.wise-sidebar .sidebar-widget__title,
.wise-sidebar .sidebar-widget .widget-title,
.wise-sidebar .sidebar-widget .sidebar-widget-title {
  font-family: var(--wise-font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: var(--wise-space-lg);
  color: var(--wise-ink);
}
.wise-sidebar .widget ul,
.wise-sidebar .sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wise-sidebar .widget li,
.wise-sidebar .sidebar-widget li {
  padding: 6px 0;
}
.wise-sidebar .widget a,
.wise-sidebar .sidebar-widget a {
  color: var(--wise-body);
  font-weight: 500;
}
.wise-sidebar .widget a:hover,
.wise-sidebar .sidebar-widget a:hover {
  color: var(--wise-ink);
  text-decoration: none;
}

.wise-404 {
  text-align: center;
  padding-block: clamp(64px, 10vw, 120px);
}
.wise-404__code {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(80px, 16vw, 200px);
  line-height: 1;
  color: var(--wise-primary);
  margin-bottom: var(--wise-space-lg);
}
.wise-404__title {
  font-family: var(--wise-font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: var(--wise-space-md);
}

.ck-content h1, .ck-content h2, .ck-content h3, .ck-content h4 {
  font-family: var(--wise-font-display);
  color: var(--wise-ink);
  margin-top: var(--wise-space-2xl);
}
.ck-content p {
  line-height: 1.7;
}
.ck-content img {
  border-radius: var(--wise-radius-lg);
  max-width: 100%;
  height: auto;
}
.ck-content table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--wise-space-lg);
}
.ck-content table th, .ck-content table td {
  border: 1px solid var(--wise-canvas-soft);
  padding: 12px 16px;
}
.ck-content table th {
  background: var(--wise-canvas-soft);
  text-align: start;
  font-weight: 700;
}
.ck-content ul, .ck-content ol {
  padding-inline-start: 24px;
}

.pdf-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 16px 0;
}

.pdf-card {
  background-color: var(--wise-canvas);
  border: 1px solid rgba(14, 15, 12, 0.12);
  border-radius: 12px;
  padding: 14px;
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
}

.pdf-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-card__title {
  font-weight: 700;
  color: var(--wise-ink);
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.pdf-card__download {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wise-canvas-soft);
  color: var(--wise-ink);
  flex: 0 0 auto;
}

.pdf-card__download:hover {
  color: var(--wise-ink-deep);
  text-decoration: none;
}

.pdf-card__download i {
  font-size: 1.125rem;
}

.pdf-card__center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-card__pdf-icon {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background-color: var(--wise-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-card__pdf-icon i {
  color: var(--wise-positive);
  font-size: 2.625rem;
}

.pdf-card__footer {
  margin-top: 10px;
}

.pdf-card__view {
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  text-decoration: none;
}

.pdf-policies {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--wise-canvas-soft);
  border-radius: 22px;
  padding: 22px;
  margin: 16px 0;
}

.pdf-policy-item {
  background-color: var(--wise-canvas);
  border: 1px solid rgba(14, 15, 12, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pdf-policy-item.is-open {
  border-color: rgba(14, 15, 12, 0.24);
  box-shadow: 0 8px 22px rgba(18, 36, 47, 0.08);
}

.pdf-policy-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  color: var(--wise-ink);
  text-align: start;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.pdf-policy-item__header:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.pdf-policy-item__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  text-align: start;
  flex: 1;
}

.pdf-policy-item__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(14, 15, 12, 0.65);
  flex-shrink: 0;
}

.pdf-policy-item__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 15, 12, 0.75);
}

.pdf-policy-item__meta i.fa-file-pdf {
  color: #d94444;
  font-size: 16px;
}

.pdf-policy-item__meta i.fa-chevron-left {
  color: rgba(14, 15, 12, 0.65);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.pdf-policy-item.is-open .pdf-policy-item__meta i.fa-chevron-left {
  transform: rotate(-90deg);
}

.pdf-policy-item__body {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(14, 15, 12, 0.08);
  padding: 16px;
}

.pdf-policy-item.is-open .pdf-policy-item__body {
  display: flex;
}

.pdf-policy-item__embed {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 8px;
  background: #f5f5f5;
  display: block;
}

.pdf-policy-item__embed-fallback {
  margin: 0;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  color: rgba(14, 15, 12, 0.75);
  font-size: 14px;
}

.pdf-policy-item__embed-fallback a {
  color: var(--wise-ink, #0e0f0c);
  font-weight: 700;
}

.pdf-policy-item__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background-color: var(--wise-ink, #0e0f0c);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.pdf-policy-item__cta:hover {
  background-color: var(--wise-ink-deep, #163300);
  transform: translateY(-1px);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .pdf-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .pdf-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 379.98px) {
  .pdf-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .pdf-cards {
    gap: 12px;
  }
  .pdf-card {
    width: 100%;
  }
  .pdf-policies {
    border-radius: 16px;
    padding: 14px 10px;
    gap: 10px;
  }
  .pdf-policy-item {
    border-radius: 10px;
  }
  .pdf-policy-item__header {
    min-height: 54px;
    padding: 10px 12px;
  }
  .pdf-policy-item__label {
    display: none;
  }
  .pdf-policy-item__embed {
    height: 380px;
  }
}
[dir=rtl] body {
  text-align: right;
}
[dir=rtl] .ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}
[dir=rtl] .me-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}
[dir=rtl] .swiper-button-prev::after {
  content: "next";
}
[dir=rtl] .swiper-button-next::after {
  content: "prev";
}
[dir=rtl] .wise-header__inner {
  direction: rtl;
}
[dir=rtl] .wise-header__nav .navbar-nav {
  direction: rtl;
  flex-direction: row;
  justify-content: center;
}
[dir=rtl] .wise-header__nav .nav-item.dropdown {
  position: relative;
}
[dir=rtl] .wise-header__nav .dropdown-menu,
[dir=rtl] .wise-header__nav .dropdown-menu[data-bs-popper] {
  right: 0;
  left: auto;
  text-align: right;
  transform-origin: top right;
}
[dir=rtl] .wise-header__nav .dropdown-toggle::after {
  margin-right: 0;
  margin-left: 0;
  margin-inline-start: 0.45rem;
}
[dir=rtl] .wise-header__nav .dropdown-menu .dropdown-toggle::after {
  float: none;
  margin-inline-start: 0.5rem;
  margin-inline-end: 0;
}
[dir=rtl] .wise-header__nav .dropdown-item {
  text-align: right;
}
[dir=rtl] .accordion-button::after {
  transform: rotate(180deg);
}
[dir=rtl] .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number] {
  direction: ltr;
  text-align: right;
}
[dir=rtl] .wise-breadcrumb__list li + li::before {
  content: "\\";
}
[dir=rtl] .wise-timeline {
  padding-inline-start: 32px;
}
[dir=rtl] .wise-timeline::before {
  inset-inline-start: 8px;
}
[dir=rtl] .page-link i.fa-chevron-left,
[dir=rtl] .page-link i.fa-chevron-right {
  transform: rotate(180deg);
}
[dir=rtl] .section-header {
  text-align: right;
}
[dir=rtl] .section-header--center {
  text-align: center;
}
[dir=rtl] .wise-card {
  text-align: right;
}
[dir=rtl] .wise-footer {
  direction: rtl;
}
[dir=rtl] .btn i:first-child {
  margin-left: 0.5rem;
  margin-right: 0;
}
[dir=rtl] .btn i:last-child {
  margin-right: 0.5rem;
  margin-left: 0;
}
[dir=rtl] .form-select {
  background-position: left 0.75rem center;
  padding-left: 2.25rem;
}
