:root {
  --teal: #10b0a8;
  --navy: #232b66;
  --navy2: #2a3173;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .78);
  --accent: #f08a2a;
  --accent2: #f3a04f;
  --green: #1bb6a7;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, Arial
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

/* TOP BAR */
.topbar {
  background: var(--teal);
  color: #fff;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
}

.topbar__item img {
  width: 14px;
  height: 14px
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .95
}

.topbar__social img {
  height: 12px
}

.topbar__divider {
  opacity: .65
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 44px);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 50% 55%, rgba(255, 255, 255, .06), transparent 65%),
    radial-gradient(600px 450px at 50% 80%, rgba(255, 80, 120, .10), transparent 60%);
  pointer-events: none;
}

/* Decorative vectors */
.vec {
  position: absolute;
  pointer-events: none;
  opacity: .95
}

.vec--tri1 {
  left: 38px;
  top: 192px;
  width: 49px;
}

.vec--tri2 {
  left: 18px;
  top: 210px;
  width: 44px;
  opacity: .85
}

.vec--shape {
  left: 22px;
  top: 520px;
  width: 54px;
  opacity: .85
}

/* NAV */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 10px;
}

.nav__brand {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  /* width:210px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav__brand img {
  height: 34px;
  width: auto
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.nav__link.active {
  color: var(--green)
}

.nav__cta {
  margin-left: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.nav__ctaIcon {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #222;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav__toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  opacity: .9;
}

/* HERO CONTENT */
.hero__content {
  position: relative;
  text-align: center;
  /* padding:60px 0 40px; */
}

.hero__kicker {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  letter-spacing: .16em;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a6ff67;
  display: inline-block;
  opacity: .9;
}

.hero__title {
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
  font-size: 54px;
  max-width: 820px;
}

.hero__title span {
  color: var(--green)
}

.searchbar {
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.searchbar__field {
  height: 40px;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: rgba(0, 0, 0, .10);
}

.searchbar__icon {
  opacity: .85
}

.searchbar__field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.searchbar__field input::placeholder {
  color: rgba(255, 255, 255, .55)
}

.searchbar__btn {
  height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.searchbar__btn:hover {
  filter: brightness(.98)
}

.hero__ctaRow {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero__btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.hero__btnIcon {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #222;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* Curved arrow (simple CSS) */
/* .hero__arrow{
  width:80px;
  height:34px;
  border:2px solid rgba(255,255,255,.70);
  border-color:rgba(255,255,255,.70) transparent transparent transparent;
  border-radius:60%/100%;
  transform:rotate(-12deg);
  position:relative;
  margin-left:2px;
  opacity:.9;
} */
.hero__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, .70);
  border-bottom: 2px solid rgba(255, 255, 255, .70);
  transform: rotate(-45deg);
}

/* PEOPLE IMAGE */
.hero__people {
  position: relative;
  width: min(860px, 96%);
  margin: 40px auto 0;
  display: grid;
  place-items: center;
}

.hero__glow {
  position: absolute;
  inset: auto;
  width: min(720px, 90%);
  transform: translateY(8px);
  opacity: 1;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .28));
}

.hero__img {
  position: relative;
  width: min(900px, 100%);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .38));
}

