@charset "UTF-8";
/* =======

	Umurimo Finance — public marketing styles
	Forked from Play Bootstrap by UIdeck (Bootstrap 5; open source).

======== */
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body-color: #5c6c7c;
  --heading-color: #1a2530;
  --primary-color: #3056d3;
  --primary-dark: #2447b8;
  --surface-muted: #f6f8fc;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(16, 24, 40, 0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --section-py: clamp(3rem, 5vw, 4.75rem);
  --section-py-tight: clamp(2.5rem, 4vw, 3.75rem);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.navbar-toggler:focus-visible,
.ud-main-btn:focus-visible,
.ud-faq-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.25s ease-out 0s;
  -moz-transition: all 0.25s ease-out 0s;
  -ms-transition: all 0.25s ease-out 0s;
  -o-transition: all 0.25s ease-out 0s;
  transition: all 0.25s ease-out 0s;
  background: var(--primary-color);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}
.ud-main-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
  box-shadow: var(--shadow-card-hover);
}

/* Outline / secondary primary action (pricing cards inherit scoped overrides later) */
.ud-main-btn.ud-border-btn {
  background: var(--white);
  color: var(--primary-color);
  border-color: rgba(48, 86, 211, 0.32);
  box-shadow: none;
}
.ud-main-btn.ud-border-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}
.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.ud-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 1px 0 0 rgba(15, 23, 42, 0.06);
  -moz-box-shadow: 0 1px 0 0 rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 0 0 rgba(15, 23, 42, 0.06);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}
.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}
.navbar-nav .nav-item {
  position: relative;
  padding: 0px 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}
.navbar-nav .nav-item > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  padding: 22px 6px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}
.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item .ud-submenu {
  list-style: none;
  margin: 0;
  position: absolute;
  width: 220px;
  background: var(--white);
  top: 110%;
  padding: 12px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card-hover);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}
.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}
.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}
.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}
.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}
.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}
.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}
.navbar-btn .ud-white-btn:hover {
  background: rgb(255, 255, 255);
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}
.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}
.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}
.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}
.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

.ud-product-anchor {
  scroll-margin-top: 100px;
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: var(--primary-color);
  background-image: linear-gradient(165deg, var(--primary-color) 0%, #1e4ab8 55%, #2563c7 100%);
  padding-top: 150px;
  padding-bottom: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 136px;
    padding-bottom: 3.25rem;
  }
}
@media (max-width: 767px) {
  .ud-hero {
    padding-top: 118px;
    padding-bottom: 2.75rem;
  }
}

.ud-hero-content {
  max-width: 720px;
  margin: auto;
  margin-bottom: 0;
}
.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  }
}
@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }
}
.ud-hero-content .ud-hero-desc {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: center;
  color: var(--white);
  opacity: 0.9;
  max-width: 36rem;
  margin: auto;
  margin-bottom: 1.35rem;
}
@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
  }
}

.ud-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}
@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}
@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}
.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.ud-hero-buttons .ud-white-btn:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}
.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.ud-hero-brands-wrapper img {
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}
.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}
.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}
.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}
.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: var(--section-py-tight);
  padding-bottom: var(--section-py-tight);
  background: var(--white);
}
@media (max-width: 767px) {
  .ud-features {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }
}

.ud-section-title {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}
.ud-section-title span {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.ud-section-title h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.ud-section-title p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.ud-single-feature {
  margin-bottom: 0;
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: var(--shadow-card);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.ud-single-feature:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(48, 86, 211, 0.12);
}
.ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ud-single-feature .ud-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-color);
  font-size: 26px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1rem;
}
.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: var(--radius-sm);
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -o-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 16px;
  }
}
.ud-single-feature .ud-feature-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--body-color);
}
.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}
.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.ud-about {
  background: var(--surface-muted);
  padding: var(--section-py-tight) 0;
}
@media (max-width: 767px) {
  .ud-about {
    padding: 3rem 0;
  }
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 2.75rem 2.25rem;
}
@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 2rem 1.25rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 2rem 1.75rem;
  }
}

