/* ─── tokens ──────────────────────────────────────────────── */
:root {
  --blue:         #192A3D;
  --f-blue:         #012853;
  --blue-light:   #0c92d4;
  --pink:         #E2B26A;
  --pink-soft:    #FFDFAE;
  --pink-bg:      #F8FBFF;
  --sky-bg:       #f6fcff;
  --dark:         #232021;
  --black:        #090909;
  --white:        #ffffff;
  --border:       #e4e4e4;
  --pink-light:   #FFF2DF;
  --max:          1200px;
  --r:            24px;
  --pill:         100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Montserrat", sans-serif; color: var(--dark); line-height: 1.6; background: var(--white); }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* ─── buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 2rem; border-radius: var(--pill); font-weight: 700;
  font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; cursor: pointer; transition: transform .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.btn-pink    { background: var(--pink); color:#FFFFFF;  }
.btn-blue    { background: var(--blue);  color: var(--pink); }
.btn-outline { background: var(--pink); color:#FFFFFF;   }
.btn-full    { width: 100%; margin-top: .25rem; }

/* ─── typography helpers ──────────────────────────────────── */
.section-title {
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: .9rem;
}
.section-subtitle { font-size: 1rem; font-weight: 500; color: #444; max-width: 52rem; }
.why .section-title { color: var(--dark); }

/* ═══ HEADER ═══════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: .65rem 0;
  min-height: 40px;
}
.header-inner--client {
  grid-template-columns: 1fr auto;
}
.header-inner--no-nav {
  grid-template-columns: 1fr auto;
}
.header-inner--home {
  grid-template-columns: auto 1fr auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: 43px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}
.nav  { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.nav a { font-size: .82rem; font-weight: 600; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
.nav a:hover { opacity: .7; }
.header-toolbar { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-actions { display: flex; gap: .75rem; flex-shrink: 0; align-items: center; }
.header-actions .btn { padding: .7rem 1.4rem; font-size: .78rem; }
.header-logout-form { display: inline-flex; margin: 0; }
.header-logout-form .btn { cursor: pointer; }
.header-actions .btn-pink.is-active,
.header-actions .btn-outline.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

body.nav-open { overflow: hidden; }

#home,
#about,
#services,
#process,
#reviews,
#contact,
#safety,
#faq {
  scroll-margin-top: 88px;
}

/* ═══ HERO ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  left: clamp(0.5rem, 3.85vw, 74px);
  top: 0;
  width: min(1072px, 55.8%);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.hero-deco-soft {
  position: absolute;
  left: clamp(1.5rem, 20.3vw, 390px);
  top: clamp(12rem, 26.1vw, 502px);
  width: clamp(56px, 6.48vw, 124px);
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin-inline: auto;
  padding-left: clamp(1rem, 8.85vw, 170px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 40.625vw, 780px);
  align-items: stretch;
  min-height: clamp(520px, 47.8vw, 918px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 9.4vw, 180px) clamp(1rem, 4vw, 80px) clamp(2rem, 4vw, 3rem) 0;
  max-width: 891px;
}

.hero h1 {
  font-size: clamp(1.75rem, 2.65vw, 3.125rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 890px;
  margin-bottom: clamp(1rem, 1.9vw, 36px);
}

.hero-title-line {
  display: block;
}

.hero p {
  font-size: clamp(0.95rem, 1.04vw, 1.25rem);
  /* font-weight: 600; */
  line-height: 1.5;
  max-width: 822px;
  margin-bottom: clamp(1.25rem, 2.5vw, 90px);
  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: clamp(0.75rem, 2.5vw, 48px);
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 7.3vw, 56px);
}

.hero-buttons .btn {
  font-size: clamp(0.9rem, 1.25vw, 1.5rem);
  padding: clamp(0.85rem, 1.3vw, 25px) clamp(1.25rem, 1.82vw, 35px);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  width: 100%;
  max-width: 821px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  flex: 1 1 0;
}

.stat-icon {
  display: block;
  height: clamp(48px, 3.98vw, 76px);
  width: auto;
  max-width: clamp(52px, 4.1vw, 78px);
  object-fit: contain;
  margin-bottom: clamp(0.35rem, 0.5vw, 10px);
  flex-shrink: 0;
}

.stat-text {
  font-size: clamp(0.8rem, 1.27vw, 1.53rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-visual {
  position: relative;
  min-height: clamp(320px, 47.8vw, 918px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

/* ═══ WHY CHOOSE ════════════════════════════════════════════ */
.why { padding: 2rem 0; background: var(--pink-bg); }

.why-header {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}
.why-header .section-subtitle { margin-inline: auto; }
.why-header .section-title { max-width: 712px; margin-inline: auto; }

/* Figma diagram canvas: 1920 × 770 (y-offset 280 from section) */
.why-visual {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 1920 / 770;
}

.why-bg {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 108%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.why-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.why-center-image {
  position: absolute;
  left: 38.33%;
  top: 19.61%;
  width: 21.82%;
  height: auto;
  border-radius: var(--r);
  z-index: 3;
}

.why-pill {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  padding: .6rem 1rem;
  border-radius: var(--r);
  font-weight: 500;
  font-size: clamp(.65rem, 1.6vw, 1.35rem);
  text-align: center;
  z-index: 4;
  width: 24.07%;
  min-height: 9.2%;
  line-height: 1.2;
}

/* Exact Figma positions (layout_C855O0, y − 280) */
.why-pill--verified      { left: 38.44%; top:  6.23%; }
.why-pill--trained       { left: 38.44%; top: 87.01%; }
.why-pill--multicultural { left: 64.43%; top: 28.88%; }
.why-pill--multilingual  { left: 64.43%; top: 57.44%; }
.why-pill--easy          { left: 12.29%; top: 28.74%; }
.why-pill--priority      { left: 12.29%; top: 58.44%; }

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

@media (max-width: 900px) {
  .why-visual {
    aspect-ratio: auto;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: .75rem;
    padding: 1rem 0;
  }
  .why-bg,
  .why-arrows { display: none; }
  .why-center-image {
    position: static;
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(260px, 70%);
    margin: 0 auto;
    justify-self: center;
  }
  .why-pill {
    position: static;
    top: auto !important;
    left: auto !important;
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    font-size: .78rem;
    padding: .65rem .5rem;
    justify-self: stretch;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .why-pill--verified,
  .why-pill--trained,
  .why-pill--multicultural,
  .why-pill--multilingual,
  .why-pill--easy,
  .why-pill--priority {
    top: auto !important;
    left: auto !important;
    width: auto;
    min-height: auto;
  }
  .why-pill--verified { grid-column: 1; grid-row: 2; }
  .why-pill--trained { grid-column: 2; grid-row: 2; }
  .why-pill--multicultural { grid-column: 1; grid-row: 3; }
  .why-pill--multilingual { grid-column: 2; grid-row: 3; }
  .why-pill--easy { grid-column: 1; grid-row: 4; }
  .why-pill--priority { grid-column: 2; grid-row: 4; }
}

/* ═══ SERVICES ══════════════════════════════════════════════ */
.services {
  position: relative;
  padding: 4rem 0 2rem;
  background: #FFFFFF;
  overflow: hidden;
}

/* Figma decorative bg: x=311, w=1369 in 1920px frame */
.services-bg {
  position: absolute;
  left: clamp(0.5rem, 16.2%, 311px);
  top: 14%;
  width: min(1369px, 71.3%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* Figma content margin: 241px each side, max content 1438px */
.services-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 12.55%, 241px);
}

.services-inner {
  max-width: 1438px;
  margin-inline: auto;
}

.services-header { text-align: center; margin-bottom: 2.5rem; }
.services-header .section-title { max-width: 654px; margin-inline: auto; }
.services-header .section-subtitle { margin-inline: auto; max-width: 938px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: stretch;
}

.service-cards--row2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.4%;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--pink-bg);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-header {
  background: var(--pink-soft);
  height: 78px;
  min-height: 78px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: var(--dark);
  text-align: center;
  border-radius: var(--r) var(--r) 0 0;
  flex-shrink: 0;
  line-height: 1.15;
}

.service-card-body {
  background: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  box-sizing: border-box;
}

.service-card-img {
  width: 61.02%;
  max-width: none;
  height: auto;
  aspect-ratio: 288 / 230;
  object-fit: cover;
  border-radius: 17.59px;
  box-shadow: none;
}

.service-card-footer {
  background: var(--pink-soft);
  height: 79px;
  min-height: 79px;
  padding: 14px 0.75rem 0;
  text-align: center;
  flex-shrink: 0;
  border-radius: 0 0 var(--r) var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.service-card-preview {
  width: 100%;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.25rem;
}

.read-more-btn {
  display: inline-block;
  color: var(--blue);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.read-more-btn:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-cards--row2 {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .services-bg { opacity: 0.6; width: 90%; left: 5%; }
}

@media (max-width: 600px) {
  .service-cards,
  .service-cards--row2 { grid-template-columns: 1fr; }
  .service-card-preview { white-space: normal; }
  .services-bg { display: none; }
}

/* ── POPUP (Read More modal) ────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.55);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r);
  max-width: 560px; width: 100%;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  animation: popIn .22s ease;
}
@keyframes popIn { from { opacity:0; transform: scale(.95); } to { opacity:1; transform: scale(1); } }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.18); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white); font-size: 1.2rem; line-height: 1;
}
.popup-close:hover { background: rgba(255,255,255,.32); }
.popup-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.popup-body  { font-size: .97rem; font-weight: 500; line-height: 1.75; opacity: .95; }

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

/* ═══ PROCESS ═══════════════════════════════════════════════ */
.process {
  position: relative;
  padding: 3rem 0 2rem;
  background: var(--pink-bg);
  overflow: hidden;
}

/* Figma decorative bg: x=311, w=1369 in 1920px frame */
.process-bg {
  position: absolute;
  left: clamp(0.5rem, 16.2%, 311px);
  top: 3.4%;
  width: min(1369px, 71.3%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* Figma content margin: 240px each side, max content 1440px */
.process-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 12.5%, 240px);
}

.process-inner {
  max-width: 1440px;
  margin-inline: auto;
}

.process-header {
  text-align: center;
  max-width: 832px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.process-header .section-subtitle {
  margin-inline: auto;
  max-width: 832px;
}

.process-header .section-title {
  max-width: 385px;
  margin-inline: auto;
}

/* Figma: 4 step images in a row on desktop, stacked on mobile */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  align-items: start;
}

.step-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.step {
  position: relative;
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 2.75rem clamp(1.5rem, 3.6vw, 3.25rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: var(--pink-bg);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.step-icon {
  width: 135px;
  max-width: 20%;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step h3 {
  font-size: clamp(1.05rem, 1.65vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.step p {
  font-size: clamp(0.8rem, 1vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
  max-width: 585px;
  width: 100%;
}

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

.btn-process {
  background: var(--pink);
  color: #FFFFFF;
  padding: 1.1rem 2.2rem;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .step-image { max-width: min(100%, 399px); }
  .process-bg {
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    opacity: .6;
  }
}

/* ═══ SAFETY ════════════════════════════════════════════════ */
.safety {
  position: relative;
  padding: 3rem 0 2rem;
  background: #FFFFFF;
  overflow: hidden;
}

.safety-bg {
  position: absolute;
  left: clamp(0.5rem, 14.3%, 275px);
  top: 2.8%;
  width: min(1369px, 71.3%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.safety-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 12.55%, 241px);
}

.safety-inner {
  max-width: 1438px;
  margin-inline: auto;
}

.safety-header {
  text-align: center;
  max-width: 1220px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.safety-header .section-subtitle {
  margin-inline: auto;
  max-width: 1220px;
}

.safety-header .section-title {
  max-width: 499px;
  margin-inline: auto;
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 771fr) minmax(0, 585fr);
  gap: clamp(1.5rem, 3.5vw, 37px);
  align-items: start;
  margin-bottom: 2.5rem;
}

.safety-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safety-item {
  background: var(--pink-soft);
  border-radius: 18px;
  overflow: hidden;
}

.safety-trigger {
  width: 100%;
  min-height: 50px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 1rem .55rem 2.4rem;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.safety-item.open .safety-trigger {
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.safety-icon {
  width: 34px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.safety-trigger-text {
  flex: 1;
  font-weight: 600;
  font-size: clamp(.95rem, 1.2vw, 1.35rem);
  color: var(--black);
  line-height: 1.2;
}

.safety-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-right: .35rem;
}

.safety-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}

.safety-item.open .safety-arrow::before {
  transform: rotate(225deg) translateY(2px);
}

.safety-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease, padding .3s ease;
  padding: 0 1rem 0 3.3rem;
}

.safety-body > p {
  min-height: 0;
  overflow: hidden;
}

.safety-item.open .safety-body {
  grid-template-rows: 1fr;
  padding: .35rem 1rem 1rem 3.3rem;
}

.safety-body p {
  font-size: .9rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  max-width: 575px;
}

.safety-image img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

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

.btn-safety {
  background: var(--f-blue);
  color: #FFFFFF;
  padding: 1.1rem 2.2rem;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ═══ TESTIMONIALS ══════════════════════════════════════════ */
.testimonials {
  position: relative;
  padding: 3rem 0 2rem;
  background: var(--pink-bg);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  left: clamp(0.5rem, 16.8%, 323px);
  top: 0;
  width: min(1361px, 70.9%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.testimonials-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 12.5%, 240px);
}

.testimonials-inner {
  max-width: 1440px;
  margin-inline: auto;
}

.testimonials-header {
  text-align: center;
  max-width: 948px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.testimonials-header .section-title {
  max-width: 440px;
  margin-inline: auto;
}

.testimonials-header .section-subtitle {
  margin-inline: auto;
}

.testimonials-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.testimonial-track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 38px);
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(1rem, 6vw, 2rem) .25rem;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 min(702px, 86%);
  scroll-snap-align: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 17px;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 2vw, 2rem);
  min-height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

@media (min-width: 1100px) {
  .testimonial-card {
    flex-basis: calc(50% - 19px);
    scroll-snap-align: start;
  }
}

.t-quote {
  font-size: clamp(.9rem, 1.1vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: justify;
  margin: 0 0 1.25rem;
  font-style: normal;
}

.t-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.t-name {
  font-weight: 600;
  font-size: clamp(.85rem, 1vw, 1.125rem);
}

.t-stars {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: .12em;
  flex-shrink: 0;
  line-height: 1;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.t-dot {
  width: 27px;
  height: 27px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 106, 163, .25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.t-dot.active {
  background: var(--blue);
}

.t-dot:hover { transform: scale(1.08); }

/* ═══ TRUST ═════════════════════════════════════════════════ */
.trust {
  position: relative;
  background: var(--sky-bg);
  padding: 0;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  left: clamp(0.5rem, 14.7%, 283px);
  top: 4%;
  width: min(1361px, 70.9%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* Figma bg height 267px: top 80px + items 107px + bottom 80px */
.trust-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-top: clamp(1.5rem, 4.17vw, 80px);
  padding-bottom: clamp(1.25rem, 4.17vw, 80px);
  padding-left: clamp(1rem, 12.03%, 423px);
  padding-right: clamp(1rem, 12.83%, 400px);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  width: 100%;
  max-width: 1097px;
  min-height: 107px;
}

.trust-item {
  flex: 1 1 0;
  min-width: 0;
  max-height: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.trust-icon {
  width: auto;
  height: 58px;
  max-width: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

/* ═══ FAQ ══════════════════════════════════════════════════ */
.faq {
  background: #FFFFFF;
  padding: 3rem 0 2rem;
}

.faq-wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.2vw, 1.5rem);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-question {
  flex: 1;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.faq-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}

.faq-item.open .faq-chevron::before {
  transform: rotate(225deg) translateY(2px);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 clamp(1.1rem, 2.2vw, 1.5rem);
}

.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 clamp(1.1rem, 2.2vw, 1.5rem) clamp(1rem, 2vw, 1.35rem);
}

.faq-body p {
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 400;
  color: #444;
  line-height: 1.55;
}

/* ═══ CONTACT ═══════════════════════════════════════════════ */
.contact {
  position: relative;
  background: var(--pink-bg);
  padding: 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  left: clamp(0.5rem, 16.1%, 309px);
  top: 0;
  width: min(1369px, 71.3%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-inline: auto;
  padding-top: clamp(3rem, 4.17vw, 80px);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  padding-left: clamp(1rem, 12.7604vw, 245px);
  padding-right: clamp(1rem, 13.5417vw, 260px);
}

.contact-inner {
  width: 100%;
  max-width: 1415px;
  margin-inline: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.contact-header .section-title {
  max-width: 619px;
  margin-inline: auto;
}

.contact-header .section-subtitle {
  max-width: 938px;
  margin-inline: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 600fr) minmax(0, 784fr);
  gap: clamp(16px, 1.61vw, 31px);
  align-items: stretch;
  width: 100%;
}

.contact-visual {
  width: 100%;
  max-width: none;
  margin-top: clamp(20px, 2.24vw, 43px);
  min-height: 0;
  align-self: stretch;
  display: flex;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
  /* transform: scaleX(-1); */
}

.contact-form {
  width: 100%;
  max-width: 720px;
  justify-self: end;
  margin-top: clamp(20px, 2.24vw, 43px);
  padding: clamp(28px, 2.7vw, 52px) clamp(18px, 1.88vw, 36px) clamp(22px, 1.88vw, 36px);
  border: 1px solid #192A3D;
  border-radius: 18px;
  background: transparent;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.4vw, 26px);
  width: 100%;
  margin-bottom: clamp(14px, 1.1vw, 22px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.47vw, 9px);
  width: 100%;
  margin-bottom: clamp(14px, 1.1vw, 22px);
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field-label {
  font-size: clamp(0.9rem, 0.94vw, 1.125rem);
  font-weight: 400;
  color: var(--blue);
  padding-left: clamp(10px, 0.94vw, 18px);
  line-height: 1.2;
}

.form-field input {
  width: 100%;
  height: clamp(40px, 2.34vw, 46px);
  padding: 0 clamp(10px, 0.94vw, 18px);
  border: none;
  border-radius: 14px;
  background: #FFF2DF;
  color: var(--blue);
  font-family: inherit;
  font-size: clamp(0.8125rem, 0.8vw, 0.9375rem);
  font-weight: 300;
}

.form-field input::placeholder {
  color: var(--blue);
  font-weight: 300;
  opacity: 0.9;
}

.form-field input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(290px, 100%);
  height: clamp(48px, 2.97vw, 58px);
  margin: clamp(24px, 2.08vw, 40px) auto 0;
  padding: 0 clamp(20px, 1.88vw, 36px);
  background: #012853;
  color: #FFFFFF;
  border: none;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: clamp(0.9rem, 0.94vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ═══ FOOTER ════════════════════════════════════════════════ */
.footer {
  background: var(--f-blue);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  font-family: "Rubik", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

.footer-brand {
  max-width: 22rem;
}

.footer-logo-link {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 0;
  text-align: center;
}

.footer-logo-img {
  height: auto;
  width: auto;
  max-width: 160px;
  max-height: 72px;
  object-fit: contain;
  margin-inline: auto;
}

.footer-about {
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 1.25rem;
}

.footer-brand-note {
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1rem;
  max-width: 20rem;
  text-align: center;
  margin-inline: auto;
}

.footer-certs {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.footer-cert-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: .55rem;
}

.footer-links a {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .88);
  line-height: 1.45;
  transition: color .2s, opacity .2s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .85rem;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .88);
  transition: color .2s;
}

.footer-contact-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--white);
}

.footer-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--f-blue);
  transition: transform .2s, box-shadow .2s;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .83rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
}

/* ═══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner, .safety-grid { grid-template-columns: 1fr; }
  .hero-wrap { padding-inline: clamp(1rem, 5vw, 2rem); }
  .hero-inner { min-height: auto; }
  .hero-content {
    padding: 2.5rem 0 1.5rem;
    max-width: none;
  }
  .hero-visual {
    order: -1;
    min-height: 280px;
    max-height: 360px;
  }
  .hero-deco {
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    opacity: 0.45;
  }
  .hero-deco-soft { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    max-width: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: .5rem 0;
    gap: .75rem;
  }
  .header .container {
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .header-inner--home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }
  .header-inner--home .logo {
    flex-shrink: 0;
  }
  .header-inner--home .header-toolbar {
    flex-shrink: 0;
    margin-left: auto;
  }
  .header-inner--home .nav {
    position: fixed;
    top: var(--header-height, 64px);
    left: 0;
    right: 0;
    z-index: 199;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    max-height: calc(100vh - var(--header-height, 64px));
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .header-inner--home .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-inner--home .nav a {
    display: block;
    padding: .9rem 1.25rem;
    font-size: .85rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    white-space: normal;
  }
  .header-inner--home .nav a:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 198;
    background: rgba(9, 9, 9, .45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-toolbar {
    gap: .5rem;
    margin-right: max(.5rem, env(safe-area-inset-right, 0px));
  }
  .header-actions {
    gap: .45rem;
  }
  .header-actions .btn {
    padding: .55rem .75rem;
    font-size: .66rem;
    letter-spacing: .04em;
  }
  .logo-img {
    height: 44px;
    max-width: 120px;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-visual {
    margin-top: 0;
    max-height: 420px;
  }
  .contact-form {
    justify-self: center;
    max-width: 480px;
    margin-top: 0;
  }
  .contact-bg {
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    opacity: 0.55;
  }
  .safety-bg,
  .testimonials-bg,
  .trust-bg {
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    opacity: .55;
  }
  .safety-trigger {
    padding: .65rem 1rem .65rem 1.25rem;
    align-items: flex-start;
  }
  .safety-trigger-text {
    line-height: 1.35;
  }
  .safety-body,
  .safety-item.open .safety-body {
    padding-left: 1.25rem;
    padding-right: 1rem;
  }
  .safety-body p {
    max-width: none;
  }
  .testimonial-card { min-height: auto; }
  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.75rem;
    max-width: none;
  }
  .trust-wrap {
    padding-left: clamp(1rem, 6vw, 2rem);
    padding-right: clamp(1rem, 6vw, 2rem);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .trust-items {
    min-height: auto;
  }
  .trust-item {
    max-height: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .trust-item {
    flex: 1 1 calc(33.33% - 1.5rem);
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-field { margin-bottom: 1.5rem; }
  .contact-form { padding: 2.5rem 1.5rem 2rem; }
  .trust-item { flex: 1 1 calc(50% - 1rem); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* -- OTP field --------------------------------------- */
.cf-otp-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  font-size: .85rem;
}
#cf-otp-timer {
  color: #666;
}
#cf-resend-link {
  color: var(--pink, #e91e8c);
  font-weight: 600;
  text-decoration: none;
}
#cf-resend-link:hover { text-decoration: underline; }

.cf-message {
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .75rem;
}
.cf-message--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.cf-message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.cf-message--warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

/* ═══ CLIENT LOGIN PAGE ═══════════════════════════════════ */
.cl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc((100vh - 72px) * 0.8);
}
.cl-visual {
  position: relative;
  overflow: hidden;
  background: #e8f0f8;
}
.cl-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cl-panel {
  background: var(--f-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.cl-box {
  width: 100%;
  max-width: 420px;
  border: 2px solid var(--blue-light);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
}
.cl-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cl-field {
  position: relative;
  margin-bottom: 1.25rem;
}
.cl-field-icon {
  position: absolute;
  left: 1rem;
  top: 38%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--blue);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  outline: none;
  transition: box-shadow .2s;
}
.cl-input::placeholder {
  color: rgba(25, 42, 61, .55);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cl-input:focus {
  box-shadow: 0 0 0 2px rgba(12, 146, 212, .45);
}
.cl-input.error {
  box-shadow: 0 0 0 2px #dc3545;
}
.cl-input:read-only {
  opacity: .85;
}
.cl-otp-wrap {
  display: none;
}
.cl-otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  min-height: 20px;
}
.cl-timer {
  font-size: .75rem;
  color: rgba(255, 255, 255, .75);
}
.cl-resend {
  font-size: .75rem;
  color: var(--pink-soft);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: none;
  text-decoration: underline;
}
.cl-msg {
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  margin-bottom: 1rem;
  display: none;
}
.cl-msg.success { background: #d4edda; color: #155724; }
.cl-msg.error   { background: #f8d7da; color: #721c24; }
.cl-msg.info    { background: #cce5ff; color: #004085; }
.cl-submit {
  width: 100%;
  margin-top: .5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--pill);
  background: var(--pink);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
}
.cl-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}
.cl-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.cl-register {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .8);
}
.cl-register a {
  color: var(--pink-soft);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cl-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cl-visual {
    min-height: 224px;
    max-height: 288px;
  }
  .cl-panel {
    padding: 2.5rem 1.25rem 3rem;
  }
  .cl-box {
    padding: 2rem 1.5rem 1.75rem;
  }
}
