
.fast-track-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 18px 60px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.ft-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: #f4f4f4;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ft-hero-copy {
  padding: 38px;
}

.ft-kicker {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.ft-hero-copy h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #111;
}

.ft-hero-copy p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.ft-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.ft-panel {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.045);
}

.ft-panel h2 {
  font-size: 26px;
  margin: 0 0 14px;
  color: #111;
}

.ft-panel p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.ft-leadtime-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.ft-leadtime-box {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 22px;
  border-left: 5px solid #e30613;
}

.ft-leadtime-box strong {
  display: block;
  font-size: 24px;
  color: #111;
  margin-bottom: 6px;
}

.ft-leadtime-box span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.ft-key-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ft-key-list li {
  background: #f7f7f7;
  padding: 16px 18px;
  border-radius: 12px;
  line-height: 1.5;
}

.ft-key-list li:before {
  content: "✓";
  color: #e30613;
  font-weight: 700;
  margin-right: 8px;
}

.ft-note {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-top: 26px;
}

.ft-note h2 {
  color: #fff;
  margin: 0 0 10px;
}

.ft-note p {
  margin: 0;
  line-height: 1.65;
}

.ft-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-button {
  display: inline-block;
  background: #e30613;
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.ft-button.ft-button-dark {
  background: #111;
}

@media (max-width: 820px) {
  .ft-hero-card {
    grid-template-columns: 1fr;
  }

  .ft-hero-copy {
    padding: 28px;
  }

  .ft-hero-copy h1 {
    font-size: 30px;
  }

  .ft-hero-image img {
    min-height: 240px;
  }

  .ft-leadtime-grid,
  .ft-key-list {
    grid-template-columns: 1fr;
  }
}