/* Place your unminified version of the theme styles here. */
:root {
  --navy: #0B1F3A;
  --royal: #1E5EFF;
  --bg: #F7F9FC;
  --text: #323232;
  --white: #ffffff;
  --muted: #000000e6;
  --border: #E5E9F0;
  --card-bg: #ffffff;
  --navy-light: #112447;
  --royal-glow: rgba(30, 94, 255, 0.12);
  --error: #dc2626;

  --royal-hover: #1a52e8;
  --amber: #D97706;

  --hero-dark: #071730;
  --text-faint: #9CA3AF;

  --white-08: rgba(255, 255, 255, 0.08);
  --white-18: rgba(255, 255, 255, 0.18);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-50: rgba(255, 255, 255, 0.50);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-75: rgba(255, 255, 255, 0.75);
  --white-88: rgba(255, 255, 255, 0.88);
  --focus-ring: rgba(30, 94, 255, 0.1);

  --gradient-topbar: linear-gradient(90deg, var(--navy) 32%, var(--royal-hover) 100%);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  --text-xs: 0.7rem;
  --text-sm: 0.8rem;
  --text-base: 0.9rem;
  --text-md: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.4rem;
  --text-2xl: 1.7rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  --transition: 0.2s ease;

  --heading-1: clamp(2.2rem, 3.8vw, 3rem);
  --heading-2: clamp(1.75rem, 2.5vw, 2.4rem);
  --heading-3: 1.05rem;
  --heading-4: var(--text-md);
  --heading-5: 0.95rem;
  --heading-6: var(--text-sm);

  --leading-tight: 1.2;
  --leading-heading: 1.3;
  --leading-body: 1.6;
  --leading-relaxed: 1.7;

  --gutter-x: 1.5rem;
  --gutter-y: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  line-height: 1.6;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--navy);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--heading-1);
  line-height: var(--leading-tight);
}

h2 {
  font-size: var(--heading-2);
  line-height: var(--leading-heading);
}

h3 {
  font-size: var(--heading-3);
  line-height: var(--leading-heading);
}

h4 {
  font-size: var(--heading-4);
  line-height: var(--leading-body);
  font-weight: var(--fw-bold);
}

h5 {
  font-size: var(--heading-5);
  line-height: var(--leading-body);
  font-weight: var(--fw-bold);
}

h6 {
  font-size: var(--heading-6);
  line-height: var(--leading-body);
  font-weight: var(--fw-semibold);
}

