[data-fr] { display:none; }
body.fr [data-en] { display:none; }
body.fr [data-fr] { display:revert; }
:root {
  --teal:       #19BAAC;
  --teal-deep:  #0d8f84;
  --teal-mid:   #12a89b;
  --teal-soft:  #e0f7f5;
  --teal-pale:  #f0fbfa;
  --navy:       #304263;
  --navy-deep:  #1e2d45;
  --navy-mid:   #3d5278;
  --navy-soft:  #eaecf2;
  --gray-icon:  #96989A;
  --mint:       #d6f5f1;
  --ocean:      #0a2540;
  --coral:      #ff6b5b;
  --gold:       #f5a623;
  --lavender:   #8b9fd4;
  --cream:      #fafaf8;
  --ink:        #111418;
  --smoke:      #6b7280;
  --mist:       #f3f4f6;
  --off-white: #F7FEFE;
  --teal-pale2: #C0EFEF;
  --border:     rgba(48,66,99,0.1);
  --border-teal: rgba(25,186,172,0.2);
  --grad-teal:  linear-gradient(135deg, #19BAAC 0%, #0d8f84 100%);
  --grad-navy:  linear-gradient(135deg, #304263 0%, #1e2d45 100%);
  --grad-hero:  linear-gradient(160deg, #f0fbfa 0%, #eaecf2 50%, #f0fbfa 100%);
  --grad-mesh:  radial-gradient(ellipse at 20% 50%, rgba(25,186,172,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(48,66,99,0.08) 0%, transparent 55%);
  --font-display: "Outfit", sans-serif;
  --font-body:    "Outfit", sans-serif;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
}
/* ── HERO ── */
.careers-hero {
    padding: 110px 2rem 50px;
    /*background: linear-gradient( 189deg, #0db8aa 0%, #e9e9e9 40%, #0ca8a6 100%);*/
    position: relative;
    overflow: hidden
}


.btn-primary {
  font-family:var(--font-body); 
  font-size:15px; 
  font-weight:600;
  padding:8px 28px; 
  border-radius:100px; 
  border:none;
  background:var(--grad-teal); 
  color:#fff; 
  cursor:pointer;
  text-decoration:none; 
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  transition:.25s;
  /*margin: 10px;*/
}
.btn-primary:hover { 
    transform:translateY(-2px); 
    box-shadow:0 10px 30px rgba(25,186,172,0.35); 
}
.btn-ghost {
  font-family:var(--font-body); 
  font-size:15px; 
  font-weight:500;
  padding:14px 26px; 
  border-radius:100px;
  border:1.5px solid var(--border); 
  background:#fff;
  color:var(--ink); 
  cursor:pointer; 
  text-decoration:none;
  display:inline-flex; 
  align-items:center; 
  gap:8px; 
  transition:.25s;
}
.btn-ghost:hover { 
    border-color:var(--teal); 
    color:var(--teal); 
}
.careers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 80%, rgba(25, 186, 172, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 20%, rgba(48, 66, 99, 0.3) 0%, transparent 50%);
    pointer-events: none
}

.careers-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(25, 186, 172, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 186, 172, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none
}

.careers-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    /*text-align: justify;*/
    position: relative;
    z-index: 1;
}
/* Hero: two-column layout */
.careers-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 10.5rem 2.2rem 4.5rem;
}
.careers-hero-inner {
  flex: 1;
}
.careers-hero-image {
  flex: 0 0 420px; /* adjust width to taste */
}
@media (max-width: 768px) {
  .careers-hero {
    flex-direction: column;
  }
  .careers-hero-image {
    flex: unset;
    width: 100%;
  }
}
.careers-hero {
  padding: 80px 0;
  overflow: hidden;
}
.careers-hero {
  padding: 80px 0 56px;
  /* min-height: 720px; */
  display: flex;
  border: 1px solid #5e636e1c;
  align-items: center;
  overflow: hidden;
}
/* text side */
.careers-hero-inner {
  position: relative;
  z-index: 2;
}
/* image wrapper */
.careers-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Mobile responsive */
@media (max-width: 991px) {
  .careers-hero {
      padding: 85px 1rem;
      min-height: auto;
      text-align: center;
  }

  .hero-banner-img {
      width: 100%;
      max-width: 100%;
      right: 0;
      margin-top: 40px;
  }
}
.careers-hero h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #161616;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 1.5rem
}
.careers-hero h1 em {
  font-style: normal;
  color: var(--teal)
}
.careers-hero p {
  font-size: 18px;
  color: rgb(76 75 75);
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 2rem;
}
/* Breadcrumb: its own section below */
.breadcrumb-bar {
  padding: 0.875rem 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.breadcrumb-bar .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-bar a,
.breadcrumb-bar span {
  font-size: inherit;      
  font-family: inherit;     
  font-weight: inherit;     
  line-height: inherit;
  color: inherit;           
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  text-decoration: underline;
}
.breadcrumb-bar .breadcrumb-sep {
  color: inherit;           
  opacity: 0.5;
}
.breadcrumb-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb-inner a {
  color: #1a1a2e;        
  text-decoration: none;
}
.breadcrumb-inner a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  color: #6b7280;        
  font-size: 13px;
}
.breadcrumb-inner span:last-child span {
  color: #6b7280;       
}
.breadcrumb a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: .2s;
}
.breadcrumb a:hover {
  color: var(--teal);
}
@media (max-width: 991px) {

    .breadcrumb-bar {
        padding: 12px 15px;
    }

    .breadcrumb-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        line-height: 1.5;
        word-break: break-word;
    }

    .breadcrumb-inner a,
    .breadcrumb-inner span {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .breadcrumb-sep {
        margin: 0 2px;
        flex-shrink: 0;
    }
}
@media (max-width: 576px) {

    .breadcrumb-bar {
        padding: 20px 15px;  
        min-height: 70px;     
        display: flex;
        align-items: center;
    }

    .breadcrumb-inner {
        font-size: 12px;
        gap: 4px;
    }
}

