/* ─── Hero / Banner ───────────────────────────────── */
.hero-swiper { position: relative; width: 100%; height: 620px; }
.hero-swiper .swiper-slide { position: relative; overflow: hidden; height: 100%; }
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55);
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next { color: rgba(255,255,255,.7); }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--mgz-orange); width: 24px; border-radius: 4px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-overlay .container { pointer-events: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(232,120,37,.2);
  border: 1px solid rgba(232,120,37,.4);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--mgz-orange-2);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mgz-orange); display: inline-block; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.5); opacity:.6; } }

.hero-title {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: .9rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero-title .accent { color: var(--mgz-orange); }

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (max-width: 768px) {
  .hero-swiper { height: 420px; }
  .hero-overlay { padding-bottom: 48px; }
}

/* ─── Stats bar ──────────────────────────────────── */
.stats-bar {
  background: var(--mgz-dark);
  padding: 28px 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--mgz-orange);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
  text-align: center;
  letter-spacing: .04em;
}
@media (max-width: 576px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
  .stat-item:last-child { border-bottom: none; }
}

/* ─── Services ───────────────────────────────────── */
.service-card {
  background: var(--mgz-white);
  border: 1px solid var(--mgz-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mgz-shadow-lg);
}
.service-card:hover::before { border-color: var(--mgz-orange); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232,120,37,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mgz-orange);
  margin-bottom: 1.1rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--mgz-orange); color: #fff; transform: scale(1.08); }

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mgz-dark);
  margin-bottom: .55rem;
}
.service-desc {
  font-size: .875rem;
  color: var(--mgz-gray);
  line-height: 1.6;
  margin: 0;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--mgz-orange);
  text-decoration: none;
  margin-top: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── Why us ──────────────────────────────────────── */
.why-bg {
  background: var(--mgz-light);
  border-radius: 20px;
}
.why-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mgz-orange);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-text strong { font-size: .95rem; color: var(--mgz-dark); display: block; margin-bottom: .2rem; }
.why-text span   { font-size: .85rem; color: var(--mgz-gray); }

/* ─── ISO / Cert badge ────────────────────────────── */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(20,39,50,.05);
  border: 1px solid var(--mgz-border);
  border-radius: 12px;
  padding: .75rem 1.25rem;
}
.cert-badge img { height: 36px; }

/* ─── Clients grid ────────────────────────────────── */
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--mgz-border);
  border-radius: 10px;
  background: #fff;
  transition: all var(--transition);
}
.client-logo img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: all var(--transition); }
.client-logo:hover { box-shadow: var(--mgz-shadow); border-color: rgba(232,120,37,.2); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ─── Clients Marquee ─────────────────────────────── */
.marquee-section { overflow: hidden; padding: 64px 0; background: var(--mgz-light); }
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mScroll 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track + .marquee-track { margin-top: 12px; animation-duration: 44s; animation-direction: reverse; }
@keyframes mScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 68px;
  margin: 0 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mgz-border);
  flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.m-logo img {
  max-height: 38px;
  max-width: 104px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .45;
  transition: all var(--transition);
}
.m-logo:hover img { filter: none; opacity: 1; }
.m-logo:hover { border-color: rgba(232,120,37,.25); box-shadow: var(--mgz-shadow); }

/* ─── Scroll Hint ────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.hero-scroll-hint span {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}
.hero-scroll-hint .sh-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: shPulse 1.8s ease-in-out infinite;
}
@keyframes shPulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .3; transform: scaleY(.5); transform-origin: top; }
}

/* ─── Ticker Band ─────────────────────────────────── */
.ticker-band {
  background: var(--mgz-orange);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
  gap: 0;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 1.8rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item .ti-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Services (Agency-style list) ───────────────── */
.svc-section { padding: 100px 0; }
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 2rem;
}
.svc-header-left {}
.svc-header-right {
  max-width: 320px;
  text-align: right;
  flex-shrink: 0;
}
.svc-header-right p {
  font-size: .875rem;
  color: var(--mgz-gray);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767px) {
  .svc-section { padding: 72px 0; }
  .svc-header { flex-direction: column; align-items: flex-start; }
  .svc-header-right { text-align: left; max-width: 100%; }
}

.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--mgz-border); }
.svc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  padding: 28px 10px;
  border-bottom: 1px solid var(--mgz-border);
  text-decoration: none;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--transition);
}
.svc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mgz-orange);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}
.svc-item:hover::before { transform: translateX(0); }