p {
  font-family: 'Inter', sans-serif;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

ul {
  font-family: 'Inter', sans-serif;
  /* font-size: var(--text-md);
  font-weight: var(--fw-normal); */
  line-height: var(--leading-relaxed);
  color: var(--text);
  list-style: none;
}

ul li {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: var(--royal-hover);
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}

.row>* {
  grid-column: span 12;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-12 {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .col-md-4 {
    grid-column: span 4;
  }

  .col-md-6 {
    grid-column: span 6;
  }

  .col-md-8 {
    grid-column: span 8;
  }

  .col-md-12 {
    grid-column: span 12;
  }
}

@media (min-width: 1024px) {
  .col-lg-2 {
    grid-column: span 2;
  }

  .col-lg-3 {
    grid-column: span 3;
  }

  .col-lg-4 {
    grid-column: span 4;
  }

  .col-lg-6 {
    grid-column: span 6;
  }

  .col-lg-9 {
    grid-column: span 9;
  }
	
  .col-lg-8 {
    grid-column: span 8;
  }

  .col-lg-12 {
    grid-column: span 12;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    grid-column: span 3;
  }

  .col-xl-4 {
    grid-column: span 4;
  }

  .col-xl-6 {
    grid-column: span 6;
  }

  .col-xl-9 {
    grid-column: span 9;
  }
	
  .col-xl-12 {
    grid-column: span 12;
  }
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row !important;
}

.flex-col {
  flex-direction: column !important;
}

.items-center {
  align-items: center !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--gutter-x, .75rem);
  padding-left: var(--gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section {
  margin-top: 70px;
}

.gap-1 {
  gap: var(--space-1);
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-5 {
  gap: var(--space-5);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-7 {
  gap: var(--space-7);
}

.gap-8 {
  gap: var(--space-8);
}

.p-0 {
  padding: 0 !important;
}

.p-4 {
  padding: var(--space-4) !important;
}

.p-6 {
  padding: var(--space-6) !important;
}

.p-8 {
  padding: var(--space-8) !important;
}

.px-2 {
  padding-left: var(--space-2) !important;
  padding-right: var(--space-2) !important;
}

.px-4 {
  padding-left: var(--space-4) !important;
  padding-right: var(--space-4) !important;
}

.px-5 {
  padding-left: var(--space-5) !important;
  padding-right: var(--space-5) !important;
}

.px-8 {
  padding-left: var(--space-8) !important;
  padding-right: var(--space-8) !important;
}

.py-4 {
  padding-top: var(--space-4) !important;
  padding-bottom: var(--space-4) !important;
}

.pl-4 {
  padding-left: var(--space-4) !important;
}

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

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

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--space-1) !important;
}

.mb-2 {
  margin-bottom: var(--space-2) !important;
}

.mb-3 {
  margin-bottom: var(--space-3) !important;
}

.mb-4 {
  margin-bottom: var(--space-4) !important;
}

.mb-5 {
  margin-bottom: var(--space-5) !important;
}

.mb-6 {
  margin-bottom: var(--space-6) !important;
}

.mb-7 {
  margin-bottom: var(--space-7) !important;
}

.mb-8 {
  margin-bottom: var(--space-8) !important;
}

.mb-10 {
  margin-bottom: var(--space-10) !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mt-3 {
  margin-top: var(--space-3) !important;
}

.mt-4 {
  margin-top: var(--space-4) !important;
}

.mt-6 {
  margin-top: var(--space-6) !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.ms-2 {
  margin-left: var(--space-2) !important;
}

.border {
  border: 1px solid var(--border) !important;
}

.border-top {
  border-top: 1px solid var(--border) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border) !important;
}

.border-left {
  border-left: 1px solid var(--border) !important;
}

.rounded-sm {
  border-radius: var(--radius-sm) !important;
}

.rounded-md {
  border-radius: var(--radius-md) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.rounded-xl {
  border-radius: var(--radius-xl) !important;
}

.rounded-pill {
  border-radius: var(--radius-pill) !important;
}

.rounded-full {
  border-radius: 50% !important;
}

.bg-base {
  background: var(--bg) !important;
}

.bg-surface {
  background: var(--card-bg);
}

.bg-navy {
  background: var(--navy);
}

.bg-royal {
  background: var(--royal);
}

.bg-royal-glow {
  background: var(--royal-glow);
}

.bg-white {
  background: var(--white);
}

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

.text-muted {
  color: var(--muted);
}

.text-faint {
  color: var(--text-faint);
}

.text-navy {
  color: var(--navy);
}

.text-royal {
  color: var(--royal);
}

.text-white {
  color: var(--white);
}

.text-white-55 {
  color: var(--white-55);
}

.text-white-75 {
  color: var(--white-75);
}

.text-white-88 {
  color: var(--white-88);
}

.bg-royal-accent {
  background: var(--royal);
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-md {
  font-size: var(--text-md);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.font-sans {
  font-family: 'Inter', sans-serif;
}

.font-head {
  font-family: 'Manrope', sans-serif;
}

.fw-normal {
  font-weight: var(--fw-normal);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-extrabold {
  font-weight: var(--fw-extrabold);
}

.fw-black {
  font-weight: var(--fw-black);
}

.text-center {
  text-align: center;
}

.text-upper {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.leading-snug {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 2;
}

.italic {
  font-style: italic;
}

.no-underline {
  text-decoration: none;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block !important;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .md\:block {
    display: block !important;
  }
  
  .md\:items-center {
    align-items: center !important;
  }

  .md\:gap-8 {
    gap: var(--space-8) !important;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .xl\:block {
    display: block !important;
  }
}
/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

@media (min-width: 768px) {
  .btn {
    padding: 0.85rem 1.75rem;
    font-size: var(--text-md);
  }
}

.btn--primary {
  background: var(--royal);
  color: var(--white) !important;
  border-color: var(--royal);
}

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

.btn--outline {
  background: transparent;
  color: var(--royal);
  border-color: var(--royal);
}

.btn--outline:hover {
  background: var(--royal);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-50);
}

.btn--outline-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: var(--white-08);
}

.btn--ghost {
  background: transparent;
  color: var(--royal);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--royal-glow);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   Cards & Forms
   ========================================================================== */

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .card {
    padding: var(--space-6);
  }
}

.card--hover {
  transition: transform var(--transition), box-shadow var(--transition);
}

.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.12);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--navy);
}

.form-input {
  width: 100%;
  padding: 0.7rem var(--space-4);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-wrapper {
  border-radius: var(--radius-xl);
  border: 5px solid var(--border);
  padding: var(--space-4);
}

@media (min-width: 768px) {
  .form-wrapper {
    padding: var(--space-6);
  }
}

/* ==========================================================================
   Section chrome
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: var(--space-12);
  }
}

.section-tag {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: var(--space-3);
  position: relative;
}

@media (min-width: 768px) {
  .section-tag {
    font-size: var(--text-base);
  }
}

.section-tag::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -4px;
  max-width: 137px;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--white) 0%, var(--royal) 50%, var(--white) 100%);
}

/* ==========================================================================
   Header & Navigation — mobile base, desktop at 1024px+
   ========================================================================== */

.header-topbar {
  background: var(--gradient-topbar);
  color: var(--white-88);
  font-size: var(--text-sm);
  padding-block: var(--space-2);
}

@media (min-width: 768px) {
  .header-topbar {
    font-size: var(--text-base);
    padding-block: var(--space-3);
  }
}

.header-topbar a:hover {
  color: var(--white);
}

.v-divider {
  width: 1px;
  height: 16px;
  background: var(--white-25);
}

.nav-bar {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.08);
  z-index: 999;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo-link img {
  width: auto;
  height: 24px;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.nav-brand {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}

.nav-main {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--royal);
  border-bottom-color: var(--royal);
}

.menu-toggle-btn {
  display: flex;
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle-btn:hover {
  background: var(--bg);
  color: var(--navy);
}

.close-MenuBtn {
  display: none;
  position: fixed;
  right: var(--space-4);
  top: var(--space-4);
  z-index: 11;
  cursor: pointer;
  background: none;
  border: none;
}

header:has(nav ul.show-ul) .close-MenuBtn {
  display: block;
}

.nav-actions {
  position: relative;
  z-index: 2;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-search-btn {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  background: var(--bg);
  color: var(--navy);
}

.back-drop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 31, 58, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

header:has(nav ul.show-ul)+.back-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown {
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-wrap: wrap;
  justify-content: space-between;
}

.dropdown ul {
  display: block;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 75px;
  z-index: 99;
  transform-origin: top;
  transform: scale(0);
  min-width: 200px;
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--border);
  list-style: none;
  margin: 0;
}

.dropdown ul li {
  padding: var(--space-3) var(--space-4);
}

.dropdown ul li:not(:first-of-type) {
  border-top: 1px solid var(--border);
}

.nav-bar.is-search-open .nav-links {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.nav-bar.is-search-open .nav-brand {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-search-expand {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: calc(72px + var(--space-2));
  height: 36px;
  margin-block: auto;
  z-index: 1;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#searchPopup.is-open .nav-search-expand {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
  left: 0;
  right: calc(36px + var(--space-2));
  z-index: 3;
}

.nav-search-field:focus-within {
  border-color: var(--border);
}

.nav-search-expand form {
  flex: 1;
  min-width: 0;
  display: flex;
}

.nav-search-expand form input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 var(--space-4) 0 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: var(--text-md);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.nav-search-field form input[type="search"]::-webkit-search-decoration,
.nav-search-field form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

.nav-search-field form input[type="search"]::placeholder {
  color: var(--text-faint);
}

header .navigation {
  padding-block: 10px;
}

header nav {
  position: absolute;
}

header nav>ul {
  position: fixed;
  width: 100%;
  background: var(--white);
  height: 100vh;
  top: 0;
  left: 0;
  transition: all 0.2s;
  padding-top: 56px;
  padding-bottom: 28px;
  z-index: 10;
  transform: translateX(-100%);
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.show-ul {
  transform: translate(0%) !important;
  overflow-y: auto;
}

header nav>ul>li:not(:first-of-type) {
  padding-top: var(--space-3);
  margin-top: var(--space-3);
  border-top: 1px solid var(--border);
}

header nav>ul>li {
  padding-inline: var(--space-5);
}

header ul li a {
  white-space: normal;
}

.dropdown svg {
  width: var(--text-sm);
  height: var(--text-sm);
  fill: var(--text);
}

header ul li.showMenu>ul {
  display: block !important;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  position: unset;
  margin-top: 5px;
  border-radius: var(--radius-sm);
  flex-basis: 100%;
  width: 100%;
}

.nav-links {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}

.nav-link:hover {
  border-bottom-color: var(--border);
  background: var(--bg);
}

.nav-job-status {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: var(--fw-medium);
  transition: color var(--transition);
}

.nav-job-status:hover {
  color: var(--royal);
}

@media (min-width: 1024px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-8);
  }

  .nav-brand {
    grid-column: unset;
    grid-row: unset;
  }

  .nav-main {
    grid-column: unset;
    grid-row: unset;
    width: auto;
  }

  .nav-bar.is-search-open .nav-brand {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-search-expand {
    right: calc(36px + var(--space-2));
  }

  #searchPopup.is-open .nav-search-expand {
    z-index: 1;
  }

  .menu-toggle-btn,
  .close-MenuBtn {
    display: none;
  }

  header .navigation {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    padding-block: 0;
  }

  header nav {
    position: static;
  }

  header nav>ul {
    position: static;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
    display: flex;
    box-shadow: none;
    overflow: visible;
  }

  header nav>ul>li {
    padding-inline: 0;
    padding-top: 25px !important;
    padding-bottom: 25px;
    border-top: none !important;
    margin-top: 0 !important;
  }

  header ul li a {
    white-space: nowrap;
  }

  header ul li.showMenu>ul {
    position: absolute;
    margin-top: 0;
    flex-basis: auto;
    width: auto;
    transform: scale(0);
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-7);
  }

  .nav-link {
    font-size: var(--text-md);
  }

  .nav-link:hover {
    border-bottom-color: var(--royal);
    background: transparent;
  }

  .dropdown ul .dropdown ul {
    position: absolute;
    left: calc(100% + var(--space-2));
    top: 10px;
  }

  header .dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .nav-search-expand {
    margin-block: var(--space-5);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--white-25);
  color: var(--white);
  padding: 0.35rem var(--space-4);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 1.4rem;
}

.hero-stats {
  border-top: 1px solid var(--white-18);
  border-bottom: 1px solid var(--white-18);
  padding: 0.9rem 0;
  display: grid;
  row-gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}

.hero-stat:nth-child(odd) {
  padding-right: var(--space-6);
  margin-right: var(--space-6);
  border-right: 1px solid var(--white-18);
}

@media (min-width: 768px) {
  .hero-stats {
    display: flex;
  }

  .hero-stat:nth-child(odd) {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .hero-stat:not(:last-of-type) {
	padding-right: var(--space-3);
	margin-right: var(--space-4);
	border-right: 1px solid var(--white-18);
  }
}

.hero-photo {
  border-radius: var(--radius-xl);
  border: 2px solid var(--white-18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero-photo img {
    height: 340px;
  }
}

@media (min-width: 1200px) {
  .hero-photo img {
    height: 420px;
  }
}

/* ==========================================================================
   Lead form & Reviews
   ========================================================================== */

.lead-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lead-icon {
    width: 54px;
    height: 54px;
  }
}

/* ==========================================================================
   Lead wizard
   ========================================================================== */

.lead-wizard .step-mobile {
  display: block;
}

.lead-wizard .step-desktop {
  display: none;
}

@media (min-width: 768px) {
  .lead-wizard .step-mobile {
    display: none;
  }

  .lead-wizard .step-desktop {
    display: flex;
  }
}

.lead-wizard .step-marker {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-faint);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease, transform 250ms ease;
}

@media (min-width: 768px) {
  .lead-wizard .step-marker {
    width: 44px;
    height: 44px;
  }
}

.lead-wizard li svg {
  display: none;
}

.lead-wizard .is-active .step-marker {
  border-color: var(--royal);
  background: var(--royal);
  color: var(--white);
  transform: scale(1.05);
}

.lead-wizard .is-complete .step-marker {
  border-color: var(--royal);
  background: var(--royal);
  color: var(--white);
}

.lead-wizard .is-complete .step-marker span {
  display: none;
}

.lead-wizard .is-complete .step-marker svg {
  display: block;
}

.lead-wizard .step-line {
  flex: 1;
  height: 2px;
  margin-top: var(--space-5);
  margin-inline: var(--space-2);
  background: var(--border);
  position: absolute;
  overflow: hidden;
  width: calc(100% + 41px);
  left: var(--space-10);
  z-index: -1;
}

.lead-wizard .step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms ease;
}

.lead-wizard .is-complete .step-line::after {
  transform: scaleX(1);
}

.lead-wizard .step-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-faint);
  text-align: center;
  /* max-width: 72px; */
}

.lead-wizard .is-active .step-title {
  color: var(--royal);
}

.lead-wizard .is-complete .step-title {
  color: var(--navy);
}

.lead-wizard .viewport {
  overflow: hidden;
}

.lead-wizard .step:not(.is-active) {
  display: none;
}

.lead-wizard .step {
  display: none;
  transition: opacity 250ms ease;
}

.lead-wizard .step.is-active {
  display: block;
  animation: leadWizardFadeIn 250ms ease;
}

@keyframes leadWizardFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.lead-wizard-card {
  width: 100%;
  padding: var(--space-4);
  text-align: left;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.lead-wizard-card input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--royal);
  cursor: pointer;
}

.lead-wizard-card:hover:not(.is-disabled) {
  border-color: var(--royal);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.08);
}

.lead-wizard-card:has(input:focus-visible) {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.lead-wizard-card:has(input:checked) {
  background: var(--royal-glow);
  border-color: var(--royal);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.lead-wizard-card.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.lead-wizard-card.is-disabled input[type="radio"] {
  cursor: not-allowed;
}

.lead-wizard-card-meta {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text-faint);
}

.lead-wizard .error,
.lead-wizard .field-error {
  font-size: var(--text-sm);
  color: var(--error);
}

.lead-wizard .error:empty,
.lead-wizard .field-error:empty {
  display: none;
}

.lead-wizard .form-field.has-error .form-input {
  border-color: var(--error);
}

/* .form-checkbox {
  font-size: var(--text-base);
  color: var(--text);
  cursor: pointer;
} */

.form-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--royal);
}

