:root {
  --blue: #1663c7;
  --blue-dark: #0b3d91;
  --blue-deep: #072a63;
  --ink: #16233d;
  --muted: #5c6b83;
  --line: #e4e9f2;
  --bg-soft: #f4f8fd;
  --white: #ffffff;
  --amber: #f6a821;
  --radius: 12px;
  --shadow: 0 18px 40px -18px rgba(11, 61, 145, 0.35);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ===== Icons (inline SVG) ===== */
.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 16px;
}
.topbar__left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__social { display: flex; gap: 6px; }
.topbar__social a {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  font-size: 0.8rem;
  transition: background 0.2s ease;
}
.topbar__social a:hover { background: var(--blue); }

/* ===== Brand ===== */
.brand { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 700; }
.brand__mark { font-size: 1.9rem; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.brand__mark .m { color: var(--blue); }
.brand__mark .n { color: #e23b3b; }
.brand__mark .r { color: var(--amber); }
.brand__text { font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.brand--light .brand__text { color: var(--white); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.is-stuck { box-shadow: 0 10px 30px -18px rgba(11,61,145,0.4); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.nav__list { 
  display: flex; 
  align-items: center; 
  gap: 2px;  /* pehle 4px tha */
  flex-wrap: nowrap;   /* ADD THIS */
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 8px;
  position: relative;
  white-space: nowrap;   /* ADD THIS */
  transition: color 0.2s ease;
}

.nav__link:hover, .nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.caret {
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.has-mega:hover .caret { transform: rotate(-135deg) translateY(-2px); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.header__phone .ic { color: var(--blue); font-size: 1.1rem; }

/* ===== Mega menu ===== */
/* ===== Mega menu → Simple dropdown ===== */
.has-mega { position: relative; }
.mega {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
  padding: 10px 0;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }

.mega__grid {
  display: block;
  padding: 0;
}
.mega__col { padding: 0 4px; }
.mega__title { display: none; }        /* section headings hata diye, simple list */
.mega__promo { display: none; }        /* promo card bhi hata diya, normal menu mein nahi chahiye */

.mega__col ul a {
  display: block;
  padding: 10px 20px;
  color: var(--ink);
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.mega__col ul a:hover { background: var(--bg-soft); color: var(--blue); }

.mega__promo {
  background: linear-gradient(160deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
}
.mega__promo .mega__title { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.25); }
.mega__promo p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.mega__promo .btn { background: var(--white); color: var(--blue); border-color: var(--white); }
.mega__promo .btn:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ===== Hamburger ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--blue-deep); }
.hero__slides { position: relative; height: clamp(460px, 62vh, 620px); }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.slide.is-active::before { animation: zoom 7s ease forwards; }
@keyframes zoom { to { transform: scale(1); } }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,42,99,0.92) 0%, rgba(11,61,145,0.72) 45%, rgba(11,61,145,0.15) 100%);
}
.slide__inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide__content { max-width: 560px; color: #fff; }
.slide__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
}
.slide__content h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(24px);
}
.slide__content p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(24px);
}
.slide__content .btn { opacity: 0; transform: translateY(24px); }
.slide.is-active .slide__eyebrow { animation: rise 0.6s 0.2s forwards; }
.slide.is-active .slide__content h1 { animation: rise 0.6s 0.35s forwards; }
.slide.is-active .slide__content p { animation: rise 0.6s 0.5s forwards; }
.slide.is-active .slide__content .btn { animation: rise 0.6s 0.65s forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
  z-index: 3;
}
.hero__arrow:hover { background: var(--blue); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dots button {
  width: 30px; height: 5px;
  border-radius: 4px; border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.hero__dots button.is-active { background: var(--white); width: 42px; }

/* ===== Sections ===== */
.section { padding-block: 76px; }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  text-wrap: balance;
}
.section__head p { color: var(--muted); }
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* ===== Services cards ===== */
.services { background: var(--bg-soft); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card__img {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  padding: 14px;
  overflow: hidden;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.link-more { color: var(--blue); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 6px; }
.link-more span { transition: transform 0.2s ease; }
.link-more:hover span { transform: translateX(5px); }
.services__note { text-align: center; color: var(--muted); max-width: 760px; margin: 44px auto 0; font-style: italic; }

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__badge {
  position: absolute;
  right: -10px; bottom: -24px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge strong { display: block; font-size: 2rem; line-height: 1; }
.about__badge span { font-size: 0.82rem; opacity: 0.9; }
.about__body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; text-wrap: balance; }
.about__body p { color: var(--muted); margin-bottom: 14px; }
.about__list { margin: 18px 0 26px; display: grid; gap: 10px; }
.about__list li { position: relative; padding-left: 30px; font-weight: 500; }
.about__list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: grid; place-items: center;
}

/* ===== Stats ===== */
.stats { background: linear-gradient(160deg, var(--blue-deep), var(--blue-dark)); color: #fff; }
.stats .section__head h2 { color: #fff; }
.stats .section__head p { color: rgba(255,255,255,0.8); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.stat h3 { display: inline; font-size: 3rem; font-weight: 800; color: var(--amber); }
.stat__pct { font-size: 2rem; font-weight: 800; color: var(--amber); }
.stat h5 { font-size: 1.05rem; margin: 12px 0 8px; }
.stat p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ===== Partners ===== */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.partner {
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.partner:hover { transform: translateY(-4px); color: var(--blue); box-shadow: var(--shadow); }

/* ===== CTA ===== */
.cta { background: var(--blue); color: #fff; }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 48px;
  flex-wrap: wrap;
}
.cta__inner h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta__inner p { color: rgba(255,255,255,0.85); }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn--lg { background: #fff; color: var(--blue); border-color: #fff; }
.cta .btn--lg:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ===== Our USP ===== */
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.usp__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.usp__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.usp__card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.usp__card:hover::before { transform: scaleX(1); }
.usp__icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.usp__card:hover .usp__icon { background: var(--blue); color: #fff; }
.usp__card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.usp__card p { color: var(--muted); font-size: 0.9rem; }

/* ===== Blog ===== */
.blog { background: var(--bg-soft); }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  margin: 0 0 44px;
  text-align: left;
}
.section__head--row h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0;
  text-wrap: balance;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.blog__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog__card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.blog__img { aspect-ratio: 16 / 10; overflow: hidden; }
.blog__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog__card:hover .blog__img img { transform: scale(1.06); }
.blog__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog__tag {
  align-self: flex-start;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
}
.blog__body h3 { font-size: 1.05rem; line-height: 1.4; flex: 1; }
.blog__body h3 a { transition: color 0.2s ease; }
.blog__body h3 a:hover { color: var(--blue); }

/* ===== Responsive: USP + Blog ===== */
@media (max-width: 1024px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .usp__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}

/* ===== Staffing page: banner ===== */
.page-banner {
  position: relative;
  padding: 120px 0 90px;
  background: linear-gradient(rgba(15, 34, 66, 0.78), rgba(15, 34, 66, 0.78)), var(--bg) center/cover no-repeat;
  color: #fff;
}
.page-banner__inner { max-width: 760px; }
.page-banner h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 14px 0 16px;
  text-wrap: balance;
}
.page-banner p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; margin-bottom: 26px; }
.crumbs { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); }
.crumbs a { color: #fff; text-decoration: underline; }
.crumbs span { margin: 0 4px; }

/* ===== Staffing page: solutions grid ===== */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.solution {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  color: var(--ink, #1a2b4a);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.solution::before { content: "\2192"; color: var(--blue); font-weight: 700; transition: color 0.2s ease; }
.solution:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--blue); color: #fff; }
.solution:hover::before { color: #fff; }

/* ===== Staffing page: prose ===== */
.prose { max-width: 900px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 8px; color: var(--blue); }
.prose p { color: var(--muted); margin-bottom: 12px; }

/* ===== Staffing page: benefits ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--blue); }
.benefit p { color: var(--muted); font-size: 0.92rem; }

/* ===== Staffing page: responsive ===== */
@media (max-width: 1024px) {
  .solutions__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .solutions__grid { grid-template-columns: 1fr; }
}
/* ===== Staffing page: enquiry form ===== */
.enquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.enquiry__intro h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 12px 0 14px; }
.enquiry__intro p { color: var(--muted); margin-bottom: 22px; }
.enquiry__contacts { display: grid; gap: 12px; }
.enquiry__contacts li { color: var(--muted); font-size: 0.95rem; }
.enquiry__contacts a { color: var(--blue); }

.enquiry__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink, #1a2b4a); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink, #1a2b4a);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-field textarea { resize: vertical; }
.enquiry__form .btn { justify-self: start; }

@media (max-width: 860px) {
  .enquiry__inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
/* ===== Footer ===== */
.footer { background: #0a1a33; color: rgba(255,255,255,0.72); padding-top: 64px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 34px;
  padding-bottom: 44px;
}
.footer__col h4 { color: #fff; margin-bottom: 18px; font-size: 1.05rem; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 0.92rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer__col ul a:hover { color: var(--amber); padding-left: 5px; }
.footer__about p { margin-top: 16px; font-size: 0.92rem; }
.footer__contact p { font-size: 0.9rem; margin-bottom: 10px; }
.footer__contact strong { color: #fff; }
.footer__contact a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  transition: background 0.2s ease;
}
.footer__social a:hover { background: var(--blue); color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 22px; font-size: 0.86rem; text-align: center; }

/* ===== To top ===== */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s;
  box-shadow: var(--shadow);
  z-index: 60;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .header__actions .header__phone { display: none; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 84vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -12px 0 40px -20px rgba(0,0,0,0.4);
    padding: 90px 20px 30px;
    overflow-y: auto;
    transition: right 0.35s ease;
    z-index: 55;
  }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { justify-content: space-between; padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link.is-active::after { display: none; }

  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .has-mega.is-open .mega { max-height: 1400px; }
  .mega__grid, .mega__grid--sm {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 10px;
  }
  .mega__promo { display: none; }
  .mega__title { margin-bottom: 6px; }

  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__media { max-width: 480px; }
  .stats__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar__left { gap: 14px; font-size: 0.75rem; }
  .cards { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .hero__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