/* BRAND STRIP – STATIC */
.brand-strip {
  background: linear-gradient(90deg,
      #12b0a8 0%,
      #12b0a8 75%,
      #12b0a8 100%);
  padding: 18px 0;
}

.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand-strip img {
  height: 22px;
  width: auto;
  opacity: .95;
}

/* ABOUT SECTION */
.about {
  background: #fff;
  padding: 70px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT COLLAGE */
.about__left {
  position: relative;
  min-height: 420px;
}

.about__card {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  background: #fff;
}

.about__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* main big */
.about__card--big {
  right: 0;
  top: 0;
  width: 360px;
  height: 330px;
  border-radius: 26px;
}

/* small meeting (left middle) */
.about__card--small {
  left: 0;
  top: 130px;
  width: 260px;
  height: 150px;
  border-radius: 22px;
}

/* wide bottom */
.about__card--wide {
  left: 0;
  bottom: 0;
  width: 350px;
  height: 135px;
  border-radius: 22px;
  outline: 8px solid rgba(34, 46, 107, .10);
  outline-offset: -8px;
}

/* logo circle (top-left) */
.about__logoCircle {
  position: absolute;
  left: 40px;
  top: 8px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #27306f;
  display: grid;
  place-items: center;
  z-index: 5;
}

.about__logoCircle img {
  width: 58px;
  height: auto;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
}

/* experience badge */
.about__exp {
  position: absolute;
  right: 25px;
  bottom: 12px;
  background: #10b0a8;
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.about__expNum {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.about__expText {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

/* RIGHT CONTENT */
.about__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6b73a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__title {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f0f13;
}

.about__title span {
  color: #27306f;
  font-weight: 600;
}

.about__desc {
  margin: 0 0 24px;
  color: #6a6f86;
  line-height: 1.7;
  font-size: 14px;
  max-width: 520px;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.about__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__iconWrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(39, 48, 111, .18);
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}

.about__iconWrap img {
  width: 22px;
  height: auto
}

.about__point h4 {
  margin: 2px 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #0f0f13;
}

.about__point p {
  margin: 0;
  font-size: 13px;
  color: #6a6f86;
  line-height: 1.55;
  max-width: 520px;
}

/* button */
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #27306f;
  color: #fff;
  padding: 12px 16px 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
}

.about__btnIcon {
  width: 30px;
  height: 30px;
  background: #10b0a8;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.about__btnIcon img {
  width: 14px;
  height: auto
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1050px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about__left {
    max-width: 720px;
    margin: 0 auto;
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 54px 0;
  }

  .about__title {
    font-size: 30px;
  }

  .about__left {
    min-height: 520px;
  }

  .about__card--big {
    position: relative;
    width: 100%;
    height: 280px;
    right: auto;
    top: auto;
  }

  .about__logoCircle {
    left: 14px;
    top: -36px;
    width: 100px;
    height: 100px;
  }

  .about__card--small {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 14px;
  }

  .about__card--wide {
    position: relative;
    width: 100%;
    height: 150px;
    margin-top: 14px;
  }

  .about__exp {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin-top: 14px;
  }
}

/* SERVICES */
.services {
  position: relative;
  background: #fff;
  padding: 80px 0 70px;
  overflow: hidden;
}

/* top row */
.services__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.services__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6b73a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f0f13;
}

.services__title span {
  color: #27306f;
}

.services__btn {
  background: #27306f;
  color: #fff;
  padding: 12px 14px 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
  white-space: nowrap;
}

.services__btnIcon {
  width: 30px;
  height: 30px;
  background: #10b0a8;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* cards grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 14px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(16, 16, 18, .06);
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39, 48, 111, .20);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service-card__icon img {
  width: 22px;
  height: auto
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: #141418;
}

.service-card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #6a6f86;
  line-height: 1.55;
  max-width: 230px;
}

.service-card__link {
  font-size: 12px;
  font-weight: 800;
  color: #27306f;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card__link span {
  font-weight: 900;
}

/* Hover effect – matches your screenshot */
.service-card {
  transition: all .35s ease;
}

.service-card:hover {
  background: #27306f;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(39, 48, 111, .25);
  transform: translateY(-4px);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-card__link {
  color: #ffffff;
}

.service-card:hover .service-card__icon {
  border-color: rgba(255, 255, 255, .35);
}

.service-card:hover .service-card__link span {
  transform: translateX(3px);
  transition: .3s ease;
}

/* icon default */
.service-card__icon img {
  width: 22px;
  height: auto;
  filter: none;
  transition: filter .3s ease;
}

/* icon turns white on hover */
.service-card:hover .service-card__icon img {
  filter: brightness(0) invert(1);
}

/* icon border also turns white */
.service-card:hover .service-card__icon {
  border-color: rgba(255, 255, 255, .45);
}

/* bottom line */
.services__bottom {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #6a6f86;
}

.services__free {
  background: #27306f;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 11px;
}

.services__touch {
  color: #27306f;
  font-weight: 900;
}

/* Decorative vectors */
.s-vec {
  position: absolute;
  pointer-events: none
}

.s-vec--triFill {
  left: 30px;
  top: 80px;
  width: 46px
}

.s-vec--triBorder {
  left: 60px;
  top: 95px;
  width: 52px;
  opacity: .9
}

.s-vec--zigzag {
  left: 40px;
  bottom: 110px;
  width: 52px;
  opacity: .9
}

.s-vec--arrows {
  left: 40px;
  bottom: 48px;
  width: 70px;
  opacity: .9
}

/* CSS X (top-right) */
.s-x {
  position: absolute;
  right: 55px;
  top: 38px;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  opacity: .8;
}

.s-x::before,
.s-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 2px;
  background: #27306f;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.s-x::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* WHY CHOOSE US */
.choose {
  background: #fff;
  padding: 80px 0;
}

.choose__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.choose__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6b73a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose__title {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f0f13;
}

.choose__title span {
  color: #27306f;
}

.choose__desc {
  margin: 0 0 22px;
  color: #6a6f86;
  line-height: 1.7;
  font-size: 14px;
  max-width: 520px;
}

/* 2-column tick list */
.choose__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 10px;
}

.choose__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #141418;
  font-weight: 600;
}

.choose__item img {
  width: 20px;
  height: 15px;
  flex: 0 0 18px;
}

/* Right media */
.choose__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.choose__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Play button */
.choose__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #f08a2a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.choose__triangle {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* TRANSFORM (WHAT WE DO) */
.transform {
  background: #fff;
}

.transform__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* left image full height */
.transform__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* right panel */
.transform__right {
  background: #27306f;
  position: relative;
  color: #fff;
  padding: 60px 70px;
  display: flex;
  align-items: center;
}

.transform__content {
  max-width: 520px;
}

.transform__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transform__title {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
}

.transform__title span {
  color: #10b0a8;
}

.transform__desc {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}

/* features (two rows) */
.transform__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 18px;
}

