/* ==============================
  Remote Support Page
============================== */

.remote-hero {
  padding: 96px 0 104px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94) 0%, rgba(247, 251, 255, 0.70) 58%, rgba(247, 251, 255, 0.28) 100%),
    url("images/remote-hero-bg.png") center center / cover no-repeat;
}

.remote-hero-inner {
  width: min(760px, calc(100% - var(--side-space)));
}

.remote-hero-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 16px;
  color: #ffffff;
  background: #0089e8;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.remote-hero h1 {
  margin-bottom: 22px;
  color: #001b3f;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.remote-hero-lead {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 800;
}

.remote-flow-section {
  padding: 86px 0;
  background: #ffffff;
}

.remote-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.remote-flow-card {
  padding: 30px 28px;
  position: relative;
  background: #f7fbff;
  border-radius: 18px;
}

.remote-flow-card:not(:last-child)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -36px;
  z-index: 2;
  color: #0089e8;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-50%);
}

.remote-flow-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0089e8;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.remote-flow-card h3 {
  color: #001b3f;
}

.remote-flow-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 700;
}

.remote-terms-section {
  padding: 88px 0 104px;
  background: #f5f7fa;
}

.remote-terms-box {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 48px;
  background: #ffffff;
  border-radius: 24px;
}

.remote-terms-content {
  color: #334155;
}

.remote-terms-content h3 {
  margin: 30px 0 10px;
  color: #001b3f;
  font-size: 18px;
}

.remote-terms-content h3:first-child {
  margin-top: 0;
}

.remote-terms-content p {
  margin-bottom: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 700;
}

.remote-consent-form {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.remote-agree-check {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #111827;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
}

.remote-agree-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.remote-download-button {
  min-width: 360px;
  margin-top: 24px;
  padding: 17px 30px;
  color: #ffffff;
  background: #0089e8;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 137, 232, 0.24);
}

.remote-download-button:hover {
  opacity: 0.82;
}

@media (max-width: 900px) {
  .remote-hero {
    padding: 72px 0 80px;
  }

  .remote-flow-grid {
    grid-template-columns: 1fr;
  }

  .remote-flow-card:not(:last-child)::after {
    content: "▼";
    top: auto;
    right: auto;
    bottom: -34px;
    left: 50%;
    font-size: 34px;
    transform: translateX(-50%);
  }

  .remote-terms-box {
    padding: 36px 30px;
  }
}

@media (max-width: 520px) {
  .remote-hero {
    padding: 54px 0 64px;
  }

  .remote-hero-inner {
    width: min(calc(100% - var(--side-space-sp)), var(--pc-width));
  }

  .remote-terms-box {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .remote-agree-check {
    justify-content: flex-start;
    text-align: left;
  }

  .remote-download-button {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }
}