/* Tamirchi — Minimal Modern Homepage */

:root {
  --n: #08196e;
  --n-08: rgba(8, 25, 110, 0.08);
  --n-12: rgba(8, 25, 110, 0.12);
  --y: #ffeb00;
  --bg: #ffffff;
  --bg-soft: #f7f6fe;
  --bg-tint: rgba(8, 25, 110, 0.04);
  --text: #131316;
  --muted: #717184;
  --line: #ececf2;
  --ease: 0.22s ease;
}

/* tokens also in site-chrome.css — kept for homepage-only load edge case */

.hp-page {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

/* ── Layout helpers ── */
.hp-wrap {
  width: var(--site-container);
  margin-inline: auto;
}

.hp-sec {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hp-sec--soft { background: var(--bg-soft); }
.hp-sec--tint { background: var(--bg-tint); }

.hp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hp-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -0.02em;
}

.hp-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--y);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.hp-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--n);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--n-12);
  transition: border-color var(--ease);
}

.hp-link:hover {
  border-color: var(--n);
}

.hp-cta,
.hp-brands__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--n);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease);
}

.hp-cta:hover,
.hp-brands__cta:hover {
  border-color: var(--n);
  background: var(--n);
  color: #fff;
  transform: translateY(-1px);
}

.hp-cta i,
.hp-brands__cta i {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* ── Hero ── */
.hp-hero {
  position: relative;
  background: var(--n) center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hp-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 25, 110, 0.97) 0%, rgba(8, 25, 110, 0.88) 45%, rgba(8, 25, 110, 0.78) 100%);
}

.hp-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 20% 30%, #ffeb00 0, transparent 45%),
    radial-gradient(circle at 80% 70%, #fff 0, transparent 35%);
  pointer-events: none;
}

.hp-hero__body {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.25rem, 6vw, 5rem);
}

.hp-hero__cols {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

/* Form card */
.hp-hero__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.hp-hero__panel-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--y) 0%, #fff4a8 100%);
}

.hp-hero__badge {
  display: flex;
  align-items: center;
  margin-inline: auto;
  width: max-content;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 235, 0, 0.15);
  color: var(--n);
  border: 1px solid rgba(255, 235, 0, 0.45);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
}

.hp-hero__badge i {
  color: #c9a600;
  font-size: 0.85rem;
}

.hp-hero__panel h2 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--n);
  margin: 0 0 0.5rem;
  line-height: 1.45;
  font-size: 20px !important;
  text-align: center;
}

.hp-hero__panel p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.15rem;
  text-align: center;
  font-size: 14px;
}

.hp-hero__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hp-hero__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  margin: 0;
}

.hp-hero__input-wrap:focus-within {
  border-color: var(--n);
  background: #fff;
  box-shadow: 0 0 0 3px var(--n-08);
}

.hp-hero__input-wrap i {
  color: var(--n);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.hp-hero__input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.hp-hero__input-wrap input:focus {
  outline: none;
}

.hp-hero__input-wrap input::placeholder {
  color: #a0a0ad;
}

.hp-hero__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  background: var(--n);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.hp-hero__submit:hover {
  background: #0a2288;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 25, 110, 0.25);
  color: #fff;
}

.hp-hero__submit i {
  font-size: 0.9rem;
}

.hp-hero__phone-cta {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.hp-hero__phone-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8a8a96;
}

.hp-hero__panel-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border: 1.5px solid rgba(8, 25, 110, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 25, 110, 0.05) 0%, rgba(255, 235, 0, 0.08) 100%);
  color: var(--n);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease);
}

.hp-hero__panel-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: var(--radius);
  background: var(--n);
  flex-shrink: 0;
  transition: background var(--ease);
}

.hp-hero__panel-phone-icon i {
  color: var(--y);
  font-size: 12px;
}

.hp-hero__panel-phone-num {
  line-height: 1;
}

.hp-hero__panel-phone:hover {
  background: var(--n);
  border-color: var(--n);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 25, 110, 0.22);
}