/* mega dropdown */
nav {
    position: sticky;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 999;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1.5px solid var(--teal-pale2);
    transition: box-shadow .3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 180, 180, .12)
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  padding-left:0 !important;
  color: var(--smoke);
}
.nav-links>li {
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 0px;
  padding-top: 15px;
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 10px
}
.overview-sec {
  padding: 35px 2rem;
}
.overview-inner {
  max-width: 1280px;
  margin: 0 auto
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem
}
.split:last-child {
  margin-bottom: 0
}
.split.reverse {
  direction: rtl
}
.split.reverse>* {
  direction: ltr
}
/* Split section */
.split-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.split-h {
  font:600 1.8rem var(--font-display);
  color:var(--ink);
  line-height:1.12;
  letter-spacing:-.02em;
  margin-bottom:1rem;
}
.split-h em { 
  color:var(--teal);
  font-style:normal; 
}
.split-p { 
  font-size:15.5px;
  color:var(--smoke);
  line-height:1.8;
  margin-bottom:1.75rem; 
  text-align: justify;
}   

/* Feature list */
.feat-checks { 
  display:flex;
  flex-direction:column;
  gap:.7rem;
  padding:0; 
  text-align: justify;
}
.fc-item { 
  display:flex;
  gap:10px;
  font-size:15px;
  color:var(--ink);
  line-height:1.55; 
}
.fc-dot {
  width:22px;
  height:22px;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  font:700 11px/1 var(--font-b);
  background:var(--teal-soft);
  border:1px solid var(--border-teal);
  color:var(--teal-deep);
  flex-shrink:0;
  margin-top:1px;
}
/* CTA */
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--teal-soft);
  border: 1px solid var(--border-teal);
  transition: .2s;
  margin-top: 0.2rem;
}
.split-cta:hover { 
  background:var(--teal);
  color:#fff;
  border-color:var(--teal); }
  
.split-visual img {
  width:100%;
  height:auto;
  border-radius:12px;
}




/* Split section */
.split-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.split-h {
  font:600 1.8rem var(--font-display);
  color:var(--ink);
  line-height:1.12;
  letter-spacing:-.02em;
  margin-bottom:1rem;
}
.split-h em { 
  color:var(--teal);
  font-style:normal; 
}
.split-p { 
  font-size:15.5px;
  color:var(--smoke);
  line-height:1.8;
  margin-bottom:1.75rem; 
  text-align: justify;
}
/* Feature list */
.feat-checks { 
  display:flex;
  flex-direction:column;
  gap:.7rem;
  padding:0; 
  text-align: justify;
}
.fc-item { 
  display:flex;
  gap:10px;
  font-size:15px;
  color:var(--ink);
  line-height:1.55; 
}
.fc-dot {
  width:22px;
  height:22px;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  font:700 11px/1 var(--font-b);
  background:var(--teal-soft);
  border:1px solid var(--border-teal);
  color:var(--teal-deep);
  flex-shrink:0;
  margin-top:1px;
}