.review-divider {
  background: linear-gradient(to right, var(--border) 0%, var(--border) 70%, transparent 70%, transparent 100%) repeat-x left bottom;
  background-size: 24px 1.6px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-color: var(--amber);
}

/* ==========================================================================
   Swiper
   ========================================================================== */

.swiper-wrapper {
  padding-bottom: 2.5rem;
}

.swiper-wrapper .swiper-slide {
  height: auto;
}

.swiper-wrapper .card {
  display: flex;
  flex-direction: column;
}

.swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(11, 31, 58, 0.12);
  opacity: 1;
  border-radius: 999px;
  transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--royal-glow);
  transform: scale(1.15);
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--royal);
  border-radius: 999px;
}

/* ==========================================================================
   Tabs & Blog
   ========================================================================== */

.tabs-wrapper {
  position: relative;
  width: 100%;
  align-items: center;
}

.tabs-wrapper:has(.arrow-left:not(.hidden))::before,
.tabs-wrapper:has(.arrow-right:not(.hidden))::after {
  content: '';
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
  pointer-events: none;
  transition: 0.1s;
}

@media (min-width: 768px) {

  .tabs-wrapper:has(.arrow-left:not(.hidden))::before,
  .tabs-wrapper:has(.arrow-right:not(.hidden))::after {
    width: 65px;
  }
}

