/* ============================================
   ARICA — Manufacturing Page
   ============================================ */

.mf-page {
  --mf-pad: clamp(1.5rem, 3vw, 2.25rem);
  overflow-x: hidden;
}

.mf-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.mf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #010728;
}

.mf-hero__bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #010728 0%, #0a2560 45%, #1378f3 100%);
}

.mf-hero__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(76, 147, 228, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.mf-hero__bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.mf-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mf-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 7, 40, 0.8) 0%,
    rgba(1, 7, 40, 0.52) 38%,
    rgba(1, 7, 40, 0.22) 68%,
    rgba(1, 7, 40, 0.1) 100%
  );
  pointer-events: none;
}

.mf-hero__bg-sheen {
  position: absolute;
  inset: -25%;
  background: linear-gradient(120deg,
    rgba(19, 120, 243, 0) 0%,
    rgba(19, 120, 243, 0.35) 35%,
    rgba(140, 205, 255, 0.28) 50%,
    rgba(19, 120, 243, 0) 65%);
  background-size: 250% 250%;
  animation: mfSheenShift 11s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.mf-hero__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mf-hero__bubbles span {
  position: absolute;
  bottom: -10%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(150, 205, 255, 0.18) 60%, rgba(150, 205, 255, 0) 76%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 6px 1px rgba(110, 190, 255, 0.55), 0 0 16px 4px rgba(19, 120, 243, 0.35);
  filter: drop-shadow(0 0 4px rgba(140, 205, 255, 0.5));
  opacity: 0;
  animation: mfBubbleRise linear infinite;
}

.mf-hero__bubbles span:nth-child(1)  { left: 6%;  width: 9px;  height: 9px;  --drift: 22px;  animation-duration: 8.5s;  animation-delay: 0s; }
.mf-hero__bubbles span:nth-child(2)  { left: 16%; width: 14px; height: 14px; --drift: -18px; animation-duration: 11s;   animation-delay: 1.2s; }
.mf-hero__bubbles span:nth-child(3)  { left: 27%; width: 7px;  height: 7px;  --drift: 12px;  animation-duration: 7.5s;  animation-delay: 2.6s; }
.mf-hero__bubbles span:nth-child(4)  { left: 40%; width: 12px; height: 12px; --drift: -20px; animation-duration: 10s;   animation-delay: 0.6s; }
.mf-hero__bubbles span:nth-child(5)  { left: 52%; width: 8px;  height: 8px;  --drift: 16px;  animation-duration: 9s;    animation-delay: 3.4s; }
.mf-hero__bubbles span:nth-child(6)  { left: 63%; width: 15px; height: 15px; --drift: -14px; animation-duration: 12.5s; animation-delay: 1.8s; }
.mf-hero__bubbles span:nth-child(7)  { left: 74%; width: 6px;  height: 6px;  --drift: 10px;  animation-duration: 7s;    animation-delay: 4.2s; }
.mf-hero__bubbles span:nth-child(8)  { left: 84%; width: 11px; height: 11px; --drift: -22px; animation-duration: 10.5s; animation-delay: 2.2s; }
.mf-hero__bubbles span:nth-child(9)  { left: 92%; width: 9px;  height: 9px;  --drift: 18px;  animation-duration: 8s;    animation-delay: 0.9s; }
.mf-hero__bubbles span:nth-child(10) { left: 97%; width: 13px; height: 13px; --drift: -16px; animation-duration: 11.5s; animation-delay: 3.8s; }

@keyframes mfSheenShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes mfBubbleRise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  12% { opacity: 0.6; }
  55% { opacity: 0.35; }
  100% { transform: translateY(-320px) translateX(var(--drift, 16px)) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mf-hero__bg-sheen,
  .mf-hero__bubbles span {
    animation: none;
  }

  .mf-hero__bubbles {
    display: none;
  }
}

.mf-hero__bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mf-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: calc(var(--header-h, 80px) + 1.25rem) 0 2rem;
  min-height: 0;
}

.mf-hero__text {
  color: #fff;
}

.mf-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.mf-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.mf-hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0;
}

.mf-hero__visual {
  display: none;
}

.mf-hero__visual img {
  width: min(100%, 420px);
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.mf-breadcrumb {
  background: #f7f9fc;
  border-bottom: 1px solid rgba(15, 40, 80, 0.08);
  padding: 0.6rem 0;
}

.mf-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #5b6b85;
}

.mf-breadcrumb__list a {
  color: #1378f3;
  text-decoration: none;
}

.mf-breadcrumb__list a:hover {
  text-decoration: underline;
}

.mf-breadcrumb__sep {
  opacity: 0.5;
}

.mf-breadcrumb__current {
  color: #0a1f44;
  font-weight: 600;
}

.mf-intro {
  position: relative;
  padding: var(--mf-pad) 0;
  background: #fff;
  overflow: hidden;
}

.mf-intro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mf-intro__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.mf-intro__orb--1 {
  width: 280px;
  height: 280px;
  background: #9ec5ff;
  top: -80px;
  right: -40px;
}

.mf-intro__orb--2 {
  width: 220px;
  height: 220px;
  background: #c8e0ff;
  bottom: -60px;
  left: -30px;
}

.mf-intro__inner {
  position: relative;
  z-index: 1;
}

.mf-intro__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.mf-intro__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a1f44;
  margin: 0.75rem 0 1.5rem;
}

.mf-intro__copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3d4f6a;
  margin: 0 0 1.15rem;
}

.mf-intro__copy p:last-child {
  margin-bottom: 0;
}

.mf-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.mf-forms li {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #eef4fb;
  border: 1px solid rgba(19, 120, 243, 0.15);
  color: #0a2560;
  font-size: 0.9rem;
  font-weight: 600;
}

.mf-intro__visual img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 18px 48px rgba(10, 40, 90, 0.12);
}

.mf-highlights {
  padding: var(--mf-pad) 0;
  background: linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

.mf-highlights__header {
  max-width: 820px;
  margin-bottom: 1.75rem;
}

.mf-highlights__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a1f44;
  margin: 0.75rem 0 0;
}

.mf-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.mf-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 40, 80, 0.08);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #2f405a;
  box-shadow: 0 8px 24px rgba(10, 40, 90, 0.04);
}

.mf-points__icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  color: #1378f3;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.mf-points__icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .mf-hero__inner,
  .mf-intro__layout {
    grid-template-columns: 1fr;
  }

  .mf-hero__inner {
    text-align: center;
    padding-bottom: 3rem;
  }

  .mf-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .mf-hero__visual img {
    max-height: 260px;
  }

  .mf-forms {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .mf-points li {
    padding: 0.9rem 1rem;
  }
}