.ud-about-content {
  max-width: 26rem;
}
.ud-about-content .tag {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary-color);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}
.ud-about-content h2 {
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.28;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
}
.ud-about-content p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

/* Dedicated compact “About us” narrative (homepage no longer repeats this tile) */
.ud-about-page {
  padding: var(--section-py-tight) 0;
  background: var(--surface-muted);
}

.ud-about-page-inner {
  padding: clamp(1.65rem, 4vw, 2.25rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.ud-about-page-title {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.ud-about-page-muted {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body-color);
}

/* ----- Data Protection Policy (standalone legal page) ----- */
.ud-policy-lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.ud-policy-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.08);
  border: 1px solid rgba(48, 86, 211, 0.14);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
}
.ud-policy-lead-badge i {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
}

.ud-policy-section {
  margin-bottom: 2.25rem;
}
.ud-policy-section:last-child {
  margin-bottom: 0;
}

.ud-policy-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}
.ud-policy-heading__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  background: linear-gradient(145deg, rgba(219, 234, 254, 0.95) 0%, rgb(255, 255, 255) 55%);
  border: 1px solid rgba(48, 86, 211, 0.12);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.08);
}
.ud-policy-heading h2 {
  font-size: clamp(1.12rem, 2.6vw, 1.38rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  padding-top: 0.38rem;
  color: var(--heading-color);
}

.ud-policy-list {
  margin-bottom: 0;
  padding-left: 1.35rem;
}
.ud-policy-list li {
  margin-bottom: 0.45rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-color);
}
.ud-policy-list li::marker {
  color: rgba(48, 86, 211, 0.55);
}
.ud-policy-list li:last-child {
  margin-bottom: 0;
}
.ud-policy-list strong {
  font-weight: 600;
  color: var(--heading-color);
}

.ud-policy-principles {
  margin-bottom: 0.65rem;
}
.ud-policy-principles__title {
  font-size: clamp(1.12rem, 2.6vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: var(--heading-color);
}

.ud-policy-card {
  height: 100%;
  padding: 1.1rem 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ud-policy-card:hover {
  border-color: rgba(48, 86, 211, 0.18);
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.1);
}
.ud-policy-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  margin-bottom: 0.72rem;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.07);
}
.ud-policy-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(48, 86, 211, 0.85);
  margin-bottom: 0.38rem;
}
.ud-policy-card h3 {
  font-size: 0.985rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.ud-policy-card p {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 0;
  color: var(--body-color);
}

.ud-policy-contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(48, 86, 211, 0.14);
  background: linear-gradient(120deg, rgba(239, 246, 255, 0.65) 0%, rgba(255, 255, 255, 0.92) 100%);
}
.ud-policy-contact-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body-color);
  max-width: 36rem;
}
.ud-policy-contact-box p strong {
  color: var(--heading-color);
}
.ud-policy-contact-box__actions {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: var(--section-py-tight);
  padding-bottom: var(--section-py-tight);
  background: var(--white);
}
@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }
}