.hp-hero__panel-phone:hover .hp-hero__panel-phone-icon {
  background: var(--y);
}

.hp-hero__panel-phone:hover .hp-hero__panel-phone-icon i {
  color: var(--n);
}

/* Copy block */
.hp-hero__copy {
  padding-inline: clamp(0rem, 2vw, 1rem);
}

.hp-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.hp-hero__copy h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.hp-hero__copy > p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

.hp-hero__actions {
  margin-bottom: 1.5rem;
}

.hp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  background: var(--y);
  color: var(--n);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 235, 0, 0.28);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.hp-hero__cta:hover {
  background: #fff4a8;
  color: var(--n);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 235, 0, 0.35);
}

.hp-hero__cta i:first-child {
  font-size: 1.05rem;
}

.hp-hero__cta-arrow {
  font-size: 0.85rem;
  opacity: 0.75;
}

.hp-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-hero__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hp-hero__perks i {
  color: var(--y);
  font-size: 0.9rem;
}

.hp-hero__mobile {
  display: none;
  padding: 0 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── Services ── */
.hp-svc__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.hp-svc__lead {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 34rem;
}

.hp-svc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.hp-svc__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--n);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8, 25, 110, 0.04);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background var(--ease);
}

.hp-svc__item::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--y);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.hp-svc__item:hover {
  border-color: var(--n-12);
  box-shadow: 0 12px 28px var(--n-08);
  transform: translateY(-3px);
  color: var(--n);
}

.hp-svc__item:hover::before {
  transform: scaleY(1);
}

.hp-svc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--bg-tint);
  border: 1px solid var(--n-08);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.hp-svc__item:hover .hp-svc__icon {
  background: var(--y);
  border-color: var(--y);
  transform: scale(1.04);
}

.hp-svc__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hp-svc__label {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}

.hp-svc__arrow {
  font-size: 0.8rem;
  color: var(--n);
  opacity: 0.3;
  flex-shrink: 0;
  transition: opacity var(--ease), transform var(--ease);
}

.hp-svc__item:hover .hp-svc__arrow {
  opacity: 1;
  transform: translateX(-3px);
}

.hp-svc__mob { display: none; }

.hp-svc__mob .swiper-slide {
  height: auto;
}

.hp-svc__mob .hp-svc__item {
  height: 100%;
}

/* ── Brands: strip look + Swiper infinite scroll (ferdos pattern) ── */
.hp-brands {
  background: var(--bg);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hp-brands__head {
  margin-bottom: 0;
}

.hp-brands__lead {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 34rem;
}

.hp-brands__strip {
  position: relative;
  width: 100%;
  /* margin-top: clamp(1.75rem, 3vw, 2.25rem); */
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
  overflow: hidden;
  /* background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(247, 246, 254, 0.45) 100%); */
  /* border-block: 1px solid var(--line); */
}

.hp-brands__strip::before,
.hp-brands__strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 6vw, 4rem);
  z-index: 2;
  pointer-events: none;
}

.hp-brands__strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-soft) 15%, transparent);
}

.hp-brands__strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-soft) 15%, transparent);
}

.hp-brands-swiper {
  overflow: hidden;
  position: relative;
}

.hp-brands-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.hp-brands-swiper .swiper-slide {
  width: 9rem;
  height: auto;
}

.hp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  background: #fff;
}

.hp-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity var(--ease), transform var(--ease);
}

.hp-brand:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .hp-brands__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hp-brands-swiper .swiper-slide {
    width: 7rem;
  }

  .hp-brand {
    height: 4.25rem;
    padding: 0 0.75rem;
  }

  .hp-brand img {
    max-height: 1.5rem;
    max-width: 5.5rem;
  }
}

/* ── Steps ── */
.hp-steps-sec {
  position: relative;
}

.hp-steps-sec__head {
  max-width: 36rem;
}

.hp-steps-sec__lead {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

.hp-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  counter-reset: step;
  position: relative;
}