.svc-item > * { position: relative; z-index: 1; }

.svc-num {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--mgz-gray);
    transition: color var(--transition);
    line-height: 1;
    padding-top: 2px;
}
.svc-item:hover .svc-num { color: rgba(255,255,255,.5); }

.svc-body { min-width: 0; }
.svc-name {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--mgz-dark);
  letter-spacing: -.02em;
  transition: color var(--transition);
  display: block;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.svc-item:hover .svc-name { color: #fff; }

.svc-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.svc-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .18rem .6rem;
  border-radius: 20px;
  background: rgba(232,120,37,.1);
  color: var(--mgz-orange);
  border: 1px solid rgba(232,120,37,.2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.svc-item:hover .svc-tag { background: rgba(255,255,255,.18); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }

.svc-arr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--mgz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--mgz-dark);
  flex-shrink: 0;
  transition: all var(--transition);
  transform: rotate(0deg);
}
.svc-item:hover .svc-arr {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: rotate(-45deg);
}

@media (max-width: 575px) {
  .svc-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .svc-arr { display: none; }
}

/* ─── Statement Section ───────────────────────────── */
.stmt-section {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.stmt-section::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: -20px;
  font-size: clamp(16rem, 28vw, 26rem);
  font-weight: 900;
  color: rgba(232,120,37,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: Georgia, serif;
}
.stmt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mgz-gray);
  margin-bottom: 1.5rem;
}
.stmt-eyebrow::before {
  content: '';
  width: 22px;
  height: 2.5px;
  background: var(--mgz-orange);
  border-radius: 2px;
  display: inline-block;
}
.stmt-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--mgz-dark);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 2rem;
}
.stmt-title .stmt-hi { color: var(--mgz-orange); }
.stmt-body {
  font-size: 1.1rem;
  color: var(--mgz-gray);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.cert-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--mgz-border);
  font-size: .8rem;
  font-weight: 700;
  color: var(--mgz-dark);
  background: #fff;
  transition: all var(--transition);
}
.cert-pill i { color: var(--mgz-orange); font-size: .95rem; }
.cert-pill:hover { border-color: var(--mgz-orange); background: rgba(232,120,37,.04); }

.stmt-img-wrap {
  position: relative;
}
.stmt-img-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.stmt-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--mgz-orange);
  color: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(232,120,37,.35);
}
.stmt-img-badge .sib-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
}
.stmt-img-badge .sib-label {
  font-size: .75rem;
  font-weight: 600;
  opacity: .85;
  display: block;
  margin-top: .2rem;
}
@media (max-width: 991px) {
  .stmt-section { padding: 80px 0; }
  .stmt-img-badge { bottom: -12px; left: -8px; }
}

/* ─── Numbers Band ────────────────────────────────── */
.nums-band {
  background: var(--mgz-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.nums-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.nums-band::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,120,37,.12) 0%, transparent 65%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.num-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.num-big {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  color: var(--mgz-orange);
  letter-spacing: -.05em;
  line-height: 1;
  display: block;
}
.num-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-top: .4rem;
  letter-spacing: -.01em;
}
.num-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  display: block;
  margin-top: .2rem;
}
.nums-divider {
  width: 1px;
  background: rgba(255,255,255,.06);
  align-self: stretch;
}
@media (max-width: 767px) {
  .nums-band { padding: 60px 0; }
  .num-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .num-item:last-child { border-bottom: none; }
  .nums-divider { display: none; }
}

/* ─── Portfolio grid ──────────────────────────────── */
.portfolio-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--mgz-dark);
  aspect-ratio: 16/10;
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.portfolio-card:hover img { transform: scale(1.05); filter: brightness(.45); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(20,39,50,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-type { font-size: .72rem; color: var(--mgz-orange); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-name { font-size: 1rem; color: #fff; font-weight: 700; margin: .2rem 0 0; }
/* ─── CTA ──────────────────────────────────────────── */
.cta {
    background: var(--mgz-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
}

    .cta::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,120,37,.18) 0%, transparent 65%);
        top: -250px;
        right: -150px;
        pointer-events: none;
    }

    .cta::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 65%);
        bottom: -120px;
        left: 10%;
        pointer-events: none;
    }

.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
}

    .cta-title .cta-hi {
        color: var(--mgz-orange);
    }

.cta-sub {
    color: rgba(255,255,255,.55);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}