/* Feature check list — card style */
.feat-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.fc-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.fc-dot {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8f8f0;       /* swap to your brand's light green */
  color: #1a9e60;             /* swap to your brand's green */
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.fc-title {
  font-size: 18px;
  font-weight: 600;
  color: #535556;             /* swap to your --heading-color */
  margin: 0 0 4px;
}

.fc-desc {
  font-size: 15px;
  color: #6b7280;             /* swap to your --text-muted */
  line-height: 1.65;
  margin: 0;
}

.hdr-axon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #0d9488, #0891b2, #6366f1, #0891b2, #0d9488);
  background-size: 300% 100%;
  animation: move-bg 8s infinite linear;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.hdr-axon:hover {
  transform: translateY(-1px);
}

.hdr-axon img,
.hdr-axon span {
  position: relative;
  z-index: 1;
}



/* slider wrapper */
.slider-sec {
  padding: 50px 0;
  background: #0db8aa0d;
  overflow: hidden
}
.slider-sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem
}
.slider-track-wrap {
  position: relative;
  margin-top: 3rem
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: flex-end;
  margin-bottom: 1.25rem
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: .2s;
  flex-shrink: 0
}
.slider-btn:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-deep)
}
.slider-counter {
  font-size: 13px;
  font-weight: 600;
  color: var(--smoke)
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
  will-change: transform
}
.slider-card {
  flex: 0 0 380px;
  /* background: #fff; */
  /* border: 1px solid var(--border); */
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: .3s;
  position: relative;
}
.slider-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-teal);
  transform: translateY(-5px)
}
.sc-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.sc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .15) 100%)
}
.sc-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  color: #fff;
  z-index: 1
}
.sc-new {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 1
}
.sc-body {
  padding: 1.5rem
}
.sc-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem
}
.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0
}
.sc-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--smoke)
}
.sc-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .65rem
}
.sc-desc {
  font-size: 13.5px;
  color: var(--smoke);
  line-height: 1.65;
  margin-bottom: 1.25rem
}
.sc-feats {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem
}
.sc-feat {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--mist);
  border: 1px solid var(--border);
  color: var(--smoke)
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}
.sc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: .2s
}
.sc-link:hover {
  gap: 8px;
  color: var(--teal)
}
.sc-users {
  font-size: 11px;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 4px
}
/* Pagination dots */
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1.5rem
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: .3s
}
.slider-dot.active {
  background: var(--teal);
  transform: scale(1.3)
}
#languageSwitcher {
  background: transparent;
  border: none;
  outline: none;
  color: #0a909f;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}
/* ── TEAM ── */
.team-sec {
  padding: 80px 2rem;
  background: var(--cream)
}
.team-inner {
  max-width: 1280px;
  margin: 0 auto
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(25, 186, 172, 0.1)
}
.team-card:hover::after {
  transform: scaleX(1)
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-display);
  border: 3px solid var(--teal-soft)
}
.team-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: #535556;
    margin-bottom: .25rem;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem
}
.team-bio {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.6
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--smoke);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: .2s
}
.team-linkedin:hover {
  color: var(--teal);
  border-color: var(--border-teal);
  background: var(--teal-pale)
}