.ud-single-pricing {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1.5rem 1.25rem;
  position: relative;
  box-shadow: var(--shadow-card);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.ud-single-pricing:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(48, 86, 211, 0.15);
}
.ud-single-pricing.active {
  background: linear-gradient(165deg, #3056d3 0%, #1f5fd4 42%, #1a7bdc 100%);
  border: none;
  padding: 1.6rem 1.35rem;
  box-shadow: 0 10px 32px rgba(48, 86, 211, 0.28);
}
.ud-single-pricing.active:hover {
  box-shadow: 0 14px 40px rgba(48, 86, 211, 0.34);
  border-color: transparent;
}
.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}
.ud-single-pricing.active .ud-pricing-header h3 {
  opacity: 0.92;
}
.ud-single-pricing.active .ud-pricing-header .ud-product-pill {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}
.ud-single-pricing.active .ud-pricing-header .ud-product-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.ud-single-pricing.active .ud-pricing-header .ud-product-lead {
  color: rgba(255, 255, 255, 0.9);
}
.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}
.ud-single-pricing.active .ud-product-list li::before {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 1;
  opacity: 0.9;
}
.ud-single-pricing.first-item::after {
  background: var(--primary-color);
  left: -1px;
  bottom: -1px;
  border-radius: 0 40px 0 var(--radius-sm);
}
.ud-single-pricing.last-item::after {
  background: #0d9488;
  top: -1px;
  right: -1px;
  border-radius: 0 var(--radius-sm) 0 40px;
}
.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.ud-single-pricing .ud-pricing-header {
  margin-bottom: 0.4rem;
}
.ud-single-pricing .ud-pricing-header .ud-product-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
}
.ud-single-pricing .ud-pricing-header .ud-product-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.12);
}
.ud-single-pricing .ud-pricing-header .ud-product-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(48, 86, 211, 0.2);
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  padding: 4px 9px;
  line-height: 1;
}
.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.85;
  display: none;
}
.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}
.ud-single-pricing .ud-pricing-header .ud-product-lead {
  font-size: 13px;
  line-height: 1.45;
  color: var(--body-color);
  margin-bottom: 0.75rem;
  text-align: left;
}
.ud-single-pricing .ud-pricing-body {
  flex: 1 1 auto;
  margin-bottom: 1.1rem;
}
.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 7px;
  text-align: left;
}
.ud-single-pricing .ud-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ud-single-pricing .ud-product-list li {
  position: relative;
  padding-left: 18px;
}
.ud-single-pricing .ud-product-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(48, 86, 211, 0.55);
  left: 0;
  top: 6px;
}
.ud-single-pricing .ud-pricing-footer {
  margin-top: auto;
}
.ud-single-pricing .ud-main-btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
}
.ud-single-pricing .ud-border-btn {
  border: 1px solid rgba(48, 86, 211, 0.28);
  color: var(--primary-color);
  background: var(--white);
}
.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}
.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: var(--section-py-tight);
  padding-bottom: var(--section-py-tight);
  background: var(--surface-muted);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .ud-faq {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }
}
.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: flex;
  width: 100%;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: var(--heading-color);
  padding: 1rem 1.1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 0.9rem;
  }
}
.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.ud-single-faq .ud-faq-btn span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(48, 86, 211, 0.08);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  margin-right: 14px;
}
.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s;
  font-size: 12px;
  font-weight: 700;
}
.ud-single-faq .ud-faq-body {
  padding: 0 1.1rem 1rem calc(50px + 1.1rem);
  font-size: 14px;
  line-height: 1.55;
  color: var(--body-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0 0.9rem 0.85rem calc(50px + 0.85rem);
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  padding: 30px;
  box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}
.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}
.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}
.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}
.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}
.ud-single-testimonial .ud-testimonial-info {
  display: flex;
  align-items: center;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}
.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}
.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}
.ud-brands .ud-brands-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -40px;
}
.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}
.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  filter: none;
}
.ud-brands .ud-brands-logo .ud-single-logo img {
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}
.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}
.ud-single-team .ud-team-image {
  border-radius: 50%;
}
.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}
.ud-single-team .shape {
  position: absolute;
  z-index: -1;
}
.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}
.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}
.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}
.ud-single-team .ud-team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}
.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: var(--section-py-tight) 0;
  position: relative;
}
@media (max-width: 767px) {
  .ud-contact {
    padding: 3rem 0;
  }
}
.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: var(--surface-muted);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 1.75rem;
  }
}
.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ud-contact-title h2 {
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.ud-contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}
.ud-contact-info-wrapper .ud-single-info {
  display: flex;
  max-width: 100%;
  width: min(330px, 100%);
  margin-bottom: 1.25rem;
}
.ud-contact-info-wrapper .ud-info-icon {
  font-size: 26px;
  color: var(--primary-color);
  margin-right: 14px;
}
.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0;
}
.ud-contact-info-wrapper .ud-info-meta p + p {
  margin-top: 6px;
}

.ud-contact-form-wrapper {
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 2rem 2rem;
}
@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 1.5rem 1.25rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 1.85rem 1.75rem;
  }
}
.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 1.2rem;
  }
}
.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 1rem;
}
.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--heading-color);
  margin-bottom: 6px;
}
.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: none;
  outline: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--surface-muted);
  font-size: 14px;
  resize: vertical;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(48, 86, 211, 0.15);
}