.tabs-wrapper:has(.arrow-left:not(.hidden))::before {
  left: 0;
}

.tabs-wrapper:has(.arrow-right:not(.hidden))::after {
  right: 0;
}

.tabs-row {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-behavior: smooth;
}

.tab-btn {
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  font-weight: var(--fw-semibold);
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .tab-btn {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-base);
  }
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 10;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.arrow:not(.hidden) {
  display: flex;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.img-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--border);
}

.truncate {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.category-pill {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  background-color: var(--bg);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
}

.view-all {
  display: inline-block;
  margin-top: var(--space-10);
  font-weight: var(--fw-bold);
  color: var(--royal);
  text-decoration: none;
  transition: color var(--transition);
}

.view-all:hover {
  color: var(--navy);
}

/* ==========================================================================
   Software comparison
   ========================================================================== */

.software-section .cmp-outer {
  position: relative;
  margin-bottom: var(--space-4);
}

.cmp-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cmp-viewport::-webkit-scrollbar {
  display: none;
}

.cmp-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.cmp-cell {
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.cmp-cell--label {
  text-align: left;
  font-weight: var(--fw-semibold);
  background: var(--white);
  font-size: var(--text-sm);
  position: sticky;
  left: 0;
  z-index: 2;
  width: 120px;
  min-width: 120px;
  border-right: 1px solid var(--border);
}

.cmp-row--head .cmp-cell {
  padding: var(--space-4) var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
}

.cmp-row--action .cmp-cell {
  border-bottom: none;
}

.cmp-logo {
  width: 40px;
  height: 40px;
  display: block;
}

.cmp-prod-name {
  font-weight: var(--fw-bold);
  color: var(--navy);
  font-size: var(--text-sm);
}

.cmp-stars-row {
  gap: 2px;
}

.cmp-score-num {
  font-weight: var(--fw-extrabold);
  color: var(--navy);
}

.cmp-price {
  font-weight: var(--fw-bold);
  color: var(--navy);
}

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

.cmp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.cmp-dot.active {
  background: var(--royal);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .cmp-cell--label {
    width: 150px;
    min-width: 150px;
    font-size: var(--text-base);
  }

  .cmp-cell {
    padding: var(--space-4);
  }

  .cmp-row--head .cmp-cell {
    padding: var(--space-6) var(--space-4) var(--space-5);
  }

  .cmp-logo {
    width: 48px;
    height: 48px;
  }

  .cmp-prod-name {
    font-size: inherit;
  }
}

/* ==========================================================================
   Categories & Team
   ========================================================================== */

.cat-icon-wrap {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .cat-icon-wrap {
    width: 54px;
    height: 54px;
  }
}

.team-section .team-li-link {
  position: absolute;
  right: var(--space-3);
  top: calc(-1 * var(--space-4));
}

.team-section .team-slider-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .team-section .team-slider-arrow {
    width: 40px;
    height: 40px;
  }
}

.team-section .team-slider-arrow--next {
  right: 0;
}

.team-section .team-slider-arrow:hover {
  color: var(--navy);
  border-color: rgba(11, 31, 58, 0.08);
  box-shadow: 0 1px 3px rgba(11, 31, 58, 0.06);
}

.team-section .team-slider-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ==========================================================================
   Featured logos
   ========================================================================== */

.featured-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      white 5%,
      white 95%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      white 5%,
      white 95%,
      transparent 100%);
}