/* ════════════════════════
   FAQ
════════════════════════ */
.faq-sec { 
    padding: 80px 2rem; 
    background:#fff; 
}
.faq-inner { 
    max-width:1280px; 
    margin:0 auto; 
    display:grid; 
    grid-template-columns:1fr 1.5fr; 
    gap:5rem; 
    align-items:start; 
}
.faq-list { 
    display:flex; 
    flex-direction:column; 
    gap:0; 
    /* margin-top:2rem;  */
}
.faq-item { 
    border-bottom:1px solid var(--border); 
    padding: 0 0 !important;
}
.faq-q {
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:1.1rem 0 !important;
  cursor:pointer !important;
  gap:1rem !important;
  font-size:15px !important;
  font-weight:600 !important;
  color:var(--ink) !important;
  transition:.2s !important;
  user-select:none !important;
}
.faq-q:hover { 
    color:var(--teal); 
}
.faq-icon {
  width:24px; 
  height:24px; border-radius:50%;
  border:1.5px solid var(--border); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--smoke); transition:.3s;
  font-style:normal;
}
.faq-item.open .faq-icon { background:var(--teal); border-color:var(--teal); color:#fff; transform:rotate(45deg); }
.faq-item.open .faq-q { color:var(--teal); }
.faq-a {
  font-size:14px; color:var(--smoke); line-height:1.7;
  max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s;
  padding:0 0 0 0;
}
.faq-item.open .faq-a { max-height:200px; padding:0 0 1rem; }


/* ════════════════════════
   SCROLL ANIMATIONS
════════════════════════ */

.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem
}
.sec-h {
  font-family: var(--font-display);
  /* font-size: clamp(2rem, 3.2vw, 2.8rem); */
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 1rem
}
.sec-h em {
  font-style: normal;
  color: var(--teal)
}
.sec-p {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 1rem;
}


/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 20, 36, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.modal-box {
  background: #fff;
  border-radius: 28px;
  width: 100%;
  max-width: 620px;
  position: relative;
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.25);
  transform: translateY(24px) scale(0.97);
  transition: .35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal-box {
  transform: none
}
/* Modal top bar */
.modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 1.5rem 1.75rem 0;
  position: sticky; */
  top: 0;
  background: #fff;
  z-index: 1;
  border-radius: 28px 28px 0 0;
}
.modal-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: 100px;
}
.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  transition: .2s;
  flex-shrink: 0;
}
.modal-close:hover {
  background: var(--mist);
  color: var(--ink)
}
.modal-body {
  padding: 1.25rem 1.75rem 1.75rem
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.025em;
  margin-bottom: .3rem;
  line-height: 1.2
}
.modal-title em {
  color: var(--teal);
  font-style: normal
}
.modal-subtitle {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 1.75rem;
  line-height: 1.5
}
/* Form sections */
.form-section {
  margin-bottom: 1.5rem
}
.form-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  display: block;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: .9rem
}
.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px
}
.form-field label .req {
  color: var(--teal);
  font-size: 15px;
  line-height: 1
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: .2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(25, 186, 172, .1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(107, 114, 128, .45)
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem
}
/* Phone field with flag prefix */
.phone-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: .2s;
  background: #fff
}
.phone-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(25, 186, 172, .1)
}
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  background: var(--mist);
  border-right: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-prefix span {
  font-size: 16px
}
.phone-input {
  flex: 1;
  border: none !important;
  outline: none;
  box-shadow: none !important;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 11px 14px;
  background: transparent
}
/* Resume file upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  background: var(--mist);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.fua-icon {
  font-size: 32px;
  margin-bottom: .6rem
}
.fua-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .25rem
}
.fua-sub {
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.5
}
.fua-types {
  display: inline-flex;
  gap: 5px;
  margin-top: .6rem;
  flex-wrap: wrap;
  justify-content: center
}
.fua-type {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--smoke)
}
.file-chosen {
  display: none;
  align-items: center;
  gap: 10px;
  padding: .75rem 1rem;
  background: var(--teal-pale);
  border: 1.5px solid var(--border-teal);
  border-radius: var(--r-md);
  margin-top: .6rem;
}
.file-chosen.show {
  display: flex
}
.fc-ico {
  font-size: 20px;
  flex-shrink: 0
}
.fc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.fc-remove {
  font-size: 11px;
  font-weight: 700;
  color: var(--smoke);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  white-space: nowrap;
  transition: .15s
}

.fc-remove:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral)
}

/* Submit button */
.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  border: none;
  background: var(--grad-teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: .5s
}

.form-submit:hover::before {
  transform: translateX(100%)
}

.form-submit:hover {
  box-shadow: 0 10px 32px rgba(25, 186, 172, .4);
  transform: translateY(-1px)
}

.modal-note {
  font-size: 11px;
  color: var(--smoke);
  text-align: center;
  margin-top: .85rem;
  line-height: 1.5
}