.hp-steps::after {
  content: '';
  position: absolute;
  top: 4.35rem;
  inset-inline: 7%;
  height: 2px;
  background: linear-gradient(to left, var(--y), var(--line) 30%, var(--line) 70%, var(--y));
  z-index: 0;
  pointer-events: none;
}

.hp-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.35rem 0.85rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(8, 25, 110, 0.05);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.hp-step:hover {
  transform: translateY(-4px);
  border-color: var(--n-12);
  box-shadow: 0 14px 32px var(--n-08);
}

.hp-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.65rem;
  inset-inline-start: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  padding: 0.18rem 0.4rem;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--n);
  background: var(--y);
  border-radius: 6px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hp-step__icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0.35rem auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--n-08);
  border-radius: var(--radius);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.hp-step:hover .hp-step__icon-wrap {
  background: var(--y);
  border-color: var(--y);
  transform: scale(1.05);
}

.hp-step__icon {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  display: block;
}

.hp-step h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--n);
  margin: 0 0 0.4rem;
  line-height: 1.45;
}

.hp-step p {
  font-size: 0.71875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.hp-steps__mob {
  display: none;
  margin-top: 1.5rem;
}

.hp-steps__mob .hp-step {
  height: 100%;
}

.hp-steps__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ── About ── */
.hp-about-sec {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 55%, var(--bg) 100%);
  overflow: hidden;
}

.hp-about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.hp-about__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  margin-bottom: 0.85rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.hp-about__title {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 800;
  color: var(--n);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hp-about__text {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.9375rem;
  max-width: 36rem;
}

.hp-about__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hp-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.hp-about__btn i {
  font-size: 0.78rem;
}

.hp-about__btn--primary {
  background: var(--n);
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 25, 110, 0.18);
}

.hp-about__btn--primary:hover {
  background: #0a2288;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(8, 25, 110, 0.24);
}

.hp-about__btn--ghost {
  background: var(--bg);
  color: var(--n);
  border: 1px solid var(--line);
}

.hp-about__btn--ghost:hover {
  border-color: var(--n);
  color: var(--n);
  transform: translateY(-1px);
}

.hp-about__media {
  position: relative;
}

.hp-about__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(280px, 38vw, 420px);
  padding: 1.5rem 1rem 0;
}

.hp-about__glow {
  position: absolute;
  inset-inline: 8%;
  bottom: 8%;
  height: 72%;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 235, 0, 0.35) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 80%, rgba(8, 25, 110, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-about__visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 22rem);
  max-height: clamp(260px, 36vw, 400px);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(8, 25, 110, 0.16));
}

/* ── Join + Stats ── */
.hp-join {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}

.hp-join__bg {
  position: absolute;
  inset: 0;
  background: var(--n) url('../img/yakhjal-re.jpg') center / cover no-repeat;
}

.hp-join__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 25, 110, 0.94) 0%, rgba(8, 25, 110, 0.82) 45%, rgba(8, 25, 110, 0.9) 100%),
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(255, 235, 0, 0.08), transparent 55%);
}

.hp-join__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hp-join__glow--1 {
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  top: -4rem;
  inset-inline-start: 8%;
  background: rgba(255, 235, 0, 0.14);
}

.hp-join__glow--2 {
  width: clamp(140px, 22vw, 260px);
  height: clamp(140px, 22vw, 260px);
  bottom: -3rem;
  inset-inline-end: 10%;
  background: rgba(255, 255, 255, 0.06);
}

.hp-join__body {
  position: relative;
  z-index: 1;
  padding: clamp(3.25rem, 6.5vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
}

.hp-join__cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.hp-join__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.hp-join__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hp-join__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.hp-join__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(255, 235, 0, 0.28);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.hp-join__btn i {
  font-size: 0.82rem;
}

.hp-join__btn:hover {
  background: #fff176;
  color: var(--n);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 235, 0, 0.35);
}

.hp-join__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
}

.hp-join__stat {
  text-align: center;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.hp-join__stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 235, 0, 0.35);
}

.hp-join__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  background: rgba(255, 235, 0, 0.14);
  color: var(--y);
  border-radius: calc(var(--radius) - 2px);
  font-size: 1rem;
}