.t-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  flex: 0 0 46px;
}

.t-feature__icon img {
  width: 22px;
  height: auto
}

.t-feature h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* green tick bullets */
.transform__bullets {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
}

.t-bullet img {
  width: 16px;
  height: 16px
}

/* CTA big circle */
.transform__cta {
  position: absolute;
  right: 80px;
  bottom: 70px;
  width: 96px;
  height: 96px;
  display: block;
}

.transform__cta img {
  width: 100%;
  height: 100%;
  display: block;
}

.transform__cta:hover {
  transform: translateY(-2px);
  transition: .25s ease;
}

/* EMPLOYEE EXPERIENCE */
.exp {
  position: relative;
  background: #fff;
  padding: 85px 0 90px;
  overflow: hidden;
}

.exp__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.exp__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6b73a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f0f13;
}

.exp__title span {
  color: #27306f;
}

/* button right */
.exp__btn {
  background: #27306f;
  color: #fff;
  padding: 12px 14px 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
  white-space: nowrap;
}

.exp__btnIcon {
  width: 30px;
  height: 30px;
  background: #10b0a8;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.exp__btnIcon img {
  width: 14px;
  height: auto
}

/* grid */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 18px;
}

/* cards (no borders like screenshot) */
.exp-card {
  padding: 10px 4px;
}

.exp-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.exp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #27306f;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}

.exp-card__icon img {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
  /* make icon white */
}

.exp-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0f0f13;
}

.exp-card__line {
  height: 1px;
  background: rgba(0, 0, 0, .06);
  margin: 10px 0 22px;
}

.exp-card__num {
  font-size: 42px;
  font-weight: 600;
  color: #0f0f13;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.exp-card__desc {
  margin: 0;
  font-size: 12px;
  color: #6a6f86;
  line-height: 1.6;
  max-width: 220px;
}

/* bottom small symbols */
.exp__symbol {
  position: absolute;
  bottom: 26px;
  /* width:18px; */
  height: auto;
  opacity: .7;
  pointer-events: none;
}

.exp__symbol--1 {
  left: 12%
}

.exp__symbol--2 {
  left: 50%;
  transform: translateX(-50%)
}

.exp__symbol--3 {
  right: 12%
}


/* BENEFITS SECTION */
.benefits {
  background: #fbf7f1;
  /* light cream */
  padding: 85px 0;
  overflow: hidden;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.benefits__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6b73a8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits__title {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f0f13;
}

.benefits__title span {
  color: #27306f
}

.benefits__desc {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: #6a6f86;
  max-width: 520px;
}

/* small cards */
.benefits__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.b-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.b-card h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: #0f0f13;
}