@media (min-width: 768px) {
  .featured-track-wrap {
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        white 10%,
        white 90%,
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        white 10%,
        white 90%,
        transparent 100%);
  }
}

.featured-track {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  width: max-content;
  padding: var(--space-4) var(--space-4);
  animation: featuredScroll 32s linear infinite;
}

@media (min-width: 768px) {
  .featured-track {
    gap: var(--space-4);
    padding: var(--space-4) var(--space-8);
  }
}

.featured-track-wrap:hover .featured-track {
  animation-play-state: paused;
}

@keyframes featuredScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* .featured-logo-link {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
} */

.featured-card {
  /* width: 160px;
  height: 80px; */
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: var(--space-3) var(--space-4);
  perspective: 600px;
}

/* @media (min-width: 768px) {
  .featured-card {
    width: 200px;
    height: 100px;
    padding: var(--space-4) var(--space-5);
  }
} */

/* .featured-logo-img {
  display: block;
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
} */

/* @media (min-width: 768px) {
  .featured-logo-img {
    max-width: 160px;
    max-height: 60px;
  }
} */

.featured-logo-link:hover img {
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.featured-logo-link:hover img {
  transform: rotateY(360deg);
}

/* ==========================================================================
   Footer newsletter — mobile base, desktop at 576px+
   ========================================================================== */

.fnb-outer {
  position: relative;
  z-index: 10;
  margin-bottom: calc(-0.6 * 100px);
}

.site-footer {
  background: var(--navy);
  color: var(--white-88);
  padding-top: 80px;
}

@media (min-width: 768px) {
  .site-footer {
    padding-top: 100px;
  }
}

.site-footer p {
  font-size: 15px;
}

.site-footer a {
  color: var(--white-75);
}

.site-footer a:hover {
  color: var(--white);
}

.fnb-card {
  background: linear-gradient(120deg, var(--royal) 0%, var(--royal-hover) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
}

.fnb-card::after {
  content: '';
  position: absolute;
  right: 32%;
  top: -60%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 40px solid var(--white-08);
  pointer-events: none;
}

.fnb-heading {
  font-size: var(--text-xl);
}

.fnb-form {
  flex-direction: column;
  gap: var(--space-4);
  max-width: 100%;
}

.fnb-input {
  padding: var(--space-3) var(--space-8);
  border: none;
  font-size: inherit;
  outline: none;
  color: var(--text);
  line-height: 22px;
  background: var(--white);
}

.fnb-btn {
  padding: var(--space-3) var(--space-6);
  background: var(--navy);
  color: var(--white);
  border: none;
  position: static;
}

.fnb-btn:hover {
  background: var(--navy-light);
}

@media (min-width: 576px) {
  .fnb-card {
    flex-direction: row;
    align-items: center;
    padding: var(--space-12) var(--space-10);
  }

  .fnb-card::after {
    width: 260px;
    height: 260px;
    border-width: 50px;
  }

  .fnb-heading {
    font-size: var(--text-2xl);
  }

  .fnb-form {
    flex-direction: row;
    gap: 0;
  }

  .fnb-input {
    padding: 12px 186px 12px 30px;
  }

  .fnb-btn {
    position: absolute;
    right: 0;
    left: auto;
  }
}

.site-footer .custom-logo-link img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li:not(:last-of-type) {
  margin-bottom: var(--space-3);
}

.footer-contact-card {
  border: 1px solid var(--white-08);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  background-color: #ffffff08;
  padding: var(--space-4);
}

@media (min-width: 768px) {
  .footer-contact-card {
    padding: var(--space-5);
  }
}

.footer-bottom {
  border-top: 1px solid var(--white-08);
  padding: var(--space-4) 0;	
}
@media (min-width: 1024px) {
	.lg\:flex-row {
		flex-direction: row !important;
	}	
}
.expert-avatar {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expert-avatar img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.my-2 {
  margin-block: var(--space-2);
}
.lead-wizard-card hr {
  height: 10px;
  border: 1px solid var(--text-faint);
}

/* about page  */
.timeline {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	position: relative;
	padding-left: 2.5rem;
}

/* Vertical line */
.timeline::before {
	content: '';
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: #d0dce8;
	border-radius: 2px;
}

.timeline-item {
	position: relative;
}

/* Bullet point */
.timeline-item::before {
	content: '';
	position: absolute;
	left: -39px;
	top: 6px;
	width: 14px;
	height: 14px;
	background: #2b6ed7;
	border-radius: 50%;
	border: 3px solid #ffffff;
	box-shadow: 0 0 0 2px #2b6ed7;
	z-index: 1;
}

@media (min-width: 1024px) {
	.mission-wrapper {
		width: 840px;
	}
}

.icon-box {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: var(--bg);
}