.hp-join__stat-num {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--y);
  font-family: sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hp-join__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ── Comments ── */
.hp-cmt-sec {
  position: relative;
}

.hp-cmt__head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.hp-cmt__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.hp-cmt__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--n);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hp-cmt__title b {
  color: var(--n);
  border-bottom: 3px solid var(--y);
}

.hp-cmt-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.hp-cmt {
  position: relative;
  flex: 1;
  width: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(8, 25, 110, 0.05);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}

.hp-cmt::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(to left, var(--y), rgba(255, 235, 0, 0.25));
}

.hp-cmt:hover {
  transform: translateY(-4px);
  border-color: var(--n-12);
  box-shadow: 0 14px 36px rgba(8, 25, 110, 0.09);
}

.hp-cmt__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hp-cmt__quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.05rem;
  color: var(--y);
  background: var(--n);
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(8, 25, 110, 0.22);
}

.hp-cmt__quote {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
  text-align: start;
}

.hp-cmt__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hp-cmt__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--y);
  flex-shrink: 0;
  background: var(--bg-soft);
}

.hp-cmt__who-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--n);
  margin-bottom: 0.15rem;
}

.hp-cmt__who-text small {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.5;
}

.hp-cmt__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.hp-cmt__rate {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 235, 0, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--n);
  line-height: 1;
  font-family: sans-serif;
}

.hp-cmt__rate i {
  font-size: 0.875rem;
  color: #e6a800;
}

.hp-cmt__rate span {
  letter-spacing: 0.02em;
}

/* ── FAQ ── */
.hp-faq-sec {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  overflow: hidden;
}

.hp-faq__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hp-faq__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.hp-faq__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -0.02em;
}

.hp-faq__title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--y);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.hp-faq__row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 340px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hp-faq__media {
  position: relative;
}

.hp-faq__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(260px, 34vw, 380px);
  padding: 1rem 0.5rem 0;
}

.hp-faq__glow {
  position: absolute;
  inset-inline: 5%;
  bottom: 6%;
  height: 74%;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 235, 0, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 80%, rgba(8, 25, 110, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-faq__visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 20rem);
  max-height: clamp(240px, 32vw, 360px);
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(8, 25, 110, 0.14));
}

.hp-faq .accordion-item {
  border: none !important;
  background: transparent !important;
  margin-bottom: 0.65rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(8, 25, 110, 0.05);
  transition: box-shadow var(--ease);
}

.hp-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 10px 28px rgba(8, 25, 110, 0.1);
}

.hp-faq .accordion-button {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  background: var(--bg) !important;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--n);
  padding: 0.95rem 1.1rem;
  box-shadow: none !important;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.hp-faq .accordion-button:hover {
  border-color: var(--n-12);
}

.hp-faq .accordion-button:not(.collapsed) {
  background: var(--n) !important;
  color: #fff !important;
  border-color: var(--n);
  border-radius: var(--radius) var(--radius) 0 0 !important;
}

.hp-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.hp-faq .accordion-collapse {
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius) !important;
  margin-top: -1px;
  background: var(--bg);
}

.hp-faq .accordion-body {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.85;
  padding: 0.9rem 1.1rem 1.1rem;
  background: var(--bg-soft);
}

.hp-page :is(
  .hp-hero__panel,
  .hp-hero__input-wrap,
  .hp-hero__submit,
  .hp-hero__badge,
  .hp-hero__eyebrow,
  .hp-hero__cta,
  .hp-hero__panel-phone,
  .hp-hero__panel-phone-icon,
  .hp-svc__item,
  .hp-brand,
  .hp-about__media,
  .hp-join__stat,
  .hp-join__btn,
  .hp-cmt,
  .hp-post,
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev,
  .btn3,
  .form-control
) {
  border-radius: var(--radius) !important;
}

/* ── Blog ── */
.hp-blog-sec {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}

.hp-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hp-blog__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.hp-blog__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -0.02em;
}

.hp-blog__title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--y);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.hp-blog__lead {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 34rem;
}