.ud-contact-map-wrap {
  margin-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  .ud-contact-map-wrap {
    margin-top: 2.25rem;
  }
}

.ud-contact-map-title {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
  color: var(--heading-color);
}

.ud-contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  background: var(--surface-muted);
}
.ud-contact-map iframe {
  display: block;
  width: 100%;
  height: min(380px, 55vw);
  min-height: 260px;
  border: 0;
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: linear-gradient(180deg, #1a2530 0%, #161d26 100%);
  padding-top: 3.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ud-footer .shape {
  position: absolute;
  z-index: -1;
}
.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}
.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 2rem;
}
.ud-widget .ud-footer-logo {
  max-width: 150px;
  display: block;
  margin-bottom: 10px;
}
.ud-widget .ud-footer-logo img {
  width: 100%;
}
.ud-widget .ud-widget-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 244, 254, 0.88);
  margin-bottom: 0;
  max-width: 260px;
}
.ud-widget .ud-widget-socials {
  display: flex;
  align-items: center;
}
.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}
.ud-widget .ud-widget-socials a:hover {
  color: var(--primary-color);
}
.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0.92;
}
.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(243, 244, 254, 0.85);
}
.ud-widget .ud-widget-links a:hover {
  color: #aab8ff;
  padding-left: 4px;
}
.ud-widget .ud-widget-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 1.35rem 0 1.65rem;
  border-top: 1px solid rgba(136, 144, 164, 0.28);
}
.ud-footer-bottom .ud-footer-bottom-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    justify-content: center;
  }
}
.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}
.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}
.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}
.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}
.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 6.5rem;
  padding-bottom: 2.65rem;
  background: linear-gradient(165deg, var(--primary-color) 0%, #1e4ab8 100%);
  background-image: linear-gradient(165deg, rgba(48, 86, 211, 0.92) 0%, rgba(30, 74, 184, 0.95) 100%), url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 40rem;
  margin: auto;
  padding: 0 0.75rem;
}
.ud-banner-content h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}
.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}
.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}
.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}
.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}
.ud-socials-connect ul {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}
.ud-socials-connect ul li {
  width: 100%;
}
.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}
.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}
.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}
.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}
.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}
.ud-socials-connect ul li a.google {
  background: #d64937;
}
.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}
.signup-option a {
  color: var(--primary-color);
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}
.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}
.ud-single-blog:hover .ud-blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.ud-single-blog .ud-blog-image a {
  display: block;
}
.ud-single-blog .ud-blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.ud-single-blog .ud-blog-date {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}
.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.ud-single-blog .ud-blog-title a {
  color: inherit;
}
.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}
.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}
.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}
@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}
.ud-blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-blog-overlay-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ud-blog-overlay-content .ud-blog-author {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}
.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}
.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}
.ud-blog-overlay-content .ud-blog-meta {
  display: flex;
  align-items: center;
}
.ud-blog-overlay-content .ud-blog-meta p {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}
.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}
.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}
.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}
.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}
.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ud-blog-details-action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ud-blog-tags {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}
.ud-blog-tags li {
  margin-right: 14px;
}
.ud-blog-tags li:last-child {
  margin-right: 0px;
}
.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}
.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  display: flex;
  align-items: center;
}
.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: flex;
  align-items: center;
}
.ud-blog-share-links li {
  margin-right: 14px;
}
.ud-blog-share-links li:last-child {
  margin-right: 0px;
}
.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}
.ud-blog-share-links a.facebook {
  background: #4064ac;
}
.ud-blog-share-links a.facebook:hover {
  background: #315294;
}
.ud-blog-share-links a.twitter {
  background: #1c9cea;
}
.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}
.ud-blog-share-links a.linkedin {
  background: #007ab9;
}
.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}
.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}
.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}
.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}
.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}
.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}
.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}
.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}
.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}
.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}
.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}
.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}
.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}
.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}
.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: flex;
  align-items: center;
}
.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}
.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}
.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}
.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}
.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}
.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}
.ud-banner-ad a {
  display: block;
}
.ud-banner-ad img {
  width: 100%;
}

/* ===== Loan category cards (blog) — radiant blue palette, equal-height alignment ===== */
.ud-loan-app-showcase {
  --ud-showcase-blue-deep: #1e40af;
  --ud-showcase-blue-mid: #3056d3;
  --ud-showcase-blue-bright: #3b82f6;
  margin: 2rem 0;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(48, 86, 211, 0.12);
  background: radial-gradient(1200px 480px at 50% -20%, rgba(147, 197, 253, 0.55), transparent 55%), radial-gradient(800px 400px at 100% 60%, rgba(59, 130, 246, 0.12), transparent 50%), radial-gradient(600px 360px at 0% 80%, rgba(96, 165, 250, 0.14), transparent 45%), linear-gradient(180deg, #f8fbff 0%, #eef4ff 38%, rgba(239, 246, 255, 0.4) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 24px 48px -12px rgba(30, 64, 175, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.ud-loan-app-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(147, 197, 253, 0.08) 50%, transparent 60%);
  pointer-events: none;
}
.ud-loan-app-showcase .row {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}
.ud-loan-app-showcase .row > [class*=col-] {
  display: flex;
}
.ud-loan-app-showcase__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
.ud-loan-app-showcase__intro h3 {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.45rem;
  background: linear-gradient(120deg, #1e3a8a 0%, var(--ud-showcase-blue-mid) 45%, var(--ud-showcase-blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ud-loan-app-showcase__intro p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 0;
}
.ud-loan-app-showcase__intro strong {
  color: var(--ud-showcase-blue-mid);
  font-weight: 600;
}

.ud-phone-screen {
  /* Match parent showcase palette; defaults keep blue CTAs outside .ud-loan-app-showcase */
  --ud-showcase-blue-deep: #1e40af;
  --ud-showcase-blue-mid: #3056d3;
  --ud-showcase-blue-bright: #3b82f6;
  --ud-phone-accent: linear-gradient(135deg, var(--ud-showcase-blue-bright) 0%, var(--ud-showcase-blue-mid) 45%, var(--ud-showcase-blue-deep) 100%);
  --ud-phone-accent-hover: linear-gradient(135deg, #60a5fa 0%, #3b82f6 45%, var(--ud-showcase-blue-mid) 100%);
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  border: 1px solid rgba(48, 86, 211, 0.1);
  box-shadow: 0 1px 2px rgba(30, 64, 175, 0.04), 0 12px 32px rgba(30, 58, 138, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ud-phone-screen:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 86, 211, 0.22);
  box-shadow: 0 1px 2px rgba(30, 64, 175, 0.06), 0 22px 44px rgba(30, 64, 175, 0.14), 0 0 0 40px rgba(59, 130, 246, 0.04), 0 0 0 1px rgb(255, 255, 255) inset;
}
@media only screen and (min-width: 768px) {
  .ud-phone-screen {
    max-width: none;
  }
  .ud-phone-screen--offset {
    margin-top: 1.75rem;
  }
}
.ud-phone-screen__notch {
  width: 38%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.25), rgba(59, 130, 246, 0.35), rgba(148, 163, 184, 0.25));
  margin: 0 auto 0.85rem;
}
.ud-phone-screen__art {
  border-radius: 16px;
  min-height: 168px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ud-phone-screen__icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.95rem, 17vw, 5.85rem);
  height: clamp(4.95rem, 17vw, 5.85rem);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.95), inset 0 -1px 1px rgba(15, 23, 42, 0.04);
  z-index: 2;
  position: relative;
  transform: translateZ(0);
}
.ud-phone-screen__icon-ring .ud-phone-screen__icon {
  font-size: clamp(2.25rem, 5.25vw, 2.95rem);
}
.ud-phone-screen__icon {
  position: relative;
  z-index: 1;
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(30, 64, 175, 0.22));
}
.ud-phone-screen__bubble {
  position: absolute;
  right: 10%;
  top: 11%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  padding: 0.38rem 0.62rem;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1e3a8a;
}
.ud-phone-screen__bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.97);
}
.ud-phone-screen__title {
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  letter-spacing: -0.02em;
  color: #1e3a8a;
  margin-bottom: 0.38rem;
  text-align: center;
}
.ud-phone-screen__lead {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 0;
  text-align: center;
  min-height: 3.85rem;
}
.ud-phone-screen__cta {
  flex-shrink: 0;
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  background: var(--ud-phone-accent);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff !important;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background-position 0.35s ease, box-shadow 0.25s ease, transform 0.2s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(48, 86, 211, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.ud-phone-screen__cta:hover {
  background: var(--ud-phone-accent-hover);
  background-size: 200% 200%;
  background-position: 100% 50%;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.ud-phone-screen {
  /* Art bands — blue/cyan/indigo family only (no green) */
}
.ud-phone-screen--commerce .ud-phone-screen__art {
  background: linear-gradient(155deg, #dbeafe 0%, #93c5fd 48%, #60a5fa 100%);
}
.ud-phone-screen--commerce .ud-phone-screen__art .lni-shopping-basket {
  color: #1d4ed8;
}
.ud-phone-screen--agriculture .ud-phone-screen__art {
  background: linear-gradient(155deg, #ecfeff 0%, #67e8f9 45%, #0ea5e9 100%);
}
.ud-phone-screen--agriculture .ud-phone-screen__art .lni-tree {
  color: #0369a1;
}
.ud-phone-screen--agriculture .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #0c4a6e;
}
.ud-phone-screen--livestock .ud-phone-screen__art {
  background: linear-gradient(155deg, #e0e7ff 0%, #a5b4fc 50%, #6366f1 100%);
}
.ud-phone-screen--livestock .ud-phone-screen__art .lni-revenue {
  color: #312e81;
}
.ud-phone-screen--livestock .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #312e81;
}
.ud-phone-screen--ordinary .ud-phone-screen__art {
  background: linear-gradient(155deg, #f1f5f9 0%, #cbd5f5 55%, #94a3d8 100%);
}
.ud-phone-screen--ordinary .ud-phone-screen__art .lni-handshake {
  color: #334155;
}
.ud-phone-screen--fishing .ud-phone-screen__art {
  background: linear-gradient(155deg, #e0f2fe 0%, #38bdf8 50%, #0284c7 100%);
}
.ud-phone-screen--fishing .ud-phone-screen__art .lni-anchor {
  color: #f0f9ff;
}
.ud-phone-screen--fishing .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #0c4a6e;
}
.ud-phone-screen--transport .ud-phone-screen__art {
  background: linear-gradient(155deg, #e0e7ff 0%, #818cf8 42%, #4338ca 100%);
}
.ud-phone-screen--transport .ud-phone-screen__art .lni-delivery {
  color: #bfdbfe;
}
.ud-phone-screen--transport .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #1e1b4b;
}
.ud-phone-screen--contingency .ud-phone-screen__art {
  background: linear-gradient(155deg, #eff6ff 0%, #bfdbfe 45%, #3b82f6 100%);
}
.ud-phone-screen--contingency .ud-phone-screen__art .lni-money-protection {
  color: #1e40af;
}
.ud-phone-screen--contingency .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #1e3a8a;
}
.ud-phone-screen--salary .ud-phone-screen__art {
  background: linear-gradient(155deg, #f8fafc 0%, #c7d2fe 50%, #4f46e5 100%);
}
.ud-phone-screen--salary .ud-phone-screen__art .lni-dollar {
  color: #312e81;
}
.ud-phone-screen--salary .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #312e81;
}
.ud-phone-screen--other .ud-phone-screen__art {
  background: linear-gradient(155deg, #eef2ff 0%, #a5b4fc 48%, #4f46e5 100%);
}
.ud-phone-screen--other .ud-phone-screen__art .lni-grid-alt {
  color: #3730a3;
}
.ud-phone-screen--other .ud-phone-screen__art .ud-phone-screen__bubble {
  color: #3730a3;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}
.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}
.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}
.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/*# sourceMappingURL=ud-styles.css.map */