.b-card p {
  margin: 0;
  font-size: 12px;
  color: #6a6f86;
  line-height: 1.6;
}

/* checklist */
.benefits__list {
  margin-top: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, .06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}

.b-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #40465f;
}

.b-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #27306f;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* RIGHT IMAGES */
.benefits__right {
  position: relative;
  min-height: 420px;
}

/* top image */
.benefits__topImg {
  position: absolute;
  top: 3rem;
  left: 30px;
  width: 450px;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow:0 14px 34px rgba(0,0,0,.14); */
}

.benefits__topImg img {
  width: 100%;
  /* height:220px; */
  object-fit: cover;
  display: block;
}

/* bottom image */
.benefits__bottomImg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  outline: 10px solid rgba(255, 255, 255, .9);
  outline-offset: -10px;
}

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

/* arrow circle */
.benefits__arrow {
  position: absolute;
  top: 55px;
  right: 120px;
  width: 110px;
  height: 110px;
  z-index: 5;
}

.benefits__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.benefits__arrow:hover {
  transform: translateY(-2px);
  transition: .25s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width:1100px) {
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .benefits__right {
    min-height: 520px;
    max-width: 760px;
    margin: 0 auto;
  }

  .benefits__bottomImg {
    width: 100%;
  }

  .benefits__arrow {
    right: 24px;
  }
}

@media (max-width:620px) {
  .benefits {
    padding: 60px 0;
  }

  .benefits__title {
    font-size: 30px;
  }

  .benefits__cards,
  .benefits__list {
    grid-template-columns: 1fr;
  }

  .benefits__topImg,
  .benefits__bottomImg {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .benefits__topImg img {
    height: 210px
  }

  .benefits__bottomImg img {
    height: 220px
  }

  .benefits__arrow {
    top: 140px;
    right: 16px;
    width: 92px;
    height: 92px;
  }
}

/* SCROLLING SERVICE RIBBON */
.service-ribbon {
  background: #10b0a8;
  padding: 14px 0;
  overflow: hidden;
}

.service-ribbon__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ribbonScroll 22s linear infinite;
}

.service-ribbon__track img {
  height: 18px;
  width: auto;
  display: block;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  background: #2A3276;
  color: #fff;
  padding: 0 0 22px;
  overflow: hidden;
  font-family: Inter, system-ui, Arial, sans-serif;
}

/* Decorative shapes (very light) */
.f-shape {
  position: absolute;
  opacity: .15;
  pointer-events: none;
  user-select: none;
}

.f-shape--t1 {
  left: 35px;
  top: 30px;
  width: 38px;
}

.f-shape--t2 {
  left: 75px;
  top: 58px;
  width: 26px;
}

.f-shape--t3 {
  right: 55px;
  top: 55px;
  width: 36px;
}