/* Success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 3rem 1.75rem
}

.modal-success.show {
  display: block
}

.ms-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--teal-soft);
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  animation: popIn .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

@media(max-width:1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr
  }

  .life-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .foot-main {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .hdr-nav {
    display: none
  }

  .roles-list {
    grid-template-columns: 1fr
  }

  .process-steps {
    grid-template-columns: 1fr 1fr
  }

  .process-steps::before {
    display: none
  }

  .why-grid,
  .benefits-grid {
    grid-template-columns: 1fr
  }

  .foot-main {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}
/* features */
.mini-dash {
  background:var(--navy-deep); border-radius:var(--r-lg);
  padding:1rem; overflow:hidden;
}
.mini-topbar {
  display:flex; justify-content:space-between; align-items:center; margin-bottom:10px;
}
.mini-title { font-size:11px; font-weight:600; color:rgba(255,255,255,.8); }
.mini-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:10px; }
.mini-card { background:rgba(255,255,255,.06); border-radius:8px; padding:8px; text-align:center; }
.mini-val { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--teal); }
.mini-lbl { font-size:9px; color:rgba(255,255,255,.4); margin-top:2px; }
.mini-bar-row { display:flex; align-items:center; gap:8px; margin-bottom:5px; }
.mini-bar-lbl { font-size:9px; color:rgba(255,255,255,.5); width:50px; flex-shrink:0; }
.mini-bar-track { flex:1; height:5px; background:rgba(255,255,255,.08); border-radius:100px; overflow:hidden; }
.mini-bar-fill { height:100%; background:var(--grad-teal); border-radius:100px; }
.mini-num { font-size:9px; color:var(--teal); width:28px; text-align:right; flex-shrink:0; }

nav.breadcrumb-bar{
    justify-content: center;
}


@media (max-width:768px){
    .ai-copilot-btn{
        position:fixed;
        right:20px;
        bottom:20px;
        width:60px;
        height:60px;
        padding:0;
        border-radius:50%;
        background:#00b4db;
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:9999;
        box-shadow:0 10px 25px rgba(0,0,0,.3);
    }

    .copilot-text{
        display:none;
    }

    .ai-copilot-btn img{
        width:30px !important;
    }
}

/* Desktop */
.ai-copilot-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Floating Button */
@media (max-width: 768px) {

    .ai-copilot-btn{
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        padding: 12px 16px;
        background: linear-gradient(135deg,#00b4db,#0083b0);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 8px 20px rgba(0,0,0,.25);

        animation: floatBtn 2s ease-in-out infinite;
    }

    .ai-copilot-btn img{
        width:24px !important;
        height:24px;
    }

    .copilot-text{
        display:inline-block;
        font-size:14px;
        font-weight:600;        white-space: nowrap;
    }
}

@keyframes floatBtn{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* Hide on desktop */
.mobile-ai-btn{
    display:none;
}

@media (max-width:768px){

    /* Hide navbar AI button */
    .nav-r .ai-copilot-btn{
        display:none !important;
    }

    /* Floating AI button */
    .mobile-ai-btn{
        display:flex;
        position:fixed;
        right:15px;
        bottom:20px;
        width:60px;
        height:60px;
        background:#0d6efd;
        border-radius:50%;
        justify-content:center;
        align-items:center;
        z-index:99999;
        box-shadow:0 8px 20px rgba(0,0,0,.3);
    }

    .mobile-ai-btn img{
        width:30px;
        height:30px;
    }
}

/* Hide by default (Desktop) */
.mobile-ai-btn{
    display: none;
}

/* Show only on Mobile */
@media (max-width: 768px){
    .mobile-ai-btn{
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0d6efd;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 8px 20px rgba(0,0,0,.3);
    }

    .mobile-ai-btn img{
        width: 30px;
        height: 30px;
    }
}

.procedures-sec { padding: 96px 0; background: #fff; }
 
    .proc-card {
      background: var(--off-white); border: 1.5px solid var(--gray-200);
      border-radius: 16px; padding: 22px 20px;
      display: flex; align-items: flex-start; gap: 14px;
      transition: all .25s; height: 100%;
    }
    .proc-card:hover {
      background: var(--teal-pale); border-color: var(--teal-pale2);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,180,180,.1);
    }
    .proc-num {
      width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
      background: var(--teal-pale2); color: var(--teal-dark);
      display: grid; place-items: center;
      font-size: .78rem; font-weight: 800;
    }
    .proc-title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .proc-desc  { font-size: .8rem; color: var(--text-mid); line-height: 1.6; font-weight: 400; }