/* ========================================
   MODERN RESET CSS 
   ======================================== */

/* 1. Modern box-sizing reset */

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

/* 2. Remove default margin and padding */

* {
  margin: 0;
  padding: 0;
}

/* 3. HTML and Body setup */

html {
  font-size: 16px;
  /* Base font size */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in iOS */
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color, #333);
  background: #fff;
  outline: 0 !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 4. Remove list styles */

ol,
ul {
  list-style: none;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-close:focus {
  box-shadow: none !important;
}
/* 5. Images and media */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

/* 6. Links */

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Smooth transitions */
}

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

a:focus-visible {
  outline: none;
  outline-offset: none;
}

.btn:focus {
  text-decoration: none;
  outline: none;
}

/* 7. Buttons */

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button:focus-visible,
input[type='button']:focus-visible,
input[type='reset']:focus-visible,
input[type='submit']:focus-visible {
  outline: none;
  outline-offset: none;
}

/* 8. Form elements */

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: 0;
  background: transparent;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  outline-offset: none;
}

/* 9. Tables */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 10. Blockquotes */

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* 11. Headers - Reset but maintain semantic hierarchy */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  /* Better for headings */
}

/* 12. Strong and emphasis */

strong,
b {
  font-weight: 600;
  /* Instead of inherit */
}

em,
i {
  font-style: italic;
  /* Instead of inherit */
}

/* 13. Code elements */

code,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', Menlo,
    monospace;
}

/* 14. HR element */