.f-shape--t4 {
  right: 30px;
  top: 35px;
  width: 24px;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Big logo box (white) */
.footer-logoBox {
  width: 250px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logoBox img {
  height: 54px;
  width: auto;
  display: block;
}

/* Socials on right */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__label {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  margin-right: 8px;
}

.footer-social__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.footer-social__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Divider lines */
.footer-divider {

  background: rgba(255, 255, 255, .10);
  margin: 18px 0 0;
}

.footer-divider--bottom {
  margin: 40px 0 14px;
}

/* Grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: 140px 140px 170px 260px 1fr;
  gap: 20px;
  padding-top: 26px;
  align-items: start;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

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

.footer-list li {
  margin: 10px 0;
}

.footer-list a {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.footer-contact__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-contact__text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-top: 2px;
}

/* Subscribe */
.footer-subtext {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
}

.footer-form {
  display: flex;
  align-items: center;
  width: 250px;
  height: 36px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.footer-input {
  border: none;
  outline: none;
  padding: 0 12px;
  height: 100%;
  width: 100%;
  font-size: 12px;
  color: #333;
}

.footer-input::placeholder {
  color: #8a8a8a;
}

.footer-btn {
  width: 42px;
  height: 100%;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

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

/* Bottom copyright */
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 1050px) {
  .footer-logoBox {
    width: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-col--subscribe .footer-form {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 620px) {
  .footer-wrap {
    padding: 0 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logoBox {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-form {
    width: 100%;
    max-width: 320px;
  }
}

/* animation */
@keyframes ribbonScroll {
  from {
    transform: translateX(0);
  }

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

/* Mobile */
@media (max-width: 700px) {
  .service-ribbon__track img {
    height: 16px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .exp__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .exp-card__desc {
    max-width: 100%
  }
}

@media (max-width: 680px) {
  .exp {
    padding: 60px 0 70px
  }

  .exp__top {
    flex-direction: column;
    align-items: flex-start
  }

  .exp__title {
    font-size: 30px
  }

  .exp__grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .exp__symbol {
    display: none
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1050px) {
  .transform__wrap {
    grid-template-columns: 1fr
  }

  .transform__right {
    padding: 50px 26px
  }

  .transform__cta {
    right: 22px;
    bottom: 22px;
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 520px) {
  .transform__title {
    font-size: 28px
  }

  .transform__right {
    padding: 44px 18px 120px
  }

  .transform__cta {
    right: 16px;
    bottom: 16px;
    width: 78px;
    height: 78px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1050px) {
  .choose__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .choose__media {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .choose {
    padding: 60px 0;
  }

  .choose__title {
    font-size: 30px;
  }

  .choose__list {
    grid-template-columns: 1fr;
  }

  .choose__play {
    width: 52px;
    height: 52px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-card p {
    max-width: 100%
  }
}

@media (max-width: 680px) {
  .services {
    padding: 60px 0 55px
  }

  .services__top {
    flex-direction: column;
    align-items: flex-start
  }

  .services__title {
    font-size: 30px
  }

  .services__grid {
    grid-template-columns: 1fr
  }

  .services__bottom {
    flex-wrap: wrap;
    text-align: center
  }

  .s-x {
    display: none
  }
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 900px) {
  .brand-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 16px;
  }
}

@media (max-width: 480px) {
  .brand-strip img {
    height: 18px;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px) {
  .nav__toggle {
    display: flex
  }

  .nav__links {
    position: absolute;
    right: 0;
    top: 78px;
    width: min(320px, 92vw);
    background: rgba(20, 24, 60, .96);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
    z-index: 10;
  }

  .nav__links.open {
    display: flex
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
    justify-content: space-between
  }

  .hero__title {
    font-size: 44px
  }
}

@media (max-width: 620px) {
  .topbar__right {
    display: none
  }

  /* matches clean mobile header */
  .nav__brand {
    width: 185px;
    padding: 14px 16px
  }

  .hero__content {
    padding: 44px 0 30px
  }

  .hero__title {
    font-size: 34px
  }

  .searchbar__field {
    width: min(420px, 92vw)
  }

  .searchbar {
    gap: 12px
  }

  .searchbar__btn {
    width: min(420px, 92vw)
  }

  .hero__ctaRow {
    flex-direction: column
  }

  .hero__arrow {
    display: none
  }

  .vec--shape {
    top: 470px
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 30px
  }
}

/* ===== PROFESSIONAL MOBILE VIEW STYLES ===== */
@media (max-width: 768px) {

  /* Container adjustments */
  .container {
    width: min(1200px, 92%);
  }

  /* Topbar mobile */
  .topbar {
    padding: 8px 0;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
  }

  .topbar__left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .topbar__item {
    font-size: 12px;
  }

  .topbar__right {
    display: none;
  }

  /* Navigation mobile */
  .nav {
    padding: 14px 0 10px;
    flex-wrap: wrap;
  }

  .nav__brand {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .nav__brand img {
    height: 28px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    right: 0;
    top: 70px;
    width: min(320px, 92vw);
    background: rgba(20, 24, 60, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
    z-index: 100;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .nav__link:last-of-type {
    border-bottom: none;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero__content {
    padding: 30px 0 20px;
  }

  .hero__kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 0;
  }

  .hero__title br {
    display: none;
  }

  /* Searchbar mobile */
  .searchbar {
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .searchbar__field {
    width: 100%;
    max-width: 100%;
    height: 48px;
    border-radius: 12px;
  }

  .searchbar__field input {
    font-size: 14px;
  }

  .searchbar__btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* Hero CTA row */
  .hero__ctaRow {
    margin-top: 20px;
    flex-direction: column;
    gap: 14px;
  }

  .hero__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 12px;
  }

  .hero__arrow {
    display: none;
  }

  /* Hero people image */
  .hero__people {
    width: 100%;
    margin-top: 30px;
  }

  .hero__img {
    width: 100%;
  }

  .hero__glow {
    width: 90%;
  }

  /* Decorative vectors hide on mobile */
  .vec {
    display: none;
  }

  /* Brand strip mobile */
  .brand-strip {
    padding: 14px 0;
  }

  .brand-strip__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 28px;
  }

  .brand-strip img {
    height: 18px;
  }

  /* About section mobile */
  .about {
    padding: 50px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__left {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about__logoCircle {
    position: relative;
    left: auto;
    top: auto;
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
  }

  .about__logoCircle img {
    width: 48px;
    padding: 8px;
  }

  .about__card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
  }

  .about__card--big {
    order: 1;
  }

  .about__card--big img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .about__card--small {
    order: 2;
  }

  .about__card--small img {
    height: 160px;
  }

  .about__card--wide {
    order: 3;
    outline-width: 6px;
    outline-offset: -6px;
  }

  .about__card--wide img {
    height: 140px;
  }

  .about__exp {
    position: relative;
    right: auto;
    bottom: auto;
    order: 4;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 20px;
  }

  .about__expNum {
    font-size: 32px;
  }

  .about__expText {
    font-size: 12px;
  }

  .about__title {
    font-size: 26px;
  }

  .about__title br {
    display: none;
  }

  .about__desc {
    font-size: 13px;
  }

  .about__points {
    gap: 16px;
  }

  .about__point h4 {
    font-size: 13px;
  }

  .about__point p {
    font-size: 12px;
  }

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

  /* Services section mobile */
  .services {
    padding: 50px 0 45px;
  }

  .services__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .services__title {
    font-size: 26px;
  }

  .services__title br {
    display: none;
  }

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

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 22px 20px 18px;
    min-height: auto;
  }

  .service-card p {
    max-width: 100%;
  }

  .services__bottom {
    margin-top: 24px;
    flex-wrap: wrap;
    text-align: center;
    gap: 8px;
    justify-content: center;
  }

  /* Decorative vectors */
  .s-vec,
  .s-x {
    display: none;
  }

  /* Choose section mobile */
  .choose {
    padding: 50px 0;
  }

  .choose__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .choose__title {
    font-size: 26px;
  }

  .choose__title br {
    display: none;
  }

  .choose__desc {
    font-size: 13px;
  }

  .choose__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .choose__item {
    font-size: 12px;
  }

  .choose__media {
    max-width: 100%;
    border-radius: 16px;
  }

  .choose__play {
    width: 50px;
    height: 50px;
  }

  .choose__triangle {
    border-left-width: 12px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }

  /* Transform section mobile */
  .transform__wrap {
    grid-template-columns: 1fr;
  }

  .transform__left {
    order: 2;
  }

  .transform__left img {
    height: 280px;
  }

  .transform__right {
    order: 1;
    padding: 40px 20px 100px;
  }

  .transform__title {
    font-size: 24px;
  }

  .transform__title br {
    display: none;
  }

  .transform__desc {
    font-size: 12px;
  }

  .transform__features {
    gap: 14px;
    margin: 16px 0 20px;
  }

  .t-feature {
    gap: 12px;
  }

  .t-feature__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .t-feature h4 {
    font-size: 13px;
  }

  .transform__bullets {
    gap: 10px;
  }

  .t-bullet {
    font-size: 11px;
  }

  .transform__cta {
    right: 16px;
    bottom: 16px;
    width: 70px;
    height: 70px;
  }

  /* Experience section mobile */
  .exp {
    padding: 50px 0 60px;
  }

  .exp__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .exp__title {
    font-size: 26px;
  }

  .exp__title br {
    display: none;
  }

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

  .exp__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exp-card {
    padding: 12px 6px;
    text-align: center;
  }

  .exp-card__head {
    justify-content: center;
  }

  .exp-card__num {
    font-size: 36px;
  }

  .exp-card__desc {
    max-width: 100%;
    font-size: 13px;
  }

  .exp__symbol {
    display: none;
  }

  /* Benefits section mobile */
  .benefits {
    padding: 50px 0;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefits__title {
    font-size: 26px;
  }

  .benefits__title br {
    display: none;
  }

  .benefits__desc {
    font-size: 12px;
  }

  .benefits__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .b-card {
    padding: 14px;
  }

  .b-card h4 {
    font-size: 14px;
  }

  .b-card p {
    font-size: 12px;
  }

  .benefits__list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .b-item {
    font-size: 12px;
  }

  .benefits__right {
    min-height: auto;
    order: 2;
  }

  .benefits__topImg {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .benefits__topImg img {
    border-radius: 14px;
  }

  .benefits__bottomImg {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .benefits__bottomImg img {
    height: 200px;
  }

  .benefits__arrow {
    display: none;
  }

  /* Service ribbon mobile */
  .service-ribbon {
    padding: 12px 0;
  }

  .service-ribbon__track img {
    height: 14px;
  }

  /* Footer mobile */
  .site-footer {
    padding: 0 0 16px;
  }

  .footer-wrap {
    padding: 0 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
  }

  .footer-logoBox {
    width: 180px;
    height: 70px;
  }

  .footer-logoBox img {
    height: 42px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social__label {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding-top: 24px;
  }

  .footer-col--subscribe {
    grid-column: 1 / -1;
  }

  .footer-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-list li {
    margin: 8px 0;
  }

  .footer-list a {
    font-size: 11px;
  }

  .footer-contact {
    gap: 10px;
  }

  .footer-contact__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .footer-contact__text {
    font-size: 11px;
  }

  .footer-subtext {
    font-size: 11px;
  }

  .footer-subtext br {
    display: none;
  }

  .footer-form {
    width: 100%;
    max-width: 280px;
  }

  .footer-divider {
    margin: 16px 0 0;
  }

  .footer-divider--bottom {
    margin: 28px 0 12px;
  }

  .footer-copy {
    font-size: 11px;
    padding-bottom: 8px;
  }

  /* Decorative shapes hide on mobile */
  .f-shape {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .hero__title {
    font-size: 24px;
  }

  .hero__kicker {
    font-size: 10px;
  }

  .about__title,
  .services__title,
  .choose__title,
  .transform__title,
  .exp__title,
  .benefits__title {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav__brand {
    padding: 10px 12px;
  }

  .nav__brand img {
    height: 24px;
  }

  .about__expNum {
    font-size: 28px;
  }

  .exp-card__num {
    font-size: 32px;
  }
}

/* ================================================================
   HR PAGE — MOBILE ALIGNMENT
   ================================================================ */
@media (max-width: 1024px) {
  .nav__cta {
    display: none !important;
  }

  .nav-links {
    background: #232b66 !important;
  }

  .nav__link {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    font-size: 16px !important;
    color: #fff !important;
    width: 100% !important;
    margin: 0 !important;
    text-transform: none !important;
  }
}

@media (max-width: 768px) {

  /* Match Topbar to lawyer.html */
  .topbar__right {
    display: none !important;
  }

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

  .topbar__inner {
    padding: 8px 16px;
  }

  /* Match Navbar/Logo to lawyer.html */
  .nav {
    padding: 10px 16px;
    justify-content: space-between;
    flex-wrap: nowrap !important;
  }

  .nav__brand {
    padding: 6px 10px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: auto !important;
  }

  .nav__brand img {
    max-height: 38px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 32px !important;
  }

  .hero {
    min-height: auto !important;
    padding-bottom: 40px !important;
  }

  .about__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about__left {
    min-height: 0 !important;
  }

  .about__card--big,
  .about__card--small,
  .about__card--wide {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-bottom: 12px !important;
  }

  .about__exp {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 12px !important;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

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

  .choose__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .brand-strip__inner {
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
  }

  .searchbar {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 16px !important;
  }

  .searchbar__field {
    width: 100% !important;
  }

  .topbar__inner {
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__title {
    font-size: 26px !important;
  }
}