.hp-blog-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.hp-blog__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.hp-post {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 6px 22px rgba(8, 25, 110, 0.05);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.hp-post:hover {
  box-shadow: 0 14px 36px rgba(8, 25, 110, 0.1);
  transform: translateY(-4px);
  border-color: var(--n-12);
}

.hp-post__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--n) 0%, #0a2288 100%);
}

.hp-post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hp-post:hover .hp-post__img {
  transform: scale(1.05);
}

.hp-post__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 25, 110, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.hp-post__cat {
  position: absolute;
  bottom: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 1;
  padding: 0.32rem 0.7rem;
  background: var(--y);
  color: var(--n);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  max-width: calc(100% - 1.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-post__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-post__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.6875rem;
  color: var(--muted);
}

.hp-post__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hp-post__meta i {
  font-size: 0.75rem;
  color: var(--n);
  opacity: 0.65;
}

.hp-post__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--n);
  line-height: 1.55;
  margin: 0 0 0.5rem;
  text-decoration: none;
  transition: color var(--ease);
}

.hp-post__title:hover {
  color: #0a2288;
}

.hp-post__excerpt {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 1rem;
}

.hp-post__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--n);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.hp-post__more i {
  font-size: 0.78rem;
}

.hp-post__more:hover {
  background: var(--n);
  border-color: var(--n);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Swiper ── */
.hp-page .swiper .swiper-button-next::after,
.hp-page .swiper .swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

.hp-page .swiper .swiper-button-next,
.hp-page .swiper .swiper-button-prev {
  position: relative !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: var(--radius) !important;
  background: var(--y) !important;
  color: var(--n) !important;
  border: none !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.hp-page .swiper .swiper-button-next i,
.hp-page .swiper .swiper-button-prev i {
  font-size: 1rem;
  line-height: 1;
}

.hp-page .swiper .swiper-button-disabled {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  color: var(--muted) !important;
  opacity: 1 !important;
}

.hp-page .comment-rate .star-rating {
  background: url('../img/StarFill3.webp') repeat-x;
  height: 18px;
  width: 90px;
  margin: 0 auto;
  opacity: 0.92;
}

.hp-page .comment-rate .star-rating-fill {
  background: url('../img/StarFill3.webp') repeat-x;
  background-position: 0 100%;
  height: 18px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hp-hero__cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hp-hero__panel.form-box-desk { display: none; }
  .hp-hero__copy { text-align: center; }
  .hp-hero__copy > p { margin-inline: auto; }
  .hp-hero__perks { justify-content: center; }
  .hp-hero__actions { display: flex; justify-content: center; }
  .hp-hero__mobile { display: block; }

  .hp-svc__grid { display: none; }
  .hp-svc__mob { display: block; }

  .hp-steps { display: none; }
  .hp-steps::after { display: none; }
  .hp-steps__mob { display: block; }

  .hp-about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-about__media {
    order: -1;
  }

  .hp-about__visual {
    min-height: 240px;
    padding-top: 0.5rem;
  }

  .hp-about__visual img {
    max-height: 280px;
  }

  .hp-about__text {
    max-width: none;
  }

  .hp-faq__row { grid-template-columns: 1fr; }
  .hp-faq__media { order: -1; }
  .hp-faq__visual { min-height: 220px; }
  .hp-faq__visual img { max-height: 260px; }
  .hp-faq__head { flex-direction: column; align-items: flex-start; }
  .hp-blog__head { flex-direction: column; align-items: flex-start; }

  .hp-join__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1199.98px) {
  .hp-svc__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .hp-svc__mob { display: none !important; }
}

@media (max-width: 575.98px) {
  .hp-head { flex-direction: column; align-items: flex-start; }
  .hp-hero__body { padding-bottom: 1.5rem; }
  .hp-hero__perks { flex-direction: column; align-items: center; gap: 0.45rem; }
  .hp-join__stats { grid-template-columns: 1fr 1fr; }
  .hp-join__stat { padding: 1rem 0.5rem; }
}