hr {
  border: 0;
  height: 1px;
  background: var(--border-color, #e0e0e0);
  margin: 1rem 0;
}

/* 15. Form fieldset and legend */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/* 16. RemixIcon specific */

@font-face {
  font-family: 'remixicon';
  src: url('../fonts/remixicon.woff2') format('woff2'),
    url('../fonts/remixicon.woff') format('woff'), url('../fonts/remixicon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^='ri-'],
[class*=' ri-'] {
  font-family: 'remixicon' !important;
  font-weight: 400 !important;
  font-style: normal;
  line-height: 1;
  display: inline-block;
}

/* 17. Accessibility improvements */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 18. Focus management for keyboard users */

.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 19. Better defaults for interactive elements */

[role='button'],
[role='link'] {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

.header {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lazy {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

.lazy.error {
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.lazy:not(.loaded):not(.error) {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, #f0f0f0),
    color-stop(50%, #e0e0e0),
    color-stop(75%, #f0f0f0)
  );
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}

@-webkit-keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

:root {
  --header-bg: #2d2d2d;
  --header-text: #ffffff;
  --primary-color: #007bff;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}

.title h3 {
  color: #171717;
  font-size: 23px;
  font-family: Sora;
  line-height: 29px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.title p {
  color: #666666;
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: radial-gradient(
    ellipse 200.83% 54.06% at 65.57% 50%,
    rgba(255, 255, 255, 0.8) 0%,
    white 100%
  );
  border-bottom: 1px #e3e8ef solid;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 1000;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: var(--header-text);
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--header-text);
  color: var(--header-bg);
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0.75rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: 220px;
  padding: 0.5rem 0;
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1002;
  display: block;
}

.dropdown-menu .dropdown-item {
  display: flex;

  align-items: center;
  gap: 0.75rem;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.dropdown-menu .dropdown-item i {
  font-size: 1.1rem;
  color: var(--primary-color);
  width: 18px;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  background: transparent;
  color: #333;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
}

.navbar-nav .nav-item {
  position: relative !important;
}

.navbar-nav .nav-item .nav-link {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-nav .nav-item .nav-link i {
  font-size: 17px;
  margin-left: 3px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.navbar-actions a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12.5px 19px 12.5px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-actions a i {
  font-size: 1.1rem;
}

.navbar-actions a.btn-login {
  color: #000;
  border: 1px solid #e3e8ef;
}

.navbar-actions a.btn-color {
  background: #000000;
  color: #fff;
  font-weight: 600;
  padding: 14px 15px 13px 16px;
}

.mobile-menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  z-index: 1001;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header .mobile-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
}

.mobile-menu-header .mobile-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0.5rem;
}

.mobile-menu-header .mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-menu-header .mobile-close-btn:hover {
  background: #f0f0f0;
}

.mobile-menu-header .mobile-close-btn i {
  font-size: 1.5rem;
  color: #666;
}

.mobile-menu-content {
  padding: 1rem;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav .mobile-nav-item .mobile-nav-link {
  display: flex;

  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--border-radius);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
}

.mobile-nav .mobile-nav-item .mobile-nav-link:hover {
  background: #f8f9fa;
}

.mobile-nav .mobile-nav-item .mobile-nav-link .mobile-nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav .mobile-nav-item .mobile-nav-link .mobile-nav-content i {
  font-size: 1.2rem;
  color: var(--primary-color);
  width: 20px;
}

.mobile-nav .mobile-nav-item .mobile-nav-link .mobile-nav-content span {
  font-weight: 500;
}

.mobile-nav .mobile-nav-item .mobile-nav-link .submenu-arrow {
  font-size: 1.1rem;
  color: #666;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-nav .mobile-nav-item.has-submenu.active .submenu-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mobile-nav .mobile-nav-item.has-submenu.active .mobile-submenu {
  max-height: 300px;
  margin-top: 0.5rem;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  border-radius: var(--border-radius);
}

.mobile-submenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-submenu li a i {
  font-size: 1.1rem;
  color: var(--primary-color);
  width: 18px;
}

.mobile-submenu li a:hover {
  color: var(--primary-color);
  background: white;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.mobile-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.mobile-actions .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-actions .btn i {
  font-size: 1.1rem;
}

.mobile-actions .btn.btn-login {
  color: #000;
  border: 1px solid #e3e8ef;
}

.mobile-actions .btn.btn-login:hover {
  background: #f8f9fa;
}

.mobile-actions .btn.btn-primary {
  background: #000000;
  color: #fff;
  border: none;
}

.mobile-actions .btn.btn-primary:hover {
  background: #0056b3;
}

.hero-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.hero-section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  min-height: 500px;
  background: #000;
  border-radius: 25px;
  overflow: hidden;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(black),
    color-stop(55%, rgba(0, 0, 0, 0))
  );
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 55%);
  width: 100%;
  padding: 50px;
  position: relative;
  z-index: 0;
}

.hero-content::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(336deg, black 0%, rgba(0, 0, 0, 0) 20%);
  z-index: -1;
}

.hero-content .hero-header {
  max-width: 445px;
}

.hero-content .hero-title {
  font-size: 16px;
  color: #fff;
  line-height: 19px;
  font-weight: 400;
  margin-bottom: 9px;
}

.hero-content h2 {
  color: #fff;
  font-size: 35px;
  line-height: 44px;
  font-family: 'Sora';
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-content .hero-description {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  height: 46px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-btn.btn-primary {
  background: #d1cfc0;
  color: #000000;
  min-width: 160px;
}

.hero-btn.btn-primary:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.hero-btn.btn-primary i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 18px;
}

.hero-btn.btn-primary:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.hero-btn.btn-secondary {
  background: transparent;
  border: 1px solid #ffffff4d;
  color: #fff;
  min-width: 130px;
}

.hero-btn.btn-secondary:hover {
  background: #d1cfc0;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-image {
  position: absolute;
  right: 0;
  z-index: -1;
  height: 500px;
}

.hero-image video {
  width: 100%;
  height: 500px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

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

.digital-solutions .digital-solutions__wrapper .digital-solutions__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.digital-solutions__cards > :nth-child(7) {
  grid-column: span 2;
}

.digital-solutions .digital-solutions__wrapper .digital-solutions__cards .solution-card {
  border: 1px solid #e3e8ef;
  border-radius: 15px;
}
.digital-solutions .digital-solutions__wrapper .digital-solutions__cards .solution-card:last-child {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card {
  position: relative;
  z-index: 0;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 33px 32px;
  z-index: 1;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  h4 {
  background: linear-gradient(89.72deg, rgba(209, 207, 192, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-family: 'Sora-Bold', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 5px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  p {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  word-wrap: break-word;
  line-height: 21px;
  margin-bottom: 20px;
  max-width: 350px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  p
  small {
  color: #d1cfc0;
  font-size: 17px;
  font-weight: 800;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  ul {
  list-style-type: disc;
  margin-bottom: 20px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  ul
  li {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  .action-items {
  display: flex;
  align-items: center;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  .action-items
  .solution-card__price {
  color: #d1cfc0;
  font-size: 28px;
  font-family: Sora;
  font-weight: 700;
  padding: 0;
  border: none;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  .action-items
  .solution-card__price
  small {
  color: #fff;
  font-size: 16px;
  font-family: Sora;
  font-weight: 400;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  .action-items
  span {
  color: #171717;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1cfc0;
  padding: 14px 16px 14px 23px;
  border-radius: 5px;
  margin-left: 10px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card:last-child
  .relative-card
  .image-text
  .action-items
  span
  i {
  font-size: 18px;
  margin-left: 7px;
}
.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .solution-card__icon {
  padding: 25px 25px 25px 25px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .solution-card__title {
  color: #171717;
  font-size: 17px;
  font-family: Sora;
  line-height: 21px;
  font-weight: 600;
  padding: 0 25px 20px 25px;
  margin-bottom: 0;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .solution-card__description {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 25px 20px 25px;
  margin-bottom: 0;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .solution-card__price {
  color: #171717;
  font-size: 17px;
  font-weight: 600;
  padding: 0 25px 15px 25px;
  margin-bottom: 0;
  border-bottom: 1px solid #e3e8ef;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .solution-card__price
  small {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__button {
  background: #d1cfc0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  color: #171717;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  padding: 14px;
  min-width: 100px;
  max-width: 100px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__button
  i {
  font-size: 18px;
  margin-left: 7px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__trial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__trial
  .top_text {
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__trial
  .top_text
  i {
  color: #d1cfc0;
  margin-right: 4px;
  font-size: 19px;
}

.digital-solutions
  .digital-solutions__wrapper
  .digital-solutions__cards
  .solution-card
  .card_bottom
  .solution-card__trial
  strong {
  color: #666666;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 20px;
}

.contact-lead-form {
  background: #fbfbfb;
  padding: 70px 0;
  margin: 50px 0;
}

.contact-lead-form .contact-lead-form__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-lead-form .contact-lead-form__container .contact-lead-form__info {
  max-width: 285px;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__info
  .contact-lead-form__avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__info
  .contact-lead-form__avatars
  img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__info
  .contact-lead-form__avatars
  img:not(:first-child) {
  margin-left: -15px;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__info
  .contact-lead-form__title {
  color: #171717;
  font-size: 33px;
  font-family: Sora;
  font-weight: 400;
  margin: 20px 0 10px 0;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__info
  .contact-lead-form__description {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.contact-lead-form .contact-lead-form__container .contact-lead-form__form {
  width: 100%;
  max-width: 589px;
}

.contact-lead-form .contact-lead-form__container .contact-lead-form__form .contact-lead-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
  gap: 20px;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__row
  input {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 5px;
  padding: 0 20px;
  height: 55px;
  color: #171717;
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__row
  input::-webkit-input-placeholder {
  color: #666666;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__row
  input:-ms-input-placeholder {
  color: #666666;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__row
  input::-ms-input-placeholder {
  color: #666666;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__row
  input::placeholder {
  color: #666666;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__notgrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__button {
  background: #d1cfc0;
  color: #171717;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 5px;
}

.contact-lead-form
  .contact-lead-form__container
  .contact-lead-form__form
  .contact-lead-form__button
  i {
  font-size: 18px;
  margin-left: 7px;
}

.ai-legal-tech {
  margin-bottom: 50px;
}

.ai-legal-tech .ai-legal-tech__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 495px calc(100% - 495px - 30px);
  grid-template-columns: 495px calc(100% - 495px - 30px);
  gap: 30px;
}

@media (max-width: 768px) {
  .ai-legal-tech .ai-legal-tech__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__highlight .highlight-card {
  padding: 48px 35px;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__highlight .highlight-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    ellipse 59.54% 81.58% at 79.39% 48.22%,
    rgba(23, 23, 23, 0.2) 0%,
    #171717 100%
  );
  z-index: -1;
}

.ai-legal-tech
  .ai-legal-tech__grid
  .ai-legal-tech__highlight
  .highlight-card
  .ai-legal-tech__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.ai-legal-tech
  .ai-legal-tech__grid
  .ai-legal-tech__highlight
  .highlight-card
  .highlight-card__icon {
  font-size: 50px;
  line-height: 50px;
  color: #d1cfc0;
  margin-bottom: 20px;
}

.ai-legal-tech
  .ai-legal-tech__grid
  .ai-legal-tech__highlight
  .highlight-card
  .highlight-card__title {
  color: #fff;
  font-size: 28px;
  font-family: Sora;
  font-weight: 600;
  margin-bottom: 15px;
  margin-right: 23px;
}

.ai-legal-tech
  .ai-legal-tech__grid
  .ai-legal-tech__highlight
  .highlight-card
  .highlight-card__desc {
  color: #fff;
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .ai-legal-features_top {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 390px calc(100% - 390px - 30px);
  grid-template-columns: 390px calc(100% - 390px - 30px);
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .ai-legal-features_top:nth-child(2) {
  -ms-grid-columns: 285px calc(100% - 285px - 30px);
  grid-template-columns: 285px calc(100% - 285px - 30px);
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .feature-card {
  border: 1px solid #e3e8ef;
  border-radius: 15px;
  padding: 28px 25px;
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .feature-card .feature-card__title {
  color: #171717;
  font-size: 17px;
  line-height: 21px;
  font-family: Sora;
  font-weight: 600;
  margin-bottom: 15px;
}

.ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .feature-card .feature-card__desc {
  color: #666666;
  font-size: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.testimonials {
  background: #fbfbfb;
  padding: 70px 0;
}

.testimonials .title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials .title h3 {
  margin-bottom: 15px;
}

.testimonials .testimonials-grid {
  -webkit-column-count: 3;
  column-count: 3;
  gap: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    -webkit-column-count: 1;
    column-count: 1;
    gap: 20px;
  }
}

.testimonials .testimonials-grid .testimonial-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  margin: 0;
  margin-bottom: 30px;
  display: inline-block;
  border: 1px solid #e3e8ef;
  width: 100%;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials .testimonials-grid .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.testimonials .testimonials-grid .testimonial-card blockquote {
  margin: 0;
  padding: 0;
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card blockquote {
    font-size: 14px;
    line-height: 22px;
  }
}

.testimonials .testimonials-grid .testimonial-card figcaption {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card figcaption {
    margin-top: 20px;
  }
}

.testimonials .testimonials-grid .testimonial-card figcaption .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.testimonials .testimonials-grid .testimonial-card figcaption .author-info cite {
  color: #171717;
  font-size: 17px;
  font-family: Sora, sans-serif;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card figcaption .author-info cite {
    font-size: 16px;
  }
}

.testimonials .testimonials-grid .testimonial-card figcaption .author-info span {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card figcaption .author-info span {
    font-size: 12px;
    line-height: 18px;
  }
}

.testimonials .testimonials-grid .testimonial-card figcaption .author-media {
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .testimonials .testimonials-grid .testimonial-card figcaption .author-media {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 12px;
  }
}

.testimonials .testimonials-grid .testimonial-card figcaption .author-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials .cta-section {
  text-align: center;
  margin-top: 10px;
}

.testimonials .cta-section .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  background: #d1cfc0;
  color: #171717;
  border: none;
  padding: 16px 32px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .testimonials .cta-section .cta-button {
    padding: 14px 28px;
    font-size: 15px;
    gap: 10px;
  }
}

.testimonials .cta-section .cta-button:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.testimonials .cta-section .cta-button:hover svg {
  -webkit-transform: translate(3px, -3px);
  transform: translate(3px, -3px);
}

.testimonials .cta-section .cta-button:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.testimonials .cta-section .cta-button svg {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.testimonial-cta-wrapper {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper {
    padding: 40px 0;
  }
}

.testimonial-cta-wrapper .testimonial-cta-content {
  background: #171717;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .testimonial-cta-wrapper .testimonial-cta-content {
    padding: 70px 35px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-content {
    padding: 50px 25px;
    margin: 0 10px;
    border-radius: calc(var(--border-radius) * 0.8);
  }
}

@media (max-width: 480px) {
  .testimonial-cta-wrapper .testimonial-cta-content {
    padding: 40px 20px;
    margin: 0 5px;
  }
}

.testimonial-cta-wrapper .testimonial-cta-content header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-content header {
    margin-bottom: 30px;
  }
}

.testimonial-cta-wrapper .testimonial-cta-content h2 {
  color: #fff;
  max-width: 440px;
  margin: 0 auto 20px auto;
  font-size: 40px;
  font-family: Sora;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .testimonial-cta-wrapper .testimonial-cta-content h2 {
    font-size: 2.25rem;
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-content h2 {
    font-size: 1.75rem;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .testimonial-cta-wrapper .testimonial-cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.testimonial-cta-wrapper .testimonial-cta-content p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-content p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .testimonial-cta-wrapper .testimonial-cta-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
}

.testimonial-cta-wrapper .testimonial-cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .testimonial-cta-wrapper .testimonial-cta-actions {
    gap: 12px;
    margin-bottom: 30px;
  }
}

.testimonial-cta-wrapper .testimonial-cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  color: #171717;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 768px) {
  .testimonial-cta-wrapper .testimonial-cta-button {
    width: 100%;
    max-width: 280px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .testimonial-cta-wrapper .testimonial-cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }
}

.testimonial-cta-wrapper .testimonial-cta-button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.testimonial-cta-wrapper .testimonial-cta-button:hover svg {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.process-timeline-section {
  padding: 70px 0;
  padding-top: 0;
  background: var(--color-secondary-bg);
}

@media (max-width: 768px) {
  .process-timeline-section {
    padding: 30px 0;
  }
}

.process-timeline-section .timeline-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-container {
    gap: 30px;
  }
}

.process-timeline-section .timeline-visual {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.process-timeline-section .timeline-visual .floating-header {
  position: relative;
  z-index: 10;
  background: #fff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid #e3e8ef;
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
  text-align: center;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-visual .floating-header {
    padding: 30px 25px;
  }
}

.process-timeline-section .timeline-visual .floating-header.final-step {
  background: rgba(255, 255, 255, 0.98);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.process-timeline-section .timeline-visual .floating-header .process-subtitle {
  display: inline-block;
  background: #000;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-visual .floating-header .process-subtitle {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 15px;
  }
}

.process-timeline-section .timeline-visual .floating-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-primary-text);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-visual .floating-header h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}

.process-timeline-section .timeline-visual .floating-header .process-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-visual .floating-header .process-description {
    font-size: 0.9rem;
  }
}

.process-timeline-section .timeline-visual .visual-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-white);
  aspect-ratio: 5/6;
  height: 400px;
  width: 100%;
}

.process-timeline-section .timeline-visual .visual-wrapper .visual-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-timeline-section .timeline-visual .visual-wrapper .visual-item.active {
  opacity: 1;
  visibility: visible;
}

.process-timeline-section .timeline-visual .visual-wrapper .visual-item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.process-timeline-section .timeline-content {
  position: relative;
}

.process-timeline-section .timeline-content .timeline-line {
  position: absolute;
  left: 25px;
  top: 25px;
  bottom: 1px;
  width: 3px;
  background: transparent;
  z-index: 1;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-content .timeline-line {
    left: 20px;
    width: 2px;
  }
}

.process-timeline-section .timeline-content .timeline-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    color-stop(60%, #000000),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
  background-repeat: repeat-y;
  opacity: 0.6;
  border-radius: 2px;
}

.process-timeline-section .timeline-content .timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1a1a),
    color-stop(60%, #1a1a1a),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #1a1a1a 0%,
    #1a1a1a 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
  background-repeat: repeat-y;
  border-radius: 2px;
  -webkit-transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.process-timeline-section .timeline-content .timeline-line.progress-active::after {
  height: var(--timeline-progress, 25%);
}

.process-timeline-section .timeline-content .timeline-line.style-bold::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    color-stop(70%, #000000),
    color-stop(70%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 70%,
    transparent 70%,
    transparent 100%
  );
  background-size: 100% 16px;
  opacity: 0.7;
}

.process-timeline-section .timeline-content .timeline-line.style-bold::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1a1a),
    color-stop(70%, #1a1a1a),
    color-stop(70%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #1a1a1a 0%,
    #1a1a1a 70%,
    transparent 70%,
    transparent 100%
  );
  background-size: 100% 16px;
}

.process-timeline-section .timeline-content .timeline-line.style-dots::before {
  background-image: radial-gradient(circle, #000000 40%, transparent 40%);
  background-size: 100% 10px;
  opacity: 0.6;
}

.process-timeline-section .timeline-content .timeline-line.style-dots::after {
  background-image: radial-gradient(circle, #1a1a1a 40%, transparent 40%);
  background-size: 100% 10px;
}

.process-timeline-section .timeline-content .timeline-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 120px;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-content .timeline-items {
    gap: 30px;
  }
}

.process-timeline-section .timeline-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 35px;
  position: relative;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-step {
    gap: 30px;
  }
}

.process-timeline-section .timeline-step .step-marker {
  position: relative;
  z-index: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.process-timeline-section .timeline-step .step-marker .step-number {
  width: 50px;
  height: 50px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  border: 3px solid var(--color-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-step .step-marker .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-width: 2px;
  }
}

.process-timeline-section .timeline-step .step-marker.active .step-number {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  border-color: var(--color-white);
}

.process-timeline-section .timeline-step .step-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e3e8ef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-step .step-content {
    padding: 30px;
  }
}

.process-timeline-section .timeline-step .step-content .step-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.process-timeline-section .timeline-step .step-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-step .step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.process-timeline-section .timeline-step .step-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .process-timeline-section .timeline-step .step-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}

.process-timeline-section .timeline-step .step-content .step-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.process-timeline-section .timeline-step .step-content .step-features .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #666666;
}

.process-timeline-section .timeline-step .step-content .step-features .feature-item i {
  color: #000;
  font-size: 1.1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.timeline-line.dashed-normal::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    color-stop(60%, #000000),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
  opacity: 0.6;
}

.timeline-line.dashed-normal::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1a1a),
    color-stop(60%, #1a1a1a),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #1a1a1a 0%,
    #1a1a1a 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
}

.timeline-line.dashed-large::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    color-stop(70%, #000000),
    color-stop(70%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 70%,
    transparent 70%,
    transparent 100%
  );
  background-size: 100% 20px;
  opacity: 0.6;
}

.timeline-line.dashed-large::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1a1a),
    color-stop(70%, #1a1a1a),
    color-stop(70%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #1a1a1a 0%,
    #1a1a1a 70%,
    transparent 70%,
    transparent 100%
  );
  background-size: 100% 20px;
}

.timeline-line.dashed-small::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000000),
    color-stop(50%, #000000),
    color-stop(50%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 100% 8px;
  opacity: 0.6;
}

.timeline-line.dashed-small::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1a1a1a),
    color-stop(50%, #1a1a1a),
    color-stop(50%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #1a1a1a 0%,
    #1a1a1a 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 100% 8px;
}

.timeline-line.style-gray::before {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4a4a4a),
    color-stop(60%, #4a4a4a),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #4a4a4a 0%,
    #4a4a4a 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
  opacity: 0.8;
}

.timeline-line.style-gray::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2a2a2a),
    color-stop(60%, #2a2a2a),
    color-stop(60%, transparent),
    to(transparent)
  );
  background-image: linear-gradient(
    to bottom,
    #2a2a2a 0%,
    #2a2a2a 60%,
    transparent 60%,
    transparent 100%
  );
  background-size: 100% 12px;
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.legal-faq-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fafc 0%, var(--color-secondary-bg) 100%);
  position: relative;
  padding-top: 0;
}

.legal-faq-section .legal-faq-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-header {
    margin-bottom: 60px;
  }
}

.legal-faq-section .legal-faq-subtitle {
  display: inline-block;
  background: #000;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-subtitle {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-content {
    margin-bottom: 60px;
  }
}

.legal-faq-section .legal-faq-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.legal-faq-section .legal-faq-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.legal-faq-section .legal-faq-item {
  border: 1px solid #e3e8ef;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legal-faq-section .legal-faq-item:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.legal-faq-section .legal-faq-item.active .legal-faq-question {
  background: #000;
  color: #171717;
}

.legal-faq-section .legal-faq-item.active .legal-faq-question .legal-faq-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.legal-faq-section .legal-faq-item.active .legal-faq-answer {
  max-height: 1000px;
  opacity: 1;
}

.legal-faq-section .legal-faq-item.active span {
  color: #fff;
}

.legal-faq-section .legal-faq-item.active svg {
  color: #fff;
}

.legal-faq-section .legal-faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #171717;
  font-family: Sora;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-question {
    padding: 20px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }
}

.legal-faq-section .legal-faq-question span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 15px;
  line-height: 1.4;
}

.legal-faq-section .legal-faq-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #000;
}

.legal-faq-section .legal-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legal-faq-section .legal-faq-answer-content {
  padding: 30px;
  border-top: 1px solid #e3e8ef;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-answer-content {
    padding: 0 25px 25px 25px;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}

.legal-faq-section .legal-faq-answer-content p {
  margin: 0 0 15px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-answer-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

.legal-faq-section .legal-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.legal-faq-section .legal-faq-answer-content ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
}

.legal-faq-section .legal-faq-answer-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-answer-content ul li {
    font-size: 15px;
    margin-bottom: 6px;
  }
}

.legal-faq-section .legal-faq-answer-content ul li strong {
  color: #171717;
  font-weight: 600;
}

.legal-faq-section .legal-faq-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.legal-faq-section .legal-faq-cta .legal-faq-cta-content {
  background: linear-gradient(135deg, #171717 0%, #1a1a2e 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content {
    padding: 50px 30px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content {
    padding: 40px 25px;
    margin: 0 10px;
  }
}

.legal-faq-section .legal-faq-cta .legal-faq-cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.legal-faq-section .legal-faq-cta .legal-faq-cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content h3 {
    font-size: 1.3rem;
  }
}

.legal-faq-section .legal-faq-cta .legal-faq-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-cta .legal-faq-cta-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.legal-faq-section .legal-faq-cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.legal-faq-section .legal-faq-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
}

@media (max-width: 768px) {
  .legal-faq-section .legal-faq-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-faq-section .legal-faq-button {
    width: 100%;
    max-width: 280px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 24px;
  }
}

.legal-faq-section .legal-faq-button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.legal-faq-section .legal-faq-button:hover svg {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.legal-faq-section .legal-faq-button:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.legal-faq-section .legal-faq-button.primary {
  background-color: white;
  color: #171717;
  border-color: white;
}

.legal-faq-section .legal-faq-button.primary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.legal-faq-section .legal-faq-button.secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.legal-faq-section .legal-faq-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main-footer .newsletter-section {
  background: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-footer .newsletter-section {
    padding: 60px 0;
  }
}

.main-footer .newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.main-footer .newsletter-section .newsletter-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.main-footer .newsletter-section .newsletter-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: white;
}

.main-footer .newsletter-section .newsletter-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .main-footer .newsletter-section .newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}

.main-footer .newsletter-section .newsletter-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .main-footer .newsletter-section .newsletter-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.main-footer .newsletter-section .newsletter-form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

.main-footer .newsletter-section .newsletter-form .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #e3e8ef;
  border-radius: 60px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-footer .newsletter-section .newsletter-form .input-group:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: #e3e8ef;
}

.main-footer .newsletter-section .newsletter-form .input-group input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .main-footer .newsletter-section .newsletter-form .input-group input {
    padding: 16px 20px;
    font-size: 15px;
  }
}

.main-footer .newsletter-section .newsletter-form .input-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .newsletter-section .newsletter-form .input-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .newsletter-section .newsletter-form .input-group input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .newsletter-section .newsletter-form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .newsletter-section .newsletter-form .input-group input:focus {
  outline: none;
}

.main-footer .newsletter-section .newsletter-form .input-group button {
  padding: 18px 32px;
  background: white;
  color: var(--color-primary-text);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .main-footer .newsletter-section .newsletter-form .input-group button {
    padding: 16px 24px;
    font-size: 15px;
  }
}

.main-footer .newsletter-section .newsletter-form .input-group button:hover {
  background: #f1f5f9;
}

.main-footer .newsletter-section .newsletter-form .input-group button svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.main-footer .newsletter-section .newsletter-form .input-group button:hover svg {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.main-footer .footer-main {
  background: var(--color-bg-card);
  border-top: 1px solid #e3e8ef;
}

.main-footer .footer-top {
  padding: 80px 0 60px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}

.main-footer .footer-brand .brand-logo {
  margin-bottom: 25px;
}

.main-footer .footer-brand .brand-logo img {
  width: auto;
}

.main-footer .footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 400px;
}

@media (max-width: 768px) {
  .main-footer .footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}

.main-footer .footer-brand .contact-simple .email-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .main-footer .footer-brand .contact-simple .email-link {
    font-size: 15px;
  }
}

.main-footer .footer-brand .contact-simple .email-link svg {
  color: #000;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main-footer .footer-brand .contact-simple .email-link:hover {
  color: #000;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.main-footer .footer-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.main-footer .footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-text);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .main-footer .footer-column h4 {
    margin-bottom: 20px;
    font-size: 15px;
  }
}

.main-footer .footer-column nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.main-footer .footer-column nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 4px 0;
  position: relative;
}

@media (max-width: 768px) {
  .main-footer .footer-column nav a {
    font-size: 0.9rem;
  }
}

.main-footer .footer-column nav a:hover {
  color: #000;
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.main-footer .footer-column nav a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.main-footer .footer-column nav a:hover::before {
  width: 10px;
}

.main-footer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #e3e8ef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .main-footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    text-align: center;
  }
}

.main-footer .footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .main-footer .footer-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0 40px 0;
  }
  .main-footer .newsletter-section .newsletter-form {
    max-width: 500px;
  }
  .main-footer .newsletter-section .newsletter-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .legal-faq-section .legal-faq-grid {
    gap: 30px;
  }
  .process-timeline-section .timeline-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 2;
  }
  .process-timeline-section .timeline-visual .visual-wrapper {
    aspect-ratio: 16/10;
    max-width: 600px;
    margin: 0 auto;
  }
  .process-timeline-section .timeline-visual {
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .process-timeline-section .timeline-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .testimonial-cta-wrapper .testimonial-cta-content p {
    font-size: 1rem;
    max-width: 450px;
    margin-bottom: 35px;
  }
  .testimonial-cta-wrapper .testimonial-cta-content h2 {
    font-size: 2rem;
    max-width: 500px;
  }
  .testimonial-cta-wrapper .testimonial-cta-content {
    padding: 60px 30px;
    margin: 0 10px;
  }
  .testimonials .testimonials-grid {
    -webkit-column-count: 2;
    column-count: 2;
    gap: 25px;
  }
  .main-footer .footer-brand p {
    max-width: 100%;
  }
  .testimonial-cta-wrapper .testimonial-cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
  .main-footer .footer-legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-top {
    padding: 30px 0 30px 0;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-legal {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.main-footer .footer-legal p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .main-footer .footer-legal p {
    font-size: 0.85rem;
  }
}

.main-footer .footer-legal .legal-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

@media (max-width: 600px) {
  .main-footer .footer-legal .legal-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.main-footer .footer-legal .legal-links a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .main-footer .footer-legal .legal-links a {
    font-size: 0.85rem;
  }
}

.main-footer .footer-legal .legal-links a:hover {
  color: #000;
}

.main-footer .footer-social .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.main-footer .footer-social .social-links a {
  width: 40px;
  height: 40px;
  background: var(--color-secondary-bg);
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-text-secondary);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
  .main-footer .footer-social .social-links a {
    width: 38px;
    height: 38px;
  }
}

.main-footer .footer-social .social-links a:hover {
  color: #171717;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.main-footer .footer-social .social-links a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .main-footer .footer-social .social-links a svg {
    width: 16px;
    height: 16px;
  }
}

body {
  padding-top: 78px;
}

/* Scroll to Top */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #000;
  transform: translateY(-3px);
}

.scroll-to-top i {
  font-size: 20px;
}

@-webkit-keyframes slideInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.main-footer {
  -webkit-animation: slideInFromBottom 0.8s ease-out;
  animation: slideInFromBottom 0.8s ease-out;
}

@media (prefers-contrast: high) {
  .main-footer .newsletter-section {
    background: #000;
    color: #fff;
  }
  .main-footer .footer-main {
    background: #fff;
    border-top: 2px solid #000;
  }
}

@media print {
  .main-footer .newsletter-section,
  .main-footer .footer-social,
  .main-footer .scroll-top {
    display: none;
  }
  .main-footer .footer-main {
    background: white !important;
    color: black !important;
  }
  .main-footer a {
    color: black !important;
    text-decoration: underline !important;
  }
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .legal-faq-section .legal-faq-item,
  .legal-faq-section .legal-faq-button,
  .legal-faq-section .animate-on-scroll {
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
    animation: none;
  }
  .legal-faq-section .legal-faq-item {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  .legal-faq-section .legal-faq-icon {
    -webkit-transition: none;
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .legal-faq-section .legal-faq-item {
    border-width: 2px;
  }
  .legal-faq-section .legal-faq-button {
    border-width: 3px;
  }
}

@media print {
  .legal-faq-section .legal-faq-cta {
    display: none;
  }
  .legal-faq-section .legal-faq-item {
    border: 1px solid black;
    margin-bottom: 20px;
    page-break-inside: avoid;
  }
  .legal-faq-section .legal-faq-item.active .legal-faq-answer {
    max-height: none;
    opacity: 1;
  }
  .legal-faq-section .legal-faq-question {
    background: white !important;
    color: black !important;
  }
  .legal-faq-section .legal-faq-icon {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .legal-process-section {
    height: auto;
  }
  .legal-process-section .legal-process-sticky-container {
    position: static;
    height: auto;
  }
  .legal-process-section .legal-process-header {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-bottom: 50px;
  }
  .legal-process-section .legal-timeline-item {
    position: static;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-bottom: 60px;
  }
  .legal-process-section .legal-timeline-item:not(:last-child) {
    border-bottom: 1px solid #e3e8ef;
    padding-bottom: 60px;
  }
  .legal-process-section .legal-progress-indicator {
    display: none;
  }
  .legal-process-section .legal-timeline-visual,
  .legal-process-section .legal-timeline-content {
    -webkit-transition: none;
    transition: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .legal-process-section .legal-timeline-item,
  .legal-process-section .animate-on-scroll,
  .legal-process-section .legal-process-timeline::after {
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
    animation: none;
  }
  .legal-process-section .legal-timeline-item {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .legal-process-section .legal-timeline-content {
    border-width: 2px;
  }
  .legal-process-section .legal-process-timeline::before,
  .legal-process-section .legal-process-timeline::after {
    background: #171717;
  }
}

@media print {
  .legal-process-section .legal-step-icon,
  .legal-process-section .legal-process-timeline::before,
  .legal-process-section .legal-process-timeline::after {
    display: none;
  }
  .legal-process-section .legal-timeline-item {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    left: 0;
    padding: 10px;
    margin-bottom: 20px;
  }
  .legal-process-section .legal-timeline-item .legal-timeline-content {
    border: 1px solid black;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .testimonial-card,
  .cta-button {
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
    animation: none;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1400px) {
  .hero-container {
    max-width: 1200px;
    gap: 3rem;
  }
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 1255px) {
  .hero-container {
    max-width: 1200px;
    gap: 3rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .digital-solutions .digital-solutions__wrapper .digital-solutions__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .ai-legal-features_top {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-legal-tech
    .ai-legal-tech__grid
    .ai-legal-tech__highlight
    .highlight-card
    .ai-legal-tech__image
    img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1200px) {
  .hero-container {
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
}
@media (max-width: 1140px) {
  .ai-legal-tech .ai-legal-tech__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__highlight .highlight-card {
    max-width: 492px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .legal-faq-cta-content {
    flex-direction: column !important;
    gap: 20px;
    justify-content: center;
  }
  .legal-faq-cta-content div {
    text-align: center;
  }
}
@media (max-width: 998px) {
  .contact-lead-form .contact-lead-form__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-lead-form {
    padding: 40px 30px;
  }
  .hero-container {
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  .hero-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 450px;
  }
  .hero-image video {
    height: 450px;
  }
  .hero-section .content {
    height: 450px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .main-footer .footer-links {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .ai-legal-features_top,
  .ai-legal-tech .ai-legal-tech__grid .ai-legal-tech__features .ai-legal-features_top:nth-child(2) {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-section .content {
    position: relative;
    height: auto;
  }
  .hero-section .content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
  }
  .hero-section {
    min-height: auto;
    margin: 40px 0;
    border-radius: 12px;
  }
  .hero-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem;
    text-align: center;
  }
  .hero-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: none;
  }
  .hero-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 450px;
    display: none;
  }
  .hero-content .hero-header {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 1rem;
    max-width: none;
  }
  .hero-actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }
  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 625px) {
  .digital-solutions .digital-solutions__wrapper .digital-solutions__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .digital-solutions__cards > :nth-child(7) {
    grid-column: span 1;
  }
}
@media (max-width: 576px) {
  .legal-faq-button {
    justify-content: center;
  }
  .legal-faq-cta-content div {
    flex-direction: column;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card {
    min-height: 339px;
    border-radius: 8px;
    overflow: hidden;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    img {
    object-fit: cover;
    min-height: 339px;
    object-position: -165px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    h4,
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    .action-items
    .solution-card__price {
    font-size: 24px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    p,
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    ul
    li {
    font-size: 14px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    p,
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    ul {
    margin-bottom: 12px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    p
    small {
    font-size: 15px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    .action-items
    span {
    padding: 10px 12px 10px 14px;
  }
  .digital-solutions
    .digital-solutions__wrapper
    .digital-solutions__cards
    .solution-card:last-child
    .relative-card
    .image-text
    ul {
    padding-left: 23px;
  }
  .hero-btn.btn-secondary {
    min-width: 176px;
  }
  .extra-links {
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    padding: 30px;
  }
  .hero-content h2 {
    font-size: 30px;
  }
  .hero-content .hero-description,
  .hero-content .hero-title {
    font-size: 15px;
  }
  .testimonials .testimonials-grid {
    columns: 1;
  }
  .main-footer .footer-links {
    grid-template-columns: repeat(1, 1fr);
  }
  .testimonials {
    padding: 30px 0;
  }
  .process-timeline-section .timeline-visual .visual-wrapper {
    aspect-ratio: auto;
    max-height: 267px;
  }
  .process-timeline-section .timeline-content .timeline-line {
    display: none;
  }
  .process-timeline-section .timeline-step .step-marker {
    display: none;
  }
  .contact-lead-form
    .contact-lead-form__container
    .contact-lead-form__form
    .contact-lead-form__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-lead-form
    .contact-lead-form__container
    .contact-lead-form__form
    .contact-lead-form__notgrid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .navbar-nav,
  .navbar-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar {
    padding: 0.75rem 0;
  }
  body {
    padding-top: 70px;
  }
}

body.menu-open {
  overflow: hidden;
}

[class^='ri-'],
[class*=' ri-'] {
  font-style: normal !important;
  font-weight: normal !important;
  line-height: 1;
  display: inline-block;
}

/* Responsive */

@media (min-width: 1366px) {
  .container {
    max-width: 1260px;
  }
}

@media (max-width: 1366px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute !important;
  }
}

@media (max-width: 375px) {
  .process-timeline-section .timeline-visual .visual-wrapper {
    max-height: 235px;
  }
}

/* ========================================
   CUSTOM CHECKBOX STYLES
   ======================================== */

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Increased gap for better spacing */
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  position: relative; /* For positioning pseudo-elements if needed */
}

.custom-checkbox input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox .custom-checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid #e3e8ef;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
  background-color: #fff;
  color: white;
  flex-shrink: 0;
}

.custom-checkbox .custom-checkbox__box i {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.custom-checkbox input[type='checkbox']:checked + .custom-checkbox__box {
  background-color: #d1cfc0; /* Correct background color */
  border-color: #d1cfc0;
}

.custom-checkbox input[type='checkbox']:checked + .custom-checkbox__box i {
  opacity: 1;
  transform: scale(1);
  color: #ffffff; /* Correct icon color: white */
}

/* Focus state for accessibility */
.custom-checkbox input[type='checkbox']:focus-visible + .custom-checkbox__box {
  outline: 2px solid #d1cfc0;
  outline-offset: 2px;
}

.custom-checkbox .custom-checkbox__label {
  line-height: 1.5;
  margin-bottom: 0; /* Reset margin for label */
}

.custom-checkbox .custom-checkbox__label a {
  text-decoration: underline;
  color: #171717;
  font-weight: 500;
}

.custom-checkbox .custom-checkbox__label a:hover {
  text-decoration: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #000 !important;
  background: white;
  box-shadow: none !important;
}

/* Shake animation for checkbox validation */
.shake-animation {
  animation: shake 0.5s;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/*# sourceMappingURL=style.css.